:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --bg-soft: #f0f4f8;
  --surface: #ffffff;
  --surface-muted: #f7f8fb;
  --ink: #0b1324;
  --ink-soft: #5d6678;
  --navy: #0c2f57;
  --navy-strong: #081f3a;
  --gold: #c89d3d;
  --green: #10b981;
  --green-deep: #129c74;
  --red: #d84343;
  --blue: #1841d8;
  --border: #dfe5ec;
  --border-strong: #cfd7e2;
  --shadow: 0 18px 50px rgba(16, 35, 67, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top center, rgba(12, 47, 87, 0.05), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 2rem;
}

.brand {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.secondary-link {
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.secondary-link:hover {
  color: var(--ink);
}

main {
  padding-bottom: 4rem;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

.eyebrow,
.section-kicker,
.card-label,
.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}

.hero-grid,
.two-column,
.calculator-layout,
.dark-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 2rem;
  align-items: start;
}

.hero-copy h1,
.page-intro h1,
.center-intro h1 {
  margin-top: 0.8rem;
  font-size: clamp(2.8rem, 6vw, 4.35rem);
  line-height: 0.98;
}

.page-intro {
  padding: 2rem 0 3rem;
}

.how-intro {
  max-width: 940px;
}

.center-intro {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 2rem;
}

.center-intro h2,
.section-block h2,
.dark-copy h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.08;
}

.lede,
.section-copy,
.feature-list,
.faq-list p,
.muted-center,
.card-footnote,
.site-footer p {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.navy {
  background: var(--navy);
  color: #fff;
}

.button.navy:hover {
  background: var(--navy-strong);
}

.button.gold {
  background: var(--gold);
  color: #fff;
}

.button.ghost {
  background: #fff;
  border-color: var(--border-strong);
  color: var(--ink);
}

.button.white {
  background: #fff;
  color: var(--navy);
}

.full-width {
  width: 100%;
}

.hero-grid {
  padding-top: 0.5rem;
}

.hero-media {
  margin-top: 2rem;
}

.video-card,
.hero-form-card,
.graph-card,
.benefit-card,
.stat-chart-card,
.metric-card,
.decision-card,
.compare-card,
.platform-panel .panel-shell,
.flow-step,
.ebook-card,
.cta-panel,
.final-cta,
.logo-strip,
.badge-row,
.comparison-callout,
.site-footer,
.benefits-grid.two-up .benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.video-card,
.hero-form-card,
.graph-card,
.stat-chart-card,
.metric-card,
.decision-card,
.compare-card,
.flow-step,
.ebook-card,
.cta-panel,
.final-cta,
.site-footer {
  padding: 1.5rem;
}

.video-badge {
  display: inline-block;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #201a17;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.video-scene {
  position: relative;
  margin-top: 1rem;
  min-height: 230px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #330a0a 0%, #6e1010 46%, #2f5243 100%);
  overflow: hidden;
}

.video-alert,
.video-tag {
  position: absolute;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
}

.video-alert {
  top: 1rem;
  left: 1rem;
  color: var(--red);
}

.video-tag.success {
  right: 1rem;
  bottom: 1rem;
  color: var(--green-deep);
}

.video-tag.danger {
  left: 1rem;
  bottom: 1rem;
  color: var(--red);
}

.video-person {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 140px;
  height: 180px;
  transform: translateX(-50%);
  border-radius: 90px 90px 0 0;
  background: linear-gradient(180deg, #d9d9d9 0%, #8f8f8f 100%);
  box-shadow: 0 -20px 50px rgba(255, 255, 255, 0.15);
}

.hero-form-card {
  background: var(--navy);
  color: #fff;
}

.hero-form-card h2 {
  font-size: 1.5rem;
  line-height: 1.15;
}

.hero-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.hero-form input,
.calculator-form-card input {
  width: 100%;
  min-height: 50px;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: #fff;
}

.card-footnote {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.logo-strip {
  margin-top: 2rem;
  padding: 1.1rem 1.5rem;
  text-align: center;
}

.logo-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem 2.2rem;
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.section-block {
  padding: 4.5rem 0 0;
}

.centered-block {
  text-align: center;
}

.narrow-copy {
  max-width: 760px;
  margin: 1rem auto 0;
}

.graph-card {
  margin-top: 2rem;
}

.graph-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.graph-meta strong {
  color: var(--blue);
  font-size: 1.65rem;
}

.growth-line {
  margin-top: 1.75rem;
  height: 220px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(24, 65, 216, 0.05), rgba(24, 65, 216, 0.01)),
    linear-gradient(90deg, rgba(12, 47, 87, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 47, 87, 0.08) 1px, transparent 1px);
  background-size: auto, 80px 80px, 80px 80px;
  position: relative;
  overflow: hidden;
}

.growth-line::after {
  content: "";
  position: absolute;
  inset: auto 5% 16% 5%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1854ff 0%, #8b67ff 50%, #ff4d4d 100%);
  transform-origin: left center;
  transform: skewY(-8deg) scaleY(1);
  box-shadow: 0 0 0 10px rgba(24, 84, 255, 0.05);
}

.benefits-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.benefit-card {
  padding: 1.2rem;
  text-align: left;
}

.benefit-card strong {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--navy);
}

.benefit-card p {
  color: var(--ink-soft);
}

.story-block,
.proof-block,
.comparison-callout,
.badge-row,
.lower-cta {
  align-items: center;
}

.icon-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.icon-cloud span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--ink-soft);
  font-weight: 700;
  box-shadow: var(--shadow);
}

.stacked-bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
  min-height: 260px;
}

.stack-group {
  display: grid;
  gap: 0.4rem;
}

.stack {
  display: block;
  border-radius: 12px 12px 0 0;
}

.stack.red {
  height: 90px;
  background: linear-gradient(180deg, #ff756c 0%, #e94747 100%);
}

.stack.red.short {
  height: 65px;
}

.stack.blue {
  height: 120px;
  background: linear-gradient(180deg, #1d3adb 0%, #0c2f57 100%);
}

.stack.blue.tall {
  height: 145px;
}

.calculator-layout {
  margin-top: 2rem;
}

.calculator-layout.embedded {
  margin-top: 1.6rem;
}

.metric-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.metric-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.calculator-preview {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(220px, 1fr);
  gap: 1.5rem;
  margin-top: 1.6rem;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 1.25rem;
  min-height: 240px;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.bar-column {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  width: 100%;
}

.bar {
  width: 72px;
  border-radius: 16px 16px 0 0;
}

.bar.red {
  background: linear-gradient(180deg, #ff2d3a 0%, #ae151b 100%);
}

.bar.green {
  background: linear-gradient(180deg, #21ca97 0%, #188660 100%);
}

.savings-stats {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.savings-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.savings-row span {
  color: var(--green-deep);
  font-weight: 700;
}

.calculator-form-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.calculator-form-card form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.55rem;
  color: var(--ink);
  font-weight: 600;
}

.muted-center {
  text-align: center;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.status-message {
  min-height: 1.4rem;
}

.status-message[data-state="success"] {
  color: var(--green-deep);
}

.status-message[data-state="error"] {
  color: var(--red);
}

.badge-row {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2rem;
}

.human-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8b15e 0%, #b17b17 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.compare-table {
  display: grid;
  gap: 1rem;
}

.compare-table div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.decision-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
}

.decision-card.good {
  border-top: 4px solid var(--green);
}

.decision-card.bad {
  border-top: 4px solid var(--red);
}

.cta-panel {
  display: grid;
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.faq-list details {
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 0.9rem;
}

.final-cta {
  text-align: center;
  margin-top: 4.5rem;
  padding: 2.5rem 1.5rem;
}

.mini-proof {
  margin-top: 1rem;
  color: var(--ink-soft);
}

.platform-panel .panel-shell {
  padding: 2rem;
  background: linear-gradient(180deg, #f5f8fc 0%, #f7f8fb 100%);
}

.comparison-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.compare-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.compare-card.muted {
  background: #fff;
}

.compare-card.active {
  background: linear-gradient(180deg, #ffffff 0%, #f5fbf7 100%);
  border-top: 4px solid var(--green);
}

.flow-block .center-title {
  text-align: center;
}

.flow-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.flow-step {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 220px;
  gap: 1rem;
  align-items: center;
}

.step-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #ecf2ff;
  color: var(--blue);
  font-weight: 700;
}

.flow-step h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.flow-step p {
  color: var(--ink-soft);
}

.flow-visual {
  min-height: 120px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}

.request-list {
  background:
    linear-gradient(180deg, #0c2f57 16px, transparent 16px),
    linear-gradient(180deg, transparent 40px, #f7f8fb 40px),
    linear-gradient(180deg, transparent 70px, #f7f8fb 70px),
    linear-gradient(180deg, transparent 100px, #f7f8fb 100px);
}

.score-card {
  position: relative;
}

.score-card::after {
  content: "99.2";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--red);
  font-size: 2rem;
  font-weight: 700;
}

.threshold-curve {
  position: relative;
}

.threshold-curve::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 25%;
  height: 3px;
  background: linear-gradient(90deg, #4b8dff 0%, #0c2f57 100%);
  border-radius: 999px;
  transform: skewY(-12deg);
}

.block-card {
  position: relative;
}

.block-card::after {
  content: "BLOCK";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: #ebfff5;
  color: var(--green-deep);
  font-size: 0.74rem;
  font-weight: 700;
}

.dark-band {
  margin-top: 4.5rem;
  margin-inline: calc(50% - 50vw);
  padding: 4rem calc((100vw - min(calc(100% - 2rem), var(--max-width))) / 2 + 1rem);
  background: var(--navy);
  color: #fff;
}

.dark-copy .section-kicker {
  color: #cfe1ff;
}

.dark-copy .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.ebook-card {
  min-height: 240px;
  transform: rotate(-4deg);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 0 2rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: start;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .calculator-layout,
  .dark-band-grid,
  .badge-row,
  .flow-step {
    grid-template-columns: 1fr;
  }

  .four-up,
  .three-up,
  .two-up,
  .decision-grid,
  .comparison-panel,
  .calculator-preview {
    grid-template-columns: 1fr;
  }
}

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

  .page-shell {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .hero-copy h1,
  .page-intro h1,
  .center-intro h1,
  .center-intro h2,
  .section-block h2,
  .dark-copy h2 {
    font-size: clamp(2rem, 12vw, 3.15rem);
  }

  .logo-row {
    gap: 0.8rem 1.2rem;
  }

  .bar-chart {
    justify-content: center;
  }

  .badge-row {
    grid-template-columns: 1fr;
  }

  .dark-band {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
