:root {
  --blue: #1e3a8a;
  --green: #22c55e;
  --bg: #0b1120;
  --surface: #111827;
  --ink: #e5e7eb;
  --muted: #9ca3af;
  --radius: 10px;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: 'Inter', system-ui, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.5; }
h1, h2, h3 { margin: 0 0 0.5em; }
p { margin: 0 0 1em; }

.hero { text-align: center; padding: 90px 20px; background: radial-gradient(circle at top, #1e293b, var(--bg)); }
.hero h1 { font-size: 2.6rem; letter-spacing: 0.02em; text-transform: uppercase; color: #fff; }
.hero__pitch { color: var(--muted); font-size: 1.15rem; max-width: 560px; margin: 0 auto 28px; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-block; padding: 13px 26px; border-radius: var(--radius); text-decoration: none; font-weight: bold; border: 2px solid transparent; }
.btn--primary { background: var(--green); color: #06240f; }
.btn--primary:hover { background: #16a34a; }
.btn--ghost { border-color: var(--muted); color: var(--ink); }

.section { max-width: 1000px; margin: 0 auto; padding: 56px 20px; }
.section--alt { background: var(--surface); max-width: none; }
.section--alt > * { max-width: 1000px; margin-left: auto; margin-right: auto; }
.section h2 { text-align: center; color: #fff; font-size: 1.6rem; }
.section__note { text-align: center; color: var(--muted); font-size: 0.85rem; }

.video-embed { aspect-ratio: 16/9; background: #000; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.video-embed__placeholder { color: var(--muted); margin: 0; }

.grid { display: grid; gap: 20px; margin-top: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) { .grid--3 { grid-template-columns: 1fr; } .hero h1 { font-size: 1.9rem; } }

.card { background: var(--bg); border-radius: var(--radius); padding: 22px; text-align: center; }
.card h3 { color: var(--green); }

.grid img { width: 100%; border-radius: var(--radius); }

.form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 6px; }
.form input { padding: 12px 16px; border: 1px solid #1f2937; background: var(--bg); color: var(--ink); border-radius: var(--radius); font-size: 1rem; min-width: 240px; }
.form button { padding: 12px 22px; border-radius: var(--radius); border: none; background: var(--green); color: #06240f; font-weight: bold; cursor: pointer; }
.form__status { text-align: center; color: var(--green); font-weight: 600; min-height: 1.2em; }

.footer { text-align: center; padding: 30px 20px; color: var(--muted); font-size: 0.85rem; }
.footer a { color: var(--muted); }
