
:root {
  --bg: #060912;
  --panel: rgba(12, 16, 28, 0.92);
  --card: rgba(10, 14, 24, 0.96);
  --text: #eef3ff;
  --muted: #aeb8d4;
  --line: rgba(255,255,255,0.08);
  --blue: #60c9ff;
  --violet: #7b61ff;
  --shadow: 0 16px 40px rgba(0,0,0,0.34);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(96,201,255,0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(123,97,255,0.16), transparent 26%),
    linear-gradient(180deg, #04060c 0%, #080c16 45%, #04060a 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.page-shell { width: min(1200px, calc(100% - 32px)); margin: 0 auto; padding: 32px 0 56px; }
.topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: "Russo One", sans-serif; letter-spacing: .04em; }
.brand-badge {
  width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, #111827, #1f2937); border: 1px solid var(--line);
}
.back-link {
  min-height: 46px; padding: 0 18px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line); font-weight: 700;
}
.hero-card {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; background: var(--panel); border: 1px solid var(--line);
  border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 28px;
}
.hero-media { min-height: 420px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-copy { padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { color: var(--blue); text-transform: uppercase; letter-spacing: .18em; font-size: .82rem; font-weight: 700; margin-bottom: 14px; }
.hero-copy h1 { font-family: "Russo One", sans-serif; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.04; margin-bottom: 16px; }
.hero-copy p { color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
.action-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  min-height: 48px; padding: 0 20px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--violet)); box-shadow: 0 12px 28px rgba(43,116,255,0.24);
}
.btn-secondary { background: rgba(255,255,255,0.05); border: 1px solid var(--line); box-shadow: none; }
.content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; }
.panel {
  background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: var(--shadow);
}
.panel h2, .panel h3 { font-family: "Russo One", sans-serif; margin-bottom: 14px; }
.panel p, .panel li { color: var(--muted); line-height: 1.7; }
.panel ul { padding-left: 18px; display: grid; gap: 10px; }
.embed-wrap {
  position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); margin-top: 18px;
}
.embed-wrap iframe { width: 100%; height: 100%; border: 0; }
.info-list { display: grid; gap: 14px; margin-top: 8px; }
.info-item { padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.info-item span { display: block; color: #ffffff; font-weight: 800; margin-bottom: 4px; }
@media (max-width: 980px) {
  .hero-card, .content-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 280px; }
}


.video-panel {
  display:grid;
  gap:18px;
}
.video-cover {
  position:relative;
  border-radius:22px;
  overflow:hidden;
  min-height:280px;
  border:1px solid var(--line);
  background:#0b1020;
}
.video-cover img {
  width:100%;
  height:100%;
  min-height:280px;
  object-fit:cover;
  filter:brightness(.78) saturate(1.04);
}
.video-overlay {
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:24px;
  background:linear-gradient(180deg, rgba(5,8,15,0.06), rgba(5,8,15,0.82));
}
.video-overlay h3 {
  font-size:1.35rem;
  margin-bottom:8px;
}
.video-overlay p {
  margin-bottom:0;
  color:#d7def7;
}
.video-cta-row {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.requirements-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:18px;
}
.requirement-card {
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.07);
}
.requirement-card h4 {
  font-family:"Russo One", sans-serif;
  margin-bottom:12px;
  font-size:1rem;
}
.requirement-card ul {
  padding-left:18px;
}
.requirement-card li {
  margin-bottom:8px;
}
.quick-note {
  margin-top:18px;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(96,201,255,0.08);
  border:1px solid rgba(96,201,255,0.18);
  color:#dce9ff;
}
@media (max-width: 760px) {
  .requirements-grid { grid-template-columns:1fr; }
  .video-cover, .video-cover img { min-height:220px; }
}
