/* ===================== Tokens ===================== */
:root{
  --bg: #0a0a12;
  --bg-alt: #100f1a;
  --surface: #16151f;
  --surface-2: #1c1b28;
  --border: #2a2938;
  --text: #f4f4fa;
  --text-muted: #a5a3b8;
  --text-dim: #7d7b91;
  --accent: #ff3b5c;
  --accent-2: #7c3aed;
  --gold: #ffb020;
  --success: #22c55e;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-lg: 0 20px 60px rgba(0,0,0,.45);
  --container: 1180px;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{ font-family:var(--font-head); margin:0; line-height:1.2; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding-inline:20px;
}

section[id]{ scroll-margin-top:78px; }

/* ===================== Buttons ===================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 22px;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#fff;
  box-shadow:0 10px 30px rgba(255,59,92,.35);
}
.btn-primary:hover{ box-shadow:0 14px 36px rgba(255,59,92,.45); }
.btn-ghost{
  background:transparent;
  color:var(--text);
  border-color:var(--border);
}
.btn-ghost:hover{ border-color:var(--accent); }
.btn-lg{ padding:15px 28px; font-size:1rem; }
.btn-sm{ padding:9px 18px; font-size:.85rem; }
.btn-full{ width:100%; }

/* ===================== Header / Nav ===================== */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(10,10,18,0);
  border-bottom:1px solid transparent;
  transition:background .25s ease, border-color .25s ease;
}
.site-header.scrolled{
  background:rgba(10,10,18,.85);
  backdrop-filter:blur(12px);
  border-color:var(--border);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:70px;
}
.brand{ display:flex; align-items:center; gap:10px; font-family:var(--font-head); font-weight:700; font-size:1.15rem; }
.brand-mark{
  width:34px; height:34px; border-radius:9px;
  object-fit:cover;
  flex-shrink:0;
}
.footer-brand .brand-mark{ width:40px; height:40px; border-radius:10px; }
.nav-menu{ display:contents; }
.nav-links{ display:flex; gap:26px; }
.nav-links a{ font-size:.92rem; color:var(--text-muted); font-weight:500; transition:color .15s ease; }
.nav-links a:hover{ color:var(--text); }
.nav-cta{ display:flex; align-items:center; gap:16px; }
.nav-phone{ font-size:.88rem; color:var(--text-muted); font-weight:600; }
.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:38px; height:38px; background:none; border:none; cursor:pointer;
}
.nav-toggle span{ display:block; width:100%; height:2px; background:var(--text); border-radius:2px; transition:.25s ease; }

/* ===================== Hero ===================== */
.hero{
  position:relative;
  padding:130px 0 40px;
  overflow:hidden;
}
.hero-bg-glow{
  position:absolute; inset:-20% -10% auto -10%; height:700px;
  background:radial-gradient(circle at 30% 20%, rgba(255,59,92,.25), transparent 60%),
             radial-gradient(circle at 80% 10%, rgba(124,58,237,.25), transparent 55%);
  filter:blur(10px);
  pointer-events:none;
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  padding:7px 16px;
  border-radius:999px;
  background:var(--surface);
  border:1px solid var(--border);
  color:var(--gold);
  font-size:.8rem;
  font-weight:600;
  margin-bottom:22px;
}
.hero h1{
  font-size:clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight:800;
  letter-spacing:-0.02em;
  margin-bottom:20px;
}
.grad-text{
  background:linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-sub{
  color:var(--text-muted);
  font-size:1.05rem;
  max-width:560px;
  margin-bottom:30px;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:34px; }

.launch-badge{
  display:flex; flex-wrap:wrap; gap:22px; align-items:center;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px 22px;
}
.launch-badge-label{ display:flex; flex-direction:column; gap:2px; }
.launch-badge-label strong{ font-size:1rem; }
.launch-badge-label span{ font-size:.82rem; color:var(--text-dim); }
.countdown{ display:flex; gap:10px; }
.cd-unit{
  display:flex; flex-direction:column; align-items:center;
  background:var(--surface-2);
  border-radius:8px;
  padding:8px 10px;
  min-width:50px;
}
.cd-unit span{ font-family:var(--font-head); font-weight:700; font-size:1.15rem; }
.cd-unit small{ font-size:.65rem; color:var(--text-dim); text-transform:uppercase; letter-spacing:.05em; }

/* Phone mockup */
.hero-visual{ display:flex; justify-content:center; }
.phone-mockup{
  width:270px; height:560px;
  background:#050509;
  border-radius:38px;
  padding:12px;
  box-shadow:var(--shadow-lg), 0 0 0 8px #1a1926;
  position:relative;
  animation:float 5s ease-in-out infinite;
}
@keyframes float{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-14px);} }
.phone-notch{
  position:absolute; top:12px; left:50%; transform:translateX(-50%);
  width:90px; height:20px; background:#050509; border-radius:0 0 14px 14px; z-index:5;
}
.phone-screen{
  position:relative; width:100%; height:100%;
  border-radius:28px; overflow:hidden;
  background:#000;
}
.screen-gradient{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), transparent 30%, transparent 60%, rgba(0,0,0,.75)),
    linear-gradient(135deg, #ff3b5c 0%, #7c3aed 55%, #1c1b28 100%);
}
.screen-topbar{
  position:absolute; top:34px; left:0; right:0;
  display:flex; justify-content:center; gap:10px; z-index:2;
}
.chip{
  font-size:.68rem; font-weight:600; color:rgba(255,255,255,.7);
  padding:5px 10px; border-radius:999px; background:rgba(255,255,255,.08);
}
.chip-active{ color:#fff; background:rgba(255,255,255,.22); }
.screen-caption{
  position:absolute; left:16px; bottom:78px; right:70px; z-index:2;
  display:flex; flex-direction:column; gap:4px;
  color:#fff;
}
.screen-caption strong{ font-size:.92rem; }
.screen-caption span{ font-size:.72rem; color:rgba(255,255,255,.75); }
.screen-progress{
  position:absolute; left:16px; right:16px; bottom:64px; height:3px;
  background:rgba(255,255,255,.25); border-radius:3px; overflow:hidden; z-index:2;
}
.screen-progress span{ display:block; width:42%; height:100%; background:#fff; }
.screen-side-actions{
  position:absolute; right:12px; bottom:80px; z-index:2;
  display:flex; flex-direction:column; gap:16px; align-items:center;
}
.side-action{
  display:flex; flex-direction:column; align-items:center; gap:2px;
  font-size:1.2rem; color:#fff;
}
.side-action em{ font-style:normal; font-size:.62rem; color:rgba(255,255,255,.75); }
.swipe-hint{
  position:absolute; bottom:20px; left:0; right:0; text-align:center;
  font-size:.68rem; color:rgba(255,255,255,.6); z-index:2;
  animation:pulseUp 2s ease-in-out infinite;
}
@keyframes pulseUp{ 0%,100%{ opacity:.5; transform:translateY(0);} 50%{ opacity:1; transform:translateY(-4px);} }

/* Genre ticker */
.genre-ticker{
  margin-top:50px;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  overflow:hidden;
  padding:16px 0;
  background:var(--bg-alt);
}
.ticker-track{
  display:flex; gap:14px; width:max-content;
  animation:scrollLeft 26s linear infinite;
}
.ticker-track span{
  font-size:.82rem; font-weight:600; color:var(--text-dim);
  padding:7px 16px; border:1px solid var(--border); border-radius:999px;
  white-space:nowrap;
}
@keyframes scrollLeft{ 0%{ transform:translateX(0);} 100%{ transform:translateX(-50%);} }

/* ===================== Sections (shared) ===================== */
.section{ padding:90px 0; }
.section-alt{ background:var(--bg-alt); }
.section-dark{ background:#07060d; }
.section-tag{
  display:inline-block; font-size:.8rem; font-weight:700; letter-spacing:.06em;
  text-transform:uppercase; color:var(--accent); margin-bottom:14px;
}
.section-tag-light{ color:var(--gold); }
.section-title{
  font-size:clamp(1.7rem, 3vw, 2.4rem); font-weight:800; letter-spacing:-.01em;
  margin-bottom:18px; max-width:760px;
}
.section-title-light{ color:#fff; }
.section-lede{ color:var(--text-muted); max-width:680px; font-size:1.02rem; margin-bottom:40px; }
.section-lede-light{ color:#c9c7db; }
.fine-print{ color:var(--text-dim); font-size:.82rem; margin-top:16px; font-style:italic; }
.fine-print-light{ color:#8b899c; }

/* Loop strip */
.loop-strip{
  display:flex; flex-wrap:wrap; align-items:center; gap:10px;
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius); padding:20px 24px; margin-bottom:44px;
}
.loop-strip span{
  font-weight:600; font-size:.9rem; padding:7px 14px; border-radius:999px;
  background:var(--surface-2);
}
.loop-strip i{ color:var(--accent); font-style:normal; }

/* Stat grid */
.stat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.stat-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:26px 22px; display:flex; flex-direction:column; gap:10px;
}
.stat-num{ font-family:var(--font-head); font-weight:800; font-size:2rem; color:var(--accent); }
.stat-num small{ font-size:1rem; font-weight:600; color:var(--text-dim); margin-left:4px; }
.stat-label{ font-size:.88rem; color:var(--text-muted); }

/* Feature groups */
.feature-groups{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.feature-group{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:26px;
}
.feature-group-head{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.icon-badge{
  width:42px; height:42px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  background:var(--surface-2); font-size:1.3rem; flex-shrink:0;
}
.feature-group h3{ font-size:1.05rem; font-weight:700; }
.feature-list li{
  font-size:.88rem; color:var(--text-muted); padding:8px 0 8px 20px; position:relative;
  border-top:1px solid var(--border);
}
.feature-list li:first-child{ border-top:none; }
.feature-list li::before{
  content:''; position:absolute; left:0; top:16px; width:6px; height:6px; border-radius:50%;
  background:var(--accent);
}

/* Revenue grid */
.revenue-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.revenue-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-sm);
  padding:22px 18px;
}
.revenue-pct{ display:block; font-family:var(--font-head); font-weight:800; font-size:1.3rem; color:var(--gold); margin-bottom:8px; }
.revenue-card h4{ font-size:.95rem; margin-bottom:6px; }
.revenue-card p{ font-size:.82rem; color:var(--text-muted); }

/* Tiers table */
.tiers-block{ margin-top:50px; }
.tiers-title{ font-size:1.2rem; margin-bottom:18px; }
.tiers-table-wrap{ overflow-x:auto; border:1px solid var(--border); border-radius:var(--radius); }
.tiers-table{ width:100%; border-collapse:collapse; min-width:520px; }
.tiers-table th, .tiers-table td{ padding:14px 18px; text-align:left; font-size:.9rem; }
.tiers-table thead{ background:var(--surface-2); }
.tiers-table th{ color:var(--text-dim); font-weight:600; text-transform:uppercase; font-size:.75rem; letter-spacing:.04em; }
.tiers-table tbody tr{ border-top:1px solid var(--border); }
.tiers-table tbody tr:nth-child(even){ background:rgba(255,255,255,.02); }
.tier-pill{ padding:5px 12px; border-radius:999px; font-weight:700; font-size:.78rem; }
.tier-a{ background:rgba(255,176,32,.15); color:var(--gold); }
.tier-b{ background:rgba(255,59,92,.15); color:var(--accent); }
.tier-c{ background:rgba(124,58,237,.2); color:#a78bfa; }

/* Why grid (partner section) */
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-bottom:56px; }
.why-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:24px;
}
.why-icon{ font-size:1.6rem; display:block; margin-bottom:12px; }
.why-card h4{ font-size:1rem; margin-bottom:8px; color:#fff; }
.why-card p{ font-size:.86rem; color:#a5a3b8; }

.commercial-heading{ font-size:1.25rem; color:#fff; margin-bottom:20px; }
.commercial-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.commercial-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:22px; display:flex; flex-direction:column; gap:8px;
}
.commercial-card-highlight{
  border-color:var(--gold);
  background:linear-gradient(160deg, rgba(255,176,32,.08), var(--surface));
}
.commercial-num{ font-family:var(--font-head); font-weight:800; font-size:1.1rem; color:var(--text-dim); }
.commercial-card h4{ font-size:1rem; color:#fff; }
.commercial-card p{ font-size:.85rem; color:#a5a3b8; }
.commercial-example{ font-size:.78rem; color:var(--gold); font-weight:600; margin-top:auto; padding-top:8px; }

.looking-for{ margin-top:50px; text-align:center; }
.looking-for h4{ font-size:1.05rem; color:#fff; margin-bottom:18px; }
.tag-cloud{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px; }
.tag-cloud span{
  padding:9px 18px; border-radius:999px; border:1px solid var(--border);
  font-size:.85rem; color:#c9c7db; background:var(--surface);
}

/* Languages */
.phase-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.phase-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:26px;
}
.phase-label{ display:inline-block; font-weight:700; color:var(--accent); margin-bottom:14px; font-size:.9rem; }
.lang-chips{ display:flex; flex-wrap:wrap; gap:8px; }
.lang-chips span{
  padding:7px 14px; border-radius:999px; background:var(--surface-2); font-size:.82rem; color:var(--text-muted);
}

/* Timeline */
.timeline{ position:relative; padding-left:30px; }
.timeline::before{
  content:''; position:absolute; left:6px; top:6px; bottom:6px; width:2px; background:var(--border);
}
.tl-item{ position:relative; padding-bottom:36px; }
.tl-item:last-child{ padding-bottom:0; }
.tl-dot{
  position:absolute; left:-30px; top:4px; width:14px; height:14px; border-radius:50%;
  background:var(--surface-2); border:2px solid var(--border);
}
.tl-dot-highlight{ background:var(--accent); border-color:var(--accent); box-shadow:0 0 0 5px rgba(255,59,92,.2); }
.tl-phase{ font-size:.78rem; font-weight:700; color:var(--text-dim); text-transform:uppercase; letter-spacing:.04em; }
.tl-item-highlight .tl-phase{ color:var(--accent); }
.tl-content h4{ font-size:1.05rem; margin:6px 0; }
.tl-content p{ font-size:.88rem; color:var(--text-muted); max-width:520px; }

/* ===================== App Preview Gallery ===================== */
.preview-gallery{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  align-items:start;
  justify-items:center;
}
.preview-item{ display:flex; flex-direction:column; align-items:center; gap:16px; }
.preview-caption{ font-size:.88rem; font-weight:600; color:var(--text-muted); }
.preview-item-featured .preview-caption{ color:var(--gold); }

.preview-gallery .phone-mockup{
  width:230px; height:510px;
  animation:none;
}
.preview-item-featured .phone-mockup{
  box-shadow:var(--shadow-lg), 0 0 0 8px #1a1926, 0 0 40px rgba(255,176,32,.18);
}

.phone-mockup-photo .phone-screen img{
  width:100%; height:100%; object-fit:cover; display:block;
}

/* Reusable in-app UI mockup (CSS-built screens) */
.app-screen{
  position:absolute; inset:0;
  background:var(--surface);
  display:flex; flex-direction:column;
  font-size:.7rem;
  color:var(--text);
  overflow:hidden;
}
.app-topbar{
  display:flex; align-items:center; gap:8px;
  padding:16px 12px 10px;
  flex-shrink:0;
}
.app-topbar-plain{ justify-content:space-between; padding-top:18px; }
.app-topbar-logo{ width:22px; height:22px; border-radius:6px; object-fit:cover; }
.app-topbar-name{ font-family:var(--font-head); font-weight:700; font-size:.72rem; letter-spacing:.02em; flex:1; }
.app-topbar-icon{ font-size:.9rem; color:var(--text-muted); }

.app-chip-row{ display:flex; gap:6px; padding:0 12px 12px; }
.app-chip-row .chip{ font-size:.6rem; padding:5px 10px; }

.app-section-label{
  font-size:.66rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
  color:var(--text-dim); padding:6px 12px;
}

.app-continue-card{
  display:flex; gap:10px; margin:0 12px 10px;
  background:var(--surface-2); border-radius:10px; padding:8px;
}
.app-continue-thumb{
  width:44px; height:44px; border-radius:8px; flex-shrink:0;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
}
.app-continue-meta{ display:flex; flex-direction:column; gap:3px; justify-content:center; min-width:0; }
.app-continue-meta strong{ font-size:.68rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.app-continue-meta span{ font-size:.6rem; color:var(--text-dim); }
.app-continue-progress{ height:3px; background:var(--border); border-radius:3px; overflow:hidden; margin-top:2px; }
.app-continue-progress span{ display:block; height:100%; background:var(--accent); }

.app-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:8px;
  padding:0 12px;
}
.app-tile{
  position:relative; border-radius:10px; padding:8px;
  display:flex; flex-direction:column; justify-content:flex-end;
  aspect-ratio:1/1.05; overflow:hidden;
  color:#fff;
}
.app-tile-1{ background:linear-gradient(150deg, #ff3b5c, #7c3aed); }
.app-tile-2{ background:linear-gradient(150deg, #ffb020, #ff3b5c); }
.app-tile-3{ background:linear-gradient(150deg, #7c3aed, #1c1b28); }
.app-tile-4{ background:linear-gradient(150deg, #22c55e, #1c1b28); }
.app-tile-play{ position:absolute; top:8px; right:8px; font-size:.6rem; opacity:.85; }
.app-tile em{ font-style:normal; font-size:.56rem; opacity:.8; }
.app-tile strong{ font-size:.68rem; }

.app-bottomnav{
  margin-top:auto; flex-shrink:0;
  display:flex; justify-content:space-around;
  padding:10px 6px 14px;
  background:var(--surface-2);
  border-top:1px solid var(--border);
}
.app-bottomnav span{
  display:flex; flex-direction:column; align-items:center; gap:2px;
  font-size:.72rem; color:var(--text-dim);
}
.app-bottomnav span em{ font-style:normal; font-size:.52rem; }
.app-bottomnav span.active{ color:var(--accent); }

.app-cover{
  position:relative; margin:0 12px 10px; border-radius:12px;
  aspect-ratio:16/10;
  background:linear-gradient(150deg, #ff3b5c, #7c3aed 60%, #1c1b28);
  display:flex; align-items:center; justify-content:center;
}
.app-cover-play{
  width:34px; height:34px; border-radius:50%;
  background:rgba(255,255,255,.25); backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:.8rem;
}
.app-series-info{ padding:0 12px 6px; }
.app-series-info h4{ font-size:.85rem; margin-bottom:4px; }
.app-series-tags{ font-size:.6rem; color:var(--text-dim); display:block; margin-bottom:6px; }
.app-series-info p{ font-size:.62rem; color:var(--text-muted); line-height:1.4; }

.app-episode-row{ display:flex; gap:6px; padding:0 12px 4px; }
.app-ep{
  width:30px; height:30px; border-radius:8px; flex-shrink:0;
  background:var(--surface-2); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:.66rem; font-weight:700; color:var(--text-muted);
}
.app-ep-locked{ color:var(--text-dim); font-size:.6rem; }

.app-cast-row{ display:flex; gap:8px; padding:0 12px 8px; }
.app-cast-avatar{
  width:28px; height:28px; border-radius:50%;
  background:linear-gradient(135deg, var(--gold), var(--accent));
}

/* Contact */
.contact-grid{ display:grid; grid-template-columns:.8fr 1.2fr; gap:40px; align-items:start; }
.contact-info{ display:flex; flex-direction:column; gap:16px; }
.contact-row{
  display:flex; align-items:center; gap:16px;
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:18px 20px; transition:border-color .15s ease;
}
.contact-row:hover{ border-color:var(--accent); }
.contact-icon{ font-size:1.4rem; }
.contact-row strong{ display:block; color:#fff; font-size:.9rem; }
.contact-row span{ font-size:.85rem; color:#a5a3b8; }

.contact-form{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:28px;
}
.hidden-field{ position:absolute; left:-9999px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-field{ margin-bottom:16px; display:flex; flex-direction:column; gap:6px; }
.form-field label{ font-size:.82rem; color:#c9c7db; font-weight:600; }
.form-field input, .form-field select, .form-field textarea{
  background:var(--surface-2); border:1px solid var(--border); border-radius:8px;
  padding:11px 14px; color:#fff; font-family:inherit; font-size:.9rem;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline:none; border-color:var(--accent);
}
.form-note{ margin-top:12px; font-size:.85rem; color:var(--success); text-align:center; min-height:1.2em; }

/* Footer */
.site-footer{ background:#050409; padding:50px 0 0; border-top:1px solid var(--border); }
.footer-inner{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:30px; padding-bottom:36px; }
.footer-brand{ display:flex; flex-wrap:wrap; align-items:center; gap:10px; max-width:320px; }
.footer-brand .brand-name{ font-family:var(--font-head); font-weight:700; }
.footer-brand p{ width:100%; font-size:.82rem; color:var(--text-dim); margin-top:8px; }
.footer-links{ display:flex; flex-direction:column; gap:10px; }
.footer-links a{ font-size:.85rem; color:var(--text-muted); }
.footer-contact{ display:flex; flex-direction:column; gap:10px; }
.footer-contact a{ font-size:.85rem; color:var(--text-muted); }
.footer-bottom{ border-top:1px solid var(--border); padding:18px 0; }
.footer-bottom p{ font-size:.78rem; color:var(--text-dim); text-align:center; }

/* Mobile quickbar */
.mobile-quickbar{
  display:none; position:fixed; bottom:0; left:0; right:0; z-index:90;
  background:rgba(10,10,18,.95); backdrop-filter:blur(10px);
  border-top:1px solid var(--border);
  padding:10px 16px; justify-content:space-around;
}
.mobile-quickbar a{ font-size:.82rem; font-weight:600; color:var(--text); }

/* ===================== Animations on scroll ===================== */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* ===================== Responsive ===================== */
@media (max-width: 1024px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; margin-bottom:10px; }
  .phone-mockup{ width:230px; height:480px; }
  .stat-grid{ grid-template-columns:repeat(2,1fr); }
  .feature-groups{ grid-template-columns:repeat(2,1fr); }
  .revenue-grid{ grid-template-columns:repeat(2,1fr); }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .commercial-grid{ grid-template-columns:repeat(2,1fr); }
  .phase-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .preview-gallery{ grid-template-columns:repeat(2,1fr); }
  .preview-item-featured{ grid-column:1 / -1; }
}

@media (max-width: 720px){
  .nav-menu{ display:none; }
  .nav-toggle{ display:flex; }
  .site-header.menu-open .nav-menu{
    display:flex; flex-direction:column;
    position:absolute; top:70px; left:0; right:0;
    background:rgba(10,10,18,.97); backdrop-filter:blur(12px);
    border-bottom:1px solid var(--border);
    max-height:calc(100vh - 70px); overflow-y:auto;
  }
  .site-header.menu-open .nav-links{
    display:flex; flex-direction:column;
    padding:20px; gap:18px;
  }
  .site-header.menu-open .nav-cta{
    display:flex; flex-direction:column;
    padding:16px 20px 20px; gap:12px;
    border-top:1px solid var(--border);
  }
  .hero{ padding-top:110px; }
  .launch-badge{ flex-direction:column; align-items:flex-start; }
  .stat-grid{ grid-template-columns:1fr 1fr; }
  .feature-groups{ grid-template-columns:1fr; }
  .revenue-grid{ grid-template-columns:1fr 1fr; }
  .why-grid{ grid-template-columns:1fr; }
  .commercial-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .preview-gallery{ grid-template-columns:1fr; }
  .preview-item-featured{ grid-column:auto; }
  .mobile-quickbar{ display:flex; }
  .site-footer{ padding-bottom:70px; }
  body{ padding-bottom:0; }
}

@media (max-width: 420px){
  .stat-grid, .revenue-grid{ grid-template-columns:1fr; }
  .cd-unit{ min-width:44px; padding:6px 8px; }
}
