/* =============================================================
   PressPilot — marketing site
   Design language: calm, technical, trustworthy ops console.
   Press-blue (#3B82F6) + deep navy (#0F172A). Linear/Vercel energy.
   ============================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Tokens ---------- */
:root {
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;

  --navy-950: #0a0f1d;
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;

  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  --success: #16a34a;
  --success-bg: #dcfce7;
  --success-fg: #15803d;
  --warning: #d97706;
  --warning-bg: #fef3c7;
  --warning-fg: #b45309;
  --danger: #dc2626;
  --danger-bg: #fee2e2;
  --danger-fg: #b91c1c;
  --neutral-bg: #eef2f7;
  --neutral-fg: #475569;

  /* semantic surfaces (light) */
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --bg-inset: #eef2f8;
  --text: #0f172a;
  --text-muted: #51607a;
  --text-faint: #7c899e;
  --border: #e6ebf3;
  --border-strong: #d7deea;
  --card: #ffffff;
  --card-shadow: 0 1px 2px rgba(15,23,42,.04), 0 12px 32px -12px rgba(15,23,42,.12);
  --card-shadow-lg: 0 2px 4px rgba(15,23,42,.05), 0 30px 60px -20px rgba(15,23,42,.22);

  --brand-grad: linear-gradient(135deg, #60a5fa 0%, #3b82f6 45%, #2563eb 100%);
  --hero-grad: radial-gradient(1200px 600px at 15% -10%, #1e3a8a 0%, rgba(30,58,138,0) 60%),
               radial-gradient(1000px 500px at 100% 0%, #1d4ed8 0%, rgba(29,78,216,0) 55%),
               linear-gradient(180deg, #0b1225 0%, #0a0f1d 100%);

  --maxw: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", "Roboto Mono", Menlo, Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0f1d;
    --bg-alt: #0d1424;
    --bg-inset: #111a2e;
    --text: #eef2fb;
    --text-muted: #a7b2c8;
    --text-faint: #7f8ba3;
    --border: #1c2740;
    --border-strong: #263352;
    --card: #0f1830;
    --card-shadow: 0 1px 2px rgba(0,0,0,.4), 0 18px 40px -16px rgba(0,0,0,.6);
    --card-shadow-lg: 0 2px 4px rgba(0,0,0,.5), 0 40px 80px -24px rgba(0,0,0,.7);
    --neutral-bg: #18233c;
    --neutral-fg: #b7c2d8;
  }
}
/* explicit theme override wins in both directions */
:root[data-theme="dark"] {
  --bg: #0a0f1d; --bg-alt: #0d1424; --bg-inset: #111a2e;
  --text: #eef2fb; --text-muted: #a7b2c8; --text-faint: #7f8ba3;
  --border: #1c2740; --border-strong: #263352; --card: #0f1830;
  --card-shadow: 0 1px 2px rgba(0,0,0,.4), 0 18px 40px -16px rgba(0,0,0,.6);
  --card-shadow-lg: 0 2px 4px rgba(0,0,0,.5), 0 40px 80px -24px rgba(0,0,0,.7);
  --neutral-bg: #18233c; --neutral-fg: #b7c2d8;
}
:root[data-theme="light"] {
  --bg: #ffffff; --bg-alt: #f6f8fc; --bg-inset: #eef2f8;
  --text: #0f172a; --text-muted: #51607a; --text-faint: #7c899e;
  --border: #e6ebf3; --border-strong: #d7deea; --card: #ffffff;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  /* clip (not hidden) so body is NOT a scroll container — hidden would
     force overflow-y:auto and break position:sticky (day-phone, header). */
  overflow-x: clip;
}
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.021em; font-weight: 700; color: var(--text); }
h1 { font-weight: 800; letter-spacing: -0.03em; }
p { color: var(--text-muted); }
strong { color: var(--text); font-weight: 650; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(56px, 8vw, 112px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.bg-alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 650; letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue-600);
}
:root[data-theme="dark"] .eyebrow,
@media (prefers-color-scheme: dark) { .eyebrow { color: var(--blue-400); } }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); margin-top: 14px; }
.section-head p { font-size: 1.12rem; margin-top: 16px; }

.lead { font-size: 1.18rem; color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--blue-600); --_fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 620; font-size: .98rem; letter-spacing: -0.01em;
  background: var(--_bg); color: var(--_fg);
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  box-shadow: 0 1px 2px rgba(37,99,235,.18), 0 10px 24px -12px rgba(37,99,235,.55);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 2px 6px rgba(37,99,235,.28), 0 16px 34px -12px rgba(37,99,235,.7); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 16px 28px; font-size: 1.04rem; border-radius: 14px; }
.btn--ghost {
  --_bg: transparent; --_fg: var(--text);
  border-color: var(--border-strong); box-shadow: none;
  background: color-mix(in srgb, var(--card) 70%, transparent);
}
.btn--ghost:hover { background: var(--bg-inset); box-shadow: none; border-color: var(--slate-400); }
.btn--light { --_bg:#fff; --_fg:#0f172a; box-shadow: 0 10px 30px -12px rgba(0,0,0,.5); }
.btn--onhero-ghost { --_bg: rgba(255,255,255,.06); --_fg:#fff; border-color: rgba(255,255,255,.22); box-shadow:none; backdrop-filter: blur(6px); }
.btn--onhero-ghost:hover { background: rgba(255,255,255,.12); box-shadow:none; }

/* store badges */
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 10px 18px 10px 15px; border-radius: 13px;
  background: #0f172a; color: #fff; border: 1px solid rgba(255,255,255,.09);
  transition: transform .16s ease, box-shadow .2s ease;
  box-shadow: 0 10px 26px -14px rgba(0,0,0,.6);
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(0,0,0,.7); }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .sb-small { font-size: .64rem; opacity: .82; letter-spacing: .04em; text-transform: uppercase; line-height: 1.2; }
.store-badge .sb-big { font-size: 1.06rem; font-weight: 650; line-height: 1.1; }
.store-badge.is-soft { background: var(--card); color: var(--text); border-color: var(--border-strong); }
.store-badge.is-soft .sb-small { opacity: .7; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: saturate(180%) blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.is-stuck { border-color: var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 750; letter-spacing: -0.02em; font-size: 1.12rem; }
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 2px 8px rgba(15,23,42,.12); }
.brand span b { color: var(--blue-600); }
:root[data-theme="dark"] .brand span b { color: var(--blue-400); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: .95rem; color: var(--text-muted); font-weight: 550; transition: color .15s ease; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; }
@media (max-width: 860px) {
  .nav-links { display: none; }
}
@media (max-width: 420px) {
  .nav .btn { padding: 10px 15px; font-size: .9rem; }
  .brand span { font-size: 1.02rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #eaf1ff;
  background: var(--hero-grad);
  padding-top: clamp(48px, 7vw, 90px);
  padding-bottom: clamp(56px, 8vw, 120px);
  isolation: isolate;
}
.hero::before { /* subtle grid */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(rgba(148,163,184,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(148,163,184,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 40%, transparent 78%);
}
.hero::after { /* glow orb */
  content:""; position:absolute; z-index:-1; width: 620px; height: 620px; right: -160px; top: -220px;
  background: radial-gradient(circle, rgba(59,130,246,.35) 0%, rgba(59,130,246,0) 65%);
  filter: blur(10px);
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 46px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  font-size: .84rem; color: #cfe0ff; font-weight: 550; backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.22); }
.hero h1 { color: #fff; font-size: clamp(2.35rem, 5.4vw, 4rem); margin-top: 22px; }
.hero h1 .accent { background: linear-gradient(120deg,#93c5fd,#60a5fa 55%,#a5b4fc); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1.06rem, 1.9vw, 1.28rem); color: #b9c6e4; margin-top: 22px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; align-items: center; }
.hero-trust { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 18px 26px; color: #93a3c4; font-size: .92rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 17px; height: 17px; color: #6ee7a8; flex: none; }
.hero-visual { position: relative; display: flex; justify-content: center; }

/* floating status chips around hero phone */
.float-chip {
  position: absolute; z-index: 5; display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 14px; border-radius: 13px; font-size: .84rem; font-weight: 600; color: #0f172a;
  background: rgba(255,255,255,.96); box-shadow: 0 18px 40px -14px rgba(2,6,23,.6);
  border: 1px solid rgba(255,255,255,.7); backdrop-filter: blur(4px);
  animation: floaty 5.5s ease-in-out infinite;
}
.float-chip .ico { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.float-chip small { display: block; font-size: .72rem; font-weight: 500; color: #64748b; }
.float-chip--tl { top: 40px; left: -8px; animation-delay: -1.2s; }
.float-chip--br { bottom: 74px; right: -14px; animation-delay: -3s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .float-chip--tl { left: 4%; }
  .float-chip--br { right: 4%; }
}
@media (max-width: 520px) { .float-chip { display: none; } }

/* logos strip */
.trusted { text-align: center; }
.trusted p { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-faint); font-weight: 600; }
.trusted-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; margin-top: 22px; align-items: center; }
.trusted-row .pill { display:inline-flex; align-items:center; gap:9px; font-weight:650; color: var(--text-muted); font-size: 1.02rem; }
.trusted-row .pill svg { width: 20px; height: 20px; color: var(--blue-500); }

/* ---------- Device / phone mockup ---------- */
.device {
  --w: 300px;
  width: var(--w); flex: none;
  border-radius: 42px; padding: 11px;
  background: linear-gradient(160deg,#20293c,#0c1220);
  box-shadow: 0 2px 4px rgba(2,6,23,.4), 0 44px 90px -30px rgba(2,6,23,.75), inset 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
}
.device__screen {
  border-radius: 33px; overflow: hidden; background: #eef2f9; position: relative;
  aspect-ratio: 300 / 640;
}
.device__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #0b1220; border-radius: 999px; z-index: 8;
}
.device--sm { --w: 244px; }
.device--tilt { transform: perspective(1400px) rotateY(var(--ry, -14deg)) rotateX(var(--rx, 4deg)) rotate(1deg); transition: transform .3s cubic-bezier(.2,.6,.2,1); will-change: transform; }

/* app screen scaffold */
.appscreen { position: absolute; inset: 0; display: flex; flex-direction: column; background: #f4f6fb; color: #0f172a; font-size: 12px; }
.appscreen * { letter-spacing: -0.01em; }
.statusbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px 4px; font-size: 11px; font-weight: 650; color: #0f172a; }
.statusbar .sb-icons { display: flex; gap: 5px; align-items: center; opacity: .85; }
.statusbar .sb-icons svg { width: 15px; height: 12px; }
.appbody { flex: 1; overflow: hidden; padding: 6px 14px 14px; display: flex; flex-direction: column; gap: 11px; }
.app-topbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; padding: 2px 0 2px; }
.app-topbar .menu { width: 22px; display: flex; flex-direction: column; gap: 3.5px; padding-top: 6px; }
.app-topbar .menu i { height: 2px; background: #0f172a; border-radius: 2px; display: block; }
.app-topbar .menu i:nth-child(2){ width: 70%; }
.app-title { font-size: 17px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.app-subtitle { color: #64748b; font-size: 10.5px; margin-top: 2px; font-weight: 500; }
.bell { width: 34px; height: 34px; border-radius: 50%; background: #e5eaf5; display: grid; place-items: center; position: relative; flex: none; }
.bell::after { content:""; position:absolute; top:8px; right:9px; width:6px; height:6px; border-radius:50%; background:#dc2626; }
.bell svg { width: 16px; height: 16px; color:#475569; }

.card {
  background: #fff; border-radius: 16px; padding: 13px; border: 1px solid #eaeef6;
  box-shadow: 0 1px 2px rgba(15,23,42,.03);
}
.hero-metric { background: linear-gradient(150deg,#eef3ff,#e5edff); border-color: #dfe7fb; display:flex; gap: 12px; }
.hero-metric .big { font-size: 40px; font-weight: 850; letter-spacing: -0.04em; line-height: .92; color:#0f172a; }
.hero-metric .big small { display:block; font-size: 11px; font-weight: 600; color:#64748b; letter-spacing: 0; margin-top: 3px; }
.metric-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.metric-cell { background: rgba(255,255,255,.72); border-radius: 10px; padding: 7px 9px; display:flex; align-items:center; justify-content: space-between; gap: 6px; }
.metric-cell .lbl { display:flex; align-items:center; gap: 6px; color:#475569; font-weight:600; font-size: 10.5px; }
.metric-cell .lbl .d { width: 7px; height:7px; border-radius:50%; flex:none; }
.metric-cell .val { font-weight: 800; font-size: 13px; }
.d-green{ background:#16a34a; } .d-blue{ background:#334155; } .d-amber{ background:#d97706; } .d-red{ background:#dc2626; }

.card-title { font-weight: 750; font-size: 13.5px; letter-spacing: -0.02em; }
.card-head { display:flex; align-items:center; justify-content: space-between; margin-bottom: 8px; }
.card-head .link { color:#2563eb; font-weight: 650; font-size: 11.5px; }
.muted { color:#64748b; }

/* activity timeline */
.timeline { display:flex; flex-direction: column; }
.tl-row { display:flex; gap: 10px; }
.tl-rail { display:flex; flex-direction: column; align-items: center; }
.tl-dot { width: 30px; height:30px; border-radius:50%; background:#e7edfb; display:grid; place-items:center; flex:none; }
.tl-dot svg { width: 15px; height:15px; color:#3b82f6; }
.tl-line { width: 2px; flex: 1; background:#e6ebf5; margin: 2px 0; min-height: 12px; }
.tl-body { flex:1; padding-bottom: 12px; display:flex; align-items:flex-start; justify-content: space-between; gap: 8px; }
.tl-body .t { font-weight: 700; font-size: 12.5px; }
.tl-body .s { color:#64748b; font-size: 10.5px; margin-top: 1px; }

.pill {
  display:inline-flex; align-items:center; gap: 5px; padding: 4px 9px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; white-space: nowrap;
}
.pill .pd { width:6px; height:6px; border-radius:50%; }
.pill-green { background: var(--success-bg); color: var(--success-fg); } .pill-green .pd{ background: var(--success); }
.pill-amber { background: var(--warning-bg); color: var(--warning-fg); } .pill-amber .pd{ background: var(--warning); }
.pill-red { background: var(--danger-bg); color: var(--danger-fg); } .pill-red .pd{ background: var(--danger); }
.pill-neutral { background: var(--neutral-bg); color: var(--neutral-fg); } .pill-neutral .pd{ background:#64748b; }
.pill-blue { background:#dbeafe; color:#1d4ed8; } .pill-blue .pd{ background:#2563eb; }

/* sites rows */
.srow { display:flex; align-items:center; gap: 10px; padding: 10px 2px; border-bottom: 1px solid #f1f4fa; }
.srow:last-child{ border-bottom: none; }
.srow .globe { width: 30px; height:30px; border-radius: 9px; background:#eef3ff; display:grid; place-items:center; flex:none; }
.srow .globe svg { width: 16px; height:16px; color:#3b82f6; }
.srow .site-name { font-weight: 700; font-size: 12.5px; }
.srow .site-meta { color:#64748b; font-size: 10px; margin-top:1px; }

/* deploy steps */
.deploy-head { display:flex; align-items:center; justify-content: space-between; }
.progress { height: 7px; border-radius: 999px; background:#e6ebf5; overflow:hidden; margin-top: 10px; }
.progress > i { display:block; height:100%; width: 62%; border-radius: 999px; background: linear-gradient(90deg,#3b82f6,#60a5fa); }
.step { display:flex; align-items:center; gap: 10px; padding: 8px 0; border-bottom: 1px solid #f2f5fb; }
.step:last-child { border-bottom:none; }
.step .sdot { width: 20px; height:20px; border-radius:50%; flex:none; display:grid; place-items:center; }
.sdot-done { background: var(--success-bg); } .sdot-done svg{ width:12px;height:12px;color:var(--success); }
.sdot-run { background:#dbeafe; position:relative; }
.sdot-run::after{ content:""; width:9px;height:9px;border-radius:50%;border:2px solid #2563eb; border-top-color: transparent; animation: spin 1s linear infinite; }
.sdot-wait { background:#eef2f8; border:1.5px dashed #cbd5e1; }
@keyframes spin { to { transform: rotate(360deg); } }
.step .stext { font-weight: 650; font-size: 12px; }
.step .stime { margin-left:auto; color:#94a3b8; font-size: 10px; font-family: var(--mono); }
.codeline { font-family: var(--mono); font-size: 10px; background:#0f172a; color:#c7d2fe; border-radius: 10px; padding: 9px 11px; overflow:hidden; }
.codeline .c-ok { color:#6ee7a8; } .codeline .c-dim{ color:#7c8bb0; }

/* access request card */
.acc-tabs { display:flex; gap: 22px; border-bottom:1px solid #eef1f8; padding: 0 2px 8px; }
.acc-tabs .t { font-weight: 700; font-size: 12.5px; color:#94a3b8; padding-bottom: 6px; }
.acc-tabs .t.on { color:#2563eb; border-bottom: 2px solid #2563eb; }
.acc-card { display:flex; flex-direction: column; gap: 6px; }
.acc-card .top { display:flex; align-items:center; justify-content: space-between; }
.acc-card .who { font-weight: 750; font-size: 12.5px; }
.acc-card .desc { color:#475569; font-size: 11px; }
.acc-card .meta { color:#94a3b8; font-size: 10px; }
.revoke { margin-top: 4px; align-self: flex-start; border:1px solid #f0c9c9; color:#dc2626; background:#fff; font-weight:700; font-size: 11px; padding: 8px 14px; border-radius: 10px; }

/* notifications rows */
.nrow { display:flex; gap: 10px; padding: 10px 2px; border-bottom:1px solid #f1f4fa; align-items:flex-start; }
.nrow:last-child{ border-bottom:none; }
.nrow .nico { width: 30px; height:30px; border-radius: 9px; display:grid; place-items:center; flex:none; }
.nico-amber{ background: var(--warning-bg);} .nico-amber svg{ color: var(--warning-fg); width:15px;height:15px;}
.nico-red{ background: var(--danger-bg);} .nico-red svg{ color: var(--danger-fg); width:15px;height:15px;}
.nico-blue{ background:#dbeafe;} .nico-blue svg{ color:#1d4ed8; width:15px;height:15px;}
.nrow .n-t { font-weight: 700; font-size: 12px; }
.nrow .n-s { color:#64748b; font-size: 10.5px; margin-top: 1px; }
.nrow .unread { width:8px;height:8px;border-radius:50%; background:#2563eb; margin-top:4px; flex:none; }

.app-tabbar { display:flex; justify-content: space-around; padding: 9px 8px 12px; border-top:1px solid #eaeef6; background:#fff; }
.app-tabbar .tab { display:flex; flex-direction: column; align-items:center; gap: 3px; color:#94a3b8; font-size: 9.5px; font-weight: 600; }
.app-tabbar .tab svg { width: 20px; height:20px; }
.app-tabbar .tab.on { color:#2563eb; }

/* ---------- Feature sections (alternating split) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 84px); align-items: center; }
.feature + .feature { margin-top: clamp(56px, 9vw, 120px); }
.feature.reverse .feature-media { order: 2; }
.feature-media { display: flex; justify-content: center; position: relative; }
.feature-media::before {
  content:""; position:absolute; width: 78%; height: 78%; border-radius: 40px; z-index:0;
  background: radial-gradient(circle at 50% 40%, rgba(59,130,246,.14), transparent 70%);
  filter: blur(8px);
}
.feature-media .device { position: relative; z-index: 1; }
.feature-copy h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 14px; }
.feature-copy p { margin-top: 16px; font-size: 1.08rem; }
.feature-list { margin-top: 22px; display: flex; flex-direction: column; gap: 13px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 1.02rem; }
.feature-list .tick { width: 24px; height: 24px; border-radius: 8px; flex: none; display: grid; place-items: center; background: color-mix(in srgb, var(--blue-500) 15%, transparent); margin-top: 1px; }
.feature-list .tick svg { width: 14px; height: 14px; color: var(--blue-600); }
:root[data-theme="dark"] .feature-list .tick svg { color: var(--blue-400); }
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature.reverse .feature-media { order: 0; }
  .feature-copy { text-align: center; }
  .feature-list { text-align: left; max-width: 460px; margin-inline: auto; }
  .feature-copy .eyebrow { justify-content: center; }
}

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--card-shadow);
}
.stat .num { font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 820; letter-spacing: -0.04em;
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { margin-top: 8px; color: var(--text-muted); font-weight: 550; font-size: .98rem; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ---------- Personas ---------- */
.persona-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.persona {
  border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border);
  background: var(--card); box-shadow: var(--card-shadow); position: relative; overflow: hidden;
}
.persona::after { content:""; position:absolute; inset:0 0 auto auto; width: 160px; height: 160px;
  background: radial-gradient(circle at 100% 0%, rgba(59,130,246,.12), transparent 70%); }
.persona .p-ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--brand-grad); box-shadow: 0 10px 24px -12px rgba(37,99,235,.7); }
.persona .p-ico svg { width: 24px; height: 24px; color: #fff; }
.persona h3 { font-size: 1.28rem; margin-top: 18px; }
.persona p { margin-top: 10px; }
@media (max-width: 760px) { .persona-grid { grid-template-columns: 1fr; } }

/* ---------- Trust ---------- */
.trust-wrap {
  background: var(--hero-grad); border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 60px);
  color: #eaf1ff; position: relative; overflow: hidden;
}
.trust-wrap::before { content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(148,163,184,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(148,163,184,.05) 1px,transparent 1px);
  background-size: 40px 40px; mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 80%); }
.trust-wrap h2 { color:#fff; position: relative; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; position: relative; }
.trust-item .ti-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.trust-item .ti-ico svg { width: 22px; height: 22px; color: #93c5fd; }
.trust-item h4 { color: #fff; font-size: 1.06rem; margin-top: 16px; }
.trust-item p { color: #a9b8d8; font-size: .96rem; margin-top: 8px; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .trust-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin-inline: auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-weight: 650; font-size: 1.08rem; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { width: 22px; height: 22px; flex: none; color: var(--slate-400); transition: transform .25s ease; }
.faq-item[open] summary .chev { transform: rotate(45deg); color: var(--blue-500); }
.faq-item .faq-a { padding: 0 4px 24px; color: var(--text-muted); font-size: 1.02rem; max-width: 680px; }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center; background: var(--hero-grad); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(44px, 7vw, 84px) 24px; position: relative; overflow: hidden;
}
.final-cta::after { content:""; position:absolute; z-index:0; width: 520px; height: 520px; left: 50%; top: -60%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(59,130,246,.4), transparent 62%); }
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); }
.final-cta p { color: #c0cdea; font-size: 1.14rem; margin-top: 16px; max-width: 560px; margin-inline: auto; }
.final-cta .hero-cta { justify-content: center; margin-top: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #b7c2d8; padding-block: 56px 30px; }
:root[data-theme="light"] .site-footer { background: #0a0f1d; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.footer-brand .brand { color: #fff; }
.footer-brand p { color: #8b98b4; margin-top: 16px; max-width: 320px; font-size: .96rem; }
.footer-brand .ttac { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; color: #7f8ca8; font-size: .86rem; }
.footer-brand .ttac img { width: 24px; height: 24px; border-radius: 6px; }
.footer-col h5 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 650; }
.footer-col ul { margin-top: 16px; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: #97a4c0; font-size: .95rem; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: #6f7d99; font-size: .88rem; }
.footer-bottom .disclaim { max-width: 720px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ---------- Legal pages ---------- */
.legal-hero { background: var(--hero-grad); color: #fff; padding-block: clamp(48px, 7vw, 82px); }
.legal-hero .eyebrow { color: #93c5fd; }
.legal-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-top: 12px; }
.legal-hero p { color: #b4c2e0; margin-top: 14px; }
.legal-wrap { display: grid; grid-template-columns: 250px 1fr; gap: 54px; align-items: start; }
.legal-toc { position: sticky; top: 90px; }
.legal-toc h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-faint); }
.legal-toc ul { margin-top: 14px; display: flex; flex-direction: column; gap: 3px; border-left: 2px solid var(--border); }
.legal-toc a { display: block; padding: 6px 0 6px 16px; margin-left: -2px; border-left: 2px solid transparent;
  color: var(--text-muted); font-size: .9rem; transition: color .15s, border-color .15s; }
.legal-toc a:hover { color: var(--text); border-color: var(--blue-400); }
.legal-body { max-width: 760px; }
.legal-body .intro { font-size: 1.12rem; color: var(--text-muted); }
.legal-body .intro p + p { margin-top: 14px; }
.legal-section { margin-top: 40px; scroll-margin-top: 90px; }
.legal-section h2 { font-size: 1.4rem; display: flex; align-items: baseline; gap: 12px; }
.legal-section h2 .n { font-size: .95rem; font-weight: 700; color: var(--blue-500); font-variant-numeric: tabular-nums; }
.legal-section p { margin-top: 14px; }
.legal-section ul.bul { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.legal-section ul.bul li { position: relative; padding-left: 24px; color: var(--text-muted); }
.legal-section ul.bul li::before { content:""; position:absolute; left: 4px; top: 10px; width: 7px; height: 7px; border-radius: 2px; background: var(--blue-400); }
.legal-note { margin-top: 40px; padding: 18px 20px; border-radius: 14px; background: var(--bg-inset); border: 1px solid var(--border);
  color: var(--text-muted); font-size: .95rem; display: flex; gap: 12px; }
.legal-note svg { width: 20px; height: 20px; color: var(--blue-500); flex: none; margin-top: 2px; }
@media (max-width: 900px) { .legal-wrap { grid-template-columns: 1fr; } .legal-toc { display: none; } }

/* ---------- Reveal on scroll (progressive enhancement) ----------
   Only hide when JS is present (html.js). Without JS, everything shows. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip, .sdot-run::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* theme toggle button */
.theme-toggle { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--border-strong);
  background: var(--card); display: grid; place-items: center; color: var(--text-muted); }
.theme-toggle:hover { background: var(--bg-inset); color: var(--text); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .sun { display: none; }
:root[data-theme="dark"] .theme-toggle .sun { display: block; }
:root[data-theme="dark"] .theme-toggle .moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .sun { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .moon { display: none; }
}

/* =============================================================
   Animation layer + coming-soon treatment
   ============================================================= */

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100;
  background: linear-gradient(90deg, #60a5fa, #3b82f6, #6366f1);
  box-shadow: 0 0 14px rgba(59,130,246,.7); border-radius: 0 3px 3px 0;
  transition: width .08s linear; pointer-events: none;
}

/* ---- Animated gradient text ---- */
.grad-anim {
  background: linear-gradient(100deg, #93c5fd, #60a5fa 30%, #a5b4fc 55%, #60a5fa 75%, #93c5fd);
  background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 7s ease-in-out infinite;
}
@keyframes gradShift { 0%,100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }

/* ---- Hero aurora blobs ---- */
.aurora { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.aurora span { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; mix-blend-mode: screen; will-change: transform; }
.aurora .a1 { width: 460px; height: 460px; background: #3b82f6; top: -140px; left: -90px; animation: drift1 20s ease-in-out infinite; }
.aurora .a2 { width: 400px; height: 400px; background: #6366f1; bottom: -160px; right: -70px; animation: drift2 24s ease-in-out infinite; }
.aurora .a3 { width: 320px; height: 320px; background: #22d3ee; top: 28%; right: 22%; opacity: .28; animation: drift1 28s ease-in-out infinite reverse; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(50px,-34px) scale(1.12); } 66% { transform: translate(-26px,26px) scale(.94); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-46px,-30px) scale(1.1); } }

/* ---- AEO answer lead ---- */
.answer-lead {
  max-width: 760px; margin: 0 auto; text-align: center;
  font-size: 1.16rem; color: var(--text-muted); line-height: 1.55;
}
.answer-lead strong { color: var(--text); }

/* ---- Marquee ---- */
.marquee { margin-top: 26px; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 44px; width: max-content; align-items: center; animation: marquee 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee .pill { white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- Coming-soon store badge ---- */
.store-badge.is-soon { cursor: default; position: relative; opacity: .96; }
.store-badge.is-soon:hover { transform: none; }
.store-badge .soon-tag {
  margin-left: 4px; font-size: .58rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: #0b1225; background: linear-gradient(120deg,#93c5fd,#60a5fa); padding: 3px 7px; border-radius: 999px;
  align-self: flex-start; position: relative; top: -1px;
}
.store-badge.is-soft .soon-tag { color: #0b1225; }

/* ---- Button + badge shine sweep ---- */
.btn, .store-badge { position: relative; overflow: hidden; isolation: isolate; }
.btn::after, .store-badge:not(.is-soon)::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%; z-index: 1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .65s cubic-bezier(.2,.6,.2,1);
}
.btn:hover::after, .store-badge:not(.is-soon):hover::after { left: 150%; }
.btn > * { position: relative; z-index: 2; }

/* ---- Card hover lift ---- */
.stat, .persona { transition: transform .35s cubic-bezier(.2,.6,.2,1), box-shadow .35s ease, border-color .3s ease; }
.stat:hover, .persona:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-lg); border-color: color-mix(in srgb, var(--blue-500) 40%, var(--border)); }
.trust-item { transition: transform .3s ease; }
.trust-item:hover { transform: translateY(-4px); }
.trust-item:hover .ti-ico { border-color: rgba(147,197,253,.5); }

/* ---- Floating device (feature mockups) ---- */
.device--float { animation: floaty 7s ease-in-out infinite; }
.feature:nth-child(even) .device--float { animation-delay: -2.5s; }

/* ---- Directional + staggered reveals ---- */
.js .reveal-l, .js .reveal-r {
  opacity: 0; transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1);
}
.js .reveal-l { transform: translateX(-46px); }
.js .reveal-r { transform: translateX(46px); }
.js .reveal-l.in, .js .reveal-r.in { opacity: 1; transform: none; }

.js [data-stagger] > * { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.2,.6,.2,1), transform .6s cubic-bezier(.2,.6,.2,1); }
.js [data-stagger].in > * { opacity: 1; transform: none; }
.js [data-stagger].in > *:nth-child(1) { transition-delay: .04s; }
.js [data-stagger].in > *:nth-child(2) { transition-delay: .12s; }
.js [data-stagger].in > *:nth-child(3) { transition-delay: .20s; }
.js [data-stagger].in > *:nth-child(4) { transition-delay: .28s; }
.js [data-stagger].in > *:nth-child(5) { transition-delay: .36s; }
.js [data-stagger].in > *:nth-child(6) { transition-delay: .44s; }

/* ---- Animated deploy progress bar (plays when feature reveals) ---- */
.progress > i { width: 0; }
.js .feature.in .progress > i { animation: fillbar 1.7s cubic-bezier(.2,.7,.2,1) .2s forwards; }
@keyframes fillbar { from { width: 0; } to { width: 62%; } }

/* ---- Reduced motion: disable it all ---- */
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .reveal,
  .js .reveal-l, .js .reveal-r,
  .js [data-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .grad-anim { animation: none; }
  .aurora span, .device--float, .marquee__track, .float-chip, .sdot-run::after { animation: none !important; }
  .progress > i { width: 62%; animation: none; }
  .btn::after, .store-badge::after { display: none; }
}

/* =============================================================
   v2 layout — centered hero + fanned phones, scrollytelling,
   bento grid, persona strip
   ============================================================= */

/* ---- Centered hero ---- */
.hero--center { text-align: center; }
.hero-center { max-width: 760px; margin-inline: auto; }
.hero--center .hero-sub { margin-inline: auto; }
.hero--center .hero-cta,
.hero--center .hero-trust { justify-content: center; }

/* Fanned trio of phones */
.phone-fan {
  display: flex; justify-content: center; align-items: flex-end;
  margin-top: clamp(40px, 6vw, 70px); perspective: 1800px;
}
.phone-fan .device {
  position: relative;
  box-shadow: 0 2px 4px rgba(2,6,23,.4), 0 60px 100px -40px rgba(2,6,23,.82), inset 0 0 0 1px rgba(255,255,255,.06);
}
.fan-center { --w: 288px; z-index: 3; }
.fan-side { z-index: 1; opacity: .96; }
.fan-left  { --w: 236px; transform: rotate(-9deg) translate(48px, 26px) scale(.98); margin-right: -76px; }
.fan-right { --w: 236px; transform: rotate(9deg)  translate(-48px, 26px) scale(.98); margin-left: -76px; }
@media (max-width: 860px) { .fan-center { --w: 270px; } .fan-left, .fan-right { --w: 216px; } }
@media (max-width: 720px) {
  .fan-side { display: none; }
  .fan-center { --w: 264px; }
}

/* ---- "A day in command" scrollytelling ---- */
.day {
  display: grid; grid-template-columns: minmax(280px, 330px) 1fr;
  gap: clamp(36px, 6vw, 92px); align-items: start;
}
.day-stage { position: sticky; top: 88px; align-self: start; justify-self: center; }
.day-phone { --w: 300px; }
.day-screens { position: absolute; inset: 0; }
.appscreen.day-screen { opacity: 0; visibility: hidden; transition: opacity .55s ease; }
.appscreen.day-screen.is-active { opacity: 1; visibility: visible; z-index: 2; }
html:not(.js) .appscreen.day-screen { opacity: 0; visibility: hidden; }
html:not(.js) .appscreen.day-screen[data-screen="0"] { opacity: 1; visibility: visible; }

.day-beat {
  min-height: 78vh; display: flex; flex-direction: column; justify-content: center;
  padding: 24px 0; transition: opacity .4s ease;
}
.js .day-beat:not(.is-active) { opacity: .42; }
.beat-time {
  display: inline-flex; align-items: center; align-self: flex-start;
  font-family: var(--mono); font-size: .8rem; letter-spacing: .02em;
  color: var(--blue-500); font-weight: 600; text-transform: uppercase;
}
:root[data-theme="dark"] .beat-time { color: var(--blue-400); }
.day-beat h3 { font-size: clamp(1.5rem, 3vw, 2.15rem); margin-top: 14px; }
.day-beat p { margin-top: 16px; font-size: 1.08rem; max-width: 520px; }
.day-beat .feature-list { margin-top: 22px; }

/* home-screen (widget + lock) screen */
.day-screen--home { background: linear-gradient(180deg,#0b1020 0%,#141c33 55%,#0b1020 100%); }
.home-body { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 26px 18px 18px; }
.home-clock { text-align: center; color: #fff; font-weight: 300; font-size: 42px; letter-spacing: -.02em; line-height: 1; }
.home-clock span { display: block; font-size: 12px; font-weight: 500; opacity: .8; margin-top: 8px; }
.widget { width: 100%; border-radius: 20px; padding: 13px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 16px 40px -18px rgba(0,0,0,.7); }
.widget-head { display: flex; align-items: center; gap: 8px; color: #fff; }
.widget-head .wi img { width: 22px; height: 22px; border-radius: 6px; }
.widget-head .wt { font-weight: 700; font-size: 12px; }
.widget-head .wupd { margin-left: auto; font-size: 10px; color: rgba(255,255,255,.6); }
.widget-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 12px; }
.wcell { background: rgba(255,255,255,.08); border-radius: 12px; padding: 10px 4px; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.wcell .wn { font-size: 22px; font-weight: 850; color: #fff; line-height: 1; }
.wn-green { color: #4ade80; } .wn-red { color: #f87171; } .wn-amber { color: #fbbf24; } .wn-blue { color: #60a5fa; }
.wcell .wl { font-size: 9px; color: rgba(255,255,255,.7); font-weight: 600; }
.lock-chip { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: #cbd5e1; font-size: 11px; font-weight: 600; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 8px 14px; border-radius: 999px; }
.lock-chip svg { width: 14px; height: 14px; }
.home-dock { display: flex; gap: 14px; }
.home-dock span { width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,.14); }

@media (max-width: 900px) {
  .day { grid-template-columns: 1fr; gap: 8px; }
  .day-stage { position: sticky; top: 64px; margin: 0 auto 14px; }
  .day-phone { --w: 202px; }
  .day-beat { min-height: 64vh; text-align: center; align-items: center; }
  .day-beat p { margin-inline: auto; }
  .day-beat .feature-list { text-align: left; max-width: 440px; margin-inline: auto; }
  .beat-time { align-self: center; }
}

/* ---- Bento grid ---- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bento-tile {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: var(--card-shadow); position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.6,.2,1), box-shadow .35s ease, border-color .3s ease;
}
.bento-tile:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-lg); border-color: color-mix(in srgb, var(--blue-500) 40%, var(--border)); }
.bento-tile--wide { grid-column: span 2; }
.bento-tile--tall { grid-row: span 2; }
.bento-tile .bt-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--blue-500) 14%, transparent); }
.bento-tile .bt-ico svg { width: 22px; height: 22px; color: var(--blue-600); }
:root[data-theme="dark"] .bento-tile .bt-ico svg { color: var(--blue-400); }
.bento-tile h3 { font-size: 1.16rem; margin-top: 16px; }
.bento-tile p { margin-top: 8px; font-size: .98rem; }
.bento-feature { background: linear-gradient(160deg, color-mix(in srgb, var(--blue-500) 9%, var(--card)), var(--card)); }
.bento-feature .bt-ico { background: var(--brand-grad); box-shadow: 0 10px 24px -12px rgba(37,99,235,.7); }
.bento-feature .bt-ico svg { color: #fff; }
.bt-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.bt-chips .pill { font-size: 10.5px; }
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .bento-tile--wide { grid-column: auto; } }

/* ---- Persona strip ---- */
.persona-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ps-item { display: flex; gap: 14px; align-items: flex-start; padding: 22px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); box-shadow: var(--card-shadow); transition: transform .3s ease, border-color .3s ease; }
.ps-item:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--blue-500) 34%, var(--border)); }
.ps-ico { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: color-mix(in srgb, var(--blue-500) 14%, transparent); }
.ps-ico svg { width: 20px; height: 20px; color: var(--blue-600); }
:root[data-theme="dark"] .ps-ico svg { color: var(--blue-400); }
.ps-item b { display: block; font-size: 1rem; color: var(--text); }
.ps-item span { display: block; margin-top: 5px; color: var(--text-muted); font-size: .92rem; }
@media (max-width: 900px) { .persona-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .persona-strip { grid-template-columns: 1fr; } }

/* ---- Final CTA note ---- */
.final-note { margin-top: 20px; font-size: .96rem; color: #b7c2d8; }
.final-note a { color: #93c5fd; text-decoration: underline; text-underline-offset: 3px; }

/* reduced motion: no crossfade / dim jumps handled instantly */
@media (prefers-reduced-motion: reduce) {
  .appscreen.day-screen { transition: none; }
  .js .day-beat:not(.is-active) { opacity: 1; }
  .bento-tile, .ps-item { transition: none; }
}

/* =============================================================
   v3 layout — getfinvest-inspired: airier hero, product intro,
   value-prop band, 4-col feature cards, orbit ecosystem, logos
   Keeps Press-blue + navy tokens. Theme-aware, reduced-motion safe.
   ============================================================= */

/* ---- Airier hero + decorative side rings ---- */
.hero--airy { padding-bottom: clamp(70px, 9vw, 150px); }
.hero-deco { position: absolute; z-index: -1; color: rgba(147,197,253,.16); pointer-events: none; overflow: hidden; }
.hero-deco svg { width: 100%; height: 100%; display: block; }
.hero-deco--l { width: 200px; height: 200px; left: -56px; top: 90px; opacity: .8; }
.hero-deco--r { width: 240px; height: 240px; right: -66px; bottom: 60px; opacity: .7; }
@media (max-width: 1100px) { .hero-deco--l, .hero-deco--r { display: none; } }

/* Single floating hero phone with orbiting status chips */
.hero-solo {
  position: relative; display: flex; justify-content: center;
  margin-top: clamp(44px, 6vw, 76px); perspective: 1600px;
}
.hero-solo .device {
  --w: 292px;
  box-shadow: 0 2px 4px rgba(2,6,23,.4), 0 70px 120px -44px rgba(2,6,23,.85), inset 0 0 0 1px rgba(255,255,255,.06);
}
.hero-solo .float-chip--tl { top: 16px; left: clamp(-8px, 12vw, 120px); }
.hero-solo .float-chip--br { bottom: 60px; right: clamp(-10px, 12vw, 120px); }
@media (max-width: 560px) { .hero-solo .device { --w: 268px; } }

/* ---- Value-prop band (centered mission statement) ---- */
.valueprop {
  background: var(--hero-grad); color: #eaf1ff; position: relative; overflow: hidden;
  padding-block: clamp(56px, 8vw, 104px);
}
.valueprop::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(148,163,184,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(148,163,184,.05) 1px, transparent 1px);
  background-size: 42px 42px; mask-image: radial-gradient(120% 90% at 50% 50%, #000 35%, transparent 82%);
}
.valueprop-inner { max-width: 780px; margin-inline: auto; text-align: center; position: relative; }
.valueprop-inner .eyebrow { justify-content: center; }
.valueprop-inner h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.2rem); margin-top: 14px; }
.valueprop-inner p { color: #b9c6e4; font-size: clamp(1.06rem, 1.9vw, 1.24rem); margin-top: 18px; }

/* ---- 4-column feature cards (getfinvest signature) ---- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; box-shadow: var(--card-shadow); position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.6,.2,1), box-shadow .35s ease, border-color .3s ease;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-lg); border-color: color-mix(in srgb, var(--blue-500) 40%, var(--border)); }
.feat-card .ft-ico {
  width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center;
  background: var(--brand-grad); box-shadow: 0 12px 26px -12px rgba(37,99,235,.7);
}
.feat-card .ft-ico svg { width: 25px; height: 25px; color: #fff; }
.feat-card h3 { font-size: 1.16rem; margin-top: 18px; }
.feat-card p { margin-top: 9px; font-size: .98rem; }
@media (max-width: 960px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .feat-grid { grid-template-columns: 1fr; } }

/* ---- Orbit / ecosystem graphic ---- */
.orbit {
  position: relative; width: min(600px, 92vw); height: min(600px, 92vw); aspect-ratio: 1;
  margin: clamp(24px, 4vw, 48px) auto 0;
}
.orbit-ring { position: absolute; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.orbit-ring--1 { width: 62%; height: 62%; border: 1px solid var(--border-strong); }
.orbit-ring--2 { width: 96%; height: 96%; border: 1px solid var(--border); }
.orbit-ring--dash {
  width: 79%; height: 79%; border: 1.5px dashed color-mix(in srgb, var(--blue-500) 40%, transparent);
  animation: orbitspin 46s linear infinite;
}
@keyframes orbitspin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.orbit-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: clamp(120px, 20%, 150px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--blue-500) 22%, var(--card)), var(--card));
  border: 1px solid color-mix(in srgb, var(--blue-500) 40%, var(--border));
  box-shadow: var(--card-shadow-lg), 0 0 0 10px color-mix(in srgb, var(--blue-500) 8%, transparent);
  justify-content: center;
}
.orbit-core img { width: 44%; border-radius: 14px; box-shadow: 0 8px 20px -8px rgba(15,23,42,.4); }
.orbit-core span { font-weight: 750; font-size: .82rem; letter-spacing: -0.01em; color: var(--text); }
.orbit-node {
  position: absolute; transform: translate(-50%, -50%); z-index: 2;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 9px 14px 9px 10px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--border-strong); box-shadow: var(--card-shadow);
  font-weight: 650; font-size: .9rem; color: var(--text);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.orbit-node:hover { transform: translate(-50%, -50%) scale(1.06); border-color: color-mix(in srgb, var(--blue-500) 45%, var(--border)); box-shadow: var(--card-shadow-lg); }
.orbit-node .on-ico { width: 28px; height: 28px; border-radius: 9px; flex: none; display: grid; place-items: center; background: color-mix(in srgb, var(--blue-500) 14%, transparent); }
.orbit-node .on-ico svg { width: 16px; height: 16px; color: var(--blue-600); }
:root[data-theme="dark"] .orbit-node .on-ico svg { color: var(--blue-400); }
@media (max-width: 620px) {
  .orbit { width: 94vw; height: 94vw; }
  .orbit-node { font-size: .76rem; padding: 6px 11px 6px 7px; gap: 6px; }
  .orbit-node .on-ico { width: 22px; height: 22px; border-radius: 7px; }
  .orbit-node .on-ico svg { width: 13px; height: 13px; }
  .orbit-core span { font-size: .72rem; }
}

/* ---- "Works with" logos band (replaces investor parade) ---- */
.logos-band { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 18px; }
.logo-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--border); box-shadow: var(--card-shadow);
  font-weight: 650; font-size: 1rem; color: var(--text);
  transition: transform .3s ease, border-color .3s ease;
}
.logo-pill:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--blue-500) 35%, var(--border)); }
.logo-pill svg { width: 20px; height: 20px; color: var(--blue-500); flex: none; }
:root[data-theme="dark"] .logo-pill svg { color: var(--blue-400); }

/* ---- Bigger final CTA ---- */
.final-cta--big { padding-block: clamp(56px, 9vw, 104px); }
.final-cta--big .hero-badge { display: inline-flex; }

/* ---- v3 reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .orbit-ring--dash { animation: none; }
  .feat-card, .orbit-node, .logo-pill { transition: none; }
}
