:root {
  --bg: #0e0b14;
  --surface: #181321;
  --surface-2: #211a2d;
  --text: #f2f0f7;
  --muted: #aaa2b8;
  --accent: #a78bfa;
  --accent-2: #7c3aed;
  --border: rgba(255, 255, 255, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: "Space Grotesk", system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
.disc { display: inline-block; background: url("/mark.svg") center/contain no-repeat; }
.beta-main { overflow: hidden; }
.beta-wrap { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
.beta-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 7vw, 88px); align-items: center; min-height: 680px; padding: 70px 0 90px; }
.eyebrow { color: var(--accent); font: 700 13px/1 "JetBrains Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { font-family: "Outfit", system-ui, sans-serif; margin: 0; }
h1 { margin-top: 18px; font-size: clamp(48px, 7vw, 82px); line-height: .98; letter-spacing: -.045em; }
h2 { font-size: clamp(32px, 5vw, 54px); line-height: 1.05; letter-spacing: -.035em; }
p { color: var(--muted); line-height: 1.65; }
.lead { max-width: 620px; font-size: 19px; }
.reward { margin: 24px 0; padding: 16px 18px; border: 1px solid rgba(167,139,250,.4); border-radius: 14px; background: rgba(124,58,237,.1); color: var(--text); }
.beta-form, .feedback-form { display: grid; gap: 14px; }
label { display: grid; gap: 8px; color: var(--text); font-weight: 600; }
input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); color: var(--text); padding: 13px 14px; font: inherit; }
textarea { resize: vertical; min-height: 110px; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.check { grid-template-columns: 20px 1fr; align-items: start; gap: 10px; color: var(--muted); font-weight: 400; font-size: 14px; line-height: 1.5; }
.check input { width: 18px; height: 18px; margin: 2px 0 0; }
.hp { position: absolute; left: -9999px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border: 0; border-radius: 12px; background: var(--accent-2); color: white; font: 700 16px/1 "Space Grotesk", sans-serif; text-decoration: none; cursor: pointer; transition: transform .15s ease, background .15s ease; }
.button:hover { transform: translateY(-1px); background: #6d28d9; }
.button:disabled, .button[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; }
.form-status { min-height: 24px; margin: 0; color: #c4b5fd; font-size: 14px; }
.form-status.error { color: #fca5a5; }
.fine { font-size: 13px; }
.phones { display: flex; align-items: center; justify-content: center; gap: 18px; }
.phone { width: min(48%, 280px); border-radius: 28px; border: 1px solid var(--border); box-shadow: 0 25px 70px rgba(0,0,0,.45); }
.phone:last-child { transform: translateY(36px); }
.section { padding: 90px 0; }
.section-head { max-width: 720px; margin-bottom: 42px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; list-style: none; padding: 0; }
.steps li, .card { border: 1px solid var(--border); border-radius: 18px; background: var(--surface); padding: 24px; }
.steps strong { display: block; margin-bottom: 8px; font: 700 20px/1.2 "Outfit", sans-serif; }
.steps span { color: var(--muted); line-height: 1.5; }
.faq { display: grid; gap: 12px; }
details { border: 1px solid var(--border); border-radius: 14px; background: var(--surface); padding: 18px 20px; }
summary { cursor: pointer; font-weight: 700; }
.start-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; padding: 60px 0 100px; align-items: start; }
.checklist { margin: 24px 0; padding-left: 22px; color: var(--muted); line-height: 1.9; }
.notice { border: 1px solid rgba(251,191,36,.35); border-radius: 12px; background: rgba(251,191,36,.08); padding: 14px; color: #fde68a; }
.missing { margin-top: 18px; color: #fca5a5; }
.feedback-form { margin-top: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

@media (max-width: 760px) {
  .beta-wrap { width: min(100% - 28px, 620px); }
  .beta-hero, .start-grid { grid-template-columns: 1fr; }
  .beta-hero { padding-top: 44px; }
  .phones { margin-top: 18px; }
  .steps { grid-template-columns: 1fr; }
  .start-grid { padding-top: 40px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
