:root {
  --bg: #08090b;
  --bg-2: #101216;
  --panel: #0d0f12;
  --line: #1d2127;
  --line-soft: #14171c;
  --fg: #eef1f4;
  --fg-dim: #a3abb4;
  --fg-mute: #616974;
  --accent: #4aa8e0;
  --accent-ink: #eaf6ff;
  --accent-glow: 74, 168, 224;
  --grad-button: linear-gradient(180deg, #74c4ef 0%, #3f9bd8 52%, #2a7fc4 100%);
  --ok: #7be08a;
  --bad: #ff6b57;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --sans: "Poppins", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  min-height: 100dvh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--accent-ink); }

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(70rem 40rem at 78% -10rem, rgba(var(--accent-glow), 0.10), transparent 60%),
    radial-gradient(50rem 40rem at -10% 110%, rgba(var(--accent-glow), 0.05), transparent 60%),
    var(--bg);
}
.backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
}
.backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0 2px,
    rgba(0, 0, 0, 0.22) 2px 4px
  );
  opacity: 0.35;
  mix-blend-mode: multiply;
}

.shell {
  max-width: 1120px;
  margin-inline: auto;
  padding: 34px clamp(20px, 5vw, 56px) 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 8px 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 15px;
}
.brand .glyph {
  width: 18px;
  height: 18px;
  background: var(--accent);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 0 18px rgba(var(--accent-glow), 0.55);
}

.status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--fg-mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(var(--accent-glow), 0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--accent-glow), 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(var(--accent-glow), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--accent-glow), 0); }
}

.masthead {
  text-align: center;
  padding: 26px 0 40px;
}
.tagline {
  margin: 22px auto 0;
  max-width: 40ch;
  color: var(--fg-dim);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.5;
}
.tag-opt {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-glow), 0.5);
  border-radius: 999px;
  padding: 3px 8px;
}
.masthead .eyebrow {
  justify-content: center;
  margin-bottom: 20px;
}
.masthead .eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
}
.masthead h1 {
  font-size: clamp(2.5rem, 7.5vw, 5.5rem);
}

.stage {
  position: relative;
  border: 1px solid var(--line);
  background: #000;
  overflow: hidden;
  aspect-ratio: 1280 / 620;
  box-shadow:
    0 0 0 1px rgba(var(--accent-glow), 0.12),
    0 0 60px -12px rgba(var(--accent-glow), 0.18),
    0 40px 90px -30px rgba(0, 0, 0, 0.95);
}
.stage video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage::before,
.stage::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  z-index: 2;
  pointer-events: none;
}
.stage::before {
  top: 10px;
  left: 10px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.stage::after {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}
.stage-chips {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  pointer-events: none;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #eaf6ff;
  background: rgba(8, 12, 18, 0.72);
  border: 1px solid rgba(var(--accent-glow), 0.5);
  border-radius: 999px;
  padding: 7px 13px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(var(--accent-glow), 0.9);
}

.pitch {
  max-width: 46rem;
  margin: 34px auto 0;
  text-align: center;
}
.pitch .lede {
  margin: 0 auto;
  color: var(--fg-dim);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.6;
}
.pitch .signup {
  margin: 26px auto 0;
}
.pitch .field-label {
  text-align: left;
}
.disclaimer {
  margin: 14px auto 0;
  max-width: 30rem;
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-mute);
  text-align: left;
}
.disclaimer a { color: var(--fg-dim); text-decoration: underline; }
.disclaimer a:hover { color: var(--accent); }

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 40;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.9);
}
.cookie-banner p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--fg-dim);
}
.cookie-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.cookie-btn {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: var(--grad-button);
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.cookie-btn--ghost {
  background: transparent;
  color: var(--fg-dim);
  border-color: var(--line);
  box-shadow: none;
}
.cookie-btn--ghost:hover { color: var(--fg); border-color: var(--fg-mute); }

.legal {
  max-width: 46rem;
  margin: 0 auto;
  padding-block: 8px 20px;
}
.legal h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.legal .updated {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-mute);
  margin-bottom: 28px;
}
.legal h2 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin: 28px 0 10px;
}
.legal p {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 12px;
}
.legal a { color: var(--fg); text-decoration: underline; }
.legal a:hover { color: var(--accent); }
.legal .back {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-dim);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  min-height: 62vh;
  padding-block: 18px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
}

h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: uppercase;
}
h1 .hit { color: var(--accent); }
h1 .strike { position: relative; white-space: nowrap; }
h1 .strike::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 52%;
  height: 4px;
  background: var(--accent);
  transform: skewY(-2deg);
  box-shadow: 0 0 14px rgba(var(--accent-glow), 0.5);
}

.lede {
  margin-top: 22px;
  max-width: 46ch;
  color: var(--fg-dim);
  font-size: clamp(0.98rem, 1.6vw, 1.06rem);
}
.lede + .lede { margin-top: 14px; }

.signup {
  margin-top: 34px;
  max-width: 30rem;
}
.signup .field-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 9px;
}
.combo {
  display: flex;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 6px;
  transition: border-color 0.15s;
}
.combo:focus-within { border-color: var(--accent); }
.combo input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--fg);
  font: inherit;
  font-size: 0.95rem;
  padding: 10px 12px;
}
.combo input::placeholder { color: var(--fg-mute); }
.combo input:focus { outline: none; }

.go {
  flex-shrink: 0;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  background: var(--grad-button);
  color: #fff;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 22px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 6px 18px -8px rgba(var(--accent-glow), 0.7);
  transition: transform 0.08s, filter 0.15s;
}
.go:hover { filter: brightness(1.08); }
.go:active { transform: translateY(1px); }
.go:disabled { opacity: 0.5; cursor: not-allowed; }

.honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.note {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--fg-dim);
}
.note[hidden] { display: none; }
.note--ok { color: var(--ok); }
.note--bad { color: var(--bad); }

.feed {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(var(--accent-glow), 0.03), transparent 40%),
    var(--panel);
  padding: 16px;
  font-family: var(--mono);
  overflow: hidden;
}
.feed .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  color: var(--fg-mute);
  text-transform: uppercase;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.feed .bar .lights { display: inline-flex; gap: 5px; }
.feed .bar .lights i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line);
}
.feed .bar .lights i:first-child { background: var(--accent); }
.feed ul { list-style: none; display: grid; gap: 11px; }
.feed li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--fg-dim);
  opacity: 0;
  transform: translateX(8px);
  animation: feedin 0.5s forwards;
}
.feed li:nth-child(1) { animation-delay: 0.15s; }
.feed li:nth-child(2) { animation-delay: 0.45s; }
.feed li:nth-child(3) { animation-delay: 0.75s; }
.feed li:nth-child(4) { animation-delay: 1.05s; }
.feed li:nth-child(5) { animation-delay: 1.35s; }
@keyframes feedin { to { opacity: 1; transform: none; } }
.feed .who { color: var(--fg); }
.feed .mark { color: var(--accent); }
.feed .you { color: var(--accent); font-weight: 500; }
.feed .cross {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 46px;
  height: 46px;
  opacity: 0.5;
}

.features {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(var(--accent-glow), 0.05), transparent 45%),
    var(--panel);
  padding: 26px 22px 24px;
  overflow: hidden;
  transition: border-color 0.18s, transform 0.18s;
}
.feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  opacity: 0.7;
}
.feature:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.feature .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent);
}
.feature h3 {
  margin-top: 12px;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.05;
}
.feature p {
  margin-top: 12px;
  color: var(--fg-dim);
  font-size: 14.5px;
  line-height: 1.6;
}

.foot {
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  color: var(--fg-mute);
  font-size: 12px;
}
.foot .mono { font-family: var(--mono); letter-spacing: 1px; }

@media (max-width: 860px) {
  .features { grid-template-columns: 1fr; }
  .foot { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .status .dot { animation: none; }
  .feature { transition: none; }
}
