/* ============================================================
   Brain Forge — site styles
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Nunito+Sans:opsz,wght@6..12,400;6..12,500;6..12,600;6..12,700&family=Baloo+2:wght@600;700;800&display=swap');

:root {
  --blue:       #004AAD;
  --blue-2:     #0A63D6;
  --blue-bright:#1F86F0;
  --navy:       #06224F;
  --navy-2:     #0A2E63;
  --gold:       #FDB715;
  --gold-light: #FFC15B;
  --gold-deep:  #E89A00;

  --ink:   #142136;
  --slate: #5B6B86;
  --mist:  #8A99B5;
  --line:  #E4EAF3;
  --bg:    #F4F7FC;
  --bg-2:  #EEF3FA;
  --white: #FFFFFF;

  --m-orange: #F2792B;
  --m-blue:   #1F7AE0;
  --m-green:  #43B05C;
  --m-purple: #7E57C2;
  --m-teal:   #23A6B0;
  --m-gold:   #FDB715;

  --f-display: 'Poppins', system-ui, sans-serif;
  --f-body: 'Nunito Sans', system-ui, sans-serif;
  --f-word: 'Baloo 2', system-ui, sans-serif;

  --maxw: 1200px;
  --radius: 16px;
  --shadow-sm: 0 6px 18px -10px rgba(6,34,79,.25);
  --shadow-md: 0 18px 44px -18px rgba(6,34,79,.36);
  --shadow-lg: 0 34px 80px -28px rgba(6,34,79,.46);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--white); color: var(--ink);
  font-family: var(--f-body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; margin: 0; }
p { margin: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }

/* ---------- logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo img { width: 38px; height: 30px; }
.logo .word { font-family: var(--f-word); font-weight: 800; font-size: 27px; line-height: 1; letter-spacing: -0.01em; }
.logo .word .b { color: var(--gold); }
.logo .word .f { color: var(--blue); }
.logo.ondark .word .f { color: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-display); font-weight: 600; font-size: 16px;
  padding: 0 26px; height: 54px; border-radius: 12px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 12px 26px -12px rgba(253,183,21,.75); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(253,183,21,.9); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 12px 26px -12px rgba(0,74,173,.65); }
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(0,74,173,.8); }
.btn-ghost { background: transparent; color: var(--blue); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--blue-2); background: var(--bg); }
.btn-ghost.ondark { color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost.ondark:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s, background .25s;
}
.nav.scrolled { box-shadow: 0 8px 30px -16px rgba(6,34,79,.3); border-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a:not(.btn) { font-family: var(--f-display); font-weight: 500; font-size: 15.5px; color: var(--slate); transition: color .2s; }
.nav__links a:not(.btn):hover { color: var(--blue); }
.nav__cta { height: 46px; padding: 0 22px; font-size: 15px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2.4px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav__toggle span + span { margin-top: 5px; }
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-display); font-weight: 700; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--blue);
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow.center::before { display: none; }
.eyebrow.ondark { color: var(--gold-light); }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-display); font-weight: 600; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.badge.light { background: #fff; color: var(--blue); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.badge.dark { background: rgba(253,183,21,.12); color: var(--gold-light); border: 1px solid rgba(253,183,21,.32); }
@media (prefers-reduced-motion: no-preference) {
  .badge .dot { animation: pulse 2.4s ease-out infinite; }
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(253,183,21,.55);} 70% { box-shadow: 0 0 0 9px rgba(253,183,21,0);} 100% { box-shadow: 0 0 0 0 rgba(253,183,21,0);} }

.h-head { max-width: 720px; }
.h-head.center { margin: 0 auto; text-align: center; }
.h-head h2 { font-size: clamp(30px, 4.4vw, 46px); color: var(--blue); margin: 16px 0 0; }
.h-head.ondark h2 { color: #fff; }
.h-head .lead { font-size: 18.5px; color: var(--slate); margin: 18px 0 0; line-height: 1.6; }
.h-head.ondark .lead { color: rgba(255,255,255,.74); }

/* ---------- early-access form ---------- */
.eaform { display: flex; gap: 10px; flex-wrap: wrap; max-width: 540px; }
.eaform.center { margin: 0 auto; justify-content: center; }
.field {
  display: flex; align-items: center; background: #fff;
  border: 1.5px solid var(--line); border-radius: 12px; height: 56px; padding: 0 16px;
  transition: border-color .2s, box-shadow .2s; flex: 1 1 220px;
}
.field.sel { flex: 1 1 150px; position: relative; }
.field:focus-within { border-color: var(--blue-2); box-shadow: 0 0 0 4px rgba(10,99,214,.12); }
.field input, .field select {
  border: 0; outline: 0; background: transparent; width: 100%; height: 100%;
  font-family: var(--f-body); font-size: 16px; color: var(--ink);
}
.field select { appearance: none; cursor: pointer; padding-right: 22px; color: var(--slate); }
.field.sel::after { content: ''; position: absolute; right: 16px; pointer-events: none;
  width: 8px; height: 8px; border-right: 2px solid var(--slate); border-bottom: 2px solid var(--slate);
  transform: rotate(45deg) translateY(-2px); }
.field input::placeholder { color: var(--mist); }
.eaform .btn { flex: 0 0 auto; height: 56px; }
.eaform.ondark .field { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); }
.eaform.ondark .field input, .eaform.ondark .field select { color: #fff; }
.eaform.ondark .field input::placeholder, .eaform.ondark .field select { color: rgba(255,255,255,.55); }
.eaform.ondark .field.sel::after { border-color: rgba(255,255,255,.6); }
.eaform.ondark .field select option { color: #142136; }
.eaform.ondark .field:focus-within { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(253,183,21,.18); }
.form-note { font-size: 13.5px; color: var(--mist); margin-top: 12px; }
.eaform.ondark + .form-note { color: rgba(255,255,255,.5); }
.form-ok { color: var(--m-green); font-weight: 700; font-family: var(--f-display); font-size: 15px; margin-top: 14px; display: none; }
.eaform.ondark ~ .form-ok { color: var(--gold-light); }

/* ============================================================
   HERO (Direction C — split)
   ============================================================ */
.hero { display: grid; grid-template-columns: 0.96fr 1.04fr; min-height: 620px; }
.hero__left {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #0A2E63 0%, #06224F 100%);
  padding: 72px clamp(28px, 5vw, 76px) 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero__left::before { content: ''; position: absolute; bottom: -140px; left: -90px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(253,183,21,.18), transparent 70%); pointer-events: none; }
.hero__inner { position: relative; max-width: 520px; }
.hero h1 { font-size: clamp(38px, 5.2vw, 60px); color: #fff; margin: 22px 0 0; }
.hero h1 .g { color: var(--gold); }
.hero__sub { font-size: 19px; line-height: 1.55; color: rgba(255,255,255,.76); margin: 20px 0 0; }
.hero__form { margin-top: 30px; }
.hero__feat { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 32px; }
.hero__feat span { font-family: var(--f-display); font-weight: 600; font-size: 14px; color: rgba(255,255,255,.6); letter-spacing: .02em; display: inline-flex; align-items: center; gap: 8px; }
.hero__feat span::before { content: ''; width: 7px; height: 7px; border-radius: 2px; background: var(--gold); }

.hero__right {
  position: relative; overflow: hidden; background: var(--bg);
  display: flex; align-items: center; justify-content: center; padding: 56px clamp(24px,4vw,56px);
}
.hero__right::before { content: ''; position: absolute; top: -120px; right: -120px; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(253,183,21,.22), transparent 70%); pointer-events: none; }
/* feather the navy panel into the light side so the seam blends */
.hero__seam { position: absolute; top: 0; bottom: 0; left: -1px; width: 52%; pointer-events: none;
  background: linear-gradient(100deg, #0A2E63 0%, #06224F 14%, rgba(7,38,90,.5) 42%, rgba(244,247,252,0) 100%); }
.hero__visual { position: relative; width: 100%; max-width: 600px; }

/* ---------- browser frame ---------- */
.frame { border-radius: 14px; background: #fff; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.7); }
.frame__bar { height: 38px; display: flex; align-items: center; gap: 7px; padding: 0 14px; background: #f1f4f9; border-bottom: 1px solid #e4eaf3; }
.frame__bar i { width: 11px; height: 11px; border-radius: 50%; }
.frame__bar .u { flex: 1; height: 20px; margin-left: 10px; border-radius: 6px; background: #e4eaf3; max-width: 280px; }
.frame.tilt { transform: perspective(1700px) rotateY(-7deg); }

/* ---------- floating mini cards ---------- */
.mini { position: absolute; background: #fff; border-radius: 14px; box-shadow: var(--shadow-md);
  padding: 13px 16px; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.7); z-index: 3; }
.mini__ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; color: #fff; flex: none; }
.mini__ic svg { width: 20px; height: 20px; }
.mini__t { font-family: var(--f-display); font-weight: 700; font-size: 15px; line-height: 1.1; }
.mini__s { font-size: 12.5px; color: var(--slate); margin-top: 2px; }
@media (prefers-reduced-motion: no-preference) {
  .float { animation: float 7s ease-in-out infinite; }
  .float-2 { animation: float 6s ease-in-out .6s infinite; }
}
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }

/* ============================================================
   CHALLENGE
   ============================================================ */
.challenge { background: var(--bg); }
.challenge__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 8px; }
.statbig { font-family: var(--f-display); font-weight: 800; font-size: clamp(64px, 10vw, 116px); line-height: .9; color: var(--blue); letter-spacing: -0.03em; }
.statbig .pct { color: var(--gold); }
.stat-cap { font-size: 18px; color: var(--slate); margin-top: 8px; max-width: 440px; }
.stat-src { font-family: var(--f-display); font-weight: 600; font-size: 14px; color: var(--mist); margin-top: 16px; }
.pains { display: grid; gap: 12px; }
.pain { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.pain:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.pain__n { font-family: var(--f-display); font-weight: 800; font-size: 15px; color: var(--gold-deep); width: 28px; flex: none; }
.pain__t { font-family: var(--f-display); font-weight: 600; font-size: 17px; }
.pain__s { font-size: 14.5px; color: var(--slate); margin-top: 2px; }

/* ============================================================
   SMARTER WAY (navy band)
   ============================================================ */
.smarter { position: relative; overflow: hidden; background: linear-gradient(160deg, #0A2E63, #06224F); color: #fff; }
.smarter::before { content:''; position:absolute; top:-160px; right:-120px; width:520px; height:520px; border-radius:50%; background:radial-gradient(circle, rgba(253,183,21,.14), transparent 70%); }
.smarter__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; position: relative; }
.pillars { display: grid; gap: 14px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 20px 22px; }
.pillar__ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: rgba(253,183,21,.16); color: var(--gold-light); }
.pillar__ic svg { width: 24px; height: 24px; }
.pillar h4 { font-size: 19px; color: #fff; }
.pillar p { font-size: 15px; color: rgba(255,255,255,.7); margin-top: 5px; }
.allinone { text-align: center; padding: 40px; }
.allinone .big { font-family: var(--f-display); font-weight: 800; font-size: 120px; line-height: 1; color: var(--gold); letter-spacing: -.04em; }
.allinone .sub { font-family: var(--f-display); font-weight: 600; font-size: 20px; color: #fff; margin-top: 6px; }
.allinone .cap { color: rgba(255,255,255,.62); font-size: 15px; margin-top: 6px; }

/* ============================================================
   FEATURES (modules grid)
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.fcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.fcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.fcard__ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 18px; }
.fcard__ic svg { width: 28px; height: 28px; }
.fcard h3 { font-size: 19px; }
.fcard p { font-size: 14.5px; color: var(--slate); margin-top: 8px; line-height: 1.5; }
.fcard .tag { display: inline-block; margin-top: 14px; font-family: var(--f-display); font-weight: 700; font-size: 11.5px; letter-spacing: .08em; color: var(--mist); }

/* ============================================================
   AI HIGHLIGHT (alternating rows)
   ============================================================ */
.ai { background: var(--bg); }
.airow { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.airow + .airow { margin-top: 100px; }
.airow.flip .airow__media { order: -1; }
.airow__tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--m-purple); }
.airow h3 { font-size: clamp(26px, 3.4vw, 36px); color: var(--blue); margin: 14px 0 0; }
.airow p { font-size: 17.5px; color: var(--slate); margin: 16px 0 0; line-height: 1.6; }
.ai-list { margin: 22px 0 0; display: grid; gap: 12px; }
.ai-list li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink); }
.ai-list li svg { width: 22px; height: 22px; color: var(--m-green); flex: none; margin-top: 2px; }
.airow__media { position: relative; }
.assistant-card { background: linear-gradient(150deg, #2E1A66, #4A2B8F); border-radius: 20px; padding: 34px; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.assistant-card::before { content:''; position:absolute; top:-60px; right:-60px; width:220px; height:220px; border-radius:50%; background:radial-gradient(circle, rgba(253,183,21,.25), transparent 70%); }
.bubble { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 16px; padding: 16px 18px; font-size: 16px; max-width: 80%; }
.bubble.me { background: var(--gold); color: var(--navy); margin-left: auto; font-weight: 600; }
.robot { width: 88px; height: 88px; border-radius: 24px; background: var(--blue-bright); display: grid; place-items: center; margin: 0 auto 20px; box-shadow: 0 14px 30px -12px rgba(31,134,240,.7); }
.robot svg { width: 48px; height: 48px; color: #fff; }

/* ============================================================
   SHOWCASE
   ============================================================ */
.showcase__main { position: relative; margin-top: 52px; }
.showcase__phone { position: absolute; right: -10px; bottom: -30px; width: 210px; z-index: 4; border-radius: 30px; box-shadow: var(--shadow-lg); }
@media (max-width: 760px){ .showcase__phone { display: none; } }

/* ============================================================
   BUILT FOR AUSTRALIA
   ============================================================ */
.aus { position: relative; overflow: hidden; background: linear-gradient(160deg, #0A2E63, #051A3D); color: #fff; }
.aus__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.aus-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.aus-point { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 22px; }
.aus-point .k { font-family: var(--f-display); font-weight: 800; font-size: 30px; color: var(--gold); }
.aus-point .v { font-size: 15px; color: rgba(255,255,255,.74); margin-top: 6px; }
.aus-flag { font-size: 15px; font-family: var(--f-display); font-weight: 600; color: var(--gold-light); display: inline-flex; gap: 10px; align-items: center; }

/* ============================================================
   CTA
   ============================================================ */
.cta { position: relative; overflow: hidden; background: radial-gradient(120% 130% at 50% -10%, #0A3A86, #06224F 60%, #041737); color: #fff; text-align: center; }
.cta__grid-bg { position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: linear-gradient(rgba(120,170,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(120,170,255,.1) 1px, transparent 1px);
  background-size: 56px 56px; -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 25%, transparent 75%); mask-image: radial-gradient(circle at 50% 30%, #000 25%, transparent 75%); }
.cta__inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta__mark { width: 84px; height: 67px; margin: 0 auto 22px; filter: drop-shadow(0 0 16px rgba(253,183,21,.5)); }
.cta h2 { font-size: clamp(32px, 5vw, 52px); color: #fff; }
.cta h2 .g { color: var(--gold); }
.cta p { font-size: 19px; color: rgba(255,255,255,.76); margin: 18px auto 0; max-width: 560px; }
.cta__form { margin-top: 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #051A3D; color: rgba(255,255,255,.7); padding: 72px 0 40px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand .blurb { font-size: 15px; color: rgba(255,255,255,.6); margin-top: 18px; max-width: 320px; line-height: 1.6; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .2s, transform .15s; }
.footer__social a:hover { background: var(--gold); transform: translateY(-2px); }
.footer__social a:hover svg { color: var(--navy); }
.footer__social svg { width: 19px; height: 19px; color: #fff; }
.footer__col h5 { font-family: var(--f-display); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.footer__col a { display: block; font-size: 15px; color: rgba(255,255,255,.66); padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--gold-light); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  margin-top: 52px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13.5px; color: rgba(255,255,255,.5); }
.footer__bottom .conf { color: var(--gold-light); font-weight: 600; }

/* ============================================================
   REVEAL (transform-only — never hides content)
   ============================================================ */
.reveal { transform: translateY(26px); transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { transform: none; transition: none; } }

/* ============================================================
   PROSE (about / legal pages)
   ============================================================ */
.page-hero { background: linear-gradient(160deg, #0A2E63, #06224F); color: #fff; padding: 80px 0 72px; position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; bottom:-140px; right:-100px; width:420px; height:420px; border-radius:50%; background:radial-gradient(circle, rgba(253,183,21,.16), transparent 70%); }
.page-hero h1 { font-size: clamp(34px, 5vw, 52px); color: #fff; position: relative; }
.page-hero .sub { font-size: 18px; color: rgba(255,255,255,.74); margin-top: 16px; max-width: 620px; position: relative; }
.prose { max-width: 760px; margin: 0 auto; padding: 72px 28px 100px; }
.prose h2 { font-size: 28px; color: var(--blue); margin: 48px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--f-display); font-weight: 700; font-size: 19px; color: var(--ink); margin: 28px 0 10px; }
.prose p { font-size: 17px; color: var(--slate); margin: 0 0 16px; line-height: 1.7; }
.prose ul { margin: 0 0 18px; padding-left: 22px; }
.prose li { font-size: 17px; color: var(--slate); margin-bottom: 8px; line-height: 1.6; }
.prose strong { color: var(--ink); }
.prose .meta { font-size: 14.5px; color: var(--mist); margin-bottom: 36px; }

.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.value__ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; color: #fff; margin-bottom: 16px; }
.value__ic svg { width: 26px; height: 26px; }
.value h3 { font-size: 19px; }
.value p { font-size: 15px; color: var(--slate); margin-top: 8px; line-height: 1.55; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .section { padding: 80px 0; }
  .nav__links { position: fixed; inset: 78px 0 auto; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 24px 24px; box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .25s, opacity .25s; }
  .nav.open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a:not(.btn) { padding: 14px 4px; font-size: 17px; border-bottom: 1px solid var(--line); }
  .nav__cta { height: 52px; margin-top: 14px; font-size: 16px; }
  .nav__toggle { display: block; }

  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__seam { display: none; }
  .hero__right { order: 2; padding: 48px 24px 56px; }
  .hero__left { padding: 56px 24px 60px; }
  .hero h1 { font-size: clamp(34px, 8vw, 46px); }

  .challenge__grid, .smarter__grid, .aus__grid { grid-template-columns: 1fr; gap: 44px; }
  .airow, .airow.flip .airow__media { grid-template-columns: 1fr; }
  .airow.flip .airow__media { order: 0; }
  .airow__media { order: 2; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .value-grid { grid-template-columns: 1fr; }
  .aus-points { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .feat-grid { grid-template-columns: 1fr; }
  .eaform { flex-direction: column; }
  .field, .eaform .btn { width: 100%; flex: none; }
  .statbig { font-size: 84px; }
  .allinone .big { font-size: 88px; }
  .aus-points { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .frame.tilt { transform: none; }
}

/* ============================================================
   EARLY-ACCESS MODAL
   ============================================================ */
.eamodal { position: fixed; inset: 0; z-index: 200; display: none; }
.eamodal.open { display: block; }
.eamodal__overlay { position: absolute; inset: 0; background: rgba(6,34,79,.55); backdrop-filter: blur(4px); }
.eamodal__dialog {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(620px, calc(100vw - 32px)); max-height: calc(100vh - 36px); overflow-y: auto;
  background: #fff; border-radius: 22px; box-shadow: 0 40px 100px -30px rgba(6,34,79,.6);
  padding: 38px clamp(22px,4vw,44px);
}
@media (prefers-reduced-motion: no-preference) {
  .eamodal.open .eamodal__overlay { animation: ea-fade .2s ease; }
  .eamodal.open .eamodal__dialog { animation: ea-pop .28s cubic-bezier(.2,.8,.2,1); }
}
@keyframes ea-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ea-pop { from { opacity: 0; transform: translate(-50%,-46%) scale(.97); } to { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
.eamodal__close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 10px; border: 0; cursor: pointer; background: var(--bg); color: var(--slate); display: grid; place-items: center; transition: background .2s, color .2s; }
.eamodal__close:hover { background: var(--line); color: var(--ink); }
.eamodal__close svg { width: 18px; height: 18px; }
.eamodal__head { text-align: center; margin-bottom: 24px; }
.eamodal__mark { width: 46px; height: 37px; margin: 0 auto 14px; }
.eamodal__head h3 { font-size: 26px; color: var(--blue); }
.eamodal__head p { font-size: 15.5px; color: var(--slate); margin-top: 8px; }
.eamodal__form { display: grid; gap: 16px; }
.mrow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mfield { display: flex; flex-direction: column; gap: 7px; position: relative; }
.mfield > span { font-family: var(--f-display); font-weight: 600; font-size: 13.5px; color: var(--ink); }
.mfield > span em { color: var(--mist); font-style: normal; font-weight: 500; }
.mfield input, .mfield select, .mfield textarea {
  font-family: var(--f-body); font-size: 15.5px; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 11px; padding: 0 14px; height: 50px; background: #fff; outline: 0;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.mfield textarea { height: auto; padding: 12px 14px; resize: vertical; min-height: 62px; line-height: 1.5; }
.mfield select { appearance: none; cursor: pointer; }
.mfield.sel::after { content: ''; position: absolute; right: 15px; bottom: 19px; width: 8px; height: 8px; border-right: 2px solid var(--slate); border-bottom: 2px solid var(--slate); transform: rotate(45deg); pointer-events: none; }
.mfield input:focus, .mfield select:focus, .mfield textarea:focus { border-color: var(--blue-2); box-shadow: 0 0 0 4px rgba(10,99,214,.12); }
.mfield input::placeholder, .mfield textarea::placeholder { color: var(--mist); }
.mfield-group .mlabel { font-family: var(--f-display); font-weight: 600; font-size: 13.5px; color: var(--ink); display: block; margin-bottom: 10px; }
.mchips { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mchip { position: relative; cursor: pointer; }
.mchip input { position: absolute; opacity: 0; pointer-events: none; }
.mchip span { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: var(--slate); border: 1.5px solid var(--line); border-radius: 11px; padding: 12px 14px; transition: border-color .18s, color .18s, background .18s; }
.mchip span::before { content: ''; width: 18px; height: 18px; border-radius: 6px; border: 1.5px solid var(--mist); flex: none; transition: background .18s, border-color .18s; }
.mchip input:checked + span { border-color: var(--blue-2); color: var(--blue); background: rgba(10,99,214,.05); }
.mchip input:checked + span::before { background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat; border-color: var(--blue); }
.mchip input:focus-visible + span { box-shadow: 0 0 0 4px rgba(10,99,214,.12); }
.eamodal__submit { width: 100%; height: 54px; margin-top: 4px; }
.eamodal__note { text-align: center; font-size: 13px; color: var(--mist); }
.eamodal__done { display: none; text-align: center; padding: 16px 0 8px; }
.eamodal__done.show { display: block; }
.eamodal__check { width: 64px; height: 64px; border-radius: 50%; background: rgba(67,176,92,.12); color: var(--m-green); display: grid; place-items: center; margin: 0 auto 18px; }
.eamodal__check svg { width: 32px; height: 32px; }
.eamodal__done h3 { font-size: 24px; color: var(--blue); }
.eamodal__done p { font-size: 15.5px; color: var(--slate); margin: 10px auto 24px; max-width: 420px; }
body.ea-lock { overflow: hidden; }
@media (max-width: 560px) { .mrow, .mchips { grid-template-columns: 1fr; } }
