/* ───────────────────────────────────────────────
   Home page — hero, dashboard mockup, features, launch
   ─────────────────────────────────────────────── */

.home { background: var(--brand-ink); }

/* ───────── HERO ───────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
  background:
    radial-gradient(1200px 600px at 80% -20%, rgba(45,108,255,0.25), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(79,212,229,0.12), transparent 60%),
    var(--brand-ink);
  color: var(--d-text);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.6;
}
.hero-glow-1 { width: 520px; height: 520px; top: -100px; left: -120px; background: radial-gradient(circle, rgba(45,108,255,0.6), transparent 70%); }
.hero-glow-2 { width: 600px; height: 600px; top: 200px; right: -160px; background: radial-gradient(circle, rgba(124,109,255,0.4), transparent 70%); }
.hero-glow-3 { width: 700px; height: 700px; top: -200px; right: -180px; background: radial-gradient(circle, rgba(79,212,229,0.35), transparent 70%); }
.hero-network { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.4; }

.hero-inner { position: relative; padding-top: 64px; }
.hero-copy { max-width: 780px; }
.hero-headline {
  color: #fff;
  margin: 18px 0 18px;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.grad-text {
  background: linear-gradient(135deg, #6FAFE1 0%, #2D6CFF 40%, #4FD4E5 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--d-text-2);
  max-width: 60ch;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

/* Logo strip moved into the hero — full-width across the container, below the hero copy. */
.hero-strip {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--d-line);
}
.hero-strip .logo-strip-label {
  font-size: 11.5px; font-weight: 600;
  color: var(--d-text-3); letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-strip .logo-strip-row {
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  font-size: 15px; color: var(--d-text-2); font-weight: 500;
  align-items: center;
}
.hero-strip .logo-strip-row .dot-sep { color: rgba(255,255,255,0.18); }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px;
  color: var(--d-text-3); font-size: 13px; font-weight: 500;
  padding-top: 24px; border-top: 1px solid var(--d-line);
}
.hero-trust-item { display: inline-flex; align-items: center; gap: 8px; }

/* ───────── Dashboard mockup ───────── */
.hero-dash {
  position: relative;
  margin-top: 72px;
  perspective: 2400px;
}
.dash-glow {
  position: absolute; left: 10%; right: 10%; bottom: -60px; height: 160px;
  background: radial-gradient(ellipse at center, rgba(45,108,255,0.55), transparent 70%);
  filter: blur(40px); opacity: 0.7;
  pointer-events: none; z-index: -1;
}
.dash-window {
  position: relative;
  background: #0E1730;
  border: 1px solid var(--d-line-2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 60px 120px -30px rgba(0,0,0,0.6),
    0 30px 60px -20px rgba(45,108,255,0.25);
  /* subtle tilt */
  transform: rotateX(2deg);
  transform-origin: center top;
}
.dash-chrome {
  display: flex; align-items: center; gap: 16px;
  height: 44px; padding: 0 16px;
  border-bottom: 1px solid var(--d-line);
  background: linear-gradient(180deg, #14213D 0%, #0E1730 100%);
}
.dash-traffic { display: flex; gap: 6px; }
.dash-traffic i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.dash-traffic i:nth-child(1) { background: #FF5F57; }
.dash-traffic i:nth-child(2) { background: #FEBC2E; }
.dash-traffic i:nth-child(3) { background: #28C840; }
.dash-url {
  flex: 1;
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 12px; color: var(--d-text-3);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--d-line);
  border-radius: 8px;
  padding: 6px 14px;
  max-width: 380px; margin: 0 auto;
}
.dash-url-sep { opacity: 0.5; }
.dash-url-page { color: var(--d-text); }
.dash-chrome-right { display: flex; align-items: center; gap: 10px; }
.dash-mini-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  color: #4FD4E5; background: rgba(79,212,229,0.1);
  border: 1px solid rgba(79,212,229,0.3); border-radius: var(--r-pill);
}
.dash-mini-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #4FD4E5; animation: pulse-blue 2s infinite; }
@keyframes pulse-blue { 0%,100% { box-shadow: 0 0 0 0 rgba(79,212,229,0.5);} 50% { box-shadow: 0 0 0 6px rgba(79,212,229,0);} }

.dash-body { display: grid; grid-template-columns: 220px 1fr; min-height: 540px; }

.dash-side {
  background: #0A1228;
  border-right: 1px solid var(--d-line);
  padding: 20px 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.dash-side-brand { display: flex; align-items: center; gap: 10px; padding: 0 8px 14px; border-bottom: 1px solid var(--d-line); margin-bottom: 12px; }
.dash-side-logo {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1840AA 100%);
  position: relative;
  box-shadow: var(--inset-cta);
}
.dash-side-logo::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%);
  border-radius: 8px;
}
.dash-side-title { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.1; }
.dash-side-sub { font-size: 10.5px; color: var(--d-text-3); letter-spacing: 0.04em; text-transform: uppercase; }

.dash-side-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.dash-side-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--d-text-2);
  cursor: default;
}
.dash-side-nav a svg { width: 15px; height: 15px; opacity: 0.7; }
.dash-side-nav a.is-active { background: rgba(45,108,255,0.14); color: #fff; box-shadow: inset 0 0 0 1px rgba(45,108,255,0.3); }
.dash-side-nav a.is-active svg { opacity: 1; color: #4FD4E5; }
.dash-badge {
  margin-left: auto; font-size: 10.5px; font-weight: 600;
  padding: 1px 7px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.06); color: var(--d-text-2);
}

.dash-side-foot {
  margin-top: 12px; padding: 10px;
  background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.2);
  border-radius: 10px;
}
.dash-side-status { display: flex; align-items: center; gap: 10px; }
.dash-side-status-t { font-size: 12px; font-weight: 600; color: #fff; }
.dash-side-status-s { font-size: 11px; color: var(--d-text-3); }

/* Main */
.dash-main { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 18px; }
.dash-topbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--d-line); }
.dash-topbar-eyebrow { font-size: 10.5px; font-weight: 600; color: var(--brand-cyan); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.dash-topbar-title { font-size: 17px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.dash-topbar-meta { color: var(--d-text-3); font-weight: 500; }
.dash-topbar-right { display: flex; align-items: center; gap: 12px; }
.dash-search {
  display: inline-flex; align-items: center; gap: 8px;
  height: 32px; padding: 0 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--d-line-2);
  border-radius: 8px;
  font-size: 12px; color: var(--d-text-3);
}
.dash-avatars { display: flex; }
.dash-avatars span {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700; color: #fff;
  border: 2px solid #0E1730; margin-left: -6px;
}
.dash-avatars span:first-child { margin-left: 0; }

/* KPIs */
.dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.dash-kpi {
  padding: 12px 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--d-line);
  border-radius: 10px;
}
.dash-kpi-label { font-size: 11px; color: var(--d-text-3); margin-bottom: 6px; font-weight: 500; }
.dash-kpi-value { font-size: 22px; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -0.02em; }
.dash-kpi-value span { font-size: 13px; color: var(--d-text-3); font-weight: 600; margin-left: 2px; }
.dash-kpi-delta { font-size: 11px; color: var(--d-text-3); margin-top: 6px; font-weight: 500; }
.dash-kpi-delta.is-up { color: #4ADE80; }

/* Grid: map + queue */
.dash-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 12px; flex: 1; min-height: 0; }

.dash-map {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--d-line);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.dash-map-head { display: flex; justify-content: space-between; align-items: flex-start; padding: 14px 16px; border-bottom: 1px solid var(--d-line); }
.dash-map-head h4 { font-size: 13.5px; color: #fff; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.dash-map-sub { font-size: 11px; color: var(--d-text-3); }
.dash-map-actions { display: flex; gap: 4px; padding: 3px; background: rgba(255,255,255,0.04); border-radius: var(--r-pill); border: 1px solid var(--d-line); }
.dash-tab { font-size: 11px; font-weight: 600; color: var(--d-text-3); padding: 4px 10px; border-radius: var(--r-pill); }
.dash-tab.is-active { background: rgba(45,108,255,0.22); color: #fff; box-shadow: inset 0 0 0 1px rgba(45,108,255,0.4); }

.dash-map-canvas { position: relative; flex: 1; min-height: 280px; }
.dash-map-svg { width: 100%; height: 100%; display: block; }
.map-pin {
  transform: translate(var(--x), var(--y));
  animation: float 4s ease-in-out infinite;
}
.map-pin:nth-child(odd) { animation-delay: 0.6s; }

.map-card {
  position: absolute;
  background: rgba(14,23,48,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--d-line-2);
  border-radius: 10px;
  padding: 9px 12px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.6);
  min-width: 180px;
}
.map-card-row { display: flex; align-items: center; gap: 8px; }
.map-card-t { font-size: 12px; font-weight: 600; color: #fff; }
.map-card-s { font-size: 11px; color: var(--d-text-3); margin-top: 2px; padding-left: 16px; }
.map-card-dot { width: 8px; height: 8px; border-radius: 50%; background: #EF4444; }
.map-card-pickup { left: 16px; bottom: 16px; animation: float 5s ease-in-out infinite; }
.map-card-drop   { right: 16px; top: 16px; animation: float 5s ease-in-out infinite reverse; }

/* Queue */
.dash-queue {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--d-line);
  border-radius: 12px;
  padding: 6px;
  display: flex; flex-direction: column;
}
.dash-queue-head { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px 8px; }
.dash-queue-head h4 { font-size: 13.5px; color: #fff; font-weight: 600; }
.dash-queue-count {
  font-size: 11px; font-weight: 600; color: var(--brand-cyan);
  background: rgba(79,212,229,0.1); border: 1px solid rgba(79,212,229,0.25);
  padding: 3px 9px; border-radius: var(--r-pill);
}

.dash-trip {
  display: grid; grid-template-columns: 52px 1fr auto; gap: 10px; align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background .15s;
}
.dash-trip:hover { background: rgba(255,255,255,0.03); }
.dash-trip + .dash-trip { border-top: 1px solid var(--d-line); border-radius: 0 0 10px 10px; }
.dash-trip-time {
  font-size: 15px; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -0.01em;
}
.dash-trip-time span { display: block; font-size: 10px; color: var(--d-text-3); font-weight: 600; margin-top: 3px; letter-spacing: 0.06em; }
.dash-trip-name {
  font-size: 12.5px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
.dash-trip-badge {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 2px 7px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.06); color: var(--d-text-2);
  border: 1px solid var(--d-line);
}
.dash-trip-badge.is-broker { color: #B7CBFF; background: rgba(45,108,255,0.14); border-color: rgba(45,108,255,0.3); }
.dash-trip-badge.is-wc     { color: #4FD4E5; background: rgba(79,212,229,0.12); border-color: rgba(79,212,229,0.3); }
.dash-trip-badge.is-warn   { color: #FBBF24; background: rgba(245,158,11,0.14); border-color: rgba(245,158,11,0.3); }
.dash-trip-route { font-size: 11px; color: var(--d-text-3); display: inline-flex; align-items: center; gap: 5px; }
.dash-trip-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700; color: #fff;
}
.dash-trip-assign {
  height: 28px; padding: 0 12px; border-radius: var(--r-pill);
  background: var(--brand-blue); color: #fff; border: 0;
  font-size: 11px; font-weight: 600; box-shadow: var(--inset-cta);
}
.dash-trip-assign:hover { background: var(--brand-blue-2); }
.dash-trip.is-unassigned { background: rgba(245,158,11,0.05); border: 1px dashed rgba(245,158,11,0.3); }

/* ───────── Responsive — collapse the dashboard ───────── */
@media (max-width: 1100px) {
  .dash-grid { grid-template-columns: 1fr; }
  .dash-map-canvas { min-height: 320px; }
}
@media (max-width: 760px) {
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .dash-topbar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .dash-topbar-right .dash-search { display: none; }
  .map-card-pickup, .map-card-drop { display: none; }
  .hero { padding-bottom: 64px; }
  .hero-inner { padding-top: 24px; }
}

/* ───────── Logo strip ───────── */
.logo-strip { background: var(--brand-ink); padding: 64px 0 16px; }
.logo-strip-label {
  text-align: center; font-size: 11.5px; font-weight: 600;
  color: var(--d-text-3); letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 24px;
}
.logo-strip-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px;
  font-size: 14px; color: var(--d-text-2); font-weight: 500;
}
.logo-strip-row .dot-sep { color: rgba(255,255,255,0.18); }

/* ───────── Features ───────── */
.features { background: var(--paper); position: relative; }
.features .section-head h2 { color: var(--ink); }
.features .section-head p { color: var(--ink-3); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.feature {
  grid-column: span 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  overflow: hidden;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.feature-lg { grid-column: span 3; }
.feature-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-blue); margin-bottom: 18px;
}
.feature h3 { color: var(--ink); margin-bottom: 10px; }
.feature p { font-size: 14.5px; line-height: 1.55; margin-bottom: 20px; flex: 1; }
.feature-viz {
  position: relative;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, #F4F6FA 0%, #EAF1FF 100%);
  border: 1px solid var(--line);
  min-height: 140px;
  margin-top: auto;
  overflow: hidden;
}

/* Dispatch viz */
.feature-viz-dispatch { padding: 18px 16px 16px; }
.viz-rail { position: relative; height: 28px; margin-bottom: 14px; }
.viz-rail-line { position: absolute; top: 18px; left: 6px; right: 6px; height: 2px; background: var(--line-2); border-radius: 2px; }
.viz-rail-tick { position: absolute; top: 0; transform: translateX(-50%); font-size: 10px; color: var(--ink-4); font-weight: 600; }
.viz-rail-tick::after { content: ""; display: block; width: 2px; height: 6px; background: var(--line-2); margin: 4px auto 0; border-radius: 1px; }
.viz-trip {
  display: flex; align-items: center; gap: 8px;
  height: 26px; padding: 0 10px; border-radius: var(--r-pill);
  font-size: 11.5px; font-weight: 600; color: #fff;
  position: relative;
  margin-bottom: 6px;
}
.viz-trip-h { font-weight: 700; }
.viz-trip-r { font-weight: 500; opacity: 0.85; }
.viz-trip-1 { background: linear-gradient(90deg, #2D6CFF, #4D86FF); width: 50%; margin-left: 12%; }
.viz-trip-2 { background: linear-gradient(90deg, #7C6DFF, #9F87FF); width: 38%; margin-left: 25%; }
.viz-trip-3 { background: linear-gradient(90deg, #4FD4E5, #2BB8CC); color: #0B1220; width: 44%; margin-left: 38%; }
.viz-trip::after {
  content: ""; position: absolute; right: -3px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; background: currentColor; border-radius: 50%; opacity: 0.4;
}

/* Drivers viz */
.feature-viz-drivers { padding: 14px 14px; display: flex; flex-direction: column; gap: 6px; min-height: 160px; }
.vd-row { display: grid; grid-template-columns: 28px 1fr auto; gap: 10px; align-items: center; padding: 8px 10px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.vd-av { width: 28px; height: 28px; border-radius: 50%; color: #fff; font-size: 10.5px; font-weight: 700; display: grid; place-items: center; }
.vd-n { font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.vd-pill { font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: var(--r-pill); }
.vd-pill.is-ok { background: var(--success-bg); color: #166534; }
.vd-pill.is-warn { background: var(--warning-bg); color: #92400E; }

/* Schedule viz */
.feature-viz-schedule { padding: 16px 16px; min-height: 160px; }
.vs-day { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; font-size: 10px; font-weight: 600; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; text-align: center; }
.vs-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.vs-grid > div { aspect-ratio: 1.6 / 1; background: #fff; border: 1px solid var(--line); border-radius: 4px; }
.vs-grid > div.is-busy { background: linear-gradient(135deg, var(--brand-blue) 0%, #4D86FF 100%); border-color: var(--brand-blue); }

/* Broker viz */
.feature-viz-broker { padding: 22px 16px 16px; min-height: 160px; display: flex; flex-direction: column; justify-content: center; }
.vb-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 6px; margin-bottom: 14px; }
.vb-node { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-pill); padding: 7px 12px; font-size: 11.5px; font-weight: 600; color: var(--ink-2); text-align: center; }
.vb-node.is-mid { background: linear-gradient(135deg, var(--brand-blue) 0%, #1840AA 100%); color: #fff; border-color: transparent; box-shadow: var(--inset-cta), 0 4px 14px -4px rgba(45,108,255,0.4); }
.vb-line { height: 2px; background: repeating-linear-gradient(90deg, var(--brand-blue) 0 4px, transparent 4px 8px); }
.vb-meta { display: flex; justify-content: space-around; padding-top: 12px; border-top: 1px solid var(--line); font-size: 11px; color: var(--ink-4); }
.vb-meta strong { color: var(--ink); font-weight: 700; }

/* Reports viz */
.feature-viz-reports { padding: 12px 12px 14px; min-height: 180px; display: flex; flex-direction: column; }
.feature-viz-reports svg { width: 100%; flex: 1; }
.vr-legend { display: flex; gap: 16px; padding: 0 6px; font-size: 11px; color: var(--ink-4); font-weight: 500; }
.vr-legend i { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }

@media (max-width: 960px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature, .feature-lg { grid-column: span 1; }
}
@media (max-width: 580px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ───────── Launch / Countdown ───────── */
.launch { background: var(--paper); padding: 32px 0 96px; }
.launch-card {
  position: relative;
  background: var(--brand-ink);
  border: 1px solid var(--d-line-2);
  border-radius: var(--r-2xl);
  padding: 64px 48px;
  overflow: hidden;
  color: var(--d-text);
}
.launch-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.8; }
.launch-inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.launch-title { color: #fff; margin: 18px 0 36px; }

.countdown { display: flex; align-items: stretch; justify-content: center; gap: 8px; margin-bottom: 32px; }
.countdown-cell {
  flex: 1; max-width: 130px;
  padding: 20px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--d-line-2);
  border-radius: var(--r-lg);
  text-align: center;
}
.countdown-num {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700; line-height: 1; color: #fff;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #fff 0%, #B7CBFF 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.countdown-lbl { font-size: 11px; font-weight: 600; color: var(--d-text-3); margin-top: 8px; letter-spacing: 0.12em; text-transform: uppercase; }
.countdown-sep {
  font-size: clamp(32px, 5vw, 56px);
  color: rgba(255,255,255,0.2); display: flex; align-items: center; font-weight: 700;
  padding-bottom: 14px;
}

.launch-sub { color: var(--d-text-2); margin-bottom: 24px; font-size: 16px; max-width: 56ch; margin-left: auto; margin-right: auto; }
.launch-form { display: flex; gap: 8px; max-width: 460px; margin: 0 auto 8px; }
.launch-form .input {
  background: rgba(255,255,255,0.06); border-color: var(--d-line-2); color: #fff;
}
.launch-form .input::placeholder { color: var(--d-text-3); }
.launch-form .input:focus { border-color: var(--brand-blue); background: rgba(255,255,255,0.08); box-shadow: 0 0 0 4px rgba(45,108,255,0.2); }
.launch-msg { font-size: 13px; color: var(--brand-cyan); min-height: 18px; margin-bottom: 32px; font-weight: 500; }
.launch-form.is-success ~ .launch-msg { color: #4ADE80; }

.launch-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding-top: 28px; border-top: 1px solid var(--d-line); }
.launch-meta > div { text-align: center; }
.launch-meta strong { display: block; color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }
.launch-meta span { font-size: 12px; color: var(--d-text-3); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

@media (max-width: 720px) {
  .launch-card { padding: 48px 24px; border-radius: var(--r-xl); }
  .countdown { gap: 4px; }
  .countdown-cell { padding: 14px 6px; }
  .countdown-sep { display: none; }
  .launch-form { flex-direction: column; }
  .launch-meta { grid-template-columns: 1fr; gap: 16px; }
}
