:root {
  --ink: #1c2326;
  --muted: #5e696b;
  --line: #d9dedc;
  --paper: #f7f5ef;
  --white: #ffffff;
  --navy: #112a3a;
  --navy-2: #183d52;
  --gold: #b79a62;
  --sage: #6f8077;
  --danger: #8a3a2f;
  --success: #2f6b4f;
  --shadow: 0 20px 55px rgba(15, 32, 40, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid rgba(28, 35, 38, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--navy);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: var(--navy);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--navy-2);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.full-width {
  width: 100%;
}

.checkout-hero {
  min-height: calc(100vh - 76px);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.checkout-layout h1 {
  max-width: 11ch;
  color: var(--ink);
}

.checkout-copy {
  color: var(--muted);
}

.checkout-card {
  padding: clamp(24px, 3.5vw, 38px);
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.checkout-card h2 {
  margin-bottom: 8px;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
}

.checkout-card p,
.checkout-card .mini-note {
  color: rgba(255, 255, 255, 0.76);
}

.checkout-card .button {
  margin: 24px 0 12px;
  color: var(--navy);
  background: var(--white);
}

.checkout-card .button:hover {
  background: #efe6d2;
}

.compact {
  margin-top: 20px;
}

.checkout-card .check-list li {
  color: var(--white);
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.checkout-steps article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.checkout-steps span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 850;
}

.checkout-steps p {
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 52px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-consulting.png");
  background-position: center;
  background-size: cover;
  transform: scale(calc(1.08 - (var(--scroll-progress, 0) * 0.04))) translateY(calc(var(--scroll-progress, 0) * -28px));
  transform-origin: center;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 25, 34, 0.9) 0%, rgba(17, 42, 58, 0.78) 37%, rgba(17, 42, 58, 0.2) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.2));
  z-index: -2;
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 84px 0 96px;
  color: var(--white);
}

.eyebrow,
.section-kicker,
.offer-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 10px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-subtitle {
  margin-bottom: 24px;
  color: #f1dfb5;
  font-size: clamp(1.35rem, 2.8vw, 2.4rem);
  font-weight: 750;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 18px;
}

.compliance-note,
.mini-note {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 10px;
  margin-top: 26px;
}

.hero-metrics span {
  display: grid;
  gap: 2px;
  min-width: 128px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-metrics strong {
  color: var(--white);
  font-size: 1.08rem;
}

.band,
.band-light {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 52px);
}

.band {
  background: var(--paper);
}

.band-light {
  background: var(--white);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.trust-strip {
  padding: 24px clamp(18px, 4vw, 52px);
  color: var(--white);
  background: var(--navy);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.trust-grid article {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 22px;
  background: var(--navy);
}

.trust-grid strong {
  font-size: 1.04rem;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.74);
}

.section-inner > h2,
.section-inner > div > h2,
.assessment-copy h2,
.offer-copy h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.intro-grid article,
.process-grid article,
.offer-card,
.assessment-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 35px rgba(15, 32, 40, 0.06);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-scale {
  transform: translate3d(0, 30px, 0) scale(0.96);
}

.reveal-blur {
  filter: blur(10px);
}

.reveal.is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.hero .reveal {
  transform: translate3d(0, 52px, 0);
}

.hero .reveal.is-revealed {
  transform: translate3d(0, 0, 0);
}

.scroll-progress-section {
  --scroll-progress: 0;
}

.scroll-progress-section .report-preview {
  transform: translate3d(0, calc((1 - var(--scroll-progress, 0)) * 32px), 0) scale(calc(0.95 + (var(--scroll-progress, 0) * 0.05)));
}

.scroll-progress-section .offer-card,
.checkout-card {
  transform: scale(calc(0.96 + (var(--scroll-progress, 0) * 0.04)));
}

.process-grid article,
.intro-grid article,
.feature-list article,
details {
  transition-delay: var(--reveal-delay, 0ms);
}

.progress-line {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: calc(var(--page-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  transform-origin: left;
  pointer-events: none;
}

.intro-grid article,
.process-grid article {
  padding: 26px;
}

.intro-grid span,
.process-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 850;
}

.intro-grid h3,
.process-grid h3,
.feature-list h3,
.tracking-list h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.intro-grid p,
.process-grid p,
.feature-list p,
.assessment-copy p,
.lead,
.about-copy p,
.tracking-list p,
.legal p {
  color: var(--muted);
}

.lead {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.reverse {
  grid-template-columns: minmax(350px, 0.82fr) minmax(0, 1.18fr);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--gold);
}

.assessment-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3.2vw, 34px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd2d0;
  border-radius: 6px;
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(183, 154, 98, 0.28);
  border-color: var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 550;
}

.consent input {
  min-height: auto;
  margin-top: 4px;
}

.result-panel {
  padding: 18px;
  border-left: 5px solid var(--gold);
  background: #f5f1e6;
}

.result-panel h3 {
  margin-bottom: 8px;
}

.result-panel strong {
  color: var(--navy);
}

.result-panel .warning {
  color: var(--danger);
}

.offer-card {
  position: sticky;
  top: 92px;
  padding: clamp(24px, 3.5vw, 38px);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.offer-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.price {
  margin: 18px 0 2px;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 850;
  line-height: 1;
}

.price-note {
  color: rgba(255, 255, 255, 0.76);
}

.offer-card .button {
  margin: 24px 0 14px;
  color: var(--navy);
  background: var(--white);
}

.offer-card .button:hover {
  background: #efe6d2;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.tracking-list {
  margin-top: 28px;
  padding: 26px;
  border-left: 5px solid var(--gold);
  background: var(--paper);
}

.report-preview {
  padding: clamp(24px, 3.4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.report-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.report-header span,
.report-preview p {
  color: var(--muted);
}

.report-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(217, 222, 220, 0.72);
}

.report-row.highlight {
  color: var(--navy);
  font-size: 1.15rem;
}

.report-bars {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.report-bars span {
  display: block;
  height: 12px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

details {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.about-copy {
  font-size: 1.08rem;
}

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

.legal h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.two-column-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 64px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.8);
  background: var(--ink);
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

  .nav {
    display: none;
  }

  .header-cta {
    min-width: 96px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(640px, calc(100% - 36px));
    margin: 0 auto;
    padding: 84px 0 76px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(10, 25, 34, 0.92), rgba(17, 42, 58, 0.68));
  }

  .intro-grid,
  .process-grid,
  .checkout-layout,
  .checkout-steps,
  .split,
  .reverse,
  .faq-grid,
  .trust-grid,
  .two-column-text {
    grid-template-columns: 1fr;
  }

  .offer-card {
    position: static;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .hero-metrics,
  .form-row,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-scale,
  .reveal-blur,
  .hero .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .hero-media,
  .scroll-progress-section .report-preview,
  .scroll-progress-section .offer-card,
  .checkout-card {
    transform: none;
  }
}
