:root {
  --navy: #08285a;
  --navy-2: #041c43;
  --orange: #ff7900;
  --orange-2: #ff9a2f;
  --cream: #fff8ef;
  --light: #f5f8fc;
  --text: #10213d;
  --muted: #5d6a7e;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(8, 40, 90, .12);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 9999;
  padding: 12px 18px; background: var(--navy); color: white; border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(8,40,90,.08);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 152px; height: 60px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 700; color: var(--navy); }
.nav-links > a:not(.btn):hover { color: var(--orange); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { width: 26px; height: 3px; background: var(--navy); display: block; margin: 5px; border-radius: 4px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px; border-radius: 16px; font-weight: 800;
  border: 2px solid transparent; transition: .25s ease; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: var(--white); box-shadow: 0 12px 25px rgba(255,121,0,.24); }
.btn-secondary { border-color: rgba(8,40,90,.18); color: var(--navy); background: white; }
.btn-light { background: white; color: var(--navy); }
.btn-small { min-height: 42px; padding: 0 18px; border-radius: 13px; }
.full { width: 100%; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(255,121,0,.12), transparent 27%),
    radial-gradient(circle at 10% 30%, rgba(8,40,90,.08), transparent 24%),
    linear-gradient(180deg, #fff, #fffaf4);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; min-height: 690px; gap: 40px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--orange); text-transform: uppercase; font-weight: 800; letter-spacing: .08em; font-size: .82rem;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 5px; background: currentColor; }
.eyebrow.light { color: #ffd09d; }
h1, h2, h3 { font-family: Fredoka, Inter, sans-serif; margin: 0 0 18px; line-height: 1.07; color: var(--navy); }
h1 { font-size: clamp(3.2rem, 6vw, 5.8rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.4rem, 4vw, 4rem); letter-spacing: -.035em; }
h3 { font-size: 1.3rem; }
.hero-lead { font-size: 1.24rem; color: var(--muted); max-width: 650px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0; }
.trust-row { display: flex; flex-wrap: wrap; gap: 16px 22px; color: var(--navy); font-weight: 700; font-size: .92rem; }
.hero-art { position: relative; min-height: 600px; display: flex; align-items: flex-end; justify-content: center; }
.hero-art > img { position: relative; z-index: 2; width: 620px; filter: drop-shadow(0 22px 28px rgba(8,40,90,.16)); }
.hero-blob {
  position: absolute; inset: 70px 0 20px 70px;
  background: linear-gradient(145deg, var(--navy), #1555a5);
  border-radius: 48% 52% 42% 58% / 58% 41% 59% 42%;
  transform: rotate(-3deg);
}
.floating-card {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.96); padding: 13px 16px; border-radius: 16px;
  box-shadow: var(--shadow); border: 1px solid rgba(8,40,90,.07);
}
.floating-card strong, .floating-card small { display: block; line-height: 1.3; }
.floating-card strong { color: var(--navy); }
.floating-card small { color: var(--muted); }
.mini-icon { font-size: 1.55rem; }
.card-one { left: -20px; top: 160px; }
.card-two { right: -10px; top: 260px; }
.card-three { left: 50px; bottom: 30px; }

.proof-strip { background: var(--navy); color: white; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid div { padding: 26px 28px; border-right: 1px solid rgba(255,255,255,.16); }
.proof-grid div:last-child { border: 0; }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { color: var(--orange-2); font-family: Fredoka; font-size: 1.35rem; }
.proof-grid span { color: rgba(255,255,255,.78); font-size: .9rem; }

.split { display: grid; grid-template-columns: .86fr 1.14fr; gap: 80px; align-items: center; }
.section-copy > p, .section-heading > p { color: var(--muted); font-size: 1.08rem; }
blockquote { margin: 28px 0 0; padding: 22px 24px; background: var(--cream); border-left: 5px solid var(--orange); border-radius: 0 18px 18px 0; color: var(--navy); font-weight: 800; }
.problem-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.soft-card { padding: 26px; background: white; border: 1px solid rgba(8,40,90,.08); border-radius: 22px; box-shadow: 0 12px 35px rgba(8,40,90,.07); }
.soft-card span { font-size: 2rem; }
.soft-card h3 { margin: 10px 0 8px; }
.soft-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.tinted { background: var(--light); }
.section-heading { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-heading .eyebrow { justify-content: center; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  position: relative; padding: 32px 24px; border-radius: 24px; background: white;
  border: 1px solid rgba(8,40,90,.08); box-shadow: 0 10px 35px rgba(8,40,90,.06);
}
.step-number {
  position: absolute; top: -15px; left: 22px; width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; color: white; background: var(--navy); font-weight: 900; border: 5px solid var(--light);
}
.step-icon { margin-top: 6px; font-size: 2.4rem; }
.step p { color: var(--muted); margin-bottom: 0; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { padding: 30px; border-radius: 24px; border: 1px solid rgba(8,40,90,.08); background: white; transition: .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; font-size: 1.8rem; margin-bottom: 22px; }
.blue { background: #e7efff; } .orange { background: #fff0df; } .green { background: #e7f8ed; }
.purple { background: #f2e9ff; } .coral { background: #ffe9e3; } .pink { background: #ffe7ef; }
.service-card p { color: var(--muted); margin: 0; }

.family-section { background: linear-gradient(180deg, #fffaf4, white); }
.family-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.family-visual { min-height: 580px; display: grid; place-items: center; position: relative; }
.family-visual::before {
  content: ""; position: absolute; width: 440px; height: 440px; background: var(--orange);
  border-radius: 48% 52% 55% 45%; opacity: .11;
}
.phone-shell { position: relative; z-index: 2; width: 310px; background: #10131a; padding: 12px; border-radius: 45px; box-shadow: 0 35px 70px rgba(8,40,90,.23); }
.phone-top { width: 95px; height: 22px; background: #10131a; border-radius: 0 0 16px 16px; position: absolute; left: 50%; top: 9px; transform: translateX(-50%); z-index: 5; }
.phone-screen { min-height: 580px; background: white; border-radius: 35px; padding: 46px 22px 24px; }
.phone-screen > img { width: 105px; margin-bottom: 30px; }
.phone-screen p { color: var(--muted); margin: 0; }
.phone-screen h3 { margin-top: 4px; }
.app-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 25px 0; }
.app-grid span { background: var(--light); border-radius: 16px; padding: 18px 10px; text-align: center; font-size: 1.6rem; }
.app-grid small { display: block; color: var(--navy); font-weight: 700; margin-top: 7px; font-size: .78rem; }
.status { padding: 14px; background: #e9f8ef; color: #1d7644; border-radius: 14px; font-weight: 800; font-size: .85rem; }
.check-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 32px; font-weight: 700; color: var(--navy); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: white; background: var(--orange); width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; font-size: .75rem; }
.text-link { color: var(--orange); font-weight: 900; }

.partner-section { background: var(--navy); color: white; overflow: hidden; }
.partner-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.partner-section h2 { color: white; }
.partner-section .section-copy p { color: rgba(255,255,255,.78); }
.partner-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 30px 0; }
.partner-benefits div { padding: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; }
.partner-benefits strong, .partner-benefits span { display: block; }
.partner-benefits strong { color: var(--orange-2); margin-bottom: 4px; }
.partner-benefits span { color: rgba(255,255,255,.72); font-size: .88rem; }
.partner-mock { display: grid; place-items: center; }
.partner-card {
  width: min(420px, 100%); padding: 42px; background: white; color: var(--text);
  border-radius: 30px; transform: rotate(2deg); box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.partner-card .badge { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: var(--orange); color: white; font-weight: 900; font-size: .75rem; }
.partner-card h3 { font-size: 2rem; margin-top: 24px; }
.partner-card ul { padding: 0; list-style: none; display: grid; gap: 13px; color: var(--muted); font-weight: 700; }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote-card { margin: 0; padding: 28px; border-left: 0; border-top: 5px solid var(--orange); border-radius: 22px; background: white; box-shadow: 0 14px 40px rgba(8,40,90,.08); }
.quote-card p { font-size: 1.05rem; }
.quote-card footer { color: var(--muted); font-weight: 600; font-size: .87rem; }
.disclaimer { text-align: center; color: var(--muted); font-size: .78rem; margin-top: 24px; }

.waitlist { padding-top: 30px; }
.waitlist-card {
  display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 70px;
  background: linear-gradient(135deg, var(--navy), #0e4797);
  color: white; padding: 60px; border-radius: 36px; box-shadow: var(--shadow);
}
.waitlist-card h2 { color: white; }
.waitlist-card p { color: rgba(255,255,255,.76); }
.lead-form { background: white; color: var(--text); border-radius: 24px; padding: 28px; display: grid; gap: 14px; }
.lead-form label span { display: block; color: var(--navy); font-weight: 800; margin-bottom: 6px; font-size: .87rem; }
.lead-form input, .lead-form select {
  width: 100%; border: 1px solid #dbe2ec; border-radius: 13px; min-height: 48px; padding: 0 14px; outline: none;
}
.lead-form input:focus, .lead-form select:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,121,0,.12); }
.lead-form small { color: var(--muted); font-size: .72rem; text-align: center; }
.form-message { min-height: 22px; color: #1d7644; font-weight: 700; text-align: center; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.contact-box { display: grid; gap: 15px; }
.contact-action {
  display: flex; align-items: center; gap: 18px; padding: 22px; border-radius: 20px;
  background: var(--light); border: 1px solid rgba(8,40,90,.07); transition: .2s ease;
}
.contact-action:hover { background: var(--cream); transform: translateX(4px); }
.contact-action > span { width: 52px; height: 52px; display: grid; place-items: center; background: white; border-radius: 16px; font-size: 1.5rem; }
.contact-action strong, .contact-action small { display: block; }
.contact-action small { color: var(--muted); }

.site-footer { background: var(--navy-2); color: white; padding: 50px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr .6fr 1fr; gap: 40px; align-items: center; }
.footer-grid img { width: 145px; background: white; border-radius: 12px; padding: 5px; }
.footer-grid p { color: rgba(255,255,255,.84); }
.footer-grid small { color: rgba(255,255,255,.54); }
.footer-links { display: grid; gap: 8px; }
.footer-links a:hover { color: var(--orange-2); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; left: 20px; right: 20px; top: 78px; display: none;
    flex-direction: column; align-items: stretch; padding: 20px; background: white;
    border-radius: 18px; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero-grid, .split, .family-grid, .partner-grid, .waitlist-card, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 50px; }
  .hero-art { min-height: 560px; }
  .split, .family-grid, .partner-grid, .contact-grid { gap: 50px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid div:nth-child(2) { border-right: 0; }
  .steps, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .waitlist-card { padding: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 72px 0; }
  h1 { font-size: 3.3rem; }
  h2 { font-size: 2.6rem; }
  .hero-grid { min-height: auto; }
  .hero-art { min-height: 440px; }
  .hero-art > img { width: 430px; }
  .hero-blob { inset: 50px 0 20px 10px; }
  .floating-card { font-size: .78rem; padding: 9px 11px; }
  .card-one { left: 0; top: 100px; }
  .card-two { right: 0; top: 190px; }
  .card-three { left: 10px; bottom: 10px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .problem-cards, .steps, .service-grid, .partner-benefits { grid-template-columns: 1fr; }
  .phone-shell { width: 285px; }
  .phone-screen { min-height: 535px; }
  .waitlist-card { padding: 30px 22px; border-radius: 26px; }
  .hero-actions .btn { width: 100%; }
}
