:root {
  --ink: #090909;
  --panel: #111418;
  --panel-2: #1c2026;
  --line: rgba(255, 255, 255, 0.18);
  --text: #f8f6ef;
  --muted: #b9b2a7;
  --gold: #c8a45d;
  --blue: #1b65ff;
  --cream: #f1e6d1;
  --danger: #ff4d6d;
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  z-index: -1;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 9, 0.84);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav,
.hero-actions,
.product-meta,
.vote-line,
.card-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 24px;
  font-family: Georgia, serif;
}

.site-header nav {
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.audio-toggle,
.primary-action,
.pledge-button,
.reel-button,
.close-button {
  border: 0;
  cursor: pointer;
}

.audio-toggle {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--cream);
}

.audio-toggle[aria-pressed="true"] {
  border-color: var(--gold);
  color: var(--gold);
}

.equalizer {
  display: grid;
  grid-template-columns: repeat(8, 4px);
  gap: 4px;
  align-items: end;
  height: 28px;
  opacity: 0.52;
}

.equalizer span {
  display: block;
  height: 8px;
  background: var(--muted);
  transform-origin: bottom;
  transition: background 180ms ease, opacity 180ms ease;
}

.equalizer span:nth-child(1) { --level: 0.45; --delay: 0ms; }
.equalizer span:nth-child(2) { --level: 0.88; --delay: 80ms; }
.equalizer span:nth-child(3) { --level: 0.62; --delay: 150ms; }
.equalizer span:nth-child(4) { --level: 1; --delay: 40ms; }
.equalizer span:nth-child(5) { --level: 0.72; --delay: 120ms; }
.equalizer span:nth-child(6) { --level: 0.52; --delay: 200ms; }
.equalizer span:nth-child(7) { --level: 0.9; --delay: 60ms; }
.equalizer span:nth-child(8) { --level: 0.38; --delay: 170ms; }

body.audio-on .equalizer {
  opacity: 1;
}

body.audio-on .equalizer span {
  background: linear-gradient(180deg, var(--gold), var(--blue));
  animation: equalizerBounce 520ms ease-in-out infinite alternate;
  animation-delay: var(--delay);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 56px) 48px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.primary-action,
.pledge-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  background: var(--gold);
  color: #090909;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(200, 164, 93, 0.35);
  animation: pledgePulse 2.2s ease-in-out infinite;
}

.hero-stat {
  color: var(--muted);
}

.hero-stat strong {
  color: var(--text);
}

.hero-stage {
  position: relative;
}

.reel-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.reel-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.reel-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(9, 9, 9, 0.72);
  backdrop-filter: blur(14px);
}

.reel-caption span {
  color: var(--muted);
}

.reel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 56px;
  background: rgba(9, 9, 9, 0.76);
  color: var(--text);
  font-size: 34px;
  transform: translateY(-50%);
}

.reel-button.previous {
  left: -12px;
}

.reel-button.next {
  right: -12px;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker span {
  padding: 16px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.18);
}

.poll-shell,
.pledge-band {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 4vw, 56px);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading h2,
.pledge-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  min-height: 580px;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  border-color: rgba(200, 164, 93, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}

.product-visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: #050505;
}

.product-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-callout {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  max-width: min(280px, 55%);
  transform: translate(-8px, -8px);
}

.feature-callout::before {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border: 2px solid var(--gold);
  background: var(--ink);
  box-shadow: 0 0 18px rgba(200, 164, 93, 0.9);
  animation: dotPulse 1.8s ease-in-out infinite;
}

.feature-callout::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 5px;
  width: 46px;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  animation: lineDraw 2.4s ease-in-out infinite;
}

.callout-copy {
  margin-left: 46px;
  padding: 8px 10px;
  border: 1px solid rgba(200, 164, 93, 0.45);
  background: rgba(9, 9, 9, 0.76);
  backdrop-filter: blur(12px);
}

.callout-copy strong {
  display: block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.callout-copy span {
  display: block;
  margin-top: 3px;
  color: var(--cream);
  font-size: 12px;
  line-height: 1.3;
}

.product-info {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.product-meta {
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 18px 0 12px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: 0;
}

.spotlight {
  color: var(--muted);
  line-height: 1.45;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  color: var(--cream);
  line-height: 1.35;
}

.feature-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 6px;
  background: var(--blue);
}

.vote-panel {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.vote-line {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.vote-line strong {
  font-size: 26px;
}

.progress-track {
  overflow: hidden;
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-bar {
  width: var(--progress);
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transition: width 420ms ease;
}

.card-footer {
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.price strong {
  display: block;
  font-size: 24px;
}

.price span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.pledge-button:disabled,
.modal-submit:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  animation: none;
}

.pledge-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 0.6fr);
  gap: 36px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: var(--panel-2);
}

.pledge-band p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.pledge-modal {
  width: min(520px, calc(100% - 32px));
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  padding: 0;
}

.pledge-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.pledge-modal form {
  position: relative;
  padding: 28px;
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 24px;
}

.pledge-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin: 22px 0 16px;
  color: var(--cream);
  line-height: 1.4;
}

.pledge-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
}

.email-capture {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.email-capture small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.email-capture input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  padding: 0 14px;
  text-transform: none;
}

.email-capture input:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(200, 164, 93, 0.18);
}

.email-capture input::placeholder {
  color: rgba(248, 246, 239, 0.45);
}

@keyframes pledgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(200, 164, 93, 0);
  }
  50% {
    box-shadow: 0 0 28px rgba(200, 164, 93, 0.45);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.28);
  }
}

@keyframes lineDraw {
  0%,
  100% {
    transform: scaleX(0.35);
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes equalizerBounce {
  from {
    transform: scaleY(0.35);
  }
  to {
    transform: scaleY(var(--level));
  }
}

@media (max-width: 1180px) {
  .product-grid,
  .hero,
  .pledge-band {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 0.92fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .site-header nav {
    justify-content: space-between;
  }

  .equalizer {
    justify-self: end;
  }

  .audio-toggle {
    grid-column: 1 / -1;
  }

  .hero {
    min-height: auto;
  }

  .reel-frame,
  .reel-frame img {
    min-height: 0;
  }

  .ticker {
    grid-template-columns: 1fr 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .feature-callout {
    display: none;
  }

  .section-heading,
  .card-footer {
    display: block;
  }

  .pledge-button {
    width: 100%;
    margin-top: 16px;
  }
}
