:root {
  --navy-950: #05142f;
  --navy-900: #071a3a;
  --navy-800: #0d2853;
  --blue-600: #1769d2;
  --blue-500: #2781ef;
  --blue-100: #eaf3ff;
  --ink: #0b1730;
  --muted: #63708a;
  --line: #dce4ef;
  --surface: #f4f7fb;
  --white: #fff;
  --green: #20a36a;
  --shadow: 0 28px 80px rgba(5, 20, 47, .12);
  --radius-lg: 28px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
svg { display: block; fill: currentColor; }
.section-shell { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  width: min(1160px, calc(100% - 48px));
  height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(12, 37, 77, .1);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 780; letter-spacing: -.03em; font-size: 21px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  color: var(--white); background: var(--navy-900);
}
.brand-mark svg { width: 21px; }
.site-header nav { display: flex; gap: 36px; color: #526079; font-size: 14px; font-weight: 620; }
.site-header nav a { transition: color .2s ease; }
.site-header nav a:hover { color: var(--navy-900); }
.header-action {
  padding: 11px 19px; border-radius: 12px; color: var(--white);
  background: var(--navy-900); font-size: 14px; font-weight: 720;
}

.hero { text-align: center; padding: 92px 0 58px; position: relative; }
.hero::before, .hero::after {
  position: absolute; content: ""; z-index: -1; border-radius: 999px; filter: blur(1px);
}
.hero::before { width: 190px; height: 190px; left: -84px; top: 75px; background: #f0f5fb; }
.hero::after { width: 110px; height: 110px; right: 4%; top: 155px; border: 24px solid #f5f8fc; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 14px;
  border: 1px solid var(--line); border-radius: 999px; color: #46556f;
  background: rgba(255,255,255,.8); font-size: 12px; font-weight: 730; letter-spacing: .03em;
  text-transform: uppercase;
}
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(32,163,106,.12); }
.hero h1 {
  max-width: 900px; margin: 27px auto 20px; font-size: clamp(52px, 7.4vw, 94px);
  line-height: .94; letter-spacing: -.065em; font-weight: 790;
}
.hero h1 em { color: var(--blue-600); font-style: normal; }
.hero-copy { max-width: 670px; margin: 0 auto; color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 35px; }
.download-button {
  display: inline-flex; align-items: center; gap: 14px; min-width: 260px; padding: 16px 23px;
  color: var(--white); background: var(--blue-600); border-radius: 17px; text-align: left;
  box-shadow: 0 16px 34px rgba(23,105,210,.25); transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.download-button:hover { transform: translateY(-2px); background: #125fbe; box-shadow: 0 20px 40px rgba(23,105,210,.3); }
.download-button svg { width: 27px; flex: 0 0 auto; }
.download-button span { display: grid; gap: 2px; }
.download-button strong { font-size: 17px; line-height: 1.1; }
.download-button small { color: rgba(255,255,255,.72); font-size: 11px; }
.availability { display: inline-flex; align-items: center; gap: 8px; color: #6e7a90; font-size: 12px; }
.availability span { width: 6px; height: 6px; border-radius: 50%; }
.availability.is-ready span { background: var(--green); }
.availability.is-waiting span { background: #e9a23b; }
.metrics {
  margin-top: 78px; padding: 27px 0; display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.metrics article { display: grid; gap: 5px; position: relative; }
.metrics article + article::before { content: ""; position: absolute; left: 0; height: 100%; width: 1px; background: var(--line); }
.metrics strong { color: var(--navy-900); font-size: 26px; letter-spacing: -.04em; }
.metrics span { color: var(--muted); font-size: 13px; }

.trust-strip {
  min-height: 64px; padding: 18px 24px; display: flex; align-items: center; justify-content: center; gap: 31px;
  color: #617087; background: var(--surface); font-size: 12px; font-weight: 730; letter-spacing: .04em; text-transform: uppercase;
}
.trust-strip i { width: 4px; height: 4px; border-radius: 50%; background: #b2bdcb; }
.possibilities { padding: 112px 0 120px; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 80px; margin-bottom: 48px; }
.kicker { margin: 0 0 14px; color: var(--blue-600); text-transform: uppercase; letter-spacing: .11em; font-weight: 770; font-size: 12px; }
.section-heading h2, .final-cta h2 { margin: 0; font-size: clamp(36px, 5vw, 58px); line-height: 1.03; letter-spacing: -.05em; }
.section-heading > p, .final-cta > div > p:last-child { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature-card {
  min-height: 330px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  position: relative; overflow: hidden; background: var(--white); transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card--wide { grid-column: 1 / -1; min-height: 280px; display: grid; grid-template-columns: auto minmax(0, 560px) 1fr; align-items: center; gap: 30px; background: var(--surface); }
.feature-card--accent { color: var(--white); border-color: var(--navy-900); background: var(--navy-900); }
.feature-icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; color: var(--blue-600); background: var(--blue-100); }
.feature-icon svg { width: 29px; }
.feature-card > .feature-icon { margin-bottom: 43px; }
.feature-card--wide > .feature-icon { margin: 0; }
.feature-card--accent .feature-icon { color: var(--white); background: rgba(255,255,255,.1); }
.feature-card span { color: var(--blue-600); font-size: 11px; font-weight: 790; text-transform: uppercase; letter-spacing: .1em; }
.feature-card--accent span { color: #83b9ff; }
.feature-card h3 { margin: 9px 0 11px; font-size: 27px; letter-spacing: -.035em; }
.feature-card p { margin: 0; max-width: 500px; color: var(--muted); line-height: 1.65; }
.feature-card--accent p { color: #b8c5da; }
.card-number { position: absolute; right: 28px; top: 26px; color: #c8d1dd; font-size: 12px; font-weight: 760; }
.feature-card--accent .card-number { color: #607494; }

.steps-section { padding: 105px 0 110px; color: var(--white); background: var(--navy-950); }
.section-heading--light .kicker { color: #73afff; }
.section-heading--light > p { color: #9aaac2; }
.steps { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.13); }
.steps li { min-height: 205px; padding: 30px 31px; display: flex; gap: 22px; border-right: 1px solid rgba(255,255,255,.13); }
.steps li:first-child { border-left: 1px solid rgba(255,255,255,.13); }
.steps b { color: #6faeff; font-size: 12px; }
.steps h3 { margin: 0 0 12px; font-size: 22px; }
.steps p { margin: 0; color: #9aaac2; line-height: 1.6; }

.final-cta { padding: 105px 0; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 70px; }
.final-cta > div { max-width: 690px; }
.final-cta > div > p:last-child { margin-top: 20px; max-width: 580px; }
.download-button--dark { background: var(--navy-900); box-shadow: 0 16px 34px rgba(7,26,58,.2); }
.download-button--dark:hover { background: var(--navy-800); }

footer {
  width: min(1160px, calc(100% - 48px)); margin-inline: auto; padding: 30px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  border-top: 1px solid var(--line); color: #738096; font-size: 12px;
}
.brand--footer { color: var(--ink); font-size: 17px; }
.brand--footer .brand-mark { width: 29px; height: 29px; border-radius: 9px; color: white; font-size: 13px; }
.toast {
  position: fixed; z-index: 20; left: 50%; bottom: 24px; transform: translate(-50%, 30px);
  padding: 13px 18px; border-radius: 12px; color: var(--white); background: var(--navy-950);
  box-shadow: var(--shadow); font-size: 13px; opacity: 0; pointer-events: none; transition: .25s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.status-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: var(--surface); }
.status-card { max-width: 560px; padding: 54px; text-align: center; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow); }
.status-icon { width: 66px; height: 66px; margin: 0 auto 25px; display: grid; place-items: center; border-radius: 20px; color: var(--blue-600); background: var(--blue-100); font-size: 30px; }
.status-card h1 { margin: 0 0 15px; font-size: 36px; letter-spacing: -.045em; }
.status-card > p:not(.kicker) { margin: 0 0 26px; color: var(--muted); line-height: 1.65; }
.simple-link { color: var(--blue-600); font-weight: 720; }

@media (max-width: 780px) {
  .section-shell, .site-header, footer { width: min(100% - 32px, 1160px); }
  .site-header { height: 70px; }
  .site-header nav { display: none; }
  .header-action { padding: 10px 14px; }
  .hero { padding: 70px 0 42px; }
  .hero::before { left: -130px; }
  .hero::after { right: -50px; }
  .hero h1 { margin-top: 24px; font-size: clamp(48px, 15vw, 70px); }
  .hero-copy { font-size: 16px; }
  .metrics { margin-top: 58px; }
  .metrics strong { font-size: 21px; }
  .metrics span { padding: 0 6px; font-size: 11px; }
  .trust-strip { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .possibilities { padding: 82px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: auto; min-height: 330px; display: block; }
  .feature-card--wide > .feature-icon { margin-bottom: 43px; }
  .steps-section { padding: 80px 0; }
  .steps { grid-template-columns: 1fr; }
  .steps li, .steps li:first-child { min-height: auto; border-left: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
  .final-cta { padding: 82px 0; grid-template-columns: 1fr; gap: 34px; }
  .final-cta .download-button { width: 100%; justify-content: center; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 430px) {
  .brand { font-size: 18px; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { padding-top: 54px; }
  .eyebrow { max-width: 100%; font-size: 10px; }
  .hero h1 { font-size: 48px; }
  .download-button { width: 100%; justify-content: center; }
  .metrics { grid-template-columns: 1fr; gap: 20px; }
  .metrics article + article::before { display: none; }
  .feature-card { padding: 26px; }
  .status-card { padding: 38px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
