:root {
  --hc-navy: #0f1c29;
  --hc-blue: #2861f9;
  --hc-blue-2: #4769f4;
  --hc-aqua: #5ac8e8;
  --hc-green: #32be7e;
  --hc-lime: #7bd36e;
  --hc-teal: #39a37b;
  --hc-ink: #16212f;
  --hc-muted: #5c6978;
  --hc-soft: #eef8f5;
  --hc-blue-soft: #eff4ff;
  --hc-cream: #f8faf6;
  --hc-white: #ffffff;
  --hc-line: #e3ebe6;
  --hc-shadow: 0 30px 80px rgba(15, 28, 41, .12);
  --hc-radius: 28px;
  --hc-radius-sm: 18px;
  --hc-max: 1180px;
  --font-head: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--hc-ink);
  background: var(--hc-white);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(40, 97, 249, .35); outline-offset: 3px; }
ul { list-style: none; margin: 0; padding: 0; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--hc-navy); color: white; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--hc-teal); font-family: var(--font-head); font-size: .78rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; border-radius: 99px; background: linear-gradient(90deg, var(--hc-blue), var(--hc-green)); }

h1, h2, h3 { font-family: var(--font-head); color: var(--hc-navy); line-height: 1.1; letter-spacing: -.03em; margin-top: 0; font-weight: 800; }
h1 { font-size: clamp(2.6rem, 6vw, 4.9rem); margin-bottom: 24px; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.1rem); margin-bottom: 18px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; letter-spacing: -.01em; }
p { margin: 0 0 18px; }
.lead { color: var(--hc-muted); font-size: clamp(1.02rem, 1.6vw, 1.2rem); max-width: 640px; }

.section { padding: 100px 0; }
.section-head { max-width: 700px; margin-bottom: 56px; }
.section-head.center { max-width: 660px; margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .lead { margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 26px; border-radius: 999px;
  border: 1px solid transparent; text-decoration: none; font-family: var(--font-head); font-weight: 700; font-size: .97rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-sm { min-height: 44px; padding: 0 20px; font-size: .88rem; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--hc-blue), var(--hc-teal)); box-shadow: 0 16px 34px rgba(40, 97, 249, .28); }
.btn-secondary { color: var(--hc-navy); border-color: rgba(15, 28, 41, .16); background: var(--hc-white); }
.btn-secondary:hover { border-color: var(--hc-blue); }
.arrow { width: 17px; height: 17px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220,230,233,.7);
}
.nav { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; width: min(280px, 46vw); text-decoration: none; }
.brand img { width: 100%; height: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; font-family: var(--font-head); font-size: .93rem; font-weight: 700; }
.nav-links a { text-decoration: none; }
.nav-links a:not(.btn) { position: relative; padding-bottom: 2px; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 2px; background: var(--hc-blue); transition: right .2s ease; }
.nav-links a:not(.btn):hover { color: var(--hc-blue); }
.nav-links a:not(.btn):hover::after { right: 0; }

/* HERO */
.hero {
  position: relative; overflow: hidden;
  padding: 76px 0 0;
  background: var(--hc-cream);
}
.hero-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(760px 520px at 88% -6%, rgba(90,200,232,.30), transparent 62%),
    radial-gradient(620px 480px at 4% 34%, rgba(50,190,126,.20), transparent 60%),
    radial-gradient(500px 420px at 62% 96%, rgba(40,97,249,.14), transparent 60%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; padding-bottom: 70px; }
.hero-copy { max-width: 620px; }
.hero h1 span { color: var(--hc-blue); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 22px; color: var(--hc-muted); font-family: var(--font-head); font-size: .9rem; font-weight: 700; }
.hero-proof li { display: inline-flex; align-items: center; gap: 8px; }
.check { display: inline-grid; place-items: center; width: 22px; height: 22px; flex: none; border-radius: 50%; color: white; background: var(--hc-green); font-size: .72rem; }

.visual-wrap { position: relative; min-height: 500px; display: grid; place-items: center; }
.app-frame {
  position: relative; width: min(460px, 100%); aspect-ratio: 16 / 15;
  overflow: hidden; border-radius: 32px;
  background: var(--hc-white); box-shadow: var(--hc-shadow);
  border: 1px solid rgba(15,28,41,.06);
}
.app-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.floating-card {
  position: absolute; z-index: 2; width: 224px; padding: 18px 18px 16px;
  border-radius: 20px; background: rgba(255,255,255,.96); box-shadow: 0 22px 54px rgba(15,28,41,.16);
  border: 1px solid rgba(255,255,255,.6);
}
.floating-card strong { display: block; font-family: var(--font-head); color: var(--hc-navy); margin-bottom: 4px; font-size: .98rem; }
.floating-card small { color: var(--hc-muted); line-height: 1.45; font-size: .85rem; }
.float-one { left: -18px; bottom: 30px; }
.float-two { right: -20px; top: 24px; }
.mini-icon { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 10px; border-radius: 12px; background: var(--hc-soft); color: var(--hc-green); font-weight: 800; }
.mini-icon-alt { background: var(--hc-blue-soft); color: var(--hc-blue); font-size: .72rem; }

.stats-wrap {
  position: relative; z-index: 5;
  margin-top: -56px;
}
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  border-radius: var(--hc-radius); overflow: hidden;
  background: rgba(15,28,41,.08);
  box-shadow: 0 26px 60px rgba(15,28,41,.14);
}
.stat {
  padding: 34px 38px; background: var(--hc-navy); color: rgba(255,255,255,.72);
  display: flex; flex-direction: column; gap: 8px;
}
.stat:nth-child(2) { background: #142338; }
.stat:nth-child(3) { background: #182a44; }
.stat strong { font-family: var(--font-head); color: white; font-size: clamp(2rem, 3.6vw, 2.75rem); line-height: 1; letter-spacing: -.04em; }
.stat span { font-size: .92rem; line-height: 1.5; }
.stat a { color: #8fc4ff; text-underline-offset: 3px; }

/* WHY IT MATTERS */
.challenge-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.challenge-list { display: grid; gap: 14px; }
.challenge-item {
  position: relative; display: grid; grid-template-columns: 50px 1fr; gap: 18px;
  padding: 26px 26px 26px 30px; border-radius: var(--hc-radius-sm); background: var(--hc-cream);
  border-left: 3px solid var(--hc-blue);
}
.challenge-item:nth-child(2) { border-left-color: var(--hc-green); }
.challenge-item:nth-child(3) { border-left-color: var(--hc-aqua); }
.challenge-num {
  position: absolute; right: 24px; top: 20px; font-family: var(--font-head); font-weight: 800;
  color: rgba(15,28,41,.10); font-size: 2.1rem; letter-spacing: -.03em;
}
.icon-box { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px; background: var(--hc-blue-soft); color: var(--hc-blue); flex: none; }
.challenge-item p { color: var(--hc-muted); margin: 0; font-size: .95rem; }

/* PROGRAM */
.program { background: var(--hc-cream); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  position: relative; min-height: 250px; padding: 32px 28px 28px; border-radius: 22px; background: white;
  border: 1px solid var(--hc-line); box-shadow: 0 14px 36px rgba(15,28,41,.05); overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card-top { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--hc-blue), var(--hc-aqua)); }
.card:nth-child(2) .card-top, .card:nth-child(5) .card-top { background: linear-gradient(90deg, var(--hc-green), var(--hc-lime)); }
.card:nth-child(3) .card-top, .card:nth-child(6) .card-top { background: linear-gradient(90deg, var(--hc-aqua), var(--hc-teal)); }
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(15,28,41,.10); }
.icon-num { width: 50px; height: 50px; border-radius: 15px; font-family: var(--font-head); font-weight: 800; font-size: 1rem; margin-bottom: 22px; }
.card p { color: var(--hc-muted); font-size: .95rem; margin: 0; }
.card:nth-child(2) .icon-num, .card:nth-child(5) .icon-num { background: var(--hc-soft); color: var(--hc-green); }
.card:nth-child(3) .icon-num, .card:nth-child(6) .icon-num { background: #eefbff; color: #269fc6; }

/* BENEFITS SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.benefits-graphic-card {
  margin: 0; border-radius: var(--hc-radius); overflow: hidden; background: white;
  border: 1px solid var(--hc-line); box-shadow: var(--hc-shadow);
}
.benefits-graphic-card img { width: 100%; height: auto; display: block; }
.feature-list { display: grid; gap: 20px; margin: 30px 0 34px; }
.feature { display: grid; grid-template-columns: 32px 1fr; gap: 14px; }
.feature .check { margin-top: 2px; }
.feature strong { display: block; font-family: var(--font-head); color: var(--hc-navy); margin-bottom: 2px; }
.feature span { color: var(--hc-muted); font-size: .95rem; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.step {
  position: relative; padding: 0 28px 0 0;
}
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 24px; left: calc(100% - 14px); width: calc(100% - 20px);
  border-top: 2px dashed rgba(40,97,249,.25);
}
.step-num {
  display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 22px;
  border-radius: 50%; font-family: var(--font-head); font-weight: 800; font-size: .95rem;
  background: var(--hc-navy); color: white;
}
.step:nth-child(2) .step-num { background: var(--hc-teal); }
.step:nth-child(3) .step-num { background: var(--hc-blue); }
.step p { color: var(--hc-muted); margin: 0; }

/* TRUST */
.trust-section { background: var(--hc-white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-point {
  padding: 30px 24px; border-radius: var(--hc-radius-sm); background: var(--hc-cream);
  border: 1px solid var(--hc-line);
}
.trust-point .check { width: 36px; height: 36px; margin-bottom: 16px; background: var(--hc-navy); color: #77e0ac; }
.trust-point strong { display: block; font-family: var(--font-head); color: var(--hc-navy); margin-bottom: 6px; }
.trust-point span { color: var(--hc-muted); font-size: .9rem; }

/* CTA */
.cta-section { padding-bottom: 110px; }
.cta-shell {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr .82fr; gap: 56px;
  padding: 66px; border-radius: 34px; background: linear-gradient(135deg, var(--hc-navy) 0%, #1c3a63 55%, #16523f 130%); color: white;
  box-shadow: 0 30px 80px rgba(15,28,41,.28);
}
.cta-shell::after {
  content: ""; position: absolute; width: 380px; height: 380px; right: -160px; bottom: -180px;
  border-radius: 50%; background: radial-gradient(circle, rgba(90,200,232,.35), transparent 70%);
}
.cta-shell::before {
  content: ""; position: absolute; width: 240px; height: 240px; left: -100px; top: -110px;
  border-radius: 50%; background: radial-gradient(circle, rgba(50,190,126,.28), transparent 70%);
}
.cta-shell h2 { color: white; }
.cta-shell .eyebrow { color: #a9e6c9; }
.cta-shell .eyebrow::before { background: #a9e6c9; }
.cta-copy { position: relative; z-index: 2; }
.cta-copy p { color: rgba(255,255,255,.82); max-width: 560px; }
.cta-emphasis { font-family: var(--font-head); font-weight: 800; font-size: 1.08rem; color: white; }
.form-card { position: relative; z-index: 2; padding: 32px; border-radius: 24px; background: white; color: var(--hc-ink); box-shadow: 0 25px 55px rgba(15,28,41,.2); }
.form-card h3 { font-size: 1.4rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--hc-navy); font-family: var(--font-head); font-size: .8rem; font-weight: 700; }
input, select {
  width: 100%; min-height: 48px; padding: 0 14px; border: 1px solid #d5dfe0; border-radius: 12px; background: var(--hc-cream); color: var(--hc-ink);
}
input:focus, select:focus { border-color: var(--hc-blue); background: white; }
.form-card .btn { width: 100%; margin-top: 18px; cursor: pointer; }
.fine-print { color: #7d8894; font-size: .74rem; line-height: 1.5; margin-top: 14px; margin-bottom: 0; }

footer { padding: 40px 0; background: var(--hc-navy); color: rgba(255,255,255,.62); font-size: .84rem; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.footer-logo-wrap { display: inline-flex; padding: 12px 14px; margin-bottom: 18px; border-radius: 14px; background: #fff; }
.footer-brand { width: 250px; height: auto; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; font-family: var(--font-head); font-weight: 600; }
.footer-links a { text-decoration: none; text-underline-offset: 4px; }
.footer-links a:hover { text-decoration: underline; }
.sources { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .74rem; }

@media (max-width: 980px) {
  .nav-links a:not(.btn) { display: none; }
  .hero-grid, .challenge-grid, .split, .cta-shell { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 60px; }
  .visual-wrap { min-height: 460px; max-width: 560px; margin: 0 auto; }
  .stats-wrap { margin-top: 0; }
  .stats { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .step:not(:last-child)::after { display: none; }
  .challenge-grid { gap: 46px; }
  .split { gap: 48px; }
  .cta-shell { padding: 52px; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--hc-max)); }
  .site-header .nav { height: 70px; }
  .nav-links .btn { min-height: 44px; padding-inline: 16px; font-size: .82rem; }
  .section { padding: 74px 0; }
  .hero { padding: 52px 0 0; }
  .hero h1 { font-size: clamp(2.5rem, 13vw, 3.6rem); }
  .hero-actions .btn { width: 100%; }
  .visual-wrap { min-height: 380px; }
  .app-frame { border-radius: 24px; }
  .floating-card { width: 180px; padding: 14px; }
  .float-one { left: -6px; bottom: 8px; }
  .float-two { right: -6px; top: 10px; }
  .stat { padding: 26px 26px; }
  .cards, .trust-grid { grid-template-columns: 1fr; }
  .challenge-item { grid-template-columns: 42px 1fr; padding: 20px 20px 20px 22px; }
  .icon-box { width: 42px; height: 42px; }
  .challenge-num { display: none; }
  .cta-shell { padding: 32px 24px; border-radius: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
