@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* ═══════════════════════════════════════════════════════
   MEA Hub — Landing Page CSS
   File: landing.css  |  Root: /
   Design: Deep Neo-Navy × Soft Ice (Dark Mode First)
═══════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --bg:          #0B111E;
  --surface:     #131C2E;
  --surface-2:   #1A2540;
  --border:      #1E2A41;
  --border-2:    #243050;
  --text:        #F0F4F8;
  --text-2:      #8A9AAD;
  --text-3:      #4A5A6D;
  --accent:      #81D4FA;
  --accent-dim:  rgba(129, 212, 250, 0.12);
  --accent-glow: rgba(129, 212, 250, 0.20);
  --green:       #00E676;
  --red:         #FF5252;
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --nav-h:       64px;
  --font:        'Segoe UI Variable Display', 'Segoe UI Variable', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body:   'Segoe UI Variable Text', 'Segoe UI Variable', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mea:    'Bebas Neue', 'Impact', sans-serif;
  --font-mono:   'Cascadia Code', 'Fira Code', monospace;
}

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

/* Headings use Display variant */
h1, h2, h3, h4, h5, h6,
.nav-name, .nav-links a, .section-title {
  font-family: var(--font);
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── MEA BRAND NAMES ───────────────────── */
/* All "MEA Hub", "MEA Ecosystem", "MEA Vault" etc. */
.mea-brand {
  font-family: var(--font-mea);
  letter-spacing: 0.04em;
  font-weight: 400; /* Bebas Neue is display caps, weight 400 = bold visually */
}

/* In nav — slightly tighter */
.nav-name.mea-brand {
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

/* In footer */
.footer-name.mea-brand {
  font-size: 1rem;
  letter-spacing: 0.06em;
}

/* ─── UTILITY ────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--accent);
  color: #0B111E;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: #a8e4ff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(129, 212, 250, 0.30);
}
.btn-primary.btn-lg { padding: 13px 28px; font-size: 1rem; border-radius: 10px; }
.btn-primary.btn-xl { padding: 16px 40px; font-size: 1.1rem; border-radius: 12px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  color: var(--text-2);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: var(--text); background: var(--accent-dim); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  color: var(--text-2);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid var(--border-2);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-outline:hover { color: var(--text); border-color: var(--accent); background: var(--accent-dim); }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s, padding 0.35s;
}
.navbar.scrolled {
  background: rgba(11, 17, 30, 0.75);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.28);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo { width: 32px; height: 32px; object-fit: contain; }
.nav-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 6px 14px;
  font-size: 0.9rem;
  color: var(--text-2);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--accent-dim); }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  background: rgba(11, 17, 30, 0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  padding: 10px 12px;
  color: var(--text-2);
  font-size: 0.95rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-mobile a:hover { color: var(--text); background: var(--accent-dim); }
.nav-mobile-actions { display: flex; gap: 10px; margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--border); }
.nav-mobile.open { display: flex; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 80px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
  overflow: hidden;
  gap: 64px;
}

@media (min-height: 700px) {
  .hero {
    padding-top: calc(var(--nav-h) + 72px);
    justify-content: center;
  }
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-left {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(129, 212, 250, 0.07) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-glow-right {
  position: absolute;
  top: 30%;
  right: -10%;
  width: 400px;
  height: 400px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(129, 212, 250, 0.05) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  isolation: isolate;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(129, 212, 250, 0.20);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.headline-accent {
  /* Bebas Neue for MEA brand words in headline */
  font-family: var(--font-mea);
  letter-spacing: 0.02em;
  color: var(--accent);
  /* Safe gradient — only applies when supported */
  background: linear-gradient(135deg, #81D4FA 0%, #a8e8ff 50%, #81D4FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Firefox/Kiwi fallback — if gradient text fails, stays as var(--accent) */
  @supports not (background-clip: text) {
    color: var(--accent);
    background: none;
  }
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 36px;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── HERO MOCKUP ─────────────────────────── */
.hero-mockup-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(19, 28, 46, 0.90);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  min-width: 170px;
  z-index: 3;
  animation: float-idle 4s ease-in-out infinite;
}
.float-card.float-left { left: 0; }
.float-card.float-right { right: 0; }
.float-card.float-top { top: 8%; }
.float-card.float-mid { top: 44%; }
.float-card.float-bottom { bottom: 8%; }
.float-card:nth-child(2) { animation-delay: 0.8s; }
.float-card:nth-child(4) { animation-delay: 0.4s; }
.float-card:nth-child(5) { animation-delay: 1.2s; }
.float-card:nth-child(6) { animation-delay: 1.6s; }
@keyframes float-idle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.fc-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-info { display: flex; flex-direction: column; }
.fc-label { font-size: 0.8rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.fc-sub { font-size: 0.7rem; color: var(--text-2); }
.fc-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: auto;
  flex-shrink: 0;
}
.fc-status-on {
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.fc-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  background: rgba(129, 212, 250, 0.15);
  color: var(--accent);
  border-radius: 100px;
  flex-shrink: 0;
}

/* Center app mockup */
.app-mockup {
  width: 480px;
  height: 300px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(129, 212, 250, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(129, 212, 250, 0.06);
  flex-shrink: 0;
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #0e1624;
  border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}
.d-red    { background: #FF5F57; }
.d-yellow { background: #FEBC2E; }
.d-green  { background: #28C840; }
.mockup-title {
  font-size: 0.72rem;
  color: var(--text-3);
  margin: 0 auto;
  font-weight: 600;
}
.mockup-body {
  display: flex;
  height: calc(100% - 30px);
}
.mockup-sidebar {
  width: 48px;
  background: #0d1522;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}
.ms-logo {
  width: 24px;
  height: 24px;
  background: var(--accent-dim);
  border-radius: 6px;
  margin-bottom: 6px;
}
.ms-item {
  width: 28px;
  height: 28px;
  background: var(--border);
  border-radius: 6px;
}
.ms-active { background: var(--accent-dim); box-shadow: 0 0 0 1px rgba(129,212,250,0.25); }
.mockup-main { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.mm-header { display: flex; align-items: center; justify-content: space-between; }
.mm-title-bar { width: 80px; height: 10px; background: var(--border-2); border-radius: 5px; }
.mm-avatar { width: 22px; height: 22px; background: var(--accent-dim); border-radius: 50%; }
.mm-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 8px; }
.mm-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mm-card-wide { grid-column: span 1; }
.mm-card-label { width: 60%; height: 7px; background: var(--border-2); border-radius: 4px; }
.mm-card-chart { display: flex; align-items: flex-end; gap: 3px; height: 40px; margin-top: 4px; }
.chart-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, rgba(129,212,250,0.6), rgba(129,212,250,0.25));
  border-radius: 3px 3px 0 0;
}
.mm-card-stat { width: 70%; height: 18px; background: var(--border-2); border-radius: 4px; margin-top: auto; }
.mm-card-stat-green { background: rgba(0, 230, 118, 0.20); }
.mm-list { display: flex; flex-direction: column; gap: 5px; }
.mm-list-item { height: 8px; background: var(--border); border-radius: 4px; }
.mm-list-item:nth-child(2) { width: 80%; }
.mm-list-item:nth-child(3) { width: 60%; }

/* ═══════════════════════════════════════════
   TRUST
═══════════════════════════════════════════ */
.trust {
  padding: 60px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-tagline {
  font-size: 0.9rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 600;
}
.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.trust-stat {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
}
.stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-desc {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 4px;
}
.trust-divider {
  width: 1px;
  height: 60px;
  background: var(--border-2);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   CORE PRODUCTS
═══════════════════════════════════════════ */
.products {
  padding: 96px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  position: relative;
}
.product-card:hover {
  border-color: rgba(129, 212, 250, 0.30);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.product-card-featured {
  border-color: rgba(129, 212, 250, 0.20);
  background: linear-gradient(135deg, #131C2E 0%, #162033 100%);
}
.product-card-dim { opacity: 0.75; }
.product-card-dim:hover { opacity: 1; }
.pc-icon {
  width: 46px;
  height: 46px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.product-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}
.pc-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: auto;
  align-self: flex-start;
}
.pc-tag-live { background: rgba(0, 230, 118, 0.12); color: var(--green); }
.pc-tag-soon { background: var(--accent-dim); color: var(--accent); }

/* ═══════════════════════════════════════════
   WHY MEA HUB
═══════════════════════════════════════════ */
.why {
  padding: 96px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(19,28,46,0.4) 50%, transparent 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, transform 0.2s;
}
.why-card:hover {
  border-color: rgba(129, 212, 250, 0.25);
  transform: translateY(-2px);
}
.why-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.why-card p { font-size: 0.88rem; color: var(--text-2); line-height: 1.6; }

/* ═══════════════════════════════════════════
   PREVIEW
═══════════════════════════════════════════ */
.preview {
  padding: 96px 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.preview-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

/* Desktop mockup */
.preview-desktop {
  width: 640px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(129,212,250,0.06);
  flex-shrink: 0;
}
.pd-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #0e1624;
  border-bottom: 1px solid var(--border);
}
.pd-body {
  display: flex;
  height: 320px;
}
.pd-sidebar {
  width: 52px;
  background: #0d1522;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
}
.pd-s-logo { width: 26px; height: 26px; background: var(--accent-dim); border-radius: 6px; margin-bottom: 8px; }
.pd-s-item { width: 30px; height: 30px; background: var(--border); border-radius: 6px; }
.pd-s-active { background: var(--accent-dim); }
.pd-main { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.pd-header { display: flex; align-items: center; justify-content: space-between; }
.pd-h-title { width: 100px; height: 12px; background: var(--border-2); border-radius: 6px; }
.pd-h-avatar { width: 26px; height: 26px; background: var(--accent-dim); border-radius: 50%; }
.pd-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pd-card { height: 80px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 8px; }
.pd-table { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pd-row {
  height: 14px;
  background: var(--border);
  border-radius: 4px;
}
.pd-row:nth-child(2) { width: 85%; }
.pd-row:nth-child(4) { width: 70%; }
.pd-row-accent { background: rgba(129, 212, 250, 0.15); }

/* Mobile mockup */
.preview-mobile {
  width: 180px;
  height: 340px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(129,212,250,0.06);
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  flex-shrink: 0;
}
.pm-notch {
  width: 60px;
  height: 20px;
  background: #0B111E;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border);
}
.pm-screen { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.pm-topbar { display: flex; align-items: center; justify-content: space-between; }
.pm-tb-title { width: 60px; height: 9px; background: var(--border-2); border-radius: 4px; }
.pm-tb-avatar { width: 18px; height: 18px; background: var(--accent-dim); border-radius: 50%; }
.pm-cards { display: grid; grid-template-columns: 2fr 1fr; gap: 6px; }
.pm-card { height: 52px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 8px; }
.pm-card-wide { grid-column: span 2; height: 44px; }
.pm-list { display: flex; flex-direction: column; gap: 5px; }
.pm-item { height: 9px; background: var(--border); border-radius: 4px; }
.pm-item:nth-child(2) { width: 80%; }
.pm-item-accent { background: rgba(129, 212, 250, 0.15); }
.pm-home-bar {
  width: 50px;
  height: 4px;
  background: var(--border-2);
  border-radius: 2px;
  margin: 8px auto;
  flex-shrink: 0;
}
.preview-caption {
  font-size: 0.88rem;
  color: var(--text-2);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════
   ROADMAP
═══════════════════════════════════════════ */
.roadmap {
  padding: 96px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(19,28,46,0.4) 50%, transparent 100%);
}
.roadmap-track {
  display: flex;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.roadmap-phase {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rp-marker {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.rp-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.rp-dot-active {
  background: var(--green);
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}
.rp-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--green);
  opacity: 0.4;
  animation: rp-pulse 2s ease-in-out infinite;
}
@keyframes rp-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0; }
}
.rp-dot-soon { background: var(--accent); box-shadow: 0 0 8px rgba(129, 212, 250, 0.4); }
.rp-dot-future { background: var(--text-3); }
.rp-line {
  flex: 1;
  height: 2px;
  background: var(--border-2);
  margin-left: 0;
}
.rp-future .rp-marker { justify-content: flex-start; }
.rp-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 10px;
  display: block;
}
.rp-now .rp-label { color: var(--green); }
.rp-soon .rp-label { color: var(--accent); }
.rp-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-right: 16px;
}
.rp-future .rp-items { margin-right: 0; }
.rp-items li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-2);
}

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.final-cta {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(129, 212, 250, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 40px;
}
.cta-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-3);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 28px; height: 28px; object-fit: contain; }
.footer-name { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.footer-links {
  display: flex;
  gap: 20px;
  margin-left: auto;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-2); }
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-3);
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
/* ── Desktop: always show nav links & actions ── */
@media (min-width: 701px) {
  .nav-links  { display: flex !important; }
  .nav-actions { display: flex !important; }
  .nav-toggle { display: none !important; }
  .nav-mobile { display: none !important; }
}

@media (max-width: 900px) {
  .hero-mockup-wrap { display: none; }
  .hero {
    min-height: 100vh;
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 80px;
    gap: 0;
  }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .roadmap-track { flex-direction: column; gap: 24px; }
  .rp-line { display: none; }
  .rp-items { margin-right: 0; }
  .preview-wrap { flex-direction: column; align-items: center; }
  .preview-desktop { width: 100%; max-width: 480px; }
  .trust-divider { display: none; }
  .trust-stats { flex-direction: column; }
}

/* ── Mobile only: hamburger ── */
@media (max-width: 700px) {
  .nav-links, .nav-actions { display: none !important; }
  .nav-toggle { display: flex; }
}

@media (max-width: 480px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { margin-left: 0; }
}

/* ─── REDUCED MOTION ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .float-card, .badge-dot, .rp-pulse { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
