*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0B0F19;
  --bg-2: #111827;
  --card: #1A1F2E;
  --accent: #4F7DF3;
  --accent-2: #6B93FF;
  --cyan: #22D3EE;
  --text: #F1F5F9;
  --muted: #8B95A5;
  --line: #2A3041;
  --ok: #10B981;
  --danger: #EF4444;
  --radius: 14px;
}
html { scroll-behavior: smooth; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(100% - 2.5rem, 1120px); margin: 0 auto; }
.narrow { width: min(100% - 2.5rem, 720px); margin: 0 auto; }
.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(11, 15, 25, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0;
}
.nav img { height: 36px; width: auto; border-radius: 8px; }
.nav-cta {
  font-size: 0.88rem; font-weight: 600;
  background: var(--accent); color: #fff;
  padding: 0.55rem 1rem; border-radius: 999px;
}
.nav-cta:hover { background: var(--accent-2); }
.hero { position: relative; padding: 5.5rem 0 4.5rem; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; inset: -20% -10% auto auto;
  width: 70vw; height: 70vw; max-width: 720px;
  background: radial-gradient(circle, rgba(79,125,243,0.28), transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; left: -10%; bottom: -30%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(34,211,238,0.12), transparent 60%);
  pointer-events: none;
}
.kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 1.25rem;
}
.kicker i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 12px var(--cyan);
}
.hero h1 {
  font-size: clamp(2.15rem, 5.4vw, 4.1rem);
  font-weight: 800; letter-spacing: -0.045em; line-height: 1.05;
  max-width: 16ch; margin-bottom: 1.25rem;
}
.hero h1 em { font-style: normal; color: var(--accent-2); }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 40ch; margin-bottom: 2rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
  appearance: none; border: 0; cursor: pointer; font: inherit; font-weight: 700;
  padding: 0.95rem 1.35rem; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent-2); }
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat { padding: 1.6rem 1rem; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat b { display: block; font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.03em; }
.stat span { color: var(--muted); font-size: 0.85rem; }
@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
}
section { padding: 5.5rem 0; }
.eyebrow {
  color: var(--cyan); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem;
}
h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.55rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.15;
  margin-bottom: 1rem;
}
p { color: var(--muted); margin-bottom: 1rem; }
.video-shell {
  margin-top: 1.75rem; background: #000; border: 1px solid var(--line);
  border-radius: 18px; aspect-ratio: 16 / 9; overflow: hidden; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}
.video-shell iframe,
.video-shell video {
  width: 100%; height: 100%; border: 0; display: block;
  object-fit: contain; background: #000;
}
.video-follow {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.video-follow h2 { margin-bottom: 0.65rem; }
.video-placeholder {
  position: absolute; inset: 0; display: grid; place-items: center;
  background:
    radial-gradient(800px 400px at 70% 20%, rgba(79,125,243,0.25), transparent 55%),
    linear-gradient(160deg, #0d1424, #111827 60%);
  text-align: center; padding: 2rem;
}
.play {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center; margin: 0 auto 1rem;
}
.play::after {
  content: "";
  border-style: solid; border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff; margin-left: 4px;
}
.video-placeholder strong { display: block; color: var(--text); font-size: 1.15rem; margin-bottom: 0.35rem; }
.grid-3 { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 800px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.35rem;
}
.card h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.card p { margin: 0; font-size: 0.95rem; }
.split { display: grid; gap: 1.25rem; }
@media (min-width: 800px) { .split.two { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.list { list-style: none; }
.list li { padding: 0.85rem 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.list li strong { color: var(--text); }
.timeline { margin-top: 1.75rem; display: grid; gap: 0.35rem; }
.t-step { display: grid; grid-template-columns: 18px 1fr; gap: 1rem; padding: 0.7rem 0; }
.t-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); margin-top: 0.45rem;
  box-shadow: 0 0 0 6px rgba(79,125,243,0.15);
}
.t-step strong { display: block; }
.t-step p { margin: 0.15rem 0 0; font-size: 0.95rem; }
.promise {
  margin-top: 1.5rem; padding: 1.1rem 1.2rem;
  border-left: 3px solid var(--accent);
  background: rgba(79,125,243,0.08);
  border-radius: 0 12px 12px 0; color: #d7e0ec;
}
.apply-band { background: var(--bg-2); border-top: 1px solid var(--line); }
form.application { display: grid; gap: 1rem; margin-top: 1.75rem; }
label { display: grid; gap: 0.4rem; font-size: 0.92rem; font-weight: 500; }
input, textarea, select {
  width: 100%; background: var(--bg); border: 1px solid var(--line);
  color: var(--text); border-radius: 10px; padding: 0.85rem 0.9rem; font: inherit;
}
input:focus, textarea:focus { outline: 2px solid rgba(79,125,243,0.45); border-color: var(--accent); }
textarea { min-height: 128px; resize: vertical; }
fieldset { border: 1px solid var(--line); border-radius: 12px; padding: 1rem; }
legend { padding: 0 0.4rem; color: var(--cyan); font-size: 0.85rem; font-weight: 600; }
.checks { display: grid; gap: 0.5rem; }
.checks label { display: flex; gap: 0.55rem; align-items: flex-start; font-weight: 400; color: var(--muted); }
.checks input { width: auto; margin-top: 0.25rem; }
.hint { font-size: 0.8rem; color: var(--muted); font-weight: 400; }
.form-status { min-height: 1.4rem; font-size: 0.92rem; }
.form-status.ok { color: var(--ok); }
.form-status.err { color: var(--danger); }
footer { padding: 2rem 0 3rem; color: var(--muted); font-size: 0.85rem; border-top: 1px solid var(--line); }
