/* ───────────────────────────────────────────────────────
   LITTLE MOONSHOTS — hand-ported from Next.js/Tailwind
   Typography: Geist Sans (headlines) + Geist Mono (body)
   ─────────────────────────────────────────────────────── */

:root {
  --bg: #EEEEEE;
  --card: #FAFAFA;
  --dark: #020202;
  --text: #101010;
  --text-muted: #5C5855;
  --text-dim: #4D4947;
  --border: #B8B3B0;
  --border-soft: #CCC9C7;
  --accent: #EF6F2E;
  --accent-green: #4ADE80;
  --accent-blue: #60A5FA;
  --accent-purple: #A78BFA;
  --font-sans: 'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'Cascadia Code', 'Source Code Pro', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.05em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.04em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.02em; }
p, li, span, a, label, input, textarea, button { font-family: var(--font-mono); }

/* ── Layout ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.25rem; } }

.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 5.5rem 0; } }

/* ── Section label ──────────────────────────────────── */
.section-label {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}
.section-label .dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  flex-shrink: 0;
}
.dot-orange { background: var(--accent); }
.dot-green  { background: var(--accent-green); }
.dot-blue   { background: var(--accent-blue); }
.dot-purple { background: var(--accent-purple); }

/* ── Mono button ────────────────────────────────────── */
.btn-mono {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 9999px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn-mono-dark { background: var(--text); color: #FAFAFA; }
.btn-mono-dark:hover { background: #2a2a2a; }
.btn-mono-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-mono-outline:hover { background: var(--card); border-color: var(--text); }

/* ── NavBar ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--bg);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(238, 238, 238, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo .brand-logo {
  height: 44px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .nav-logo .brand-logo { height: 52px; }
}
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--text); }
.nav-cta { display: none; }
.nav-burger {
  display: inline-flex;
  padding: 0.5rem;
  color: var(--text);
}
.nav-burger svg { width: 20px; height: 20px; }
.nav-bottom-line { height: 1px; width: 100%; background: var(--border); }

.nav-mobile {
  display: none;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-bottom: 1.5rem;
}
.nav.open .nav-mobile { display: block; }
.nav-mobile-inner { display: flex; flex-direction: column; gap: 1rem; padding-top: 1rem; }
.nav-mobile-inner .nav-link { font-size: 0.875rem; padding: 0.25rem 0; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .nav-burger { display: none; }
  .nav.open .nav-mobile { display: none; }
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 10rem 0 6rem; } }
.hero > .container { position: relative; z-index: 1; }
#lm-warpfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero h1 { max-width: 56rem; margin-bottom: 2rem; }
.hero .lead {
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) { .hero .lead { font-size: 1rem; } }
.hero .br-mobile { display: none; }
@media (min-width: 640px) { .hero .br-mobile { display: inline; } }

/* ── IntroStrip ─────────────────────────────────────── */
.intro-strip { padding: 2.5rem 0; }
@media (min-width: 768px) { .intro-strip { padding: 3.5rem 0; } }
.intro-strip .rule {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
@media (min-width: 768px) { .intro-strip .rule { padding: 2.5rem 0; } }
.intro-strip p {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 56rem;
  margin: 0 auto;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) { .intro-strip p { font-size: 1rem; } }

/* ── Card grid common ───────────────────────────────── */
.grid-cards { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) {
  .grid-cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  padding: 1.5rem;
}
@media (min-width: 768px) { .card { padding: 2rem; } }
.card h3 { margin-bottom: 1rem; }
.card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
  margin: 0;
}
.card .tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  padding: 0.25rem 0.625rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}
.card .orange-dot {
  display: inline-block;
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 1.25rem;
}
.section-heading { margin-bottom: 2.5rem; }
@media (min-width: 768px) { .section-heading { margin-bottom: 3.5rem; } }
.section-foot {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

/* ── AI-Native (dark slab) ──────────────────────────── */
.ai-native { padding: 1.5rem 0; }
@media (min-width: 768px) { .ai-native { padding: 2rem 0; } }
.slab {
  background: var(--dark);
  border-radius: 1rem;
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .slab { padding: 4rem 3rem; } }
@media (min-width: 1024px) { .slab { padding: 5rem 4rem; } }
.slab-texture {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0.1) 11px
  );
  opacity: 0.03;
  pointer-events: none;
}
.slab-stars {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}
.slab-inner { position: relative; z-index: 1; }
.slab-label {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 2rem;
}
.slab-label .dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--accent); }
.slab-label span:last-child {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--border-soft);
}
.slab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .slab-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
}
.slab h2 {
  color: #fff;
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.slab .subhead {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: #A49D9A;
  line-height: 1.7;
  max-width: 28rem;
  letter-spacing: -0.01em;
}
.pillars { display: flex; flex-direction: column; gap: 2rem; }
.pillar { display: flex; gap: 1rem; }
.pillar .dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--accent);
  margin-top: 0.375rem;
  flex-shrink: 0;
}
.pillar h3 {
  color: #fff;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .pillar h3 { font-size: 1.25rem; } }
.pillar p {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: #A49D9A;
  line-height: 1.7;
  letter-spacing: -0.01em;
  margin: 0;
}
.equalizer {
  margin-top: 3rem;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 4rem;
  overflow: hidden;
}
@media (min-width: 768px) { .equalizer { margin-top: 4rem; } }
.equalizer .bar {
  flex: 1;
  min-width: 3px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  background: #333;
}
.equalizer .bar.accent { background: var(--accent); }

/* ── How It Works ───────────────────────────────────── */
.hiw h2 { margin-bottom: 2rem; max-width: 48rem; }
@media (min-width: 768px) { .hiw h2 { margin-bottom: 3rem; } }
.hiw-dots { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.hiw-dots button {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background: var(--border);
  transition: background 0.3s ease, width 0.3s ease;
}
.hiw-dots button:hover { background: #8A8581; }
.hiw-dots button.active { width: 1.25rem; background: var(--accent); }

.hiw-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .hiw-grid {
    grid-template-columns: 210px minmax(260px, 300px) 1fr;
    gap: 1.25rem;
  }
}
.hiw-tabs {
  display: flex;
  overflow-x: auto;
}
@media (min-width: 1024px) {
  .hiw-tabs { flex-direction: column; overflow-x: visible; }
}
.hiw-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  white-space: nowrap;
  color: #9A938E;
  transition: color 0.2s ease, background 0.2s ease;
}
.hiw-tab:hover { color: var(--text-muted); }
.hiw-tab.active {
  color: var(--text);
  background: rgba(250, 250, 250, 0.7);
}
.hiw-tab.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 3px;
  background: var(--accent);
}
.hiw-tab .num { font-weight: 500; font-variant-numeric: tabular-nums; }
.hiw-tab .paren { color: var(--border); }
.hiw-tab.active .paren { color: var(--accent); }
.hiw-tab .check { margin-left: auto; width: 14px; height: 14px; color: #8A8581; display: none; }
.hiw-tab.done .check { display: inline-block; }

.hiw-card {
  position: relative;
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  overflow: hidden;
  background-color: var(--card);
  background-image:
    linear-gradient(to right, rgba(184, 179, 176, 0.35) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(184, 179, 176, 0.35) 1px, transparent 1px);
  background-size: 22px 22px;
}
@media (min-width: 768px) { .hiw-card { padding: 1.75rem; } }
.hiw-card .eyebrow {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.hiw-card .eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.hiw-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  line-height: 1.2;
}
@media (min-width: 768px) { .hiw-card h3 { font-size: 1.5rem; } }
.hiw-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.7;
  font-family: var(--font-mono);
  margin: 0 0 1.5rem;
}
.hiw-card .tiny-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 0.125rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hiw-card .tiny-cta:hover { color: var(--accent); border-bottom-color: var(--accent); }
.hiw-card .tiny-cta svg { width: 14px; height: 14px; }

.hiw-diagram {
  position: relative;
  border-radius: 0.375rem;
  padding: 1.5rem;
  min-height: 320px;
  display: flex;
  align-items: center;
  border: 1px dashed var(--border);
  background: var(--card);
}
@media (min-width: 768px) { .hiw-diagram { padding: 2rem; } }
.hiw-diagram .corner-dot {
  position: absolute; left: 1rem; top: 1rem;
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--accent);
}
.hiw-diagram .corner-label {
  position: absolute; right: 1rem; top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.hiw-diagram > .diagram { width: 100%; }

/* Idea jam diagram */
.djam { width: 100%; max-width: 36rem; margin: 0 auto; }
.djam-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 2.5rem;
}
.diagram-box {
  border-radius: 0.375rem;
  border: 1px solid var(--text);
  background: var(--card);
  padding: 0.75rem 1rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}
.arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 0 1rem;
}
.arrow::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--text);
}
.arrow::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--text);
}
.arrow span {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--card);
  padding: 0 0.5rem;
  white-space: nowrap;
}
.chips {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.75rem 2.5rem;
}
.chip {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.chip svg { width: 14px; height: 14px; color: var(--text); }

/* Blueprint diagram */
.blueprint { position: relative; width: 100%; max-width: 36rem; margin: 0 auto; padding: 1rem 0; }
.bp-screen {
  position: relative;
  margin: 0 auto;
  width: 78%;
  aspect-ratio: 16 / 10;
  border-radius: 0.375rem;
  border: 1px solid var(--text);
  background: var(--card);
  padding: 0.75rem;
  display: flex;
  gap: 0.625rem;
}
.bp-sidebar { width: 18%; display: flex; flex-direction: column; gap: 0.375rem; padding-top: 0.25rem; }
.bp-sidebar div { height: 8px; border-radius: 2px; background: #E6E1DB; }
.bp-sidebar div:nth-child(1) { width: 70%; }
.bp-sidebar div:nth-child(2) { width: 90%; }
.bp-sidebar div:nth-child(3) { width: 60%; }
.bp-sidebar div:nth-child(4) { width: 80%; }
.bp-sidebar div:nth-child(5) { width: 50%; }
.bp-main { flex: 1; display: flex; flex-direction: column; gap: 0.375rem; }
.bp-main .bp-title { height: 12px; width: 40%; border-radius: 2px; background: #E6E1DB; }
.bp-main .bp-hero {
  flex: 1;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: #F3EEE6;
  display: flex; align-items: center; justify-content: center;
}
.bp-main .bp-hero > div {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.bp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.375rem; height: 30%; }
.bp-cards > div {
  border-radius: 2px;
  border: 1px solid var(--border);
  background: #F3EEE6;
}
.callout {
  position: absolute;
}
.callout span.lbl {
  position: relative;
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--card);
  padding: 0 0.25rem;
}
.callout.left .line { position: absolute; left: 100%; top: 50%; width: 24px; height: 1px; background: var(--text-muted); }
.callout.right .line { position: absolute; right: 100%; top: 50%; width: 24px; height: 1px; background: var(--text-muted); }
.callout.right-bottom .line { position: absolute; right: 100%; top: 50%; width: 32px; height: 1px; background: var(--text-muted); }
.callout.pos-feature { left: 4%; top: 10%; }
.callout.pos-flow    { right: 2%; top: 10%; }
.callout.pos-rough   { right: 6%; bottom: 8%; }

/* Build sprint diagram */
.build-sprint {
  position: relative;
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}
.terminal {
  position: relative;
  flex: 1;
  max-width: 58%;
  border-radius: 0.375rem;
  background: #0B0B0B;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: #CFCBC3;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.terminal-bar {
  display: flex; align-items: center; gap: 4px;
  padding: 6px 10px;
  border-bottom: 1px solid #232323;
}
.terminal-bar span { width: 6px; height: 6px; border-radius: 50%; }
.terminal-bar .r { background: #FF5F57; }
.terminal-bar .y { background: #FEBC2E; }
.terminal-bar .g { background: #28C840; }
.terminal pre {
  padding: 8px 12px;
  line-height: 1.55;
  white-space: pre;
  margin: 0;
}
.terminal .k  { color: #E88A5E; }
.terminal .s  { color: #7FB28A; }
.terminal .c  { color: #6A6A6A; }
.terminal .cursor { animation: pulse 1s infinite; }
@keyframes pulse { 50% { opacity: 0.3; } }

.kanban {
  flex: 1;
  max-width: 42%;
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.625rem;
}
.kanban-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.kanban-col { display: flex; flex-direction: column; gap: 0.375rem; }
.kanban-col .title {
  font-family: var(--font-mono);
  font-size: 0.48rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--border);
}
.kanban-card {
  border-radius: 2px;
  border: 1px solid var(--border);
  background: #FFFDF9;
  height: 16px;
  display: flex;
  align-items: center;
  padding: 0 4px;
}
.kanban-card .fill {
  height: 2px;
  width: 100%;
  border-radius: 9999px;
  background: #D9D4CE;
}
.kanban-col.accent .kanban-card .fill { background: var(--accent); }

/* Launch diagram */
.launch { position: relative; width: 100%; max-width: 36rem; margin: 0 auto; padding: 0.5rem 0; }
.launch-card {
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 14px;
}
.launch-card > * + * { margin-top: 12px; }
.launch-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.launch-badge {
  display: flex; align-items: center; gap: 6px;
  padding: 2px 6px;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.launch-badge span:first-child { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.launch-badge span:last-child { color: var(--text); }
.launch-head .ver { color: var(--text-muted); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.stat {
  border-radius: 4px;
  border: 1px solid var(--border);
  background: #FFFDF9;
  padding: 8px;
  display: flex; flex-direction: column; gap: 4px;
}
.stat .label {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.stat .value { display: flex; align-items: center; gap: 4px; }
.stat .value .big {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat .value .arrow-icon { width: 12px; height: 12px; color: var(--accent); }
.stat .value svg.sparkline { width: 32px; height: 16px; }
.analytics {
  border-radius: 4px;
  border: 1px solid var(--border);
  background: #FFFDF9;
  padding: 10px;
}
.analytics .title {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.bars { display: flex; align-items: flex-end; gap: 4px; height: 48px; }
.bars > div {
  flex: 1;
  border-radius: 2px;
  background: #D9D4CE;
}
.bars > div.accent { background: var(--accent); }
.launch-callouts {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.launch-callouts > div { display: flex; flex-direction: column; align-items: center; }
.launch-callouts .tick { width: 1px; height: 12px; background: var(--text-muted); }

/* ── ThemeCTAs ──────────────────────────────────────── */
.themes { display: flex; flex-direction: column; gap: 1rem; }
.theme-row {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .theme-row {
    padding: 2rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.theme-row .inner { display: flex; gap: 0.75rem; align-items: flex-start; flex: 1; }
.theme-row .inner .dot {
  width: 10px; height: 10px; border-radius: 50%;
  margin-top: 6px; flex-shrink: 0;
}
.theme-row .inner .dot.orange { background: var(--accent); }
.theme-row .inner .dot.green  { background: var(--accent-green); }
.theme-row .inner .dot.blue   { background: var(--accent-blue); }
.theme-row h3 {
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
}
@media (min-width: 768px) { .theme-row h3 { font-size: 1.25rem; } }
.theme-row p {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
  margin: 0;
}
.theme-row .btn-mono { white-space: nowrap; align-self: flex-start; }
@media (min-width: 768px) { .theme-row .btn-mono { align-self: center; } }

/* ── FAQ ────────────────────────────────────────────── */
.faq-list > * + * { border-top: 1px solid var(--border); }
.faq-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  .faq-row { grid-template-columns: 1fr 1fr; gap: 3rem; padding: 2rem 0; }
}
.faq-row h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .faq-row h3 { font-size: 1.125rem; } }
.faq-row p {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-family: var(--font-mono);
  line-height: 1.7;
  letter-spacing: -0.01em;
  margin: 0;
}

/* ── Contact ────────────────────────────────────────── */
.contact { padding: 1.5rem 0; }
@media (min-width: 768px) { .contact { padding: 2rem 0; } }
.contact h2 {
  color: #fff;
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.contact .p-lead {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: #A49D9A;
  margin: 0 0 2rem;
  letter-spacing: -0.01em;
}
.contact form { max-width: 42rem; }
.contact .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .contact .row.two { grid-template-columns: 1fr 1fr; } }
.contact label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #A49D9A;
  margin-bottom: 0.5rem;
}
.contact input, .contact textarea {
  width: 100%;
  background: #1A1A1A;
  border: 1px solid #333;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: #fff;
  transition: border-color 0.2s ease;
}
.contact textarea { resize: vertical; min-height: 7rem; }
.contact input::placeholder, .contact textarea::placeholder { color: #666; }
.contact input:focus, .contact textarea:focus { outline: none; border-color: var(--accent); }
.contact button[type="submit"] {
  width: 100%;
  background: #fff;
  color: var(--dark);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  transition: background 0.2s ease, opacity 0.2s ease;
}
@media (min-width: 768px) { .contact button[type="submit"] { width: auto; } }
.contact button[type="submit"]:hover { background: var(--bg); }
.contact button[type="submit"]:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Footer ─────────────────────────────────────────── */
.footer { padding: 1.5rem 0; }
@media (min-width: 768px) { .footer { padding: 2rem 0; } }
.footer-box {
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 768px) { .footer-box { padding: 3.5rem 3rem; } }
@media (min-width: 1024px) { .footer-box { padding: 4rem 4rem; } }
.footer-label {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 3rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--text-muted);
}
@media (min-width: 768px) { .footer-label { margin-bottom: 4rem; } }
.footer-label .dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--accent); }
.footer-cols {
  display: flex; flex-direction: column; gap: 2.5rem;
  justify-content: space-between;
}
@media (min-width: 1024px) { .footer-cols { flex-direction: row; gap: 5rem; } }
.footer-cols .logo { display: flex; align-items: center; }
.footer-cols .logo .footer-logo {
  height: 104px;
  width: auto;
  display: block;
}
@media (min-width: 1024px) {
  .footer-cols .logo .footer-logo { height: 128px; }
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 3rem; }
@media (min-width: 768px) { .footer-nav { gap: 4rem; } }
@media (min-width: 1024px) { .footer-nav { gap: 5rem; } }
.footer-nav h4 {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.footer-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-nav a {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; margin-top: 4rem; } }
.footer-social { display: flex; align-items: center; gap: 1.5rem; }
.footer-social a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-social a:hover { color: var(--text); }
.footer-social .sep { color: var(--border); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--border);
  margin: 0;
}

/* ── Toast ──────────────────────────────────────────── */
.toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 100;
  background: #101010;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  padding: 0.875rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
  max-width: 22rem;
  border: 1px solid #2a2a2a;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { border-color: #8a2a2a; }
.toast.success { border-color: #2a7a3c; }
