:root {
  --bg: #030506;
  --panel: #090d11;
  --panel-2: #0e141b;
  --text: #f6f8fb;
  --muted: #9ca8b8;
  --faint: #536171;
  --line: rgba(255,255,255,.1);
  --blue: #128cff;
  --blue-soft: rgba(18,140,255,.18);
  --shadow: 0 28px 90px rgba(0,0,0,.55);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 70% 20%, rgba(18,140,255,.09), transparent 32%), var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.noise {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 10; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(3,5,6,.72); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.02em; }
.brand img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; box-shadow: 0 0 24px rgba(18,140,255,.15); }
nav { display: flex; gap: 26px; color: var(--muted); font-size: 14px; font-weight: 600; }
nav a:hover { color: var(--text); }
.hero {
  min-height: 84vh;
  display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 48px;
  padding: 76px clamp(20px, 5vw, 86px) 52px;
  position: relative;
}
.hero:before {
  content: ""; position: absolute; inset: auto -8% 5% 5%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18,140,255,.8), transparent); opacity: .4;
}
.eyebrow { color: #a6d4ff; text-transform: uppercase; letter-spacing: .24em; font-size: 12px; font-weight: 800; margin: 0 0 18px; }
h1, h2, h3 { font-family: "Space Grotesk", Inter, sans-serif; margin: 0; }
h1 { font-size: clamp(68px, 10vw, 158px); line-height: .79; letter-spacing: -.08em; text-transform: uppercase; }
h1 span { color: var(--blue); text-shadow: 0 0 34px rgba(18,140,255,.35); }
.hero-text { color: var(--muted); font-size: clamp(17px, 1.45vw, 22px); line-height: 1.6; max-width: 650px; margin: 32px 0 0; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 0 22px; border-radius: 999px; font-weight: 800; border: 1px solid var(--line);
  transition: .25s ease; box-shadow: none;
}
.button.primary { background: var(--text); color: #05070a; border-color: var(--text); }
.button.primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255,255,255,.12); }
.button.ghost { color: var(--text); background: rgba(255,255,255,.04); }
.button.ghost:hover { border-color: rgba(18,140,255,.8); box-shadow: 0 0 30px var(--blue-soft); }
.hero-visual { position: relative; border: 1px solid var(--line); border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); background: #050709; }
.hero-visual img { width: 100%; display: block; transform: scale(1.02); }
.scanline { position: absolute; inset: 0; background: linear-gradient(transparent 49%, rgba(18,140,255,.1) 50%, transparent 51%); background-size: 100% 8px; opacity: .24; mix-blend-mode: screen; }
.stats-strip {
  margin: 0 clamp(20px, 5vw, 86px); border: 1px solid var(--line); border-radius: 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; background: rgba(255,255,255,.025);
}
.stats-strip div { padding: 24px; border-right: 1px solid var(--line); }
.stats-strip div:last-child { border-right: 0; }
.stats-strip strong { display: block; font-size: 24px; font-family: "Space Grotesk"; }
.stats-strip span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }
.section { padding: 108px clamp(20px, 5vw, 86px); }
.section-head { max-width: 850px; margin-bottom: 42px; }
.section-head.narrow { max-width: 660px; }
.section h2 { font-size: clamp(36px, 5vw, 72px); line-height: .95; letter-spacing: -.05em; }
.section-head p:not(.eyebrow), .about-panel p, .submit-card p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.story-grid { display: grid; grid-template-columns: 1.25fr .85fr .85fr; gap: 20px; }
.story-card { background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)); border: 1px solid var(--line); border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); transition: .3s ease; }
.story-card:hover { transform: translateY(-6px); border-color: rgba(18,140,255,.5); box-shadow: 0 28px 100px rgba(18,140,255,.11); }
.video-shell {
  aspect-ratio: 16/9; position: relative; display: grid; place-items: center;
  background: radial-gradient(circle at 40% 30%, rgba(18,140,255,.28), transparent 26%), linear-gradient(135deg, #0c1218, #020304 62%);
  border-bottom: 1px solid var(--line); overflow: hidden;
}
.video-shell:before { content: ""; position: absolute; inset: 18%; border: 1px solid rgba(255,255,255,.12); transform: skewX(-10deg); }
.video-shell:after { content: ""; position: absolute; width: 72%; height: 2px; background: linear-gradient(90deg, transparent, white, var(--blue), transparent); transform: rotate(-12deg); opacity: .32; }
.video-shell.alt { background: radial-gradient(circle at 60% 40%, rgba(255,255,255,.15), transparent 28%), linear-gradient(135deg, #07090d, #010203 70%); }
.play { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.92); color: #020304; display: grid; place-items: center; font-size: 24px; padding-left: 4px; z-index: 1; box-shadow: 0 0 36px rgba(255,255,255,.18); }
.runtime, .video-label { position: absolute; z-index: 1; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.runtime { right: 16px; top: 16px; color: #071017; background: #eaf6ff; border-radius: 999px; padding: 7px 10px; }
.video-label { left: 16px; bottom: 16px; color: #a6d4ff; }
.story-body { padding: 26px; }
.tag { margin: 0 0 12px; color: #a6d4ff; font-size: 12px; letter-spacing: .18em; font-weight: 900; }
.story-card h3 { font-size: clamp(24px, 2.4vw, 38px); line-height: 1.05; letter-spacing: -.04em; }
.story-card p { color: var(--muted); line-height: 1.65; }
.meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.meta span { border: 1px solid var(--line); color: #cdd7e3; border-radius: 999px; padding: 7px 10px; font-size: 12px; font-weight: 700; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { min-height: 300px; padding: 28px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)); position: relative; overflow: hidden; }
.step-card:after { content: ""; position: absolute; inset: auto -20% -50% 20%; height: 180px; background: radial-gradient(circle, rgba(18,140,255,.2), transparent 65%); }
.step-card span { color: var(--blue); font-weight: 900; letter-spacing: .22em; }
.step-card h3 { margin-top: 70px; font-size: 42px; letter-spacing: -.04em; }
.step-card p { color: var(--muted); line-height: 1.65; }
.step-card.broken { background-image: linear-gradient(135deg, transparent 49.5%, rgba(255,255,255,.14) 50%, transparent 50.5%), linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018)); }
.step-card.glow { border-color: rgba(18,140,255,.28); box-shadow: inset 0 0 30px rgba(18,140,255,.08); }
.about-panel, .submit-card { border: 1px solid var(--line); border-radius: 34px; padding: clamp(28px, 5vw, 64px); background: linear-gradient(135deg, rgba(18,140,255,.08), rgba(255,255,255,.026)); box-shadow: var(--shadow); max-width: 1100px; }
.about-panel h2, .submit-card h2 { margin-bottom: 24px; }
.submit-section { padding-top: 40px; }
.submit-card { text-align: center; margin: 0 auto; }
.submit-card .button { margin-top: 16px; }
.micro { font-size: 13px !important; color: var(--faint) !important; }
footer { padding: 34px clamp(20px, 5vw, 86px); border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--muted); }
footer strong { color: var(--text); }
.footer-links { display: flex; gap: 22px; }
.footer-links a:hover { color: var(--text); }
.reveal { opacity: 0; transform: translateY(24px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 54px; }
  .story-grid, .process-grid, .stats-strip { grid-template-columns: 1fr; }
  .stats-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats-strip div:last-child { border-bottom: 0; }
  nav { display: none; }
  .hero-visual { order: -1; }
}
@media (max-width: 620px) {
  h1 { font-size: 72px; }
  .section { padding: 76px 20px; }
  footer { flex-direction: column; gap: 18px; }
}

.formats-section { padding-top: 40px; }
.formats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.format-card { min-height: 280px; padding: 30px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018)); position: relative; overflow: hidden; box-shadow: var(--shadow); }
.format-card:before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 0%, rgba(18,140,255,.18), transparent 36%); opacity: .9; }
.format-card span, .format-card h3, .format-card p { position: relative; z-index: 1; }
.format-card span { color: var(--blue); font-weight: 900; letter-spacing: .22em; }
.format-card h3 { margin-top: 70px; font-size: clamp(32px, 4vw, 52px); letter-spacing: -.05em; }
.format-card p { color: var(--muted); line-height: 1.65; font-size: 16px; max-width: 560px; }
.text-format { background-image: linear-gradient(135deg, transparent 49.7%, rgba(255,255,255,.11) 50%, transparent 50.3%), linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018)); }
@media (max-width: 980px) { .formats-grid { grid-template-columns: 1fr; } }
