:root {
  color-scheme: light;
  --ink: #1b2526;
  --muted: #667271;
  --line: #d9dfdc;
  --surface: #ffffff;
  --paper: #f4f1ea;
  --paper-strong: #e9e2d6;
  --hero-ink: #111817;
  --hero-panel: #17211f;
  --copper: #c9864a;
  --copper-soft: #f1d7be;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --cream: #fffaf1;
  --warn: #b45309;
  --shadow: 0 24px 70px rgba(17, 24, 23, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header,
.site-footer,
.hero,
.section,
.section-band,
.premium-card {
  width: min(1180px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header {
  padding: 22px 0;
}

.site-header.on-dark {
  color: var(--cream);
}

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

.brand {
  font-weight: 850;
  text-decoration: none;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  color: inherit;
  opacity: 0.82;
  text-decoration: none;
}

.premium-hero {
  width: 100%;
  margin-top: -78px;
  padding: 132px max(18px, calc((100vw - 1180px) / 2)) 78px;
  background:
    radial-gradient(circle at 76% 18%, rgba(201, 134, 74, 0.18), transparent 34%),
    linear-gradient(135deg, #0d1312 0%, #17211f 54%, #27342f 100%);
  color: var(--cream);
}

.hero {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.direction-hero {
  min-height: 460px;
  padding-top: 54px;
  padding-bottom: 70px;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(44px, 7.4vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  font-size: clamp(19px, 2vw, 25px);
  color: rgba(255, 250, 241, 0.82);
}

.direction-hero .lead {
  color: rgba(255, 250, 241, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--teal);
  border-radius: 7px;
  background: var(--surface);
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
button[data-payment-button],
.lead-form button[type="submit"] {
  border-color: var(--copper);
  background: var(--copper);
  color: #15110d;
}

.button.ghost {
  border-color: rgba(255, 250, 241, 0.34);
  background: rgba(255, 250, 241, 0.08);
  color: var(--cream);
}

.button.secondary {
  background: var(--teal);
  color: #ffffff;
}

.result-preview {
  display: grid;
  gap: 18px;
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(255, 250, 241, 0.20);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.10);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.result-preview h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.preview-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--copper-soft);
  font-size: 13px;
  font-weight: 850;
}

.preview-topline strong {
  color: rgba(255, 250, 241, 0.78);
  font-size: 12px;
}

.preview-intro {
  margin: 0;
  color: rgba(255, 250, 241, 0.76);
}

.preview-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(10, 16, 15, 0.54);
  border: 1px solid rgba(255, 250, 241, 0.12);
}

.preview-profile {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 250, 241, 0.14);
}

.preview-profile span,
.preview-list span {
  color: var(--copper-soft);
  font-size: 13px;
  font-weight: 800;
}

.preview-profile strong {
  color: #ffffff;
}

.preview-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.preview-list li {
  display: grid;
  gap: 4px;
}

.preview-list b {
  color: #ffffff;
  font-weight: 760;
}

.direction-preview {
  display: grid;
  gap: 18px;
  align-self: center;
  padding: 26px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.13), rgba(255, 250, 241, 0.06)),
    rgba(9, 16, 15, 0.42);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.direction-preview h2 {
  font-size: clamp(27px, 3vw, 40px);
}

.preview-label {
  margin: 0;
  color: var(--copper-soft);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.direction-preview ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.direction-preview li {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 250, 241, 0.14);
}

.direction-preview span {
  color: var(--copper-soft);
  font-size: 13px;
  font-weight: 850;
}

.direction-preview b {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.35;
}

.section {
  padding: 72px 0;
}

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

.section-band,
.premium-card {
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.scenario-grid,
.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.outcome-grid article,
.scenario-grid article,
.deliverable-grid article,
.product-card,
.pricing-card,
.lead-form,
.hero-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.outcome-grid article {
  display: grid;
  gap: 12px;
  min-height: 248px;
  padding: 20px;
}

.scenario-grid article,
.deliverable-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
}

.scenario-grid article {
  border-top: 4px solid var(--copper);
}

.deliverable-grid article {
  border-top: 4px solid var(--teal);
}

.scenario-grid p,
.deliverable-grid p {
  margin: 0;
  color: var(--muted);
}

.outcome-grid span {
  color: var(--copper);
  font-weight: 900;
}

.route-section {
  padding-top: 42px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.route-button {
  width: 100%;
  min-height: 78px;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  background: #ffffff;
}

.route-button[aria-pressed="true"] {
  border-color: var(--hero-ink);
  background: var(--hero-ink);
  color: var(--cream);
}

.recommendation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--hero-ink);
  color: var(--cream);
}

.recommendation-copy {
  max-width: 780px;
}

.recommendation .eyebrow,
.recommendation dt {
  color: var(--copper-soft);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 22px 0 0;
}

.facts div {
  min-width: 160px;
}

.facts dt {
  font-size: 13px;
}

.facts dd {
  margin: 0;
  font-weight: 850;
}

.fulfillment-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fulfillment-steps div {
  padding: 22px;
  border-left: 3px solid var(--copper);
  background: #ffffff;
}

.fulfillment-steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--hero-ink);
  color: var(--cream);
  font-weight: 850;
}

.product-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.pricing-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.product-card span,
.pricing-card strong {
  color: var(--teal-dark);
  font-size: 20px;
}

.product-card a {
  color: var(--teal-dark);
  font-weight: 850;
}

.analysts-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: #10201e;
  color: var(--cream);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 850;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 38px;
}

.text-stack {
  display: grid;
  gap: 10px;
}

.check-list {
  margin: 0;
  padding-left: 20px;
}

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

.form-section {
  max-width: 860px;
}

.form-note {
  max-width: 660px;
  margin: 12px 0 22px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 750;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px;
  color: var(--ink);
  background: #ffffff;
}

.lead-form [aria-invalid="true"] {
  border-color: var(--warn);
  outline: 2px solid rgba(180, 83, 9, 0.18);
}

.form-status {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 850;
}

.hero-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.metric {
  color: var(--copper);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 1040px) {
  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .recommendation,
  .analysts-strip {
    grid-template-columns: 1fr;
  }

  .route-grid,
  .scenario-grid,
  .deliverable-grid,
  .product-grid,
  .pricing-grid,
  .fulfillment-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header.on-dark {
    color: var(--ink);
  }

  .nav-links {
    justify-content: flex-start;
  }

  .premium-hero {
    margin-top: 0;
    padding-top: 36px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  h1 {
    font-size: 46px;
  }

  .lead {
    color: rgba(255, 250, 241, 0.86);
    font-size: 18px;
  }

  .direction-hero .lead {
    color: rgba(255, 250, 241, 0.86);
  }

  .section,
  .section-band,
  .premium-card {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .section-band,
  .premium-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .outcome-grid,
  .route-grid,
  .scenario-grid,
  .deliverable-grid,
  .product-grid,
  .pricing-grid,
  .fulfillment-steps {
    grid-template-columns: 1fr;
  }

  .route-button {
    min-height: 58px;
  }

  .facts {
    display: grid;
    gap: 10px;
  }

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