@font-face {
  font-family: "Orbitron";
  src: url("fonts/Orbitron.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #06070a;
  --ink: #02030a;
  --text: #f5f7fb;
  --muted: #8c95a8;
  --muted-2: #c2cad9;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.18);
  --accent: #6cf3ff;
  --mono: ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; }

::selection { background: rgba(108, 243, 255, 0.32); color: #fff; }

/* =========================================================== brand bar */

.brand-bar {
  position: fixed;
  z-index: 10;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 40px);
  background: linear-gradient(180deg, rgba(6, 7, 10, 0.85), rgba(6, 7, 10, 0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 14px; height: 18px;
  border: 2px dotted var(--text);
  border-radius: 50% 50% 42% 42%;
}

.brand-word {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.brand-skip {
  text-decoration: none;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color .18s;
}
.brand-skip:hover { color: var(--text); }

/* =========================================================== hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 14vw, 180px) clamp(20px, 6vw, 96px) clamp(80px, 10vw, 140px);
  overflow: hidden;
}

.hero-amb {
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  width: 56%;
  max-width: 880px;
  aspect-ratio: 1;
  height: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: saturate(1.1) contrast(1.05);
  pointer-events: none;
}

.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(6, 7, 10, 0.7) 35%, rgba(6, 7, 10, 0.0) 70%, rgba(6, 7, 10, 0.0) 100%),
    radial-gradient(ellipse at 90% 50%, transparent 0%, rgba(6, 7, 10, 0.0) 30%, rgba(6, 7, 10, 0.55) 80%, var(--bg) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(640px, 100%);
}

.tagline {
  margin: 0 0 28px;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.tagline span { display: block; }
.tagline-2 {
  color: var(--accent);
  font-weight: 700;
}

.hero-sub {
  margin: 0 0 44px;
  max-width: 560px;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.55;
  color: var(--muted-2);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

/* =========================================================== buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color .18s, border-color .18s, background .18s;
}

.btn-ghost {
  padding: 14px 22px;
  border: 1px solid var(--line-2);
  color: var(--text);
  border-radius: 2px;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-soon {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--muted);
  border: 1px solid var(--line-2);
  border-radius: 2px;
  padding: 2px 6px;
  text-transform: lowercase;
}

.btn-link {
  color: var(--muted-2);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 4px;
}
.btn-link:hover { color: var(--accent); border-color: var(--accent); }

.is-soon { cursor: not-allowed; }

/* =========================================================== vignettes */

.vignettes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vg { display: flex; flex-direction: column; gap: 16px; }

.vg-label {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.vg-media {
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
}

.vg-media video,
.vg-media-still img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.vg-media-still img { object-fit: contain; padding: 8px; }

.vg-conf {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 6px;
  align-items: center;
  padding: 18px;
}
.vg-conf img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(108, 243, 255, 0.18));
}
.vg-conf .vg-result {
  filter: drop-shadow(0 0 32px rgba(198, 107, 255, 0.45));
}
.vg-op {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--muted);
}
.vg-op-arrow { color: var(--accent); }

.vg p {
  margin: 0;
  color: var(--muted-2);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 38ch;
}

/* =========================================================== trailer */

.trailer {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 96px);
  text-align: center;
}

.trailer-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border: 1px dashed var(--line-2);
  border-radius: 4px;
  text-decoration: none;
  background:
    radial-gradient(ellipse at center, rgba(108, 243, 255, 0.04), transparent 60%),
    var(--ink);
  transition: border-color .2s, background .2s;
}
.trailer-frame:hover {
  border-color: rgba(108, 243, 255, 0.4);
}

.trailer-eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.trailer-play {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--muted-2);
  transition: color .2s, border-color .2s, transform .2s;
}
.trailer-frame:hover .trailer-play {
  color: var(--accent);
  border-color: var(--accent);
}
.trailer-play svg { width: 36px; height: 36px; fill: currentColor; }

.trailer-state {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.trailer-note {
  margin: 24px auto 0;
  max-width: 540px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* =========================================================== notify */

.notify {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 96px);
  border-top: 1px solid var(--line);
}

.notify-line {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0;
}

.notify-form {
  display: flex;
  gap: 8px;
  width: min(480px, 100%);
}

.notify-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.notify-form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--mono);
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 2px;
  font-size: 0.94rem;
  min-height: 50px;
}
.notify-form input[type="email"]::placeholder { color: rgba(140, 149, 168, 0.7); }
.notify-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}

.notify-form button {
  cursor: pointer;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 24px;
  min-height: 50px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  background: transparent;
  color: var(--accent);
  transition: background .18s, color .18s;
}
.notify-form button:hover {
  background: var(--accent);
  color: var(--ink);
}

.notify-fine {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* =========================================================== footer */

.foot {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(20px, 6vw, 96px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

/* =========================================================== responsive */

@media (max-width: 900px) {
  .vignettes {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px clamp(20px, 5vw, 32px);
  }
  .vg-media { aspect-ratio: 16 / 10; }
  .vg-conf { aspect-ratio: 16 / 9; padding: 14px; }
  .vg p { font-size: 1rem; max-width: none; }
  .vg-label { font-size: 0.78rem; letter-spacing: 0.18em; }

  .hero {
    padding: 96px clamp(20px, 5vw, 32px) 56px;
    align-items: flex-start;
    padding-top: clamp(96px, 14vh, 140px);
  }
  .hero-inner { width: 100%; }
  .hero-sub { max-width: none; font-size: 1.02rem; margin-bottom: 36px; }
  .hero-amb {
    right: -8%;
    width: 105%;
    max-width: none;
    opacity: 0.42;
    top: auto;
    bottom: -6%;
    transform: none;
  }
  .hero-veil {
    background:
      linear-gradient(180deg, var(--bg) 0%, rgba(6, 7, 10, 0.4) 30%, rgba(6, 7, 10, 0.0) 50%, rgba(6, 7, 10, 0.7) 92%, var(--bg) 100%);
  }

  .trailer { padding: 64px clamp(20px, 5vw, 32px); }
  .trailer-frame { aspect-ratio: 4 / 3; max-width: 560px; gap: 14px; }
  .trailer-play { width: 72px; height: 72px; }
  .trailer-play svg { width: 30px; height: 30px; }
  .trailer-eyebrow { font-size: 0.72rem; }
  .trailer-state { font-size: 0.95rem; }
  .trailer-note { margin-top: 20px; font-size: 0.78rem; }

  .notify { padding: 64px clamp(20px, 5vw, 32px); gap: 16px; }
  .notify-line { font-size: clamp(1.5rem, 5.5vw, 2rem); }

  .foot { padding: 20px clamp(20px, 5vw, 32px); font-size: 0.72rem; }
}

@media (max-width: 540px) {
  .brand-bar { padding: 14px 20px; }
  .brand-skip { display: none; }

  .hero { padding: 84px 20px 48px; min-height: 92svh; }
  .tagline { font-size: clamp(2.4rem, 11vw, 3.4rem); margin-bottom: 22px; }
  .hero-sub { font-size: 1rem; margin-bottom: 32px; }
  .hero-cta { gap: 12px 20px; }
  .btn-ghost { padding: 12px 18px; font-size: 0.82rem; }

  .vignettes { padding: 48px 20px; gap: 36px; }
  .trailer { padding: 48px 20px; }
  .trailer-frame { aspect-ratio: 5 / 4; }

  .notify { padding: 56px 20px; }
  .notify-form {
    flex-direction: column;
    width: 100%;
  }
  .notify-form input[type="email"] { min-height: 52px; font-size: 1rem; }
  .notify-form button { width: 100%; min-height: 52px; }

  .foot { flex-direction: column; text-align: center; gap: 6px; padding: 20px; }
}
