:root {
  --bg: #f5f4f1;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --text: #171717;
  --muted: #5b5b5b;
  --line: rgba(23, 23, 23, 0.12);
  --accent: #24364d;
  --accent-soft: rgba(36, 54, 77, 0.08);
  --shadow: 0 10px 30px rgba(17, 17, 17, 0.05);
  --radius: 18px;
  --container: 1160px;
  --reading: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(36, 54, 77, 0.06), transparent 30%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent 28%);
  z-index: 0;
}

.page-shell {
  position: relative;
  z-index: 1;
}

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

.reading-width {
  max-width: var(--reading);
}

.section {
  padding: 84px 0;
}

.section--divider {
  border-top: 1px solid var(--line);
}

.section--tint {
  background: rgba(255, 255, 255, 0.42);
}

.section--final {
  padding-bottom: 120px;
}

.hero {
  padding: 56px 0 72px;
}

.hero h1,
h2,
h3,
p,
ul {
  margin: 0;
}

.eyebrow {
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 11ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.7rem, 3.3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 14ch;
  text-wrap: balance;
}

h3 {
  margin-top: 32px;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--muted);
}

.hero__lead,
.hero__breakpoint,
.hero__body,
.cta-block,
.reading-width > p,
.reading-width > ul,
.reading-width > .emphasis,
.outcomes p {
  margin-top: 28px;
}

.hero__lead p,
.hero__body p,
.reading-width > p,
.outcomes p,
.cta-sub {
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  color: var(--text);
  line-height: 1.42;
}

.hero__breakpoint ul,
.reading-width ul {
  list-style: none;
  padding: 0;
}

.hero__breakpoint li,
.reading-width li {
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  color: var(--text);
  line-height: 1.38;
  margin-top: 10px;
}

.spaced {
  margin-top: 22px;
}

.emphasis {
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 500;
}

.outcomes p + p {
  margin-top: 14px;
}

.cta-block {
  margin-top: 34px;
}

.cta-sub {
  margin-top: 14px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button--primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(36, 54, 77, 0.16);
}

.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(36, 54, 77, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 60px 0;
  }

  .section--final {
    padding-bottom: 90px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.9rem, 7.2vw, 2.35rem);
    max-width: 12ch;
  }

  .reading-width {
    max-width: 34rem;
  }

  .hero__lead,
  .hero__breakpoint,
  .hero__body,
  .cta-block,
  .reading-width > p,
  .reading-width > ul,
  .reading-width > .emphasis,
  .outcomes p {
    margin-top: 18px;
  }

  .hero__lead p,
  .hero__body p,
  .reading-width > p,
  .outcomes p,
  .cta-sub {
    line-height: 1.4;
  }

  .hero__breakpoint li,
  .reading-width li {
    line-height: 1.34;
    margin-top: 8px;
  }

  .button {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.96rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  body::before {
    display: none !important;
  }

  .section--tint,
  .button--primary {
    box-shadow: none !important;
  }

  .section--tint {
    background: transparent !important;
  }
}

.direct-contact {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.direct-contact__label {
  padding-top: 20px;
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--muted, #5b5b5b);
}

.direct-contact__phone {
  display: inline-block;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text, #171717);
  text-decoration: none;
  border-bottom: 1px solid rgba(23, 23, 23, 0.18);
  transition: border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.direct-contact__phone:hover,
.direct-contact__phone:focus-visible {
  color: var(--accent, #24364d);
  border-bottom-color: var(--accent, #24364d);
  outline: none;
}

.direct-contact__note {
  margin: 10px 0 0;
  max-width: 32ch;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted, #5b5b5b);
}

@media (max-width: 640px) {
  .direct-contact {
    margin-top: 24px;
    padding-top: 18px;
  }

  .direct-contact__phone {
    font-size: 1.08rem;
  }

  .direct-contact__note {
    max-width: 100%;
  }
}