:root {
  --bg: #040a13;
  --bg-soft: #071323;
  --panel: #0a192b;
  --panel-2: #0d2036;
  --text: #f6f8fb;
  --muted: #9fb0c5;
  --line: rgba(255,255,255,.09);
  --blue: #1f73ff;
  --blue-bright: #438cff;
  --blue-soft: rgba(31,115,255,.14);
  --max: 1180px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(31,115,255,.13), transparent 28rem),
    radial-gradient(circle at 10% 28%, rgba(31,115,255,.07), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 104px 0; }

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(4,10,19,.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-icon { width: 38px; height: 38px; border-radius: 10px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; gap: 5px; }
.brand-copy strong { font-size: 15px; letter-spacing: .06em; }
.brand-copy small { font-size: 8.5px; letter-spacing: .22em; color: #a8b4c4; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; color: #c7d0dd; }
.nav-links > a:not(.button):hover { color: white; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  color: white;
  font-weight: 750;
  letter-spacing: .01em;
  box-shadow: 0 12px 30px rgba(31,115,255,.2), inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform .2s ease, filter .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.07); }
.button-small { min-height: 40px; padding: 0 17px; border-radius: 10px; }
.button-ghost {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: none;
}
.button-ghost:hover { border-color: rgba(67,140,255,.65); }

.hero { overflow: hidden; padding-top: 88px; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 72px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  color: #9fc0ff;
  text-transform: uppercase;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 18px var(--blue); }
.hero h1 {
  margin: 18px 0 22px;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: .96;
  letter-spacing: -.052em;
  max-width: 760px;
}
.hero h1 span { color: var(--blue-bright); }
.hero-lead {
  margin: 0;
  max-width: 690px;
  color: #b5c2d2;
  font-size: clamp(18px, 2vw, 21px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.pillar-line { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 34px; color: #8091a6; font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.pillar-line i { width: 3px; height: 3px; border-radius: 50%; background: #39516d; }
.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.hero-visual img { position: relative; z-index: 2; width: min(100%, 520px); filter: drop-shadow(0 42px 54px rgba(0,0,0,.55)); transform: rotate(1.5deg); }
.hero-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(31,115,255,.2); filter: blur(90px); }

.statement-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); }
.statement-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.statement-grid > div { padding: 30px 28px; border-right: 1px solid var(--line); }
.statement-grid > div:first-child { padding-left: 0; }
.statement-grid > div:last-child { border-right: 0; }
.statement-grid strong { display: block; font-size: 13px; letter-spacing: .12em; color: #dce5f0; margin-bottom: 5px; }
.statement-grid span { color: #7f90a6; font-size: 13px; }

.section-heading { max-width: 760px; }
.section-heading h2, .showcase-copy h2, .founding-copy h2 {
  margin: 12px 0 16px;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1;
  letter-spacing: -.04em;
}
.section-heading p, .showcase-copy p, .founding-copy p { color: #a5b4c7; font-size: 18px; margin: 0; }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.feature-card {
  background: linear-gradient(180deg, rgba(13,32,54,.78), rgba(7,19,35,.8));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 26px;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}
.feature-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(31,115,255,.65), transparent); opacity: .55; }
.feature-number { font-size: 11px; letter-spacing: .15em; color: var(--blue-bright); font-weight: 800; }
.feature-card h3 { margin: 38px 0 12px; font-size: 27px; letter-spacing: -.02em; }
.feature-card p { color: #92a3b8; font-size: 15px; margin: 0; }

.split-showcase { border-top: 1px solid rgba(255,255,255,.04); }
.player-section { background: linear-gradient(180deg, rgba(8,20,35,.5), rgba(4,10,19,0)); }
.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.split-grid.reverse { grid-template-columns: 1.1fr .9fr; }
.showcase-copy { max-width: 550px; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 28px; color: #bec9d7; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 11px; height: 6px; border-left: 2px solid var(--blue-bright); border-bottom: 2px solid var(--blue-bright); transform: rotate(-45deg); }
.showcase-media { display: grid; place-items: center; min-height: 620px; position: relative; }
.showcase-media::before { content: ""; position: absolute; width: 56%; height: 56%; border-radius: 50%; background: rgba(31,115,255,.11); filter: blur(80px); }
.image-card img { position: relative; width: min(100%, 500px); filter: drop-shadow(0 38px 58px rgba(0,0,0,.45)); }
.poster-card img { position: relative; width: min(100%, 470px); border-radius: 18px; box-shadow: 0 32px 80px rgba(0,0,0,.55); }

.video-section { background: #030810; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.video-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 72px; align-items: center; }
.video-frame { max-width: 470px; justify-self: end; width: 100%; padding: 10px; border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.025)); box-shadow: 0 30px 90px rgba(0,0,0,.52); }
.video-frame video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 20px; background: #02060c; }

.founding-section { padding-top: 120px; padding-bottom: 120px; }
.founding-card {
  border: 1px solid rgba(86,146,255,.22);
  background:
    radial-gradient(circle at 85% 25%, rgba(31,115,255,.18), transparent 26rem),
    linear-gradient(145deg, #0a1a2d, #071220 60%, #07101c);
  border-radius: 30px;
  padding: clamp(30px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
  box-shadow: 0 35px 100px rgba(0,0,0,.34);
}
.founding-copy { max-width: 680px; }
.founding-side { display: grid; place-items: center; }
.mini-panel { width: min(100%, 330px); min-height: 300px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(2,8,16,.42); padding: 32px; display: flex; flex-direction: column; justify-content: center; box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.mini-panel span { color: #8facd0; font-size: 11px; letter-spacing: .17em; font-weight: 800; }
.mini-panel strong { margin: 14px 0 18px; font-size: 43px; line-height: .9; letter-spacing: -.045em; }
.mini-panel small { color: #95a5b9; }

.footer { border-top: 1px solid var(--line); padding: 34px 0 44px; color: #8292a6; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 20px 40px; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; font-size: 13px; }
.footer-links a:hover { color: white; }
.footer-note { grid-column: 1 / -1; font-size: 11px; color: #5d6b7c; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .14s; }
.delay-3 { transition-delay: .2s; }

@media (max-width: 980px) {
  .section-pad { padding: 84px 0; }
  .nav-links > a:not(.button) { display: none; }
  .hero-grid, .split-grid, .split-grid.reverse, .video-grid, .founding-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 36px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .pillar-line { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { min-height: auto; }
  .hero-visual img { width: min(78vw, 500px); }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid { gap: 40px; }
  .showcase-media { min-height: auto; }
  .split-grid.reverse .showcase-media { order: 2; }
  .split-grid.reverse .showcase-copy { order: 1; }
  .video-frame { justify-self: center; }
  .founding-side { justify-content: start; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav { min-height: 68px; }
  .brand-copy small { display: none; }
  .button-small { padding: 0 12px; font-size: 12px; }
  .hero { padding-top: 62px; }
  .hero h1 { font-size: clamp(47px, 14vw, 66px); }
  .hero-lead { font-size: 17px; }
  .hero-actions .button { flex: 1 1 auto; }
  .hero-visual img { width: min(94vw, 470px); }
  .statement-grid { grid-template-columns: 1fr; }
  .statement-grid > div, .statement-grid > div:first-child { padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .statement-grid > div:last-child { border-bottom: 0; }
  .pillar-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 210px; }
  .feature-card h3 { margin-top: 26px; }
  .founding-card { padding: 28px 22px; gap: 34px; }
  .mini-panel { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

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