:root {
  --ink: #151a22;
  --muted: #5f6876;
  --line: #d9dee7;
  --paper: #f6f4ef;
  --white: #ffffff;
  --blue: #2455d6;
  --blue-dark: #183a8c;
  --green: #2d6a4f;
  --navy: #101a2c;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(246, 244, 239, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  padding: 8px 10px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(36, 85, 214, 0.22), transparent 38%),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0 80px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #b8c7ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue-dark);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: #edf1ff;
  font-size: clamp(18px, 1.8vw, 22px);
}

.expert-led {
  display: inline-flex;
  max-width: 760px;
  margin: 20px 0 0;
  padding: 10px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 700;
}

.hero-panel {
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.panel-label {
  margin-bottom: 18px;
  color: #b8c7ff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  padding: 0 0 13px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 18px;
}

.hero-panel p {
  margin: 22px 0 0;
  color: #cfd8ee;
  font-size: 16px;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button.secondary {
  color: currentColor;
  background: transparent;
}

.section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.lead-block {
  color: var(--ink);
  font-size: clamp(19px, 2vw, 24px);
}

.lead-block p:first-child {
  margin-top: 0;
}

.intro-section {
  background: var(--white);
}

.quiet-section {
  background: #ebe7df;
}

.simple-statement {
  max-width: 1000px;
  padding-left: clamp(20px, 4vw, 42px);
  border-left: 6px solid var(--green);
}

.simple-statement p {
  margin: 0;
  font-size: clamp(24px, 3.3vw, 42px);
  line-height: 1.16;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.outcomes-section {
  background: var(--white);
}

.outcomes-section .section-heading {
  max-width: 100%;
}

.outcome-list {
  display: grid;
  gap: clamp(38px, 6vw, 72px);
}

.outcome-list article {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 22px);
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid var(--line);
}

.outcome-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(54px, 13vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

.outcome-list p {
  max-width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.2;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.feature-list article {
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-list p {
  margin: 0;
  color: var(--muted);
}

.compact-section {
  background: var(--white);
}

.output-list {
  font-size: clamp(18px, 1.8vw, 22px);
}

.output-list ul {
  margin: 0;
  padding-left: 22px;
}

.output-list li + li {
  margin-top: 10px;
}

.about-section {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.portrait {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
}

.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-grid p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.contact-section {
  color: var(--white);
  background: var(--navy);
}

.contact-card {
  max-width: 900px;
}

.contact-card p:not(.eyebrow) {
  max-width: 760px;
  color: #dfe6f6;
  font-size: clamp(18px, 2vw, 22px);
}

.site-footer {
  padding: 26px 0;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

.footer-inner a {
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 88px 0 68px;
  }

  .two-col,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portrait {
    width: 180px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 16px;
  }

  .hero-inner,
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero-actions,
  .contact-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list article {
    min-height: auto;
    padding: 22px;
  }

  .simple-statement {
    padding-left: 18px;
    border-left-width: 4px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
