/* ═══════════════════════════════════════════
   ORDO — Premium Landing Page
   Aesthetic: Refined Dark Mono
   ═══════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --accent: #00d4ff;
  --accent-soft: rgba(0, 212, 255, 0.08);
  --accent-mid: rgba(0, 212, 255, 0.25);
  --accent-glow: rgba(0, 212, 255, 0.12);
  --amber: #eab308;
  --green: #34d399;
  --indigo: #818cf8;
  --purple: #a78bfa;
  --bg: #09090b;
  --bg-card: #111113;
  --bg-elevated: #18181b;
  --border: #1e1e22;
  --border-light: #2a2a2f;
  --text: #f0f0f2;
  --text-2: #8c8c96;
  --text-3: #55555e;
  --sans: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', monospace;
  --serif: 'Newsreader', Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body { background: var(--bg); min-height: 100vh; }

::selection { background: var(--accent); color: var(--bg); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-3); }

/* ─── BLUEPRINT SVG TYPE ─── */
.bp-label { font-family: var(--mono); font-size: 7.5px; font-weight: 500; letter-spacing: 0.5px; }
.bp-label-sm { font-family: var(--mono); font-size: 6.5px; font-weight: 400; letter-spacing: 0.5px; }

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

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

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.anim-in {
  opacity: 0;
  transform: translateY(24px);
  animation: animIn 0.8s var(--ease-out) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes animIn {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 60px;
  background: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}

nav.scrolled {
  background: rgba(9, 9, 11, 0.85);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-mid);
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.nav-center {
  display: flex;
  gap: 36px;
}

.nav-center a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.25s;
  letter-spacing: 0.2px;
}
.nav-center a:hover { color: var(--text); }

.nav-cta {
  position: relative;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.3s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px var(--accent-glow);
}
.nav-cta-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.nav-cta:hover .nav-cta-shimmer { transform: translateX(100%); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-2);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.nav-toggle span:first-child { top: 4px; }
.nav-toggle span:last-child { bottom: 4px; }
.nav-toggle.active span:first-child { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.active span:last-child { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 999;
  background: rgba(9, 9, 11, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu-cta {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--bg) !important;
  border-radius: 100px;
  text-align: center;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 65%);
  opacity: 0.6;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  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: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-container {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 520px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px;
  border: 1px solid var(--accent-mid);
  border-radius: 100px;
  background: var(--accent-soft);
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: logoPulse 2s ease-in-out infinite;
}

.hero-headline {
  font-size: clamp(38px, 5.2vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 22px;
}

.hero-headline em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px var(--accent-glow), 0 2px 12px rgba(0,212,255,0.15);
}
.btn-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transform: translateX(-100%);
}
.btn-primary:hover .btn-shimmer {
  transform: translateX(100%);
  transition: transform 0.65s ease;
}

.btn-ghost {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  padding: 14px 8px;
  transition: color 0.25s;
}
.btn-ghost:hover { color: var(--text); }

/* ─── HERO DEVICE ─── */
.hero-device {
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.device-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4)) drop-shadow(0 0 80px rgba(0,212,255,0.08));
  transition: transform 0.5s var(--ease-smooth);
}
.device-wrapper:hover .device-img {
  transform: translateY(-6px) scale(1.02);
}

/* ─── HERO STATS BAR ─── */
.hero-stats {
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.stat-value {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text);
}
.stat-unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0;
  margin-left: 1px;
}
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ═══════════════════════════════════════════
   SOCIAL PROOF STRIP
   ═══════════════════════════════════════════ */
.proof-strip {
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  padding: 18px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.proof-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-2);
  padding: 0 24px;
  white-space: nowrap;
}
.proof-item svg { opacity: 0.5; }
.proof-flag { font-size: 14px; }

.proof-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border-light);
}

/* ═══════════════════════════════════════════
   SHARED SECTION STYLES
   ═══════════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent-mid);
}

.section-title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: 18px;
}
.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.section-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 480px;
}

.section-header { margin-bottom: 56px; }

/* ═══════════════════════════════════════════
   FEATURES — BENTO GRID
   ═══════════════════════════════════════════ */
.features {
  padding: 120px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.bento-card {
  background: var(--bg);
  padding: 36px 32px;
  position: relative;
  transition: background 0.35s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bento-card:hover { background: var(--bg-card); }

.bento-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.bento-card:hover::after { transform: scaleX(1); }

.bento-wide { grid-column: span 2; }

.bento-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.bento-icon svg { width: 22px; height: 22px; }
.bento-icon.accent-amber { color: var(--amber); }
.bento-icon.accent-indigo { color: var(--indigo); }
.bento-icon.accent-green { color: var(--green); }
.bento-icon.accent-purple { color: var(--purple); }

.bento-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.2px;
}

.bento-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
}

.bento-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: auto;
  padding-top: 12px;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how-it-works {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 64px;
}

.pipeline-step { text-align: center; padding: 0 16px; }

.pipeline-num {
  font-family: var(--mono);
  font-size: 48px;
  font-weight: 600;
  color: var(--border-light);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.pipeline-step:hover .pipeline-num { color: var(--accent-mid); }

.pipeline-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, box-shadow 0.3s;
  color: var(--accent);
}
.pipeline-icon svg { width: 24px; height: 24px; }

.pipeline-step:hover .pipeline-icon {
  border-color: var(--accent-mid);
  box-shadow: 0 0 24px var(--accent-soft);
}

.pipeline-step h3 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}

.pipeline-step p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 200px;
  margin: 0 auto;
}

.pipeline-connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.pipeline-connector svg { width: 60px; }

/* ─── TERMINAL ─── */
.terminal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.terminal-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  opacity: 0.8;
}
.terminal-title {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  margin-left: 8px;
}

.terminal-body { padding: 24px; }

.t-line {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.t-line + .t-line { margin-top: 4px; }
.t-gap { margin-top: 16px !important; }

.t-prompt {
  color: var(--accent);
  flex-shrink: 0;
  user-select: none;
  min-width: 48px;
}
.t-arrow { color: var(--text-3); }

.t-voice { color: var(--text); }
.t-response { color: var(--green); opacity: 0.75; }
.t-action { color: var(--amber); opacity: 0.75; }

.t-cursor {
  display: inline-block;
  width: 7px; height: 14px;
  background: var(--accent);
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 3px;
}
@keyframes blink { 50% { opacity: 0; } }

/* ═══════════════════════════════════════════
   SPECS
   ═══════════════════════════════════════════ */
.specs {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.specs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.spec-group {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 32px;
}

.spec-group-title {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 13px;
}
.spec-row:last-child { border-bottom: none; }

.spec-key {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-3);
}
.spec-val {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text);
}

/* ═══════════════════════════════════════════
   USE CASES
   ═══════════════════════════════════════════ */
.use-cases {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.case-card {
  background: var(--bg);
  padding: 36px 28px;
  transition: background 0.3s;
  position: relative;
}
.case-card:hover { background: var(--bg-card); }

.case-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--indigo));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.case-card:hover::after { transform: scaleX(1); }

.case-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}

.case-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.case-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 20px;
}

.case-example {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  opacity: 0.6;
  padding: 10px 12px;
  background: var(--accent-soft);
  border-left: 2px solid var(--accent-mid);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   MISSION
   ═══════════════════════════════════════════ */
.mission {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.mission-inner {
  max-width: 680px;
  margin: 0 auto;
}

.mission-headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 24px;
}
.mission-headline em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.mission-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   PRESS / COMMUNITY
   ═══════════════════════════════════════════ */
.press {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.press-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-3);
  margin-bottom: 28px;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.press-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.25s;
}
.press-logo:hover { color: var(--text); }
.press-logo svg { opacity: 0.4; transition: opacity 0.25s; }
.press-logo:hover svg { opacity: 0.8; }

/* ═══════════════════════════════════════════
   WAITLIST
   ═══════════════════════════════════════════ */
.waitlist {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.waitlist-inner {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.waitlist-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.waitlist-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 12px;
}
.waitlist-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.waitlist-desc {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 36px;
  line-height: 1.6;
}

.waitlist-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--bg-card);
}
.waitlist-form:focus-within {
  border-color: var(--accent-mid);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.waitlist-input {
  flex: 1;
  font-family: var(--sans);
  font-size: 15px;
  padding: 16px 24px;
  background: transparent;
  color: var(--text);
  border: none;
  outline: none;
}
.waitlist-input::placeholder { color: var(--text-3); }

.waitlist-btn {
  position: relative;
  overflow: hidden;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 28px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  margin: 4px;
  transition: box-shadow 0.3s;
  white-space: nowrap;
}
.waitlist-btn:hover {
  box-shadow: 0 4px 20px var(--accent-glow);
}
.waitlist-btn:hover .btn-shimmer {
  transform: translateX(100%);
  transition: transform 0.65s ease;
}

.waitlist-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  margin-top: 16px;
  letter-spacing: 0.3px;
}

.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-cols {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-3);
}
.footer-made { font-family: var(--mono); font-size: 11px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  nav { padding: 0 24px; }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 100px;
  }
  .hero-device { order: -1; }
  .device-wrapper { max-width: 360px; margin: 0 auto; }

  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }

  .pipeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pipeline-connector { display: none; }

  .specs-layout { grid-template-columns: 1fr; gap: 24px; }

  .cases-grid { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; gap: 40px; }
  .footer-cols { gap: 40px; }
}

@media (max-width: 640px) {
  .nav-center { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .hero-headline { font-size: 34px; letter-spacing: -0.8px; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }

  .stats-row { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .stat { padding: 8px 20px; }
  .stat-divider { display: none; }

  .proof-track { gap: 8px; padding: 0 16px; }
  .proof-item { font-size: 11px; padding: 4px 12px; }
  .proof-sep { display: none; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }

  .press-logos { flex-direction: column; gap: 20px; }

  .waitlist-form { flex-direction: column; border-radius: 16px; }
  .waitlist-btn { border-radius: 100px; margin: 4px; }

  .footer-cols { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
