/* ============================================================
   UTXO Suite — Home page styles
   ============================================================ */
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--fg-1);
  background:
    radial-gradient(ellipse 60% 42% at 50% -4%, var(--bg-tint-blue), transparent 60%),
    radial-gradient(ellipse 44% 36% at 92% 2%, var(--bg-tint-violet), transparent 60%),
    var(--bg-page);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
svg { display: block; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.mark { display: block; }

/* page atmosphere */
.bg-atmos {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 56% 44% at 8% 6%, var(--bg-tint-blue), transparent 60%),
    radial-gradient(ellipse 48% 40% at 94% 2%, var(--bg-tint-violet), transparent 60%),
    var(--bg-page);
  transition: background var(--t-slow) ease;
}

/* ── meta label ── */
.label {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 13px; border-radius: var(--r-pill);
  border: 1px solid var(--line-accent); background: var(--bg-tint-blue);
  font-size: var(--t-meta); font-weight: 700; letter-spacing: var(--ls-caps);
  text-transform: uppercase; color: var(--brand-blue); font-family: var(--font-mono);
}
[data-theme="dark"] .label { color: var(--brand-blue-soft); }
.gt {
  background: var(--brand-gradient-mark);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.live-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--pos-soft);
  box-shadow: 0 0 0 0 rgba(52,211,153,0.5); animation: pulse 2s ease infinite; display:inline-block; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(52,211,153,0.5);} 50%{box-shadow:0 0 0 5px rgba(52,211,153,0);} }

/* ── buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px;
  border-radius: var(--r-pill); font-weight: 600; font-size: 14px; letter-spacing: -0.01em;
  transition: transform var(--t-fast) var(--easing), box-shadow var(--t-fast), opacity var(--t-fast), background var(--t-fast); white-space: nowrap; }
.btn.primary { background: var(--brand-gradient-vivid); color: #fff; box-shadow: var(--shadow-cta); position: relative; overflow: hidden; }
.btn.primary::after { content:""; position:absolute; inset:0; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.32) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform var(--t-reveal) var(--easing); }
.btn.primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-cta-hover); }
.btn.primary:hover::after { transform: translateX(120%); }
.btn.ghost { background: var(--bg-glass); color: var(--fg-1); border: 1px solid var(--line-strong); backdrop-filter: blur(12px); }
.btn.ghost:hover { transform: translateY(-2px); border-color: var(--line-accent); }
.btn.lg { padding: 15px 28px; font-size: 15px; }
.arrow svg { transition: transform var(--t-fast) var(--easing); }
.btn:hover .arrow svg, .btn.arrow:hover svg { transform: translateX(3px); }

/* ── header ── */
.hdr { position: sticky; top: 0; z-index: 100;
  background: var(--bg-glass-strong); backdrop-filter: blur(22px) saturate(1.3);
  border-bottom: 1px solid var(--line); transition: background var(--t-base); }
.hdr-in { max-width: 1240px; margin: 0 auto; height: 68px; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -0.03em; font-size: 18px; }
.brand .bm { width: 34px; height: 34px; }
.nav { display: flex; align-items: center; gap: 2px; font-size: 13.5px; font-weight: 600; color: var(--fg-3); }
.nav a { padding: 8px 13px; border-radius: var(--r-pill); transition: color var(--t-fast), background var(--t-fast); }
.nav a:hover { color: var(--fg-1); background: var(--bg-card-sub); }
.hdr-right { display: flex; align-items: center; gap: 10px; }
.icon-btn { width: 38px; height: 38px; border-radius: var(--r-pill); display: grid; place-items: center;
  border: 1px solid var(--line-strong); background: var(--bg-glass); transition: background var(--t-fast), transform var(--t-fast); }
.icon-btn:hover { background: var(--bg-card-hover); transform: translateY(-1px); }
.icon-btn svg { width: 17px; height: 17px; stroke: var(--fg-2); }
@media (max-width: 1080px){ .nav { display: none; } }

/* ── HERO (animated neon logo rotator) ── */
/* ── HERO (split, cinematic) ── */
.hero { position: relative; color: #EAF0FF; isolation: isolate; overflow: hidden;
  background: #06080F url('shots/hero-bg.png') center / cover no-repeat; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 28%; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,8,15,0) 0%, var(--bg-page) 98%); }
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 36px;
  align-items: center; min-height: min(86vh, 800px); padding-top: 44px; padding-bottom: 60px; }
.hero-copy { text-align: left; }

.hero .label { margin: 0; white-space: nowrap; border-color: rgba(255,255,255,0.18); background: rgba(120,170,255,0.12); color: #A9D2FF; }
.hero h1 { font-size: clamp(2.9rem, 5.1vw, 4.6rem); font-weight: 680; letter-spacing: -0.05em;
  line-height: 0.98; margin: 22px 0 0; max-width: 13ch; text-wrap: balance; color: #fff; text-shadow: 0 2px 40px rgba(8,14,40,0.5); }
.hero .lead { font-size: clamp(1.04rem, 1.3vw, 1.22rem); color: rgba(225,234,255,0.82); margin: 22px 0 0; max-width: 500px; line-height: 1.55; }
.hero .btn.ghost { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.22); color: #fff; }
.hero .btn.ghost:hover { background: rgba(255,255,255,0.16); }
.hero .proof { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.hero .proof strong { color: #fff; }
.hero .proof .pi { background: rgba(120,170,255,0.16); border-color: rgba(120,170,255,0.3); }
.hero .proof .pi svg { stroke: #A9D2FF; }
.hero-actions { display: flex; gap: 12px; margin: 32px 0 0; flex-wrap: wrap; justify-content: flex-start; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 0; justify-content: flex-start; }

/* hero visual + logo rotator */
.hero-visual { position: relative; height: 480px; display: grid; place-items: center; }
.rotator { position: relative; width: 216px; height: 216px; animation: floaty 6.5s var(--easing-motion) infinite alternate; }
@keyframes floaty { from { transform: translateY(-8px); } to { transform: translateY(8px); } }
.rotator .ring-spin { position: absolute; inset: -20%; border-radius: 50%; z-index: 0;
  background: conic-gradient(from 0deg, transparent 0 62%, var(--neon, rgba(120,170,255,0.7)) 84%, transparent 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2px));
  animation: spin 9s linear infinite; opacity: 0.85; transition: background var(--t-base); }
@keyframes spin { to { transform: rotate(360deg); } }
.rotator .halo { position: absolute; inset: -34%; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, var(--neon, rgba(45,168,255,0.5)) 0%, transparent 60%);
  filter: blur(18px); opacity: 0.6; transition: background var(--t-base) ease; animation: haloPulse 3.4s ease-in-out infinite; }
@keyframes haloPulse { 0%,100%{ transform: scale(0.9); opacity:0.5 } 50%{ transform: scale(1.06); opacity:0.78 } }
.rotator .rmark { position: absolute; inset: 6%; opacity: 0; transform: scale(0.8) translateY(8px); z-index: 1;
  transition: opacity .8s var(--easing-motion), transform .8s var(--easing-motion); }
.rotator .rmark.on { opacity: 1; transform: none; }
.rotator .rmark svg, .rotator .rmark img { width: 100%; height: 100%; filter: drop-shadow(0 16px 38px rgba(0,0,0,0.55)); }
.rotator .rmark img { border-radius: 40px; }
.rotator .rlabel { position: absolute; left: 50%; bottom: -42px; transform: translateX(-50%); white-space: nowrap; z-index: 2;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(220,232,255,0.85); transition: opacity .5s; }
.rotator .rlabel svg { display: none; }
.proof { display: inline-flex; gap: 9px; align-items: center; padding: 9px 16px 9px 11px;
  border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--bg-card); box-shadow: var(--shadow-card); }
.proof .pi { width: 26px; height: 26px; border-radius: 8px; flex: 0 0 26px; display: grid; place-items: center;
  background: var(--bg-tint-blue); border: 1px solid var(--line-accent); }
.proof .pi svg { width: 14px; height: 14px; stroke: var(--brand-blue); }
[data-theme="dark"] .proof .pi svg { stroke: var(--brand-blue-soft); }
.proof strong { display: block; font-size: 0.84rem; font-weight: 650; letter-spacing: -0.01em; white-space: nowrap; }
.proof span { display: none; }

/* reveal */
.rv { opacity: 0; transform: translateY(22px); transition: opacity var(--t-reveal) var(--easing-motion), transform var(--t-reveal) var(--easing-motion); }
.rv.in { opacity: 1; transform: none; }
.d1{transition-delay:.06s}.d2{transition-delay:.13s}.d3{transition-delay:.2s}.d4{transition-delay:.27s}

/* hero responsive */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; min-height: 0; }
  .hero-copy { text-align: center; }
  .hero .label { margin: 0 auto; }
  .hero h1, .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { height: 320px; order: -1; }
  .rotator { width: 170px; height: 170px; }
}

/* ── HERO PRODUCT SHOT (big framed app screenshot) ── */
.hero-shot { margin: 54px auto 0; max-width: 1140px; position: relative; }
.hero-shot::before { content: ""; position: absolute; left: 8%; right: 8%; top: -6%; height: 60%; z-index: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(45,168,255,0.20), transparent 72%); filter: blur(16px); }
.win { position: relative; z-index: 1; border-radius: 16px; overflow: hidden; border: 1px solid var(--line-strong);
  background: var(--bg-card); box-shadow: 0 44px 120px rgba(8,14,40,0.26), 0 10px 30px rgba(0,0,0,0.12); }
[data-theme="dark"] .win { box-shadow: 0 44px 120px rgba(0,0,0,0.6), 0 10px 30px rgba(0,0,0,0.45); }
.win-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--bg-card-sub); }
.win-bar .d { width: 11px; height: 11px; border-radius: 50%; }
.win-bar .url { margin-left: 14px; flex: 1; max-width: 380px; height: 28px; border-radius: 8px; background: var(--bg-page);
  border: 1px solid var(--line); display: flex; align-items: center; gap: 8px; padding: 0 13px; font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-3); }
.win-shot { display: block; width: 100%; height: auto; }
.shot-cap { text-align: center; margin: 20px auto 0; font-size: 0.84rem; color: var(--fg-3); }

/* showcase strip */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.sc { border-radius: var(--r-card-xl); overflow: hidden; border: 1px solid var(--line); background: var(--bg-card);
  box-shadow: var(--shadow-card); transition: transform var(--t-base) var(--easing), box-shadow var(--t-base); }
.sc:hover { transform: translateY(-6px); box-shadow: var(--shadow-brand); }
.sc .scimg { width: 100%; height: auto; display: block; border-bottom: 1px solid var(--line); background: var(--bg-card-sub); }
.sc .scbody { padding: 24px 28px 28px; }
.sc .scbody h3 { font-size: 1.18rem; font-weight: 700; letter-spacing: -0.02em; display: flex; align-items: center; gap: 11px; }
.sc .scbody h3 .nm { width: 32px; height: 32px; }
.sc .scbody p { font-size: 0.9rem; color: var(--fg-3); margin-top: 10px; line-height: 1.55; }

/* ── stats bar ── */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-card-sub); }
.stats-in { max-width: 1240px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 16px; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat .v { font-size: 2.1rem; font-weight: 700; letter-spacing: -0.03em; font-family: var(--font-mono); }
.stat .v .gt { font-family: var(--font-mono); }
.stat .l { font-size: 0.78rem; color: var(--fg-3); margin-top: 4px; letter-spacing: 0.02em; }

/* ── sections ── */
.sec { padding: var(--s-12) 0; }
.sec.alt { background: var(--bg-card-sub); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.sec-head.left { margin-left: 0; text-align: left; }
.sec-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 600; letter-spacing: -0.035em; margin: 16px 0 0; line-height: 1.08; text-wrap: balance; }
.sec-head p { color: var(--fg-2); margin: 16px 0 0; font-size: 1.04rem; }

/* security product cards */
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.scard { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-card-lg);
  padding: 28px 24px; box-shadow: var(--shadow-card); position: relative; overflow: hidden;
  transition: transform var(--t-base) var(--easing), border-color var(--t-base), box-shadow var(--t-base); display: block; }
.scard:hover { transform: translateY(-5px); border-color: var(--line-accent); box-shadow: var(--shadow-brand); }
.scard .nm { width: 56px; height: 56px; margin-bottom: 20px; transition: transform var(--t-base) var(--easing); }
.scard:hover .nm { transform: scale(1.07) rotate(-2deg); }
.scard h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; }
.scard p { font-size: 0.88rem; color: var(--fg-3); margin-top: 10px; line-height: 1.55; }
.scard .more { font-size: 0.8rem; font-weight: 650; color: var(--brand-blue); margin-top: 16px; display: inline-flex; align-items: center; gap: 5px; }
[data-theme="dark"] .scard .more { color: var(--brand-blue-soft); }

/* flow / how it works */
.flow { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center; }
.flow-steps { display: flex; flex-direction: column; gap: 14px; }
.fstep { display: flex; gap: 16px; padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--r-card);
  background: var(--bg-card); box-shadow: var(--shadow-card); transition: border-color var(--t-base), transform var(--t-base); }
.fstep:hover { border-color: var(--line-accent); transform: translateX(4px); }
.fstep .n { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 9px; display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 13px; color: #fff; background: var(--brand-gradient-vivid); }
.fstep h4 { font-size: 0.98rem; font-weight: 650; }
.fstep p { font-size: 0.85rem; color: var(--fg-3); margin-top: 4px; }

/* intercept terminal */
.terminal { background: linear-gradient(160deg, #0c0f17 0%, #08090e 100%); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-card-xl); padding: 0; color: #e8edf6; box-shadow: var(--shadow-modal); overflow: hidden; position: relative; }
.terminal .bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.terminal .bar .dt { width: 10px; height: 10px; border-radius: 50%; }
.terminal .bar .title { margin-left: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); text-transform: uppercase; }
.terminal .body { padding: 22px; font-family: var(--font-mono); font-size: 12.5px; line-height: 1.9; }
.tline { display: flex; gap: 10px; opacity: 0; transform: translateY(6px); }
.tline.show { opacity: 1; transform: none; transition: all .4s var(--easing); }
.tk { color: rgba(255,255,255,0.4); }
.tg { color: #34D399; } .tb { color: #2DA8FF; } .tv { color: #9b6cff; } .tw { color: #FFB44C; } .tr { color: #f87171; }
.verdict { margin-top: 14px; display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-radius: 12px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); opacity: 0; transition: opacity .5s; }
.verdict.show { opacity: 1; }
.verdict .vi { width: 26px; height: 26px; border-radius: 8px; background: var(--pos); display: grid; place-items: center; }
.verdict strong { font-family: var(--font-sans); font-size: 13px; color: #fff; }
.verdict span { font-family: var(--font-sans); font-size: 11.5px; color: rgba(255,255,255,0.6); display: block; }
.scanline { position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45,168,255,0.7), transparent); animation: scan 6s linear infinite; }
@keyframes scan { 0%{transform:translateY(0);opacity:0;} 8%{opacity:1;} 92%{opacity:1;} 100%{transform:translateY(420px);opacity:0;} }

/* family / core labs */
.fam-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fam { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 22px; transition: transform var(--t-base), border-color var(--t-base); }
.fam:hover { transform: translateY(-4px); border-color: var(--line-accent); }
.fam .nm { width: 46px; height: 46px; margin-bottom: 14px; }
.fam h4 { font-size: 0.96rem; font-weight: 650; }
.fam .st { font-size: 10.5px; font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px;
  display: inline-block; padding: 2px 8px; border-radius: 999px; }
.st.ready { background: rgba(16,185,129,0.12); color: var(--pos); }
.st.prog { background: var(--bg-tint-blue); color: var(--brand-blue); }
.st.plan { background: var(--bg-card-sub); color: var(--fg-3); }
[data-theme="dark"] .st.prog { color: var(--brand-blue-soft); }

/* core labs lineage */
.lineage { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 920px; margin: 0 auto; }
.parent { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 36px; text-align: center;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-card-xl); box-shadow: var(--shadow-card); }
.parent .pm { width: 72px; height: 72px; }
.parent h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; }
.parent p { color: var(--fg-3); font-size: 0.9rem; max-width: 460px; }
.lineage-line { width: 1px; height: 34px; justify-self: center; background: linear-gradient(var(--line-accent), transparent); }
.children { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.child { padding: 26px; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-card-lg);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: transform var(--t-base), border-color var(--t-base); }
.child:hover { transform: translateY(-4px); border-color: var(--line-accent); }
.child .cm { width: 56px; height: 56px; border-radius: 16px; }
.child h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }
.child p { font-size: 0.83rem; color: var(--fg-3); }
.child .badge { font-size: 10px; font-family: var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-4); }

/* principles */
.prin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.prin { padding: 22px; border: 1px solid var(--line); border-radius: var(--r-card); background: var(--bg-card); }
.prin .pi { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 14px;
  background: var(--bg-tint-blue); border: 1px solid var(--line-accent); }
.prin .pi svg { width: 18px; height: 18px; stroke: var(--brand-blue); }
[data-theme="dark"] .prin .pi svg { stroke: var(--brand-blue-soft); }
.prin h4 { font-size: 0.94rem; font-weight: 650; }
.prin p { font-size: 0.82rem; color: var(--fg-3); margin-top: 6px; line-height: 1.5; }

/* CTA band */
.cta-band { border-radius: var(--r-card-xl); padding: 56px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0b1430 0%, #1a0f3a 100%); color: #fff; }
.cta-band::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 20% 10%, rgba(45,168,255,0.28), transparent 60%),
              radial-gradient(ellipse 50% 60% at 84% 90%, rgba(123,44,255,0.26), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 600; letter-spacing: -0.035em; line-height: 1.05; text-wrap: balance; }
.cta-band p { color: rgba(255,255,255,0.7); margin: 16px 0 30px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* footer */
.ftr { border-top: 1px solid var(--line); padding: 64px 0 80px; }
.ftr-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.ftr .brand { margin-bottom: 16px; }
.ftr p { font-size: 0.86rem; color: var(--fg-3); max-width: 280px; }
.ftr h5 { font-size: 0.72rem; font-family: var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-4); margin-bottom: 14px; }
.ftr ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ftr a { font-size: 0.88rem; color: var(--fg-2); transition: color var(--t-fast); }
.ftr a:hover { color: var(--brand-blue); }
.ftr-base { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.8rem; color: var(--fg-4); }

@media (max-width: 980px) {
  .hero-grid, .flow { grid-template-columns: 1fr; }
  .scene { height: 420px; margin-top: 20px; }
  .sec-grid, .fam-grid, .prin-grid { grid-template-columns: repeat(2, 1fr); }
  .children { grid-template-columns: 1fr; }
  .stats-in { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .sec-grid, .fam-grid, .prin-grid, .hero-proof { grid-template-columns: 1fr; }
}
