:root {
  --bg: #090714;
  --card: rgba(13, 17, 32, 0.92);
  --line: rgba(112, 94, 255, 0.28);
  --line-yellow: rgba(255, 212, 74, 0.55);
  --text: #f5f7ff;
  --muted: #a3abc4;
  --yellow: #ffd44a;
  --pink: #ff5ebc;
  --cyan: #58deff;
  --green: #7ef06a;
  --purple: #7d63ff;
  --shadow: 0 28px 80px rgba(0,0,0,.38);
  --glow-yellow: 0 0 0 1px rgba(255,212,74,.08), 0 0 24px rgba(255,212,74,.18), 0 0 60px rgba(255,212,74,.10);
  --glow-pink: 0 0 0 1px rgba(255,94,188,.08), 0 0 28px rgba(255,94,188,.14);
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; image-rendering: pixelated; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  background: #090714;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; image-rendering: pixelated; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; overflow-wrap: anywhere; word-break: break-word; }
.page-glow { position: fixed; width: 280px; height: 280px; border-radius: 50%; filter: blur(60px); opacity: .16; pointer-events: none; }
.glow-a { top: 30px; left: -50px; background: #8a2be2; }
.glow-b { top: 240px; right: -70px; background: #1f7aff; }
.pixel-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  background:
    radial-gradient(circle at top, rgba(255,94,188,.12), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(88,222,255,.10), transparent 24%),
    linear-gradient(180deg, #0a0c16 0%, #06070f 100%);
}
.pixel-bg::before,
.pixel-bg::after { content: none; }
.agent-roam-canvas { position: fixed; inset: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 1; image-rendering: pixelated; }
.site-shell { width: min(calc(100% - 28px), var(--max)); margin: 0 auto; padding: 20px 0 48px; position: relative; z-index:2; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 0 24px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  min-width: 78px; height: 54px; display: grid; place-items: center; padding: 0 10px; border-radius: 10px; background: linear-gradient(180deg, rgba(44,35,84,.95), rgba(25,20,50,.95)); border: 2px solid rgba(255,212,74,.56); box-shadow: var(--glow-yellow); color: var(--yellow); font-family: 'Press Start 2P', monospace; font-size: 15px; letter-spacing: .08em; text-shadow: 0 0 18px rgba(255,212,74,.55);
}
.brand-copy strong { display: block; font-weight: 800; letter-spacing: -.03em; }
.brand-copy small { color: var(--muted); }
.nav { display: flex; gap: 18px; color: var(--muted); font-size: 14px; }
.nav a:hover { color: var(--text); }
.hero { padding: 36px 0 28px; text-align: center; }
.hero-badge, .eyebrow {
  display: inline-flex; align-items: center; min-height: 30px; padding: 0 12px; border-radius: 999px; border: 1px solid rgba(255,212,74,.24); background: rgba(18,16,34,.72); color: var(--yellow); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.hero h1,
.section-head h2,
.text-panel h2,
.neon-panel h2,
.deploy-section h2,
.price-value,
.roadmap-strip h3 {
  font-family: 'Press Start 2P', monospace;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.22;
}
.hero h1 {
  margin: 18px auto 14px;
  font-size: clamp(26px, 4.8vw, 52px);
  max-width: 18ch;
  color: var(--yellow);
  text-shadow: 0 2px 0 #8a5f00, 0 0 18px rgba(255,212,74,.22);
}
.section-head h2,
.text-panel h2,
.neon-panel h2,
.deploy-section h2 {
  margin: 18px 0 14px;
  font-size: clamp(20px, 3.1vw, 34px);
  color: #fff6cc;
  text-shadow: 0 2px 0 rgba(0,0,0,.4);
}
.hero-copy, .section-head p, .feature-card p, .text-panel p, .neon-panel p, .deploy-section p, .price-card p, .mini-note-card p { color: var(--muted); line-height: 1.75; }
.hero-copy { max-width: 760px; margin: 0 auto; font-size: 18px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 18px; border-radius: 10px; font-weight: 700; border: 1px solid transparent; transition: transform .15s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: linear-gradient(135deg, #ffd95c, #ffb443); color: #1a1226; box-shadow: var(--glow-yellow); }
.button-secondary { background: linear-gradient(135deg, rgba(88,222,255,.18), rgba(125,99,255,.18)); border-color: rgba(88,222,255,.28); color: var(--text); box-shadow: var(--glow-pink); }
.button-disabled { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); color: #bfc7df; cursor: default; box-shadow: none; }
.button-disabled:hover { transform: none; }
.card { background: rgba(11, 14, 28, 0.9); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.hero-stage { padding: 18px; border-color: var(--line-yellow); box-shadow: var(--shadow), var(--glow-yellow); }
.stage-topline { color: var(--muted); font-size: 14px; }
.status-dot { width: 10px; height: 10px; display: inline-block; border-radius: 999px; margin-right: 8px; background: var(--yellow); box-shadow: 0 0 0 7px rgba(255,212,74,.12); }
.stage-frame { position: relative; overflow: hidden; margin-top: 14px; border-radius: 16px; border: 1px solid rgba(255,255,255,.08); background: linear-gradient(180deg, #0f1324, #090c17); }
.office-shot { width: 100%; }
.signal-card { position: absolute; padding: 12px 14px; max-width: 220px; border-radius: 14px; background: rgba(8,10,18,.88); border: 1px solid rgba(255,212,74,.22); box-shadow: var(--glow-yellow); z-index:2; }
.signal-card strong { display: block; margin-bottom: 6px; font-family: 'Press Start 2P', monospace; font-size: 10px; line-height: 1.5; color: #fff6cc; }
.signal-card span { color: var(--muted); line-height: 1.6; font-size: 14px; }
.signal-one { left: 18px; top: 18px; }
.signal-two { right: 18px; bottom: 18px; }
.section-grid, .split-section, .support-section { padding-top: 34px; }
.section-head { max-width: 760px; margin-bottom: 24px; }
.feature-grid, .split-section, .support-grid { display: grid; gap: 18px; }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card, .text-panel, .neon-panel, .price-card, .mini-note-card { padding: 24px; }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; background: linear-gradient(135deg, rgba(255,212,74,.18), rgba(255,94,188,.18)); border: 1px solid rgba(255,212,74,.22); color: var(--yellow); margin-bottom: 14px; }
.feature-card h3 { margin: 0 0 10px; font-family: 'Press Start 2P', monospace; font-size: 14px; line-height: 1.6; color: #fff6cc; }
.split-section { grid-template-columns: repeat(2, 1fr); }
.text-panel, .neon-panel { padding: 28px; }
.neon-panel { border-color: rgba(88,222,255,.26); box-shadow: var(--shadow), var(--glow-pink); }
.bullet-list { margin: 18px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.8; }
.support-grid-three { grid-template-columns: repeat(3, 1fr); }
.price-card { border-color: rgba(255,212,74,.22); }
.price-label { color: var(--yellow); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; font-family: 'Press Start 2P', monospace; }
.price-value { margin-bottom: 14px; color: var(--yellow); text-shadow: 0 2px 0 #8a5f00, 0 0 18px rgba(255,212,74,.22); }
.plan-list, .flow-list {
  margin: 18px 0 20px;
  padding-left: 18px;
  color: #d8def1;
  line-height: 1.8;
}
.plan-list li + li,
.flow-list li + li { margin-top: 6px; }
.demo-list { color: #bfc7df; }
.early-bird { box-shadow: var(--shadow), var(--glow-yellow); }
.recommended-card {
  position: relative;
  border-color: rgba(255, 212, 74, 0.68);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,212,74,.20), 0 0 34px rgba(255,212,74,.20);
}
.recommend-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd95c, #ffb443);
  color: #1a1226;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  box-shadow: 0 10px 24px rgba(255, 212, 74, 0.24);
}
.full-price, .roadmap-card { box-shadow: var(--shadow), var(--glow-pink); }
.demo-card { box-shadow: var(--shadow); }
.activation-strip {
  margin-top: 18px;
  padding: 22px 24px;
}
.roadmap-strip {
  margin-top: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
}
.roadmap-strip h3 { margin: 8px 0 0; font-size: 18px; color: #fff6cc; overflow-wrap: anywhere; word-break: break-word; }
.deploy-section {
  margin-top: 34px;
  padding: 28px;
  display: grid;
  gap: 18px;
  border-color: var(--line-yellow);
}
.deploy-grid-2 { grid-template-columns: .95fr 1.05fr; }
.terminal-box { border-radius: 14px; border: 1px solid rgba(255,255,255,.08); background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)); padding: 22px; min-width: 0; }
.terminal-box pre, .mini-note-card pre { margin: 0; color: #d9f9ff; line-height: 1.8; overflow: auto; white-space: pre-wrap; overflow-wrap: anywhere; word-break: break-word; }
.post-purchase-section { border-color: rgba(88,222,255,.28); }
@media (max-width: 1020px) {
  .feature-grid, .split-section, .support-grid-three, .deploy-grid-2, .roadmap-strip { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .topbar { flex-direction: column; align-items: flex-start; }
  .nav { flex-wrap: wrap; }
  .hero-copy { font-size: 17px; }
  .signal-card { position: static; margin: 14px; max-width: none; }
  .agent-roam-canvas { opacity: .9; }
  .hero h1 { font-size: 28px; }
}
@media (max-width: 640px) {
  .site-shell { width: min(calc(100% - 18px), var(--max)); }
  .hero h1 { font-size: 22px; }
  .section-head h2,
  .text-panel h2,
  .neon-panel h2,
  .deploy-section h2 { font-size: 16px; line-height: 1.45; overflow-wrap: anywhere; word-break: break-word; }
  .feature-card, .text-panel, .neon-panel, .price-card, .deploy-section, .mini-note-card, .roadmap-strip { padding: 20px; }
  .terminal-box { padding: 16px; }
  .terminal-box pre, .mini-note-card pre { font-size: 13px; line-height: 1.65; }
  .flow-list, .plan-list { padding-left: 16px; }
  .agent-roam-canvas { opacity: .75; }
}
