:root {
  --bg-primary: #0c0c0c;
  --bg-elevated: #1a1a1a;
  --bg-sunken: #141414;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --text-tertiary: rgba(255, 255, 255, 0.52);
  --border-default: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(255, 255, 255, 0.2);
  --accent-tangerine: #f79256;
  --accent-cyan: #00b2ca;
  --live-pink: #ec4899;
  --live-rose: #f43f5e;
  --solo-orange: #f97316;
  --solo-orange-deep: #ea580c;
  --success: #22c55e;
  --val-red: #ff4655;
  --val-dark: #111111;
  --val-light: #ece8e1;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--val-dark);
  color: var(--val-light);
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(960px 420px at 86% -14%, rgba(247, 146, 86, 0.16), transparent 62%),
    radial-gradient(760px 320px at 14% -8%, rgba(0, 178, 202, 0.18), transparent 58%),
    var(--bg-primary);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  min-height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--val-light);
}

.brand-dot {
  display: none;
}

.dim {
  color: var(--val-red);
  font-size: 12px;
  font-weight: 900;
}

.hero {
  padding: 44px 0 24px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: clamp(18px, 3vw, 32px);
  background: var(--bg-primary);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px 180px at 88% -4%, rgba(255, 255, 255, 0.14), transparent 66%);
  pointer-events: none;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  opacity: 0.05;
  pointer-events: none;
}

.mode-live {
  background: linear-gradient(155deg, #7a103e 0%, #3e0320 52%, #0d0108 100%);
}

.mode-solo {
  background: linear-gradient(155deg, #9a3412 0%, #431407 52%, #160703 100%);
}

.mode-neutral {
  background: linear-gradient(155deg, #202938 0%, #111827 52%, #090f19 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-left: 3px solid var(--val-red);
  background: transparent;
  color: var(--val-red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
}

.hero-grid h1 {
  margin: 16px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(48px, 8vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--val-light);
}

.text-accent {
  color: var(--val-red);
  position: relative;
  display: inline-block;
}

.text-accent::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: -10px;
  width: calc(100% + 20px);
  height: 25%;
  background: var(--val-red);
  opacity: 0.2;
  z-index: -1;
  transform: skewX(-15deg);
}

.lede {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(236, 232, 225, 0.7);
  max-width: 480px;
}

.micro-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.micro-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  border: 1px solid rgba(236, 232, 225, 0.2);
  color: rgba(236, 232, 225, 0.6);
  border-radius: 0;
  text-transform: uppercase;
}

.cta-stack {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.cta-stack.val-btns {
  margin-top: 36px;
}

.btn {
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.btn:active {
  transform: scale(0.985);
}

.btn:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-tangerine), #ffb47f);
  color: #111;
  box-shadow: 0 12px 28px -12px rgba(247, 146, 86, 0.65);
}

.btn-primary-val {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--val-red);
  color: var(--val-light);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 0 32px;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 93% 100%, 0 100%);
}

.btn-primary-val:hover {
  transform: translateY(-2px);
  background: #ff5e6b;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.btn-secondary-val {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  color: var(--val-light);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 0 32px;
  text-transform: uppercase;
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
  border-radius: 0;
}

.btn-secondary-val:hover {
  border-color: var(--val-light);
  color: #fff;
}

.btn-solo {
  background: linear-gradient(135deg, var(--solo-orange), var(--solo-orange-deep));
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(249, 115, 22, 0.56);
}

.btn-ghost {
  min-height: 44px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 14px;
}

.proof-line {
  margin-top: 24px;
  color: rgba(236, 232, 225, 0.4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.proof-grid {
  margin-top: 14px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

.proof-cell {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  padding: 10px;
  text-align: center;
}

.proof-cell b {
  display: block;
  font-size: 16px;
  line-height: 1.1;
}

.proof-cell span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.screen-rail {
  margin-top: 32px;
}

.screen-rail-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.mockup-frame {
  width: 280px;
  height: 560px;
  background: #0f0f0f;
  border-radius: 0;
  border: 1px solid rgba(236, 232, 225, 0.1);
  box-shadow: 20px 20px 0px rgba(255, 70, 85, 0.1);
  padding: 0;
  position: relative;
  transform: rotate(3deg) translateY(-10px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mockup-frame:hover {
  transform: rotate(0deg) translateY(-16px);
  box-shadow: 16px 16px 0px var(--val-red);
}

.mockup-frame::before {
  content: none;
}

.mockup-content {
  background: #0f0f0f;
  height: 100%;
  border-radius: 0;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.crosshairs {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--val-red);
}
.crosshairs.top-left { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.crosshairs.top-right { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.crosshairs.bottom-left { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.crosshairs.bottom-right { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.mockup-header-val {
  font-size: 11px;
  font-weight: 800;
  color: var(--val-red);
  text-align: left;
  letter-spacing: 0.1em;
  margin-top: 12px;
}

.mockup-question-val {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--val-light);
  text-align: left;
  text-transform: uppercase;
}

.mockup-options-val {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  margin-bottom: 24px;
}

.mockup-opt-val {
  background: transparent;
  border: 1px solid rgba(236, 232, 225, 0.2);
  padding: 16px;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.05em;
  color: var(--val-light);
  border-radius: 0;
}

.mockup-opt-val.correct {
  background: var(--val-light);
  color: var(--val-dark);
  border-color: var(--val-light);
  box-shadow: 4px 4px 0px var(--val-red);
}

.section-val {
  margin-top: 80px;
}

.section-val h2 {
  font-size: clamp(32px, 5vw, 56px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--val-light);
}

.separator-line {
  width: 60px;
  height: 4px;
  background: var(--val-red);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: rgba(236, 232, 225, 0.6);
  max-width: 500px;
  line-height: 1.5;
}

.val-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.val-card {
  padding: 32px;
  background: #0f0f0f;
  border: 1px solid rgba(236, 232, 225, 0.05);
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.val-card:hover {
  transform: translateY(-8px);
  border-color: var(--val-red);
}

.val-card-num {
  font-family: monospace;
  font-size: 12px;
  color: var(--val-red);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.val-card h3 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.val-card p {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(236, 232, 225, 0.6);
}

.val-footer {
  border-top: 1px solid rgba(236, 232, 225, 0.1);
  padding: 32px 0;
  margin-top: 80px;
}

.val-footer .footer-links {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(236, 232, 225, 0.4);
}

.footer-copy {
  margin-right: auto;
}

@media (min-width: 760px) {
  .cta-stack {
    grid-template-columns: 1fr 1fr;
  }

  .screen-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .screen-shot img {
    height: 150px;
  }

  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .hero-shell {
    padding: 64px 48px;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
  }

  .section {
    margin-top: 64px;
  }
  
  .section h2 {
    margin-bottom: 24px;
    font-size: 42px;
  }

  .selector-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
