/* ═══════════════════════════════════════
   TERRALIS THEME CSS
   ═══════════════════════════════════════ */

:root {
  --navy:    #0c1a2e;
  --navy-md: #132240;
  --blue:    #1459d4;
  --blue-lt: #3d78f0;
  --ice:     #f4f7fc;
  --ice-md:  #e6ecf7;
  --white:   #ffffff;
  --ink:     #0a0f1a;
  --body:    #3d4a5e;
  --muted:   #7d8fa8;
  --border:  #dce4f0;
  --h: 'Cormorant', Georgia, serif;
  --b: 'Figtree', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--b); color: var(--body); background: var(--white); overflow-x: hidden; line-height: 1.6; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
  height: 60px; display: flex; align-items: center; gap: 2.5rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; flex-shrink: 0; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 7px; background: var(--navy);
  position: relative; flex-shrink: 0;
}
.logo-mark::before {
  content: ''; position: absolute; inset: 6px;
  border: 1.5px solid var(--blue-lt); border-radius: 50%;
}
.logo-mark::after {
  content: ''; position: absolute; width: 5px; height: 5px;
  background: var(--blue-lt); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.logo-name { font-family: var(--h); font-size: 1.65rem; font-weight: 500; letter-spacing: 0.04em; color: var(--navy); }
.nav-links { display: flex; gap: 0.2rem; list-style: none; flex: 1; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.85rem;
  font-weight: 500; padding: 0.35rem 0.7rem; border-radius: 6px; transition: all 0.15s;
}
.nav-links a:hover { color: var(--navy); background: var(--ice); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.btn-ghost {
  font-size: 0.85rem; font-weight: 500; color: var(--navy);
  text-decoration: none; padding: 0.4rem 1rem; border-radius: 7px;
  border: 1px solid var(--border); transition: all 0.15s;
}
.btn-ghost:hover { border-color: var(--navy); }
.btn-primary {
  font-size: 0.85rem; font-weight: 600; color: #fff; text-decoration: none;
  padding: 0.4rem 1.1rem; border-radius: 7px; background: var(--blue);
  transition: all 0.15s; white-space: nowrap;
}
.btn-primary:hover { background: var(--navy); }

/* ── HERO ── */
.hero {
  background: var(--navy); padding: 10rem 2.5rem 8rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px; border: 1px solid rgba(52,120,240,0.1); border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; right: 30px; top: 50%; transform: translateY(-50%);
  width: 440px; height: 440px; border: 1px solid rgba(52,120,240,0.07); border-radius: 50%; pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-inner { position: relative; z-index: 2; max-width: 740px; margin: 0 auto; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(52,120,240,0.12); border: 1px solid rgba(52,120,240,0.2);
  border-radius: 100px; padding: 0.28rem 0.85rem; margin-bottom: 2rem;
  opacity: 0; animation: heroUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.35s forwards;
}
.tag-dot { width: 5px; height: 5px; background: var(--blue-lt); border-radius: 50%; animation: tagPulse 2.5s ease-in-out infinite; }
@keyframes tagPulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
.tag-text { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-lt); }

h1 {
  font-family: var(--h); font-size: clamp(3.2rem, 5.5vw, 5rem);
  font-weight: 400; color: #fff; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 1.75rem;
  opacity: 0; animation: heroUp 1s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}
h1 em { font-style: italic; color: rgba(255,255,255,0.65); font-weight: 300; }

@keyframes heroUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.hero-sub {
  font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.5);
  line-height: 1.75; max-width: 540px; margin-bottom: 2.75rem;
  opacity: 0; animation: heroUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.7s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: heroUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.9s forwards;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--blue); color: #fff; text-decoration: none;
  padding: 0.85rem 1.85rem; font-family: var(--b); font-size: 0.9rem;
  font-weight: 600; border-radius: 10px; border: none; cursor: pointer; transition: all 0.2s;
}
.btn-hero:hover { background: #0f4ec0; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(20,89,212,0.35); }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: transparent; color: rgba(255,255,255,0.6); text-decoration: none;
  padding: 0.85rem 1.85rem; font-size: 0.9rem; font-weight: 400;
  border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); transition: all 0.2s;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

/* ── PROOF STRIP ── */
.proof { background: var(--ice); border-bottom: 1px solid var(--border); padding: 2rem 2.5rem; }
.proof-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 3.5rem; }
.proof-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; flex-shrink: 0; }
.proof-items { display: flex; gap: 3rem; flex-wrap: wrap; }
.proof-value { font-family: var(--h); font-size: 1.5rem; font-weight: 500; color: var(--navy); line-height: 1; }
.proof-desc { font-size: 0.75rem; color: var(--muted); font-weight: 400; }

/* ── SHARED ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.sec-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 1rem; }

h2 { font-family: var(--h); font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 400; color: var(--navy); line-height: 1.15; letter-spacing: -0.01em; }
h2 em { font-style: italic; font-weight: 300; color: var(--muted); }

/* ── PROPOSITION ── */
.prop { padding: 7rem 0; }
.prop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.prop-text p { font-size: 1rem; line-height: 1.85; color: var(--body); margin-top: 1.5rem; }
.prop-text strong { color: var(--navy); font-weight: 600; }
.prop-visual { position: relative; max-width: 440px; }
.prop-visual .radar-wrap { width: 100%; }
.cs-visual {
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: csAppear 2s ease 1.8s forwards;
}
.cs-visual .radar-wrap { width: 100%; max-width: 480px; }
.radar-sweep--light { filter: drop-shadow(0 4px 32px rgba(20,89,212,0.10)); }

/* ── RADAR ── */
@property --radar-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.radar-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}
.radar-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Phosphor sweep overlay — conic gradient rotates continuously.
   Transparent for most of the circle, building to bright at the
   leading edge, which sits at 360deg (the end of the gradient arc).
   The 'from' offset rotates the whole thing so the bright point leads. */
.radar-sweep {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  animation: radarSpin 7s linear infinite;
}

.radar-sweep--dark {
  background: conic-gradient(
    from var(--radar-angle),
    transparent        0deg,
    transparent        272deg,
    rgba(61,120,240,0.01) 285deg,
    rgba(61,120,240,0.03) 300deg,
    rgba(61,120,240,0.07) 318deg,
    rgba(61,120,240,0.14) 334deg,
    rgba(61,120,240,0.28) 348deg,
    rgba(61,120,240,0.55) 357deg,
    rgba(61,120,240,0.7)  359.5deg,
    transparent        360deg
  );
}

.radar-sweep--light {
  background: conic-gradient(
    from var(--radar-angle),
    transparent        0deg,
    transparent        272deg,
    rgba(20,89,212,0.01)  285deg,
    rgba(20,89,212,0.02)  300deg,
    rgba(20,89,212,0.05)  318deg,
    rgba(20,89,212,0.09)  334deg,
    rgba(20,89,212,0.18)  348deg,
    rgba(20,89,212,0.35)  357deg,
    rgba(20,89,212,0.5)   359.5deg,
    transparent        360deg
  );
}

@keyframes radarSpin {
  from { --radar-angle: 0deg; }
  to   { --radar-angle: 360deg; }
}



.dp1,.dpl1 { animation: dpblink 3.2s ease-in-out infinite 0s; }
.dp2,.dpl2 { animation: dpblink 3.2s ease-in-out infinite 0.7s; }
.dp3,.dpl3 { animation: dpblink 3.2s ease-in-out infinite 1.4s; }
.dp4,.dpl4 { animation: dpblink 3.2s ease-in-out infinite 2.1s; }
.dp5,.dpl5 { animation: dpblink 3.2s ease-in-out infinite 0.35s; }
.dp6,.dpl6 { animation: dpblink 3.2s ease-in-out infinite 1.05s; }
@keyframes dpblink { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ── PILLARS ── */
.pillars { padding: 2rem 0 7rem; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.pillar {
  padding: 2.5rem 2rem; border: 1px solid var(--border); border-radius: 12px;
  background: var(--white); transition: all 0.2s; position: relative; overflow: hidden;
}
.pillar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.pillar:hover::before { transform: scaleX(1); }
.pillar:hover { border-color: rgba(20,89,212,0.25); box-shadow: 0 8px 32px rgba(20,89,212,0.07); transform: translateY(-2px); }
.pillar-num { font-family: var(--h); font-size: 3rem; font-weight: 300; color: var(--ice-md); line-height: 1; margin-bottom: 1rem; letter-spacing: -0.02em; }
.pillar h3 { font-family: var(--h); font-size: 1.5rem; font-weight: 500; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.2; }
.pillar p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── WHOM ── */
.whom { padding: 7rem 0; background: var(--navy); }
.whom .sec-label { color: rgba(61,120,240,0.8); }
.whom h2 { color: #fff; }
.whom h2 em { color: rgba(255,255,255,0.4); }
.whom-sub { font-size: 1rem; color: rgba(255,255,255,0.4); font-weight: 300; max-width: 500px; margin-top: 0.75rem; line-height: 1.7; }
.whom-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; overflow: hidden; margin-top: 3.5rem;
}
.whom-card { background: rgba(12,26,46,0.8); padding: 2rem 1.5rem; transition: background 0.2s; }
.whom-card:hover { background: rgba(20,89,212,0.08); }
.whom-card-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(52,120,240,0.12); border: 1px solid rgba(52,120,240,0.2); display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 1rem; }
.whom-card h3 { font-family: var(--h); font-size: 1.15rem; font-weight: 500; color: #fff; margin-bottom: 0.4rem; }
.whom-card p { font-size: 0.8rem; color: rgba(255,255,255,0.38); line-height: 1.6; }

/* ── DIFFERENCE ── */
.diff { padding: 7rem 0; background: var(--ice); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.diff-text p { font-size: 1rem; line-height: 1.85; color: var(--body); margin-top: 1.25rem; }
.diff-text strong { color: var(--navy); font-weight: 600; }
.diff-points { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.diff-point { display: flex; gap: 1.25rem; }
.dp-icon { width: 36px; height: 36px; background: var(--blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.9rem; flex-shrink: 0; }
.dp-title { font-family: var(--h); font-size: 1.1rem; font-weight: 500; color: var(--navy); margin-bottom: 0.2rem; }
.dp-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.diff-stat-block { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 3rem 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.ds-val { font-family: var(--h); font-size: 2.75rem; font-weight: 400; color: var(--navy); line-height: 1; letter-spacing: -0.02em; }
.ds-desc { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; line-height: 1.5; }

/* ── CTA ── */
.cta { padding: 7rem 0; background: var(--navy); text-align: center; position: relative; overflow: hidden; }
.cta::before {
  content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(20,89,212,0.14) 0%, transparent 65%); pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.cta h2 { color: #fff; margin-bottom: 1rem; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 2.5rem; }
.cta-form { display: flex; max-width: 400px; margin: 0 auto; }
.cta-input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-right: none; color: #fff; padding: 0.85rem 1.2rem;
  font-family: var(--b); font-size: 0.9rem; border-radius: 10px 0 0 10px; outline: none; transition: border-color 0.2s;
}
.cta-input::placeholder { color: rgba(255,255,255,0.25); }
.cta-input:focus { border-color: var(--blue-lt); }
.cta-btn {
  background: var(--blue); color: #fff; border: none; padding: 0.85rem 1.4rem;
  font-family: var(--b); font-size: 0.875rem; font-weight: 600; cursor: pointer;
  border-radius: 0 10px 10px 0; transition: background 0.2s; white-space: nowrap;
}
.cta-btn:hover { background: #0f4ec0; }
.cta-note { margin-top: 1rem; font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 2.5rem; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.footer-logo .logo-mark { background: transparent; border: 1px solid rgba(255,255,255,0.15); }
.footer-logo .logo-mark::before { border-color: rgba(61,120,240,0.5); }
.footer-logo .logo-name { color: rgba(255,255,255,0.35); font-size: 1.1rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.15); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ════════════════════════════════════════
   COMING SOON STYLES
   ════════════════════════════════════════ */

.mode-coming-soon body,
.cs-layout {
  overflow: hidden;
}

.cs-layout {
  position: fixed; inset: 0;
  background: var(--navy);
  font-family: var(--b);
}

#cs-canvas {
  position: fixed; inset: 0; z-index: 0;
  opacity: 0; animation: csAppear 3s ease 0.5s forwards;
}
.cs-grid {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0; animation: csAppear 3s ease 1.5s forwards;
}
.cs-vig {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(12,26,46,0.65) 100%);
}

@keyframes csAppear { to { opacity: 1; } }
@keyframes csUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.cs-corner {
  position: fixed; width: 18px; height: 18px; z-index: 10;
  opacity: 0; animation: csAppear 0.8s ease 3s forwards;
}
.cs-tl { top: 2rem; left: 2rem; border-top: 1px solid rgba(61,120,240,0.3); border-left: 1px solid rgba(61,120,240,0.3); }
.cs-tr { top: 2rem; right: 2rem; border-top: 1px solid rgba(61,120,240,0.3); border-right: 1px solid rgba(61,120,240,0.3); }
.cs-bl { bottom: 2rem; left: 2rem; border-bottom: 1px solid rgba(61,120,240,0.3); border-left: 1px solid rgba(61,120,240,0.3); }
.cs-br { bottom: 2rem; right: 2rem; border-bottom: 1px solid rgba(61,120,240,0.3); border-right: 1px solid rgba(61,120,240,0.3); }

.cs-meta {
  position: fixed; z-index: 10; font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.12);
  opacity: 0; animation: csAppear 1s ease 3.4s forwards;
}
.cs-m-tr { top: 2.2rem; right: 3.2rem; }
.cs-m-bl { bottom: 2.2rem; left: 3.2rem; }

.cs-inner {
  position: fixed; inset: 0; z-index: 10;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 5rem 6rem; gap: 4rem;
}

.cs-copy { display: flex; flex-direction: column; }

.cs-logo-row {
  display: flex; align-items: center; gap: 0.85rem; margin-bottom: 2rem;
  opacity: 0; animation: csUp 0.8s cubic-bezier(0.16,1,0.3,1) 1.2s forwards;
}
.cs-lm {
  width: 32px; height: 32px; border-radius: 8px;
  background: transparent !important; border: 1px solid rgba(61,120,240,0.4);
}
.cs-lm::before { border-color: var(--blue-lt) !important; opacity: 0.8; }
.cs-lm::after { background: var(--blue-lt) !important; }

.cs-logo-name {
  font-family: var(--h); font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300; letter-spacing: 0.06em; color: #fff;
}

.cs-headline {
  font-family: var(--h); font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 300; line-height: 1.2; letter-spacing: -0.01em;
  color: rgba(255,255,255,0.75); margin-bottom: 1.75rem;
  opacity: 0; animation: csUp 1s cubic-bezier(0.16,1,0.3,1) 1.5s forwards;
}
.cs-headline em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.38); }

.cs-subline {
  font-size: 0.95rem; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.38); max-width: 400px; margin-bottom: 3rem;
  opacity: 0; animation: csUp 0.9s cubic-bezier(0.16,1,0.3,1) 1.9s forwards;
}

.cs-notify { margin-bottom: 0.5rem; opacity: 0; animation: csUp 0.8s cubic-bezier(0.16,1,0.3,1) 2.2s forwards; }
.cs-notify-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 0.75rem; }
.cs-notify-form { display: flex; }
.cs-notify-input {
  flex: 1; min-width: 0; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-right: none; color: #fff; padding: 0.75rem 1rem;
  font-family: var(--b); font-size: 0.875rem; font-weight: 300;
  border-radius: 8px 0 0 8px; outline: none; transition: border-color 0.2s;
}
.cs-notify-input::placeholder { color: rgba(255,255,255,0.2); }
.cs-notify-input:focus { border-color: rgba(61,120,240,0.5); }
.cs-notify-btn {
  background: var(--blue); color: #fff; border: none;
  padding: 0.75rem 1.25rem; font-family: var(--b); font-size: 0.8rem; font-weight: 600;
  cursor: pointer; border-radius: 0 8px 8px 0; transition: background 0.2s; white-space: nowrap;
}
.cs-notify-btn:hover { background: #0f4ec0; }

.cs-badge {
  display: inline-flex; align-items: center; gap: 0.875rem; margin-top: 1.25rem;
  opacity: 0; animation: csAppear 0.8s ease 2.6s forwards;
}
.cs-badge-line { width: 56px; height: 1px; background: rgba(61,120,240,0.3); }
.cs-badge-text { font-size: 0.62rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.2); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .prop-grid, .diff-grid { grid-template-columns: 1fr; gap: 3rem; }
  .prop-visual { max-width: 320px; margin: 0 auto; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .whom-grid { grid-template-columns: 1fr 1fr; }
  .cs-inner { grid-template-columns: 1fr; padding: 5rem 2.5rem 4rem; overflow-y: auto; }
  .cs-visual { order: -1; }
  .cs-visual .radar-wrap { max-width: 280px; }
  .cs-m-tr, .cs-m-bl { display: none; }
}
@media (max-width: 640px) {
  nav .nav-links, nav .btn-ghost { display: none; }
  .hero { padding: 7rem 1.5rem 5rem; }
  .container { padding: 0 1.5rem; }
  .pillars-grid, .whom-grid, .diff-stat-block { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; align-items: flex-start; }
  footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1.25rem; text-align: center; }
  .footer-links { justify-content: center; }
  .cs-inner { padding: 4rem 1.75rem 3rem; }
  .cs-corner { display: none; }
}

/* ── LEGAL PAGES ── */
.legal-page { padding: 10rem 0 6rem; min-height: 70vh; }
.legal-inner { max-width: 680px; }
.legal-inner h2 { font-family: var(--h); font-size: 2.5rem; font-weight: 400; color: var(--navy); margin-bottom: 2rem; }
.legal-inner h3 { font-family: var(--h); font-size: 1.35rem; font-weight: 500; color: var(--navy); margin: 2rem 0 0.5rem; }
.legal-inner p { font-size: 0.95rem; color: var(--body); line-height: 1.85; margin-bottom: 1rem; }
.legal-inner a { color: var(--blue); text-decoration: none; }
.legal-inner a:hover { text-decoration: underline; }

/* ── COMING SOON FOOTER ── */
.cs-layout ~ footer {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 20;
  background: transparent; border-top: none; padding: 0;
}
.cs-layout ~ footer .footer-inner {
  justify-content: center; padding: 1rem 2rem;
}
.cs-layout ~ footer .footer-logo,
.cs-layout ~ footer .footer-links { display: none; }
.cs-layout ~ footer .footer-copy {
  font-size: 0.65rem; color: rgba(255,255,255,0.1);
}
