/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #111318;
  --surface: #1a1d23;
  --surface2: #22262e;
  --fg: #f0ede6;
  --fg-muted: #8a8a8a;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: #2a2d35;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1160px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { font-size: 18px; color: var(--accent); }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.03em; color: var(--fg); }
.nav-tagline { font-size: 13px; color: var(--fg-muted); font-weight: 400; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-link { font-size: 14px; color: var(--fg-muted); text-decoration: none; transition: color 0.15s; }
.nav-link:hover { color: var(--fg); }
.nav-cta { padding: 10px 18px; font-size: 13px; }

/* === HERO === */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 48px 100px;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--fg);
}

.hero-headline .accent { color: var(--accent); }

.hero-lede {
  font-size: 18px;
  color: #c0bdb8;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 12px; color: var(--fg-muted); max-width: 100px; line-height: 1.4; }

/* Agent Card */
.agent-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}

.agent-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.agent-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.agent-dot.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245,158,11,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(245,158,11,0); }
}

.agent-status { font-size: 12px; color: var(--fg-muted); font-family: var(--font-display); }

.agent-log { display: flex; flex-direction: column; gap: 12px; }

.log-entry { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; }
.log-time { color: var(--fg-muted); flex-shrink: 0; width: 52px; font-family: var(--font-display); font-size: 11px; padding-top: 2px; }
.log-text { line-height: 1.5; }
.log-entry.done .log-text { color: #6b6b6b; text-decoration: line-through; text-decoration-color: #333; }
.log-entry.active .log-text { color: var(--fg); }
.log-entry.active .log-time { color: var(--accent); }

/* === MANIFESTO === */
.manifesto {
  background: #0d0f14;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}

.manifesto-inner { max-width: var(--max-w); margin: 0 auto; }

.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 28px;
}

.manifesto-statement {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 40px;
}

.manifesto-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 40px;
}

.manifesto-context {
  font-size: 17px;
  color: #a8a49e;
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* === PLAYBOOK === */
.playbook {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 48px;
}

.playbook-header { margin-bottom: 64px; }

.playbook-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 16px;
}

.playbook-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  max-width: 520px;
  line-height: 1.2;
}

.playbook-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.playbook-step {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  background: var(--surface);
}

.playbook-step:last-child { border-right: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === OUTCOMES === */
.outcomes {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 100px 48px;
}

.outcomes-inner { max-width: var(--max-w); margin: 0 auto; }

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

.outcomes-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 16px;
}

.outcomes-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  line-height: 1.2;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.outcome-card {
  background: var(--bg);
  padding: 36px 28px;
}

.outcome-icon {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-weight: 700;
}

.outcome-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}

.outcome-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === OBJECTIONS === */
.objections {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 48px;
}

.objections-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 48px;
}

.objections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
}

.obj-q {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.4;
}

.obj-a {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  background: #0a0c10;
  border-top: 1px solid var(--border);
  padding: 100px 48px;
}

.closing-inner { max-width: 780px; margin: 0 auto; text-align: center; }

.closing-mark {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 40px;
  opacity: 0.5;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 36px;
}

.closing-sub {
  font-size: 16px;
  color: #8a8680;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px;
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-copy { font-size: 12px; color: #555; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .playbook-grid { grid-template-columns: 1fr; }
  .playbook-step { border-right: none; border-bottom: 1px solid var(--border); }
  .playbook-step:last-child { border-bottom: none; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .objections-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .site-nav { padding: 16px 24px; }
  .hero, .manifesto, .playbook, .outcomes, .objections, .closing { padding: 64px 24px; }
  .site-footer { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .outcomes-grid { grid-template-columns: 1fr; }
}

/* === HERO CTA === */
.hero-cta { display: flex; align-items: center; gap: 20px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-cta-meta { font-size: 13px; color: var(--fg-muted); }
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #111318;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn-primary:hover { background: #e08c00; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.btn-secondary:hover { border-color: var(--fg-muted); }

/* === SECTION LABEL === */
.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 16px;
}

/* === DEMO LOOP === */
.demo-loop {
  background: #0d0f14;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.demo-loop-inner { max-width: var(--max-w); margin: 0 auto; }
.demo-loop-header { margin-bottom: 52px; }
.demo-loop-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 12px;
}
.demo-loop-sub { font-size: 15px; color: var(--fg-muted); }

.demo-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
}

.flow-step {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.flow-node {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 18px;
  width: 160px;
  transition: border-color 0.3s ease, background 0.3s ease;
  position: relative;
}

.flow-node.flow-node-active,
.flow-step.is-active .flow-node {
  border-color: var(--accent);
  background: rgba(245,158,11,0.06);
}

.flow-node-done.flow-step.is-done .flow-node {
  border-color: #3a7d3a;
  background: rgba(58,125,58,0.06);
}

.flow-icon {
  font-size: 22px;
  margin-bottom: 10px;
  height: 28px;
  display: flex;
  align-items: center;
}

.flow-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.35;
  margin-bottom: 8px;
}

.flow-detail {
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.flow-node-done { border-color: #2a4a2a; }
.flow-node-done .flow-label { color: #4ade80; }
.flow-node-done .flow-icon { color: #4ade80; }

.flow-arrow {
  padding: 0 8px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.flow-arrow-last { padding: 0 8px; }

.flow-arrow-line {
  width: 32px;
  height: 2px;
  background: var(--border);
  position: relative;
  overflow: visible;
}

.flow-arrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  top: -3px;
  left: -4px;
  animation: slide-dot 4s linear infinite;
  opacity: 0;
}

@keyframes slide-dot {
  0% { left: -4px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 28px; opacity: 0; }
}

.flow-step:nth-child(1) .flow-arrow-dot { animation-delay: 0s; }
.flow-step:nth-child(2) .flow-arrow-dot { animation-delay: 0.8s; }
.flow-step:nth-child(3) .flow-arrow-dot { animation-delay: 1.6s; }
.flow-step:nth-child(4) .flow-arrow-dot { animation-delay: 2.4s; }
.flow-step:nth-child(5) .flow-arrow-dot { animation-delay: 3.2s; }

.flow-step-final .flow-node { border-color: #2a5a2a; }
.flow-step-final .flow-label { color: #4ade80; }
.flow-step-final .flow-icon { font-size: 24px; }

.demo-progress { margin-top: 32px; }
.demo-bar {
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}
.demo-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  animation: fill-bar 6s linear infinite;
}
@keyframes fill-bar {
  0% { width: 0%; }
  95% { width: 100%; }
  100% { width: 100%; }
}
.demo-bar-label { font-size: 12px; color: var(--fg-muted); font-family: var(--font-display); }

/* === TEAM SECTION === */
.team-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 48px;
}
.team-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 12px;
}
.team-sub { font-size: 16px; color: var(--fg-muted); margin-bottom: 52px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}
.team-card-live { border-color: rgba(245,158,11,0.25); }
.team-card-soon { border-color: var(--border); opacity: 0.75; }

.team-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.team-icon { font-size: 24px; }
.team-badge {
  font-size: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.team-badge-live { background: rgba(74,222,128,0.12); color: #4ade80; }
.team-badge-soon { background: var(--surface2); color: var(--fg-muted); }

.team-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.team-role { font-size: 13px; color: #a8a49e; line-height: 1.6; margin-bottom: 20px; }
.team-duties { list-style: none; padding: 0; }
.team-duties li {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 6px 0;
  border-top: 1px solid var(--border);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.team-duties li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 11px; top: 7px; }

/* === COMPARISON === */
.comparison-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 100px 48px;
}
.comparison-inner { max-width: var(--max-w); margin: 0 auto; }
.comparison-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 12px;
}
.comparison-sub { font-size: 16px; color: var(--fg-muted); max-width: 560px; line-height: 1.7; margin-bottom: 48px; }
.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th, .comparison-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.comparison-table th.col-feature,
.comparison-table td:first-child { text-align: left; color: var(--fg); font-weight: 400; }
.comparison-table th {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
}
.comparison-table th.col-opsforge {
  color: var(--accent);
  background: rgba(245,158,11,0.05);
}
.comparison-table td.check { color: #4ade80; font-size: 16px; font-weight: 700; }
.comparison-table td.cross { color: #555; font-size: 16px; }
.comparison-table td.partial { color: var(--fg-muted); font-size: 12px; }
.comparison-table .row-highlight td { background: rgba(245,158,11,0.04); }
.comparison-table .row-highlight td.check { color: #4ade80; }
.comparison-table tbody tr:hover { background: var(--surface2); }
.comparison-footnote { margin-top: 24px; font-size: 13px; color: var(--fg-muted); font-style: italic; }

/* === WAITLIST === */
.waitlist-section {
  background: #0a0c10;
  border-top: 1px solid var(--border);
  padding: 100px 48px;
}
.waitlist-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.waitlist-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 16px;
}
.waitlist-sub { font-size: 16px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 36px; }
.waitlist-form { width: 100%; }
.waitlist-input-row { display: flex; gap: 12px; }
.waitlist-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--fg);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input:focus { border-color: var(--accent); }
.waitlist-input::placeholder { color: #555; }
.waitlist-submit { white-space: nowrap; }
.waitlist-error { margin-top: 10px; font-size: 13px; color: #f87171; min-height: 20px; }

/* Confirmation state */
.waitlist-confirm { text-align: center; }
.confirm-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(74,222,128,0.12);
  color: #4ade80;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.confirm-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.confirm-sub { font-size: 15px; color: var(--fg-muted); margin-bottom: 32px; line-height: 1.7; }
.confirm-referral {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  text-align: left;
}
.confirm-referral-label { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--accent); margin-bottom: 6px; }
.confirm-referral-hint { font-size: 13px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 16px; }
.confirm-link-row { display: flex; gap: 10px; }
.confirm-link-input {
  flex: 1;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-body);
  outline: none;
}

/* === FOOTER UPDATES === */
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-brand-col { max-width: 400px; }
.footer-mission { font-size: 13px; color: var(--fg-muted); line-height: 1.7; margin-top: 12px; }
.footer-links-col { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.footer-link { font-size: 14px; color: var(--fg-muted); text-decoration: none; transition: color 0.15s; }
.footer-link:hover { color: var(--fg); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; }

/* === ROADMAP PAGE === */
.roadmap-page { max-width: var(--max-w); margin: 0 auto; padding: 80px 48px; }
.roadmap-page-inner { max-width: 720px; margin: 0 auto; }
.roadmap-back { font-size: 13px; color: var(--fg-muted); text-decoration: none; margin-bottom: 32px; display: inline-block; }
.roadmap-back:hover { color: var(--fg); }
.roadmap-page-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 12px;
}
.roadmap-page-sub { font-size: 15px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 56px; }
.roadmap-cta-link { color: var(--accent); text-decoration: none; }
.roadmap-cta-link:hover { text-decoration: underline; }
.roadmap-items { display: flex; flex-direction: column; gap: 32px; }
.roadmap-item { border: 1px solid var(--border); border-radius: 12px; padding: 28px; background: var(--surface); }
.roadmap-item-shipping { border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.03); }
.roadmap-item-status { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.roadmap-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.roadmap-dot-live { background: var(--accent); animation: pulse 2s ease-in-out infinite; }
.roadmap-dot-next { background: #60a5fa; }
.roadmap-dot-planned { background: var(--fg-muted); }
.roadmap-status-label { font-size: 11px; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); }
.roadmap-item-shipping .roadmap-status-label { color: var(--accent); }
.roadmap-item-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.roadmap-item-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.75; margin-bottom: 16px; }
.roadmap-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.roadmap-tag { font-size: 11px; background: var(--surface2); border: 1px solid var(--border); color: var(--fg-muted); padding: 4px 10px; border-radius: 20px; font-family: var(--font-display); }
.roadmap-waitlist { text-align: center; margin-top: 52px; padding: 40px; background: var(--surface); border-radius: 12px; border: 1px solid var(--border); }
.roadmap-waitlist-label { font-size: 15px; color: var(--fg-muted); margin-bottom: 16px; }

/* === RESPONSIVE ADDITIONS === */
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 10px; }
  .waitlist-input-row { flex-direction: column; }
  .demo-loop, .team-section, .comparison-section, .waitlist-section { padding: 64px 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-links-col { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .roadmap-page { padding: 48px 24px; }
  .demo-flow { flex-direction: column; align-items: flex-start; }
  .flow-step { flex-direction: column; align-items: flex-start; width: 100%; }
  .flow-node { width: 100%; }
  .flow-arrow { transform: rotate(90deg); padding: 6px 0; align-self: center; }
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* === SELECTION === */
::selection { background: rgba(245, 158, 11, 0.25); color: var(--fg); }