:root {
  color-scheme: dark;
  --bg: #070807;
  --panel: #151715;
  --panel-2: #20231f;
  --line: rgba(255,255,255,.13);
  --text: #f4f1e8;
  --muted: #b8b4a8;
  --accent: #b9ff74;
  --accent-2: #74d6ff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: radial-gradient(circle at 30% 0%, rgba(185,255,116,.12), transparent 35%), var(--bg);
  color: var(--text);
  font: 15px/1.45 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
a { color: inherit; }
.launch-room { min-height: 100vh; }
.topbar {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
}
nav { display: flex; gap: 8px; }
nav a, .cta, .secondary-cta, button {
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  color: var(--text);
  text-decoration: none;
  padding: 9px 12px;
  cursor: pointer;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 36px;
  padding: 70px 36px 30px;
  align-items: end;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 760;
}
h1, h2 {
  margin: 0;
  line-height: 1.02;
}
h1 { font-size: 64px; max-width: 980px; }
h2 { font-size: 34px; }
.offer p, .muted { color: var(--muted); font-size: 17px; }
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 16px;
}
.cta, form button {
  display: inline-flex;
  background: var(--accent);
  color: #0b0d09;
  font-weight: 780;
}
.secondary-cta {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,.16);
}
.price-band, .brief-grid, .proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 36px 26px;
}
article, .brief-grid a, form, pre {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.045);
}
article, .brief-grid a { padding: 17px; text-decoration: none; }
article span, .brief-grid span { color: var(--accent); font-size: 13px; }
article strong, .brief-grid strong { display: block; margin: 6px 0; font-size: 21px; }
article p, .brief-grid p { margin: 0; color: var(--muted); }
.demo-band, .how, .try-product, .request-panel, .briefs, .receipt-proof, .market-proof, .pilot, .founder { padding: 18px 36px 34px; }
.policy-copy {
  max-width: 920px;
  padding: 56px 36px;
}
.policy-copy h1 {
  font-size: 44px;
  margin-bottom: 18px;
}
.policy-copy h2 {
  font-size: 22px;
  margin: 26px 0 8px;
}
.policy-copy p {
  color: var(--muted);
  font-size: 17px;
  max-width: 760px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 36px 38px;
}
.site-footer a {
  color: var(--muted);
}
.section-head { margin-bottom: 14px; }
.demo-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 18px;
  align-items: center;
}
.demo-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(185,255,116,.34);
  border-radius: 10px;
  background: #000;
  display: block;
}
.demo-copy {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.045);
  padding: 18px;
}
.demo-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
}
.demo-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.try-panel {
  max-width: 980px;
  border: 1px solid rgba(185,255,116,.34);
  border-radius: 10px;
  background: rgba(185,255,116,.065);
  padding: 18px;
}
.try-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.request-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.request-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.request-grid article p {
  flex: 1;
  margin-bottom: 16px;
}
.trust-line {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}
.market-note {
  max-width: 980px;
  margin: 0 36px 28px;
  color: var(--muted);
  font-size: 17px;
}
.pilot {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  gap: 20px;
}
form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}
label { display: grid; gap: 6px; color: var(--muted); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101210;
  color: var(--text);
  padding: 10px;
  font: inherit;
}
textarea, form button { grid-column: 1 / -1; }
.queue-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
pre {
  min-height: 220px;
  margin: 0;
  padding: 16px;
  white-space: pre-wrap;
  color: #e9e4db;
}
@media (max-width: 860px) {
  .topbar, .hero, .pilot { grid-template-columns: 1fr; flex-direction: column; height: auto; align-items: flex-start; }
  .topbar { padding: 16px; }
  nav { flex-wrap: wrap; }
  h1 { font-size: 42px; }
  .hero, .price-band, .brief-grid, .proof-grid, .demo-band, .how, .try-product, .request-panel, .briefs, .receipt-proof, .market-proof, .pilot, .founder, .policy-copy { padding-left: 16px; padding-right: 16px; }
  .market-note { margin-left: 16px; margin-right: 16px; }
  .price-band, .brief-grid, .proof-grid, .request-grid, .demo-frame, form { grid-template-columns: 1fr; }
}
