:root {
  --bg: #050507;
  --bg-2: #0a0a0d;
  --surface: #101014;
  --panel: #15151a;
  --panel-2: #1c1c22;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f5f7;
  --text-muted: #9a9aa3;
  --accent: #ffffff;
  --accent-2: #8cf;
  --accent-3: #c9f;
  --space: 1.25rem;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1200px;
  --mono: "SF Mono", ui-monospace, Menlo, Monaco, "Cascadia Mono", monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  background: var(--accent);
  color: #000;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.8rem;
}
.skip-link:focus { top: 1rem; }

a { color: var(--text); transition: color 0.2s ease; }
a:hover { color: var(--accent-2); }

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.narrow { max-width: 760px; margin: 0 auto; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(5, 5, 7, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.03em;
  min-height: 44px;
}

.logo-mark {
  width: 24px;
  height: 24px;
  color: var(--text);
}

.logo-type { font-size: 1.1rem; }

.site-nav { flex: 1; }
.nav-list {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}
.nav-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
}
.nav-list a:hover, .nav-list a:focus { color: var(--text); }

.nav-cta { display: flex; align-items: center; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
}
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  min-width: 44px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  background: var(--panel-2);
  color: var(--text);
}

.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; }

.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover { background: #e6e6e6; color: #000; box-shadow: 0 12px 40px rgba(255,255,255,0.12); }

.btn-secondary {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-secondary:hover { background: var(--surface); color: var(--text); }

.btn-small { padding: 0.5rem 1rem; font-size: 0.85rem; }

.btn-icon {
  width: 18px;
  height: 18px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(120, 200, 255, 0.06), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(180, 130, 255, 0.05), transparent 45%),
    var(--bg);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy { max-width: 560px; }

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: -0.03em; }

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  margin-bottom: 1.25rem;
}

.hero-lede {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Hero stage */
.hero-stage {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  position: relative;
}

.stage-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0f0;
  box-shadow: 0 0 12px #0f0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.stage-title { margin-left: auto; color: var(--text-muted); }

.bot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.bot-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.bot-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }

.bot-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.bot-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--bg-2);
  color: var(--text);
  border: 2px solid var(--dot, var(--border-strong));
}

.bot-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.bot-status {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  min-height: 2.6em;
}

.bot-status.typing::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background: var(--text-muted);
  border-radius: 50%;
  margin-left: 0.3em;
  animation: typing-blink 1s infinite;
}

@keyframes typing-blink {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

.stage-log {
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  min-height: 2.4em;
}

/* Section base */
.section {
  padding: 7rem 0;
  position: relative;
}

.section-head { margin-bottom: 3.5rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.section-head .section-lede {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
}

.section-copy h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.section-copy p { font-size: 1.1rem; color: var(--text-muted); margin: 0 0 1.5rem; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.split-flipped .section-copy { order: 2; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.feature-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}
.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-family: var(--mono);
}

/* Message demo */
.message-demo { display: flex; justify-content: center; }
.demo-device {
  width: min(100%, 360px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.demo-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.demo-icon { width: 16px; height: 16px; }

.demo-chat {
  height: 320px;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg-2);
}

.chat-bubble {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  animation: bubble-in 0.4s ease forwards;
}

.chat-bubble.user {
  align-self: flex-end;
  background: var(--accent);
  color: #000;
  border-bottom-right-radius: 4px;
}
.chat-bubble.bot {
  align-self: flex-start;
  background: var(--panel-2);
  color: var(--text);
  border-bottom-left-radius: 4px;
}

@keyframes bubble-in {
  to { opacity: 1; transform: translateY(0); }
}

.typing-indicator {
  display: flex;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  background: var(--panel-2);
  border-radius: 18px;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.typing-indicator span {
  width: 7px;
  height: 7px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typing-dot 1.4s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
}

/* Lanes */
.lane-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lane-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.lane-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }

.lane-top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.lane-top h3 { font-size: 1.1rem; }

.lane-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot, var(--text-muted));
  box-shadow: 0 0 10px var(--dot, transparent);
}

.lane-status {
  font-size: 0.9rem;
  color: var(--text-muted);
  min-height: 2.8em;
  margin: 0 0 0.75rem;
}

.lane-progress {
  height: 3px;
  background: var(--bg-2);
  border-radius: 2px;
  overflow: hidden;
}
.lane-progress span {
  display: block;
  height: 100%;
  background: var(--dot, var(--text-muted));
  border-radius: 2px;
  transition: width 0.8s ease;
}

.lane-chief {
  grid-column: 1 / -1;
  background: linear-gradient(90deg, var(--panel), var(--surface));
}

/* Anywhere / Smarter / Routine visuals */
.anywhere-visual,
.routine-visual,
.smarter-visual {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.anywhere-visual img,
.routine-visual img,
.smarter-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.app-badges,
.memory-tags,
.routine-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(to top, var(--surface), transparent);
}

.app-badges { position: absolute; bottom: 0; left: 0; right: 0; }
.app-badges span,
.memory-tags span {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  color: var(--text);
}

.memory-tags { position: absolute; bottom: 0; left: 0; right: 0; }

/* Routine steps */
.routine-steps { flex-direction: column; gap: 0.75rem; padding: 1.25rem; }
.step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--panel);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.step.active { border-color: var(--accent-2); color: var(--text); }
.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  background: var(--bg-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.step.active .step-num { background: var(--accent-2); color: #000; border-color: var(--accent-2); }

/* Stats */
.stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.04em; }
.stat-label { font-family: var(--mono); font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* Connect thread */
.connect-thread {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.thread-header {
  padding: 0.85rem 1.25rem;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.thread-messages {
  padding: 1.25rem;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.thread-msg {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(10px);
  animation: bubble-in 0.4s ease forwards;
}

.thread-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--panel-2);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.thread-bubble {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
}
.thread-bubble strong {
  display: block;
  font-size: 0.75rem;
  font-family: var(--mono);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

/* Roles */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.role-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
  cursor: pointer;
}
.role-card:hover, .role-card:focus {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  background: var(--panel);
}

.role-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.role-header h3 { font-size: 1.05rem; }

.role-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--bg-2);
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.role-promise {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.role-chief { border-color: var(--border-strong); background: linear-gradient(135deg, var(--panel), var(--surface)); }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 0;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.quote-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }

.quote-text {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 1.25rem;
}

.quote-footer { display: flex; align-items: center; gap: 0.75rem; }
.quote-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--panel-2);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-weight: 700;
  color: var(--text);
  border: 1px solid var(--border);
}
.quote-footer div { display: flex; flex-direction: column; }
.quote-footer strong { font-size: 0.95rem; }
.quote-footer span { font-size: 0.8rem; color: var(--text-muted); }

.team-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  margin-top: 2rem;
}
.team-note-icon { width: 16px; height: 16px; color: var(--accent-2); }

/* Availability */
.section-availability { text-align: center; }
.section-availability p { color: var(--text-muted); font-size: 1.1rem; }
.availability-cta { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }

/* Pricing */
.section-pricing { text-align: center; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto 1.5rem;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: left;
  transition: border-color 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }

.pricing-featured {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, var(--panel), var(--surface));
  box-shadow: 0 0 0 1px var(--border-strong), var(--shadow);
}

.pricing-top h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.pricing-price { margin: 0 0 0.5rem; display: flex; align-items: baseline; gap: 0.35rem; }
.price { font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; }
.period { font-size: 1rem; color: var(--text-muted); }
.pricing-desc { color: var(--text-muted); margin: 0 0 1.5rem; }

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.pricing-features li:last-child { border-bottom: none; }

.pricing-note { font-size: 0.85rem; color: var(--text-muted); }

/* Download */
.download-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.download-card:hover { border-color: var(--border-strong); transform: translateY(-3px); background: var(--panel); }
.download-card:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; }

.download-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--panel-2);
  font-size: 1.2rem;
  border: 1px solid var(--border);
}

.download-card div { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; }
.download-card strong { font-size: 1rem; }
.download-card span { font-size: 0.75rem; color: var(--text-muted); text-align: center; }

.download-soon { opacity: 0.6; cursor: default; }
.download-soon:hover { transform: none; border-color: var(--border); background: var(--surface); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 1.2rem;
  color: var(--text-muted);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand p { font-size: 0.85rem; color: var(--text-muted); margin: 0.5rem 0 0; }

.footer-nav ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
}

.footer-legal { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* Reveals */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stage { order: 2; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-flipped .section-copy { order: 1; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; }
  .download-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-list { display: none; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; background: var(--bg); border-bottom: 1px solid var(--border); padding: 1rem; gap: 0.5rem; }
  .nav-list a { display: block; padding: 0.85rem 1rem; border-radius: var(--radius-sm); }
  .nav-list a:hover { background: var(--surface); }
  .site-nav.open .nav-list { display: flex; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-cta { display: none; }

  .hero { padding: 7rem 0 4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .section { padding: 4.5rem 0; }
  .section-head { margin-bottom: 2.5rem; }

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

  .lane-grid { grid-template-columns: 1fr; }
  .lane-chief { grid-column: auto; }

  .roles-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .stats { gap: 1.25rem; }
  .stat-num { font-size: 1.8rem; }

  .pricing-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .download-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
}
