:root {
  --bg: #09090d;
  --panel: #16171d;
  --panel-2: #202129;
  --text: #ffffff;
  --muted: #b6b6c1;
  --soft: #7e8090;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ff6a16;
  --accent-2: #2dd4bf;
  --danger: #ff4d6d;
  --radius: 8px;
  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);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 56px);
  background: rgba(9, 9, 13, 0.36);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 9, 13, 0.86);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 750;
}

.nav-links a:hover,
.nav-cta:hover,
.nav-choice:hover {
  color: var(--text);
}

.nav-choice {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-weight: 850;
}

.interest-gate {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 72px) 64px;
  background:
    linear-gradient(180deg, rgba(9, 9, 13, 0.12), var(--bg)),
    radial-gradient(circle at 20% 20%, rgba(255, 106, 22, 0.25), transparent 30%),
    radial-gradient(circle at 80% 38%, rgba(45, 212, 191, 0.18), transparent 28%),
    #09090d;
}

.interest-copy {
  width: min(660px, 100%);
}

.interest-copy h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 112px);
  line-height: 0.94;
  letter-spacing: 0;
}

.interest-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
}

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

.interest-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: var(--text);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background: var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.interest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.82;
  transition: transform 220ms ease, opacity 220ms ease;
}

.interest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.88) 86%);
}

.interest-card:hover::before {
  transform: scale(1.06);
  opacity: 1;
}

.gaming-card::before {
  background:
    linear-gradient(135deg, rgba(255, 106, 22, 0.54), rgba(20, 22, 30, 0.48)),
    url("https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=900&q=80");
  background-position: center;
  background-size: cover;
}

.streaming-card::before {
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.34), rgba(20, 22, 30, 0.58)),
    url("https://images.unsplash.com/photo-1593784991095-a205069470b6?auto=format&fit=crop&w=900&q=80");
  background-position: center;
  background-size: cover;
}

.interest-card strong,
.interest-card small,
.choice-tag {
  position: relative;
  z-index: 1;
}

.interest-card strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.96;
}

.interest-card small {
  display: block;
  max-width: 280px;
  margin-top: 12px;
  color: #e8e8ef;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 750;
}

.choice-tag {
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #121218;
  font-size: 13px;
  font-weight: 950;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 130px clamp(20px, 6vw, 72px) 68px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(9, 9, 13, 0.96) 0%, rgba(9, 9, 13, 0.78) 42%, rgba(9, 9, 13, 0.34) 100%),
    url("https://images.unsplash.com/photo-1593784991095-a205069470b6?auto=format&fit=crop&w=1900&q=82");
  background-position: center;
  background-size: cover;
}

body[data-interest="gaming"] .brand-mark,
body[data-interest="gaming"] .button.primary,
body[data-interest="gaming"] .step-list span,
body[data-interest="gaming"] .tv-play {
  background: #7c3aed;
  color: #fff;
}

body[data-interest="gaming"] .eyebrow,
body[data-interest="gaming"] .section-kicker,
body[data-interest="gaming"] .plan-label,
body[data-interest="gaming"] .plan-link {
  color: #a78bfa;
}

body[data-interest="gaming"] .hero {
  background-image:
    linear-gradient(90deg, rgba(9, 9, 13, 0.96) 0%, rgba(9, 9, 13, 0.76) 44%, rgba(9, 9, 13, 0.36) 100%),
    url("https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=1900&q=82");
}

body[data-interest="gaming"] .preview-feature {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.14)),
    linear-gradient(135deg, #4c1d95, #7f1d1d 54%, #111827);
}

body[data-interest="gaming"] .plan-card.featured {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.28), var(--panel) 52%);
  border-color: rgba(167, 139, 250, 0.42);
}

body[data-interest="gaming"] .button.primary {
  color: #fff;
}

[data-gaming-only] {
  display: none;
}

body[data-interest="gaming"] [data-gaming-only] {
  display: block;
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(0deg, var(--bg), rgba(9, 9, 13, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
}

.eyebrow,
.section-kicker,
.plan-label {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 13vw, 154px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: #ececf3;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.25;
  font-weight: 780;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 950;
}

.button.primary {
  background: var(--accent);
  color: #111;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

.button.compact {
  min-height: 44px;
}

.hero-preview {
  position: absolute;
  right: clamp(18px, 7vw, 94px);
  bottom: 86px;
  width: min(410px, 33vw);
  min-width: 300px;
  transform: rotate(-2deg);
  z-index: 1;
}

.preview-screen {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(14, 15, 24, 0.78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  padding: 20px;
}

.preview-topbar,
.preview-row {
  display: flex;
  gap: 10px;
}

.preview-topbar span {
  width: 46px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.preview-title {
  margin: 28px 0 16px;
  font-size: 34px;
  font-weight: 950;
}

.preview-feature {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.12)),
    linear-gradient(135deg, #1e3a8a, #7c2d12 54%, #111827);
}

.preview-feature span {
  color: var(--accent-2);
  font-weight: 900;
}

.preview-feature strong {
  display: block;
  margin-top: 4px;
  font-size: 26px;
}

.preview-feature button {
  width: max-content;
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 950;
}

.preview-row {
  margin-top: 16px;
}

.preview-row span {
  flex: 1;
  aspect-ratio: 0.76;
  border-radius: 12px;
  background: linear-gradient(160deg, #262838, #0f766e);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  border-bottom: 1px solid var(--line);
}

.section h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-heading {
  margin-bottom: 28px;
}

.shop-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.shop-status {
  min-height: 28px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
}

.shop-grid {
  display: grid;
  gap: 46px;
  margin-top: 18px;
}

.shop-section {
  min-width: 0;
}

.shop-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.shop-section-head h3 {
  margin: 0;
  font-size: clamp(25px, 4vw, 42px);
  line-height: 1;
}

.shop-section-head span {
  color: var(--soft);
  font-weight: 900;
}

.shop-section-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.shop-item {
  min-width: 0;
}

.shop-art {
  position: relative;
  aspect-ratio: 0.78;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #181922;
}

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

.shop-price {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  font-weight: 950;
}

.vbucks-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cash-line {
  color: #8bffdc;
}

.shop-price img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.shop-name {
  margin: 10px 0 2px;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.15;
}

.shop-type {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  font-weight: 800;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.plan-card.featured {
  background: linear-gradient(180deg, rgba(255, 106, 22, 0.24), var(--panel) 52%);
  border-color: rgba(255, 106, 22, 0.48);
}

.plan-card h3,
.step-list h3 {
  margin: 0;
  font-size: 28px;
}

.plan-card p {
  margin: 16px 0;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 10px 0 24px;
  padding-left: 18px;
  color: #e9e9ef;
}

.plan-link {
  margin-top: auto;
  color: var(--accent);
  font-weight: 950;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-list article {
  padding: 28px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.step-list span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-weight: 950;
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0e0f15;
}

.tv-card {
  display: grid;
  place-items: center;
}

.tv-frame {
  width: min(100%, 520px);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  border: 10px solid #242631;
  border-radius: 8px;
  background:
    radial-gradient(circle at 55% 44%, rgba(45, 212, 191, 0.42), transparent 26%),
    linear-gradient(135deg, #111827, #1c1917);
}

.tv-play {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: scale(0.72);
}

.tv-base {
  width: 42%;
  height: 16px;
  border-radius: 0 0 14px 14px;
  background: #242631;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 0 20px;
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 20px;
  font-weight: 900;
}

details p {
  margin-top: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

label {
  display: grid;
  gap: 8px;
  color: #ececf3;
  font-weight: 850;
}

input,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0e14;
  color: var(--text);
  padding: 0 14px;
  font: inherit;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--accent-2) !important;
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--soft);
  background: #060609;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero-preview {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 420px);
    min-width: 0;
    margin-top: 42px;
  }

  .hero {
    align-items: start;
  }

  .intro-band,
  .feature-strip,
  .contact,
  .plan-grid,
  .step-list,
  .interest-gate {
    grid-template-columns: 1fr;
  }

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

  .interest-options {
    grid-template-columns: 1fr;
  }

  .interest-card {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    font-size: 16px;
  }

  .nav-cta {
    padding: 10px 12px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding: 112px 20px 48px;
  }

  .interest-gate {
    padding: 104px 18px 44px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .interest-copy h1 {
    font-size: 52px;
  }

  .hero-copy {
    font-size: 21px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 50px 0;
  }

  .feature-strip {
    padding: 26px;
  }

  .site-footer {
    flex-direction: column;
  }

  .shop-heading {
    align-items: start;
    flex-direction: column;
  }

  .shop-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .shop-section-head {
    align-items: start;
    flex-direction: column;
  }

  .shop-name {
    font-size: 15px;
  }
}
