/* ==========================================================================
   APOLAKI — "Daybreak" design system
   Solar Energy Made Simple. Sky-blue trust + solar-gold dawn over light canvas.
   Type: TT Fors (official brand font, self-hosted once licensed) with
   Onest (Google Fonts) as the loaded fallback — see "Brand font" below.
   ========================================================================== */

/* ---------- Brand font: TT Fors ----------
   TT Fors is the official Apolaki brand font (commercial — TypeType).
   These @font-face rules activate automatically as soon as the licensed
   .woff2 files are dropped into /assets/fonts/ with these exact names:
     assets/fonts/TTFors-Regular.woff2    (400)
     assets/fonts/TTFors-Medium.woff2     (500)
     assets/fonts/TTFors-DemiBold.woff2   (600)
     assets/fonts/TTFors-Bold.woff2       (700)
     assets/fonts/TTFors-ExtraBold.woff2  (800)
   The site renders in Onest (Google Fonts). To switch to TT Fors once licensed:
   drop the .woff2 files above, then add "TT Fors" back to the front of
   --font-display / --font-body. Kept out of the active stack so the (currently
   missing) files aren't requested — that was 5x 404s hurting the Lighthouse score. */
@font-face { font-family: "TT Fors"; src: url("/assets/fonts/TTFors-Regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "TT Fors"; src: url("/assets/fonts/TTFors-Medium.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "TT Fors"; src: url("/assets/fonts/TTFors-DemiBold.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "TT Fors"; src: url("/assets/fonts/TTFors-Bold.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "TT Fors"; src: url("/assets/fonts/TTFors-ExtraBold.woff2") format("woff2"); font-weight: 800; font-style: normal; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  /* Brand — sky blue */
  --blue:        #0F6CBD;
  --blue-600:    #0C5DA6;
  --blue-700:    #0A4F8A;
  --blue-800:    #0A3E6E;
  --blue-900:    #08294a;
  --blue-950:    #061b33;
  --blue-50:     #EBF4FC;
  --blue-100:    #D6E8F8;

  /* Brand — solar gold */
  --gold:        #F4C94C;
  --gold-strong: #FFB81C;
  --gold-600:    #E0A106;
  --gold-50:     #FEF7E4;
  --gold-100:    #FDEEC4;

  /* Eco green */
  --green:       #16A34A;
  --green-600:   #15913F;
  --green-50:    #DCFCE7;

  /* Ink + neutrals (slate) */
  --ink:         #0B1A2B;
  --ink-soft:    #1E293B;
  --slate:       #334155;
  --muted:       #5A6B80;
  --faint:       #8A99AC;
  --line:        #E4EAF1;
  --line-soft:   #EEF2F7;
  --bg:          #FFFFFF;
  --bg-soft:     #F5F8FC;
  --bg-softer:   #FAFCFE;
  --paper:       #F8FAFD;
  --white:       #FFFFFF;

  /* Signature gradients */
  --grad-blue:   linear-gradient(135deg, #1A7CCB 0%, #0F6CBD 45%, #0A4F8A 100%);
  --grad-gold:   linear-gradient(135deg, #FFD874 0%, #F4C94C 50%, #FFB81C 100%);
  --grad-night:  linear-gradient(160deg, #0A3E6E 0%, #08294a 55%, #061b33 100%);
  --grad-horizon:linear-gradient(90deg, #FFB81C 0%, #F4C94C 30%, #0F6CBD 100%);
  --dawn-glow:   radial-gradient(60% 55% at 78% 8%, rgba(255,184,28,.30) 0%, rgba(244,201,76,.12) 38%, rgba(244,201,76,0) 70%);

  /* Shadows — cool, layered */
  --sh-sm:  0 1px 2px rgba(10,40,74,.06), 0 1px 1px rgba(10,40,74,.04);
  --sh:     0 6px 18px -6px rgba(10,40,74,.14), 0 2px 6px -2px rgba(10,40,74,.08);
  --sh-md:  0 18px 40px -16px rgba(10,40,74,.22), 0 6px 14px -8px rgba(10,40,74,.12);
  --sh-lg:  0 40px 80px -28px rgba(8,41,74,.34), 0 12px 28px -14px rgba(10,40,74,.18);
  --sh-gold:0 14px 36px -12px rgba(224,161,6,.45);
  --sh-blue:0 14px 36px -12px rgba(15,108,189,.45);

  /* Geometry */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Type */
  --font-display: "Onest", system-ui, sans-serif;
  --font-body: "Onest", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --nav-h: 72px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.0625rem;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid rgba(15,108,189,.5); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--gold-100); color: var(--blue-900); }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6.5vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.95rem, 4.4vw, 3.05rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.15rem; letter-spacing: -0.02em; }
p { color: var(--slate); }
strong { color: var(--ink); font-weight: 700; }
.lead { font-size: clamp(1.1rem, 1.7vw, 1.32rem); color: var(--muted); line-height: 1.55; font-weight: 400; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 820px; }
section { position: relative; }
.section { padding-block: clamp(64px, 9vw, 116px); }
.section-sm { padding-block: clamp(44px, 6vw, 72px); }
.bg-soft { background: var(--bg-soft); }
.bg-paper { background: var(--paper); }
.bg-night { background: var(--grad-night); color: #EAF2FB; }
.center { text-align: center; }
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }

/* ---------- Eyebrow + section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-body);
  font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-700);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--grad-gold);
}
.eyebrow.on-dark { color: var(--gold); }
.eyebrow.center-line { justify-content: center; }
.section-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: 16px; }
.bg-night h2, .bg-night h3 { color: #fff; }
.bg-night p, .bg-night .lead { color: #B8CCE2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; letter-spacing: -0.01em;
  padding: .92em 1.5em; border-radius: var(--r-pill);
  transition: transform .25s cubic-bezier(.34,1.4,.5,1), box-shadow .25s ease, background .25s ease, color .2s ease;
  will-change: transform; white-space: nowrap; line-height: 1;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: var(--sh-blue); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(15,108,189,.6); }
.btn-gold { background: var(--grad-gold); color: var(--blue-900); box-shadow: var(--sh-gold); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(224,161,6,.6); }
.btn-ghost { background: var(--white); color: var(--blue-700); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1.5px var(--blue-100), var(--sh); color: var(--blue); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.btn-on-dark { background: #fff; color: var(--blue-800); }
.btn-on-dark:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,.5); }
.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.btn-lg { font-size: 1.06rem; padding: 1.05em 1.8em; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* App store badges */
.store-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 10px 18px 10px 16px; border-radius: 14px;
  background: var(--ink); color: #fff; transition: transform .25s ease, box-shadow .25s ease;
}
.store-badge:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .b-top { font-size: .64rem; letter-spacing: .04em; text-transform: uppercase; opacity: .78; line-height: 1.1; }
.store-badge .b-main { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; line-height: 1.1; letter-spacing: -0.01em; }
.store-badge.soon { position: relative; opacity: .92; }
.store-badge .soon-tag {
  position: absolute; top: -9px; right: -7px; font-size: .56rem; font-weight: 800; letter-spacing: .06em;
  background: var(--gold); color: var(--blue-900); padding: 2px 7px; border-radius: 999px; text-transform: uppercase;
}

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(10,40,74,.4); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.34rem; letter-spacing: -0.03em; color: var(--ink); }
.brand .mark { height: 34px; flex: none; display: inline-flex; align-items: center; }
.brand .mark img { height: 34px; width: auto; display: block; transition: transform .35s ease; }
.brand:hover .mark img { transform: translateY(-2px); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 600; font-size: .98rem; color: var(--slate);
  padding: 9px 14px; border-radius: 10px; transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-50); }
.nav-links a.active { color: var(--blue-700); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle:hover { background: var(--bg-soft); }
.nav-toggle span { position: relative; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav .wrap { gap: 12px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: .72em 1.1em; font-size: .92rem; }
  .nav-links { display: none; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 16px var(--gutter) 28px;
    border-bottom: 1px solid var(--line); box-shadow: var(--sh-md);
    transform: translateY(-130%); transition: transform .38s cubic-bezier(.4,0,.2,1); display: flex;
  }
  body.menu-open .nav-links { transform: translateY(0); }
  .nav-links a { padding: 14px 12px; font-size: 1.1rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links .btn { margin-top: 14px; }
}
.nav-login-mobile { display: none !important; }
@media (max-width: 420px) {
  /* keep the compact nav tidy: primary Sign up stays, ghost Log in folds
     into the menu as .nav-login-mobile */
  .nav-cta .btn-ghost { display: none; }
  .nav-login-mobile { display: block !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(40px, 7vw, 86px); padding-bottom: clamp(48px, 7vw, 90px); overflow: hidden; }
.hero::before { /* dawn glow */
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 140%;
  background: var(--dawn-glow); pointer-events: none; z-index: 0;
}
.hero::after { /* faint sun rays */
  content: ""; position: absolute; top: -180px; right: -120px; width: 520px; height: 520px; z-index: 0; pointer-events: none;
  background: conic-gradient(from 200deg, rgba(255,184,28,0) 0deg, rgba(255,184,28,.10) 18deg, rgba(255,184,28,0) 36deg, rgba(255,184,28,.10) 54deg, rgba(255,184,28,0) 72deg, rgba(255,184,28,.08) 90deg, rgba(255,184,28,0) 108deg);
  border-radius: 50%; opacity: .8;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero-copy { max-width: 600px; }
.hero h1 .accent { background: var(--grad-horizon); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { margin-top: 22px; }
.hero .btn-row { margin-top: 32px; }
.hero-note { margin-top: 18px; font-size: .94rem; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.hero-note svg { width: 17px; height: 17px; color: var(--green); flex: none; }

.pill-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 9px; border-radius: var(--r-pill);
  background: var(--white); box-shadow: var(--sh-sm); border: 1px solid var(--line);
  font-size: .86rem; font-weight: 600; color: var(--slate);
}
.pill-badge .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--gold-50); display: grid; place-items: center; }
.pill-badge .dot svg { width: 13px; height: 13px; color: var(--gold-600); }

/* ---------- Device / phone mockup ---------- */
.hero-stage { position: relative; display: flex; justify-content: center; }
.device {
  position: relative; width: clamp(248px, 30vw, 308px); aspect-ratio: 308 / 640;
  background: #0B1A2B; border-radius: 44px; padding: 11px;
  box-shadow: var(--sh-lg), inset 0 0 0 2px rgba(255,255,255,.06);
}
.device::before { /* notch */
  content: ""; position: absolute; top: 17px; left: 50%; transform: translateX(-50%);
  width: 38%; height: 22px; background: #0B1A2B; border-radius: 0 0 14px 14px; z-index: 3;
}
.device-screen { position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden; background: #fff; }
.device-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.device.tilt { transform: rotate(2.2deg); }
.hero-stage .device { animation: float 7s ease-in-out infinite; }

/* floating stat chips around hero phone */
.chip {
  position: absolute; z-index: 2; background: #fff; border-radius: 16px; padding: 12px 15px;
  box-shadow: var(--sh-md); display: flex; align-items: center; gap: 11px; border: 1px solid var(--line-soft);
}
.chip .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.chip .ic svg { width: 20px; height: 20px; }
.chip .k { font-size: .72rem; color: var(--faint); font-weight: 600; letter-spacing: .02em; }
.chip .v { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: var(--ink); line-height: 1.1; letter-spacing: -0.02em; }
.chip-1 { top: 12%; left: -6%; animation: floatY 5.5s ease-in-out infinite; }
.chip-2 { bottom: 16%; right: -8%; animation: floatY 6.5s ease-in-out .6s infinite; }
.chip-3 { bottom: -2%; left: 4%; animation: floatY 6s ease-in-out 1.1s infinite; }
.chip .ic.blue { background: var(--blue-50); color: var(--blue); }
.chip .ic.gold { background: var(--gold-50); color: var(--gold-600); }
.chip .ic.green { background: var(--green-50); color: var(--green); }
@media (max-width: 560px) { .chip-1 { left: -2%; } .chip-2 { right: -2%; } }

/* ---------- Trust / logo bar ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-softer); }
.trustbar .wrap { padding-block: 30px; }
.trust-label { text-align: center; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); font-weight: 700; margin-bottom: 22px; }
.trust-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(26px, 6vw, 64px); }
.trust-logos img { height: clamp(34px, 5vw, 46px); width: auto; opacity: .72; filter: grayscale(1); transition: opacity .3s ease, filter .3s ease; }
.trust-logos a:hover img { opacity: 1; filter: grayscale(0); }

/* ---------- Cards ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 2.6vw, 32px); box-shadow: var(--sh-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--blue-100); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 26px); }
.ic-tile {
  width: 56px; height: 56px; flex: none; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--blue-50); color: var(--blue); box-shadow: inset 0 0 0 1px rgba(15,108,189,.08);
}
.ic-tile svg { width: 27px; height: 27px; }
.feature-card.gold .ic-tile, .ic-tile.gold { background: var(--gold-50); color: var(--gold-600); box-shadow: inset 0 0 0 1px rgba(224,161,6,.12); }
.feature-card.green .ic-tile, .ic-tile.green { background: var(--green-50); color: var(--green); box-shadow: inset 0 0 0 1px rgba(22,163,74,.12); }
.feature-card h3 { font-size: 1.28rem; margin-bottom: 9px; }
.feature-card p { font-size: .98rem; }

/* ---------- What-is split / app showcase ---------- */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 76px); align-items: center; }
.showcase.reverse .showcase-media { order: 2; }
.showcase-media { display: flex; justify-content: center; position: relative; }
.media-glow::after { content: ""; position: absolute; inset: 8% 6%; z-index: -1; background: var(--dawn-glow); filter: blur(8px); }
.checklist { display: grid; gap: 18px; margin-top: 26px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.02rem; color: var(--slate); }
.checklist .ck { width: 40px; height: 40px; border-radius: 12px; background: var(--green-50); color: var(--green); display: grid; place-items: center; flex: none; margin-top: 2px; box-shadow: inset 0 0 0 1px rgba(22,163,74,.12); }
.checklist .ck svg { width: 20px; height: 20px; }
.checklist .ck.blue { background: var(--blue-50); color: var(--blue); box-shadow: inset 0 0 0 1px rgba(15,108,189,.1); }
.checklist .ck.gold { background: var(--gold-50); color: var(--gold-600); box-shadow: inset 0 0 0 1px rgba(224,161,6,.14); }
.checklist strong { display: block; color: var(--ink); font-size: 1.06rem; }

/* ---------- Solar journey (numbered four-step process) ---------- */
.journey-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 28px); list-style: none; padding: 0; }
.journey-step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px 28px; box-shadow: var(--sh-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.journey-step:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--blue-100); }
.journey-step .js-num {
  position: absolute; top: -16px; left: 22px;
  width: 40px; height: 40px; border-radius: 50%; background: var(--grad-blue); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  box-shadow: var(--sh); border: 3px solid #fff;
}
.journey-step .js-connector {
  position: absolute; top: 50%; right: calc(-1 * clamp(18px, 2.4vw, 28px)); width: clamp(18px, 2.4vw, 28px); height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-100) 0 7px, transparent 7px 13px);
}
.journey-step:last-child .js-connector { display: none; }
.journey-step .js-ic {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin: 8px 0 18px;
  background: var(--blue-50); color: var(--blue); box-shadow: inset 0 0 0 1px rgba(15,108,189,.08);
}
.journey-step .js-ic svg { width: 25px; height: 25px; }
.journey-step .js-ic.gold { background: var(--gold-50); color: var(--gold-600); box-shadow: inset 0 0 0 1px rgba(224,161,6,.12); }
.journey-step .js-ic.green { background: var(--green-50); color: var(--green); box-shadow: inset 0 0 0 1px rgba(22,163,74,.12); }
.journey-step h3 { font-size: 1.16rem; margin-bottom: 8px; }
.journey-step p { font-size: .95rem; color: var(--muted); }

/* ---------- Process flow (real screens) ---------- */
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px, 1.8vw, 22px); align-items: start; counter-reset: step; }
.flow-step { position: relative; }
.flow-phone {
  position: relative; border-radius: 24px; overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--sh); aspect-ratio: 9/16;
  transition: transform .35s ease, box-shadow .35s ease;
}
.flow-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.flow-step:hover .flow-phone { transform: translateY(-7px); box-shadow: var(--sh-md); }
.flow-num {
  counter-increment: step; position: absolute; top: -12px; left: -10px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; background: var(--grad-blue); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  box-shadow: var(--sh); border: 3px solid #fff;
}
.flow-num::before { content: counter(step); }
.flow-step h4 { margin-top: 18px; font-size: 1.04rem; }
.flow-step p { font-size: .9rem; margin-top: 5px; color: var(--muted); }
.flow-connector { position: absolute; top: 38%; left: -16%; width: 18%; height: 2px; background: repeating-linear-gradient(90deg, var(--blue-100) 0 7px, transparent 7px 13px); z-index: 1; }
.flow-step:first-child .flow-connector { display: none; }

/* ---------- Stats band ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.4vw, 30px); }
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.3rem, 4.6vw, 3.4rem); line-height: 1; letter-spacing: -0.04em; background: var(--grad-horizon); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat.solid .num { background: none; color: #fff; -webkit-text-fill-color: #fff; }
.stat .lbl { margin-top: 12px; font-size: .96rem; color: var(--muted); font-weight: 500; }
.bg-night .stat .lbl { color: #9FB6D0; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 26px); }
.tst { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; }
.tst .quote-mark { font-family: var(--font-display); font-size: 3.4rem; line-height: .6; color: var(--gold); height: 26px; }
.tst blockquote { font-size: 1.08rem; color: var(--ink-soft); line-height: 1.5; font-weight: 500; margin: 14px 0 22px; flex: 1; }
.tst .who { display: flex; align-items: center; gap: 12px; }
.tst .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: #fff; flex: none; font-size: 1rem; }
.tst .who .nm { font-weight: 700; color: var(--ink); font-size: .96rem; }
.tst .who .rl { font-size: .84rem; color: var(--faint); }
.research-note { text-align: center; font-size: .84rem; color: var(--muted); margin-top: 26px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: clamp(24px, 4vw, 40px); padding: clamp(40px, 6vw, 72px); background: var(--grad-night); color: #fff; }
.cta-band::before { content: ""; position: absolute; inset: -30% -10% auto auto; width: 60%; height: 160%; background: radial-gradient(50% 50% at 80% 20%, rgba(255,184,28,.34) 0%, rgba(244,201,76,0) 70%); pointer-events: none; }
.cta-band::after { content: ""; position: absolute; left: -40px; bottom: -40px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(15,108,189,.5) 0%, transparent 70%); }
.cta-band .inner { position: relative; z-index: 1; max-width: 640px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #C3D6EC; margin-top: 16px; font-size: 1.12rem; }
.cta-band .btn-row, .cta-band .store-row { margin-top: 30px; }

/* ---------- FAQ accordion ---------- */
.faq-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; justify-content: center; }
.faq-tab { padding: 11px 20px; border-radius: var(--r-pill); font-weight: 700; font-size: .95rem; color: var(--slate); background: var(--bg-soft); border: 1px solid transparent; transition: .25s; }
.faq-tab:hover { color: var(--blue); }
.faq-tab.active { background: var(--grad-blue); color: #fff; box-shadow: var(--sh-blue); }
.faq-group { display: none; }
.faq-group.active { display: block; animation: fadeUp .5s ease; }
.faq-list { max-width: 800px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq-item[open] { border-color: var(--blue-100); box-shadow: var(--sh-sm); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--ink); letter-spacing: -0.01em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .pm { width: 30px; height: 30px; flex: none; border-radius: 9px; background: var(--blue-50); color: var(--blue); display: grid; place-items: center; transition: .3s; }
.faq-item .pm svg { width: 16px; height: 16px; transition: transform .3s; }
.faq-item[open] .pm { background: var(--grad-blue); color: #fff; }
.faq-item[open] .pm svg { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 22px; color: var(--slate); font-size: 1.0rem; line-height: 1.62; }
.faq-answer p + p { margin-top: 12px; }

/* ---------- Forms (contact) ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(26px, 3.4vw, 44px); box-shadow: var(--sh); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .92rem; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); padding: 14px 16px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: var(--bg-softer); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(15,108,189,.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-success { display: none; text-align: center; padding: 20px; }

/* contact info list */
.contact-aside { display: grid; gap: 22px; align-content: start; }
.contact-item { display: flex; gap: 15px; align-items: flex-start; }
.contact-item .ci { width: 46px; height: 46px; border-radius: 13px; background: var(--blue-50); color: var(--blue); display: grid; place-items: center; flex: none; }
.contact-item .ci svg { width: 22px; height: 22px; }
.contact-item h4 { font-size: 1.02rem; margin-bottom: 3px; }
.contact-item p, .contact-item a { color: var(--muted); font-size: .98rem; }
.contact-item a:hover { color: var(--blue); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 30px); }
.post-card { display: flex; flex-direction: column; overflow: hidden; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm); transition: transform .3s, box-shadow .3s; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.post-thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; display: grid; place-items: center; }
.post-thumb .glyph { width: 72px; height: 72px; color: #fff; opacity: .92; }
.post-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-cat { font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-700); margin-bottom: 10px; }
.post-card h3 { font-size: 1.22rem; line-height: 1.18; margin-bottom: 10px; }
.post-card p { font-size: .96rem; color: var(--muted); flex: 1; }
.post-meta { margin-top: 18px; display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--faint); }
.post-feature { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 1fr; }
.post-feature .post-thumb { aspect-ratio: auto; min-height: 280px; }
@media (max-width: 760px) { .post-feature { grid-template-columns: 1fr; } }

/* ---------- Article (blog post / privacy / legal prose) ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 1.8em; }
.prose h3 { font-size: 1.32rem; margin-top: 1.5em; }
.prose p, .prose li { color: var(--slate); font-size: 1.08rem; line-height: 1.72; }
.prose ul, .prose ol { padding-left: 1.3em; display: grid; gap: 8px; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--blue-100); }
.prose a:hover { text-decoration-color: var(--blue); }
.prose strong { color: var(--ink); }
.prose blockquote { border-left: 4px solid var(--gold); background: var(--gold-50); padding: 16px 22px; border-radius: 0 12px 12px 0; font-size: 1.1rem; color: var(--ink-soft); }
.prose hr { border: 0; height: 1px; background: var(--line); margin: 2.2em 0; }
.legal-meta { color: var(--faint); font-size: .95rem; }

/* page hero (interior pages) */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(54px, 8vw, 96px); background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.page-hero::before { content: ""; position: absolute; inset: -40% -10% auto auto; width: 50%; height: 160%; background: var(--dawn-glow); pointer-events: none; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero .lead { margin-top: 18px; max-width: 640px; }
.breadcrumb { font-size: .86rem; color: var(--faint); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--blue); }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.team-card { text-align: center; padding: 34px 24px; }
.team-av { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: #fff; box-shadow: var(--sh); }
.team-card h3 { font-size: 1.2rem; }
.team-card .role { color: var(--blue-700); font-weight: 700; font-size: .9rem; margin-top: 4px; }
.team-card p { font-size: .94rem; color: var(--muted); margin-top: 12px; }

/* value/mission cards */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.4vw,26px); }

/* ---------- Footer ---------- */
.footer { background: var(--grad-night); color: #B8CCE2; padding-block: clamp(48px, 6vw, 72px) 32px; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-horizon); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 48px); }
.footer .brand { color: #fff; }
.footer-about { max-width: 320px; margin-top: 18px; color: #9FB6D0; font-size: .98rem; }
.footer h5 { font-family: var(--font-display); color: #fff; font-size: 1.02rem; margin-bottom: 16px; letter-spacing: -0.01em; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: #9FB6D0; font-size: .96rem; transition: color .2s, padding .2s; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-social { display: flex; gap: 11px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: .25s; }
.footer-social a:hover { background: var(--gold); color: var(--blue-900); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom { margin-top: clamp(36px, 5vw, 52px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: .88rem; color: #7E94AE; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* hero load stagger */
.hero-copy > * { opacity: 0; transform: translateY(18px); animation: heroIn .8s cubic-bezier(.2,.7,.3,1) forwards; }
.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .15s; }
.hero-copy > *:nth-child(3) { animation-delay: .25s; }
.hero-copy > *:nth-child(4) { animation-delay: .35s; }
.hero-copy > *:nth-child(5) { animation-delay: .45s; }
.hero-stage { opacity: 0; animation: heroIn 1s cubic-bezier(.2,.7,.3,1) .35s forwards; }

/* ---------- Keyframes ---------- */
@keyframes heroIn { to { opacity: 1; transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 32px; }
.text-gold { color: var(--gold-600); }
.text-blue { color: var(--blue); }
.hide-mobile { }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 100; background: #fff; padding: 10px 16px; border-radius: 10px; box-shadow: var(--sh-md); }
.skip-link:focus { left: 12px; }

/* ==========================================================================
   Solar assistant chat widget (floating, site-wide)
   ========================================================================== */
.ap-chat-launcher {
  position: fixed; right: clamp(16px, 3vw, 26px); bottom: clamp(16px, 3vw, 26px); z-index: 90;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 20px 13px 16px; border-radius: var(--r-pill);
  background: var(--grad-blue); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  box-shadow: var(--sh-blue), 0 4px 12px rgba(8,41,74,.2);
  transition: transform .3s cubic-bezier(.34,1.4,.5,1), box-shadow .3s ease, opacity .25s ease;
}
.ap-chat-launcher svg { width: 22px; height: 22px; }
.ap-chat-launcher:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 40px -12px rgba(15,108,189,.6); }
.ap-chat-launcher::after { content: ""; position: absolute; top: 9px; right: 12px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px var(--grad-blue), 0 0 0 3px #1a7ccb; animation: apPulse 2.4s ease-in-out infinite; }
body.ap-chat-open .ap-chat-launcher { opacity: 0; pointer-events: none; transform: translateY(12px) scale(.9); }

.ap-chat-panel {
  position: fixed; right: clamp(16px, 3vw, 26px); bottom: clamp(16px, 3vw, 26px); z-index: 95;
  width: min(390px, calc(100vw - 32px)); height: min(620px, calc(100vh - 120px));
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  box-shadow: var(--sh-lg);
  opacity: 0; transform: translateY(24px) scale(.96); transform-origin: bottom right; pointer-events: none;
  transition: opacity .3s ease, transform .35s cubic-bezier(.34,1.3,.5,1);
}
body.ap-chat-open .ap-chat-panel { opacity: 1; transform: none; pointer-events: auto; }

.ap-chat-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 16px; background: var(--grad-night); color: #fff; position: relative; }
.ap-chat-head::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 100%; background: radial-gradient(70% 120% at 90% -10%, rgba(255,184,28,.30), transparent 60%); pointer-events: none; }
.ap-chat-id { display: flex; align-items: center; gap: 11px; position: relative; z-index: 1; }
.ap-chat-av { width: 38px; height: 38px; border-radius: 11px; background: var(--grad-gold); color: var(--blue-900); display: grid; place-items: center; flex: none; box-shadow: var(--sh-sm); }
.ap-chat-av svg { width: 21px; height: 21px; }
.ap-chat-name { font-family: var(--font-display); font-weight: 800; font-size: 1.06rem; letter-spacing: -0.01em; display: block; line-height: 1.1; }
.ap-chat-sub { font-size: .78rem; color: #AEC6E2; display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.ap-dot-live { width: 7px; height: 7px; border-radius: 50%; background: #34D399; box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: apPulse 2s infinite; }
.ap-chat-x { width: 34px; height: 34px; border-radius: 10px; color: #fff; display: grid; place-items: center; position: relative; z-index: 1; transition: background .2s; }
.ap-chat-x:hover { background: rgba(255,255,255,.14); }
.ap-chat-x svg { width: 18px; height: 18px; }

.ap-chat-msgs { flex: 1; overflow-y: auto; padding: 18px 16px 8px; display: flex; flex-direction: column; gap: 14px; background: var(--bg-soft); scroll-behavior: smooth; }
.ap-chat-msgs::-webkit-scrollbar { width: 7px; }
.ap-chat-msgs::-webkit-scrollbar-thumb { background: #cfdcea; border-radius: 4px; }
.ap-msg { display: flex; gap: 9px; max-width: 90%; animation: apIn .35s ease; }
.ap-msg.ap-user { align-self: flex-end; }
.ap-msg.ap-bot { align-self: flex-start; }
.ap-bot-av { width: 28px; height: 28px; border-radius: 8px; background: var(--gold-50); color: var(--gold-600); display: grid; place-items: center; flex: none; margin-top: 2px; }
.ap-bot-av svg { width: 16px; height: 16px; }
.ap-bubble { padding: 11px 14px; border-radius: 16px; font-size: .96rem; line-height: 1.5; }
.ap-user .ap-bubble { background: var(--grad-blue); color: #fff; border-bottom-right-radius: 5px; }
.ap-bot .ap-bubble { background: #fff; color: var(--ink-soft); border: 1px solid var(--line); border-bottom-left-radius: 5px; box-shadow: var(--sh-sm); }
.ap-bubble strong { color: inherit; font-weight: 700; }
.ap-bubble .ap-li { display: block; margin: 3px 0; }
.ap-typing { display: inline-flex; gap: 4px; padding: 2px 0; }
.ap-typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--faint); animation: apBlink 1.3s infinite; }
.ap-typing i:nth-child(2) { animation-delay: .2s; }
.ap-typing i:nth-child(3) { animation-delay: .4s; }

.ap-chips { display: flex; flex-wrap: wrap; gap: 8px; align-self: flex-start; max-width: 100%; padding-left: 37px; }
.ap-chip { font-size: .85rem; font-weight: 600; color: var(--blue-700); background: #fff; border: 1px solid var(--blue-100); padding: 8px 13px; border-radius: 999px; transition: .2s; text-align: left; }
.ap-chip:hover { background: var(--blue-50); transform: translateY(-1px); box-shadow: var(--sh-sm); }

.ap-chat-foot { border-top: 1px solid var(--line); background: #fff; padding: 12px 14px 10px; }
.ap-chat-form { display: flex; align-items: flex-end; gap: 9px; }
.ap-chat-input { flex: 1; font: inherit; font-size: .96rem; color: var(--ink); resize: none; border: 1.5px solid var(--line); background: var(--bg-softer); border-radius: 14px; padding: 11px 13px; max-height: 120px; transition: border-color .2s, box-shadow .2s; }
.ap-chat-input:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(15,108,189,.12); }
.ap-chat-send { width: 44px; height: 44px; flex: none; border-radius: 13px; background: var(--grad-blue); color: #fff; display: grid; place-items: center; box-shadow: var(--sh-blue); transition: transform .25s ease, box-shadow .25s ease; }
.ap-chat-send svg { width: 19px; height: 19px; }
.ap-chat-send:hover { transform: translateY(-2px); }
.ap-chat-send:active { transform: scale(.94); }
.ap-chat-note { text-align: center; font-size: .72rem; color: var(--faint); margin-top: 9px; }

@keyframes apSun { to { transform: rotate(360deg); } }
@keyframes apPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,184,28,.55); } 50% { box-shadow: 0 0 0 6px rgba(255,184,28,0); } }
@keyframes apBlink { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
@keyframes apIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 560px) {
  .ap-chat-launcher .ap-launch-label { display: none; }
  .ap-chat-launcher { padding: 14px; }
  .ap-chat-panel { right: 0; left: 0; bottom: 0; width: 100%; height: 88vh; height: 88dvh; border-radius: 22px 22px 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ap-chat-launcher::after, .ap-dot-live { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .tst-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { max-width: 620px; }
  .hero-stage { order: -1; }
  .showcase { grid-template-columns: 1fr; gap: 40px; }
  .showcase.reverse .showcase-media { order: -1; }
  .journey-steps { grid-template-columns: repeat(2, 1fr); gap: 30px 22px; }
  .journey-step .js-connector { display: none; }
  .flow { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .flow-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .value-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 1rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr; gap: 30px; }
  .blog-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; max-width: 280px; margin-inline: auto; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-row .btn { width: 100%; }
  .hero-stage { width: 100%; max-width: 330px; margin-inline: auto; }
  .device { width: min(62vw, 238px); }
  .chip { padding: 9px 12px; gap: 9px; border-radius: 13px; }
  .chip .ic { width: 32px; height: 32px; border-radius: 9px; }
  .chip .ic svg { width: 17px; height: 17px; }
  .chip .v { font-size: 1rem; }
  .chip .k { font-size: .66rem; }
  .chip-1 { top: 7%; left: -1%; }
  .chip-2 { bottom: 19%; right: -1%; }
  .chip-3 { bottom: -1%; left: 1%; }
  .contact-wrap { grid-template-columns: 1fr !important; }
}

/* Related articles — in-body SEO interlinking (Daybreak tokens) */
.related-reads{padding-top:0}
.related-reads>h2{font-size:clamp(1.15rem,2vw,1.4rem);color:var(--ink);margin:0 0 16px}
.related-grid2{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.related-card{display:flex;flex-direction:column;gap:6px;padding:16px 18px;border:1px solid var(--line);border-radius:14px;background:#fff;text-decoration:none;transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease}
.related-card:hover{transform:translateY(-3px);box-shadow:var(--sh-blue);border-color:var(--blue-100)}
.related-card:focus-visible{outline:2px solid var(--blue);outline-offset:2px}
.related-card .rc-cat{font-size:.72rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:var(--blue)}
.related-card .rc-title{font-weight:700;color:var(--ink);line-height:1.35}

/* Article source/assumptions box — E-E-A-T (Daybreak tokens) */
.source-box{margin:30px 0 4px;padding:16px 18px;border:1px solid var(--line);border-left:3px solid var(--gold-strong);border-radius:12px;background:var(--gold-50);font-size:.9rem;color:var(--ink-soft);line-height:1.55}
.source-box strong{color:var(--ink)}
.source-box .sb-row{margin:5px 0}
