:root {
  --black: #050505;
  --surface: #0d0d0b;
  --panel: #12110e;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f8f1df;
  --muted: #aaa293;
  --gold: #f0c14b;
  --gold-soft: #ffe9a6;
  --gold-dim: rgba(240, 193, 75, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  position: relative;
  margin: 0;
  color: var(--text);
  background: transparent;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::selection {
  color: var(--black);
  background: var(--gold);
}

.site-bg,
.site-overlay,
.site-dust,
.site-sweep {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.site-bg {
  z-index: 0;
  background: url("assets/phantom-field-bg.png") center / cover no-repeat;
  transform: scale(1);
  animation: fieldZoom 36s ease-in-out infinite;
  will-change: transform;
}

.site-overlay {
  z-index: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 226, 137, 0.24), transparent 21%),
    radial-gradient(circle at 88% 0%, rgba(255, 226, 137, 0.2), transparent 22%),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(rgba(0, 0, 0, 0.61), rgba(0, 0, 0, 0.61));
  animation: lightsBreathe 8s ease-in-out infinite;
  will-change: opacity;
}

.site-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 42% 72%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px, 7px 7px;
}

.site-dust {
  z-index: 0;
  opacity: 0.16;
  background-image:
    radial-gradient(circle, rgba(255, 231, 170, 0.35) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.24) 0 1px, transparent 1.5px);
  background-position: 8vw 18vh, 64vw 10vh;
  background-size: 140px 170px, 210px 240px;
  animation: dustFloat 42s linear infinite;
  will-change: transform, opacity;
}

.site-sweep {
  z-index: 0;
  overflow: hidden;
}

.site-sweep::after {
  content: "";
  position: absolute;
  top: -12%;
  left: -42%;
  width: 28%;
  height: 124%;
  opacity: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 233, 166, 0.18) 48%, transparent 100%);
  transform: translate3d(-30vw, 0, 0) skewX(-14deg);
  animation: endzoneSweep 18s ease-in-out infinite;
  will-change: transform, opacity;
}

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

main {
  display: flex;
  flex-direction: column;
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 2;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.58));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

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

.brand-mark {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  background: rgba(10, 10, 8, 0.42);
  border: 1px solid rgba(240, 193, 75, 0.28);
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(240, 193, 75, 0.14);
}

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

.topbar nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.topbar nav a:hover {
  color: var(--gold);
}

.topbar-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.social-links,
.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-links a,
.footer-links a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--text);
  background: rgba(10, 10, 8, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  overflow: hidden;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-links img,
.footer-links img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-links a:hover,
.footer-links a:hover {
  color: var(--gold);
  background: rgba(240, 193, 75, 0.08);
  border-color: rgba(240, 193, 75, 0.28);
}

.discord {
  position: relative;
  justify-self: end;
  padding: 9px 13px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 900;
  overflow: hidden;
}

.hero {
  order: 1;
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 68px);
  padding: clamp(70px, 10vw, 130px) 20px clamp(120px, 13vw, 190px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.62) 72%, rgba(5, 5, 5, 0.76) 100%);
}

.home-compact .hero {
  min-height: calc(100vh - 68px);
  padding: clamp(28px, 4vw, 54px) 20px clamp(34px, 5vw, 64px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 520px);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  width: min(1360px, 100%);
}

.hero-copy {
  text-align: center;
}

.kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(4rem, 12vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(240, 193, 75, 0.22);
}

.page-title {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  line-height: 0.9;
}

.hero-chips {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 18px;
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--text);
  background: rgba(10, 10, 8, 0.58);
  border: 1px solid rgba(240, 193, 75, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: 0.84rem;
  font-weight: 900;
}

.headline-copy {
  max-width: 720px;
  margin-inline: auto;
  color: var(--text);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
}

.subcopy {
  max-width: 700px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.platform-strip {
  width: min(760px, 100%);
  margin: 0 auto 32px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(10, 10, 8, 0.72), rgba(10, 10, 8, 0.38)),
    radial-gradient(circle at 50% 0%, rgba(240, 193, 75, 0.14), transparent 46%);
  border: 1px solid rgba(240, 193, 75, 0.18);
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.platform-eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.platform-cards article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 16px;
  text-align: left;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.platform-logo {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(240, 193, 75, 0.24);
  border-radius: 14px;
  box-shadow: 0 0 24px rgba(240, 193, 75, 0.24);
  font-weight: 950;
  overflow: hidden;
}

.platform-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.xbox-logo {
  border-radius: 14px;
}

.ps-logo {
  border-radius: 14px;
}

.platform-cards strong,
.platform-cards small,
.platform-cards em {
  display: block;
}

.platform-cards strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-cards small {
  margin-top: 2px;
  color: var(--muted);
  font-weight: 800;
}

.platform-cards em {
  padding: 6px 9px;
  color: var(--gold-soft);
  background: rgba(240, 193, 75, 0.1);
  border: 1px solid rgba(240, 193, 75, 0.24);
  border-radius: 999px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.feature-carousel {
  width: min(920px, 100%);
  margin: 0 auto 34px;
}

.hero-auth-panel {
  align-self: center;
  width: 100%;
  display: grid;
  gap: 14px;
}

.hero-account-slot:empty {
  display: none;
}

.hero-account-slot .signup-card {
  text-align: left;
  backdrop-filter: blur(12px);
}

.hero-login-slot:empty {
  display: none;
}

.hero-login-slot .login-card {
  text-align: left;
  backdrop-filter: blur(12px);
}

.home-compact .hero-inner {
  grid-template-columns: minmax(0, 0.85fr) minmax(690px, 0.95fr);
  gap: clamp(24px, 3vw, 44px);
  width: min(1560px, 100%);
}

.home-compact .hero-auth-panel {
  grid-template-columns: minmax(390px, 1fr) minmax(260px, 0.72fr);
  align-items: start;
}

.home-compact h1 {
  font-size: clamp(3.6rem, 8vw, 6.8rem);
}

.home-compact .headline-copy {
  margin-bottom: 10px;
}

.home-compact .subcopy {
  margin-bottom: 16px;
}

.home-compact .platform-strip {
  width: min(640px, 100%);
  margin-bottom: 18px;
  padding: 12px;
}

.home-compact .platform-eyebrow {
  margin-bottom: 8px;
  font-size: 0.66rem;
}

.home-compact .platform-cards {
  margin-bottom: 0;
}

.home-compact .platform-cards article {
  min-height: 62px;
  padding: 10px;
  gap: 10px;
}

.home-compact .platform-logo {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

.home-compact .platform-cards small,
.home-compact .platform-note {
  display: none;
}

.home-compact .platform-cards em {
  padding: 4px 7px;
  font-size: 0.58rem;
}

.home-compact .feature-carousel {
  margin-bottom: 18px;
}

.home-compact .feature-stage {
  min-height: 246px;
}

.home-compact .feature-slide {
  grid-template-columns: 1fr;
  min-height: 246px;
  padding: 20px;
  text-align: center;
}

.home-compact .feature-slide .quick-points {
  display: none;
}

.home-compact .feature-copy h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.home-compact .hero-referral-slot {
  width: min(680px, 100%);
  margin: 18px auto 0;
}

.home-compact .hero-referral-slot .account-referral-card {
  grid-template-columns: 132px 1fr;
  margin-top: 0;
  padding: 14px;
  text-align: left;
}

.home-compact .hero-referral-slot .ticket-art {
  width: 118px;
  min-height: 96px;
  transform: rotate(-3deg);
}

.home-compact .hero-referral-slot .ticket-art span {
  font-size: 1.58rem;
}

.home-compact .hero-referral-slot .ticket-art strong {
  font-size: 0.72rem;
}

.home-compact .hero-referral-slot .account-referral-card h3 {
  font-size: 1.15rem;
}

.home-compact .hero-referral-slot .account-referral-card p:not(.kicker) {
  display: none;
}

.home-compact .compact-rewards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-compact .compact-rewards span {
  padding: 7px 8px;
  font-size: 0.72rem;
}

.home-compact .signup-card {
  padding: 18px;
}

.home-compact .signup-card label,
.home-compact .login-card label {
  margin-bottom: 12px;
}

.home-compact .signup-card input,
.home-compact .login-card input {
  min-height: 42px;
}

.home-compact .field-note,
.home-compact .next-steps-card,
.home-compact .form-note {
  display: none;
}

.home-compact .confirm-row {
  margin: 2px 0 12px;
}

.home-compact .login-card {
  padding: 18px;
}

.feature-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.feature-stage {
  position: relative;
  min-height: 376px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background:
    radial-gradient(circle at 80% 10%, rgba(240, 193, 75, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(10, 10, 8, 0.78), rgba(10, 10, 8, 0.48));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.feature-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(240, 193, 75, 0.16), transparent 28%, transparent 72%, rgba(240, 193, 75, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%);
  pointer-events: none;
}

.feature-slide {
  position: relative;
  z-index: 1;
  display: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  min-height: 376px;
  padding: clamp(24px, 4vw, 42px);
  text-align: left;
}

.feature-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.feature-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.feature-copy p:last-child {
  margin-bottom: 0;
}

.feature-slide .quick-points {
  align-self: stretch;
  align-content: center;
  margin: 0;
  padding: 22px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(240, 193, 75, 0.14);
  border-radius: 10px;
}

.feature-slide .quick-points li {
  font-size: 0.9rem;
}

#feature-bot:checked ~ .feature-stage .feature-slide-bot,
#feature-auction:checked ~ .feature-stage .feature-slide-auction,
#feature-support:checked ~ .feature-stage .feature-slide-support {
  display: grid;
  animation: featureFade 260ms ease-out;
}

.feature-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.feature-dots label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(10, 10, 8, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-dots label::before {
  content: "";
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}

#feature-bot:checked ~ .feature-dots label[for="feature-bot"],
#feature-auction:checked ~ .feature-dots label[for="feature-auction"],
#feature-support:checked ~ .feature-dots label[for="feature-support"] {
  color: var(--text);
  background: rgba(240, 193, 75, 0.1);
  border-color: rgba(240, 193, 75, 0.34);
}

#feature-bot:checked ~ .feature-dots label[for="feature-bot"]::before,
#feature-auction:checked ~ .feature-dots label[for="feature-auction"]::before,
#feature-support:checked ~ .feature-dots label[for="feature-support"]::before {
  background: var(--gold);
  box-shadow: 0 0 16px rgba(240, 193, 75, 0.48);
}

.quick-cards {
  max-width: 1080px;
  margin: 0 auto 34px;
}

.quick-cards article,
.feature-grid article,
.price-card,
.signup-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(10, 10, 8, 0.52);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.quick-cards article {
  min-height: 304px;
  padding: 22px;
  text-align: left;
}

.quick-cards span {
  display: none;
  color: var(--gold);
  font-weight: 950;
}

.quick-cards h2 {
  margin: 6px 0 10px;
  font-size: 1.06rem;
}

.quick-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.quick-points li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 850;
}

.quick-points li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(240, 193, 75, 0.26);
}

.quick-cards p,
.feature-grid p,
.price-card p,
.section-copy p,
.form-note,
.field-note {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  overflow: hidden;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.button.primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-color: transparent;
  overflow: hidden;
}

.button.secondary {
  background: rgba(10, 10, 8, 0.48);
}

.hero-feature-button {
  min-width: min(280px, 100%);
  min-height: 54px;
  padding-inline: 34px;
  background:
    linear-gradient(180deg, rgba(240, 193, 75, 0.1), rgba(240, 193, 75, 0.025)),
    rgba(10, 10, 8, 0.58);
  border-color: rgba(240, 193, 75, 0.28);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.hero-feature-button:hover {
  border-color: rgba(240, 193, 75, 0.48);
  transform: translateY(-1px);
}

.brand-mark::after,
.discord::after,
.button.primary::after,
.ticket-art::after,
.referral-button::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 100%);
  transform: translate3d(-120%, 0, 0);
  animation: goldShimmer 7s ease-in-out infinite;
  will-change: transform, opacity;
}

.brand-mark::after {
  border-radius: 50%;
}

.ticket-art::after {
  animation-delay: 1.2s;
}

.referral-button::after {
  animation-delay: 2.2s;
}

.discord::after {
  animation-delay: 3.1s;
}

.button.primary::after {
  animation-delay: 4s;
}

.button.full {
  width: 100%;
}

.oauth-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  margin: 16px 0 10px;
  padding: 12px 16px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(6, 6, 5, 0.72);
  border: 1px solid rgba(240, 193, 75, 0.22);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 18px 42px rgba(0, 0, 0, 0.22);
}

.oauth-button img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.oauth-button:hover {
  border-color: rgba(240, 193, 75, 0.42);
  transform: translateY(-1px);
}

.oauth-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
  line-height: 1.45;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 16px;
  color: rgba(249, 242, 220, 0.48);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.signup-card .button + .button {
  margin-top: 10px;
}

.access-section,
.includes,
.referrals,
.vouches,
.plans {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.includes {
  order: 3;
  background:
    radial-gradient(circle at 78% 8%, rgba(240, 193, 75, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.44), rgba(5, 5, 5, 0.58));
}

.feature-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: min(920px, 100%);
  margin: 0 auto 18px;
}

.feature-tabs button {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--muted);
  background: rgba(10, 10, 8, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  cursor: pointer;
}

.feature-tabs button.active,
.feature-tabs button:hover {
  color: var(--text);
  background: rgba(240, 193, 75, 0.1);
  border-color: rgba(240, 193, 75, 0.34);
}

.feature-deep-list {
  display: grid;
  gap: 18px;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.feature-detail {
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 100% 0, rgba(240, 193, 75, 0.11), transparent 28%),
    rgba(10, 10, 8, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.feature-detail.active {
  display: grid;
}

.detail-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-copy h3 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1;
}

.detail-copy p {
  color: var(--muted);
  font-weight: 720;
}

.detail-copy p:last-child {
  margin-bottom: 0;
}

.detail-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 22px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(240, 193, 75, 0.14);
  border-radius: 10px;
  list-style: none;
}

.detail-points li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 850;
}

.detail-points li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(240, 193, 75, 0.28);
}

.privacy-note {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: min(920px, 100%);
  margin: 22px auto 0;
  padding: 14px 18px;
  color: var(--muted);
  background: rgba(10, 10, 8, 0.5);
  border: 1px solid rgba(240, 193, 75, 0.18);
  border-radius: 10px;
  text-align: center;
}

.privacy-note strong {
  color: var(--gold);
}

.access-section {
  order: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 620px);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  min-height: min(980px, calc(100vh - 68px));
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 193, 75, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.44));
}

.section-copy h2,
.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.access-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.access-info-grid article {
  min-height: 138px;
  padding: 18px;
  color: var(--text);
  background: rgba(10, 10, 8, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.access-info-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
}

.access-info-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 950;
}

.access-info-grid p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.account-referral-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 20px;
  background:
    radial-gradient(circle at 8% 0, rgba(240, 193, 75, 0.16), transparent 34%),
    rgba(10, 10, 8, 0.58);
  border: 1px solid rgba(240, 193, 75, 0.2);
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.account-referral-card .kicker {
  margin-bottom: 8px;
}

.account-referral-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1;
}

.account-referral-card p:not(.kicker) {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

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

.compact-rewards span {
  padding: 9px 10px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.signup-card {
  padding: clamp(26px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(240, 193, 75, 0.12), transparent 38%),
    rgba(13, 13, 11, 0.74);
}

.account-column {
  display: grid;
  gap: 16px;
  width: min(620px, 100%);
  justify-self: center;
}

.login-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(13, 13, 11, 0.68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.form-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-top strong {
  color: var(--gold);
}

label,
legend {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
}

label em {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.field-note {
  margin: -8px 0 16px;
  padding: 10px 12px;
  background: rgba(240, 193, 75, 0.08);
  border: 1px solid rgba(240, 193, 75, 0.18);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 750;
}

.label-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.info-wrap {
  position: relative;
  display: inline-flex;
}

.info-button {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  padding: 0;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border: 0;
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 950;
  cursor: help;
}

.tooltip {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: calc(100% + 10px);
  width: min(290px, 78vw);
  padding: 12px;
  color: var(--text);
  background: rgba(10, 10, 8, 0.96);
  border: 1px solid rgba(240, 193, 75, 0.34);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
  opacity: 0;
  transform: translate(-50%, 6px);
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease;
}

.info-wrap:hover .tooltip,
.info-wrap:focus-within .tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

input:focus {
  border-color: rgba(240, 193, 75, 0.7);
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 70px;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 8px;
  min-width: 52px;
  min-height: 32px;
  padding: 0 10px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  transform: translateY(-50%);
  cursor: pointer;
}

.confirm-row {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 16px;
  padding: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.84rem;
  line-height: 1.35;
}

.confirm-row input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
}

.next-steps-card {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  padding: 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.next-steps-card strong {
  color: var(--gold);
  font-size: 0.88rem;
}

.next-steps-card span {
  color: var(--muted);
  font-size: 0.84rem;
}

.form-note {
  margin: 12px 0 0;
  font-size: 0.82rem;
  text-align: center;
}

.auth-status {
  min-height: 18px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: center;
}

.auth-status:empty {
  display: none;
}

.auth-status[data-type="success"] {
  color: #72e5a1;
}

.auth-status[data-type="error"] {
  color: #ff9b83;
}

.account-panel {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(240, 193, 75, 0.08), transparent 48%),
    rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(240, 193, 75, 0.18);
  border-radius: 10px;
}

.account-panel[hidden] {
  display: none;
}

.account-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.account-panel-top strong {
  color: var(--gold);
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.account-stats div {
  min-width: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.account-stats dt {
  margin-bottom: 4px;
  color: rgba(249, 242, 220, 0.62);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.account-stats dd {
  margin: 0;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.account-next-step {
  padding: 12px;
  background: rgba(240, 193, 75, 0.07);
  border: 1px solid rgba(240, 193, 75, 0.16);
  border-radius: 8px;
}

.account-next-step strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.account-next-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.45;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.kicker) {
  max-width: 720px;
  margin-inline: auto;
  color: var(--muted);
}

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

.feature-grid article,
.price-card,
.reward-card {
  padding: 24px;
}

.feature-grid h3,
.price-card h3 {
  margin-bottom: 8px;
}

.plans {
  background:
    radial-gradient(circle at 50% 0, rgba(240, 193, 75, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.34), rgba(5, 5, 5, 0.54));
}

.referrals {
  display: none;
  order: 5;
  background:
    radial-gradient(circle at 20% 12%, rgba(240, 193, 75, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.48), rgba(5, 5, 5, 0.34));
}

.referral-showcase {
  width: min(620px, 100%);
  margin-inline: auto;
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
  border: 1px solid rgba(240, 193, 75, 0.2);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(5, 5, 5, 0.58);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.ticket-art {
  position: relative;
  display: grid;
  place-items: center;
  width: min(248px, 74vw);
  min-height: 112px;
  margin: -22px auto 30px;
  color: var(--black);
  background:
    radial-gradient(circle at left center, transparent 0%, transparent 17px, var(--gold) 18px),
    radial-gradient(circle at right center, transparent 0%, transparent 17px, var(--gold-soft) 18px),
    linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-radius: 12px;
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.28), 0 0 42px rgba(240, 193, 75, 0.18);
  transform: rotate(-4deg);
  overflow: hidden;
}

.ticket-art::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 2px solid rgba(5, 5, 5, 0.42);
  border-radius: 8px;
}

.ticket-art span,
.ticket-art strong {
  display: block;
  line-height: 0.92;
  letter-spacing: 0;
}

.ticket-art span {
  font-size: clamp(2.5rem, 8vw, 4.2rem);
  font-weight: 950;
}

.ticket-art strong {
  padding-top: 8px;
  font-size: clamp(1rem, 3vw, 1.55rem);
  font-weight: 950;
}

.account-referral-card .compact-ticket {
  width: 150px;
  min-height: 76px;
  margin: 0;
  transform: rotate(-4deg);
}

.account-referral-card .compact-ticket::before {
  inset: 9px;
}

.account-referral-card .compact-ticket span {
  font-size: 2.05rem;
}

.account-referral-card .compact-ticket strong {
  font-size: 0.92rem;
}

.referral-showcase > p:not(.kicker) {
  max-width: 600px;
  margin-inline: auto;
  color: var(--muted);
}

.reward-ladder {
  position: relative;
  display: grid;
  gap: 24px;
  max-width: 600px;
  margin: 38px auto 0;
  text-align: left;
}

.reward-ladder::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 22px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), rgba(240, 193, 75, 0.08));
}

.reward-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 86px;
}

.reward-step span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border: 3px solid var(--surface);
  border-radius: 50%;
  font-weight: 950;
}

.reward-step h3 {
  margin-bottom: 6px;
}

.reward-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.referral-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(420px, 100%);
  min-height: 54px;
  margin-top: 34px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(240, 193, 75, 0.18);
  position: relative;
  overflow: hidden;
}

.vouches {
  order: 4;
  position: relative;
  z-index: 1;
  padding-top: clamp(76px, 9vw, 128px);
  background:
    radial-gradient(circle at 80% 8%, rgba(240, 193, 75, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.42), rgba(13, 13, 11, 0.34) 28%, rgba(5, 5, 5, 0.36) 100%);
}

.vouch-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.vouch-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(10, 10, 8, 0.54);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.stars {
  margin-bottom: 18px;
  color: #63e071;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.vouch-card p {
  min-height: 122px;
  color: var(--muted);
  font-weight: 750;
  font-style: italic;
}

.vouch-card strong,
.vouch-card span {
  display: block;
}

.vouch-card strong {
  margin-top: 18px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.vouch-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card.selected {
  border-color: rgba(240, 193, 75, 0.6);
  background:
    radial-gradient(circle at 50% 0, rgba(240, 193, 75, 0.16), transparent 38%),
    rgba(10, 10, 8, 0.58);
}

.plans {
  display: none;
  order: 6;
}

.home-compact .includes,
.home-compact .vouches,
.home-compact .access-section,
.home-compact .referrals,
.home-compact .plans {
  display: none;
}

.price-card span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin: 14px 0;
  color: var(--gold);
  font-size: 2.8rem;
  line-height: 1;
}

.price-card small {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: rgba(5, 5, 5, 0.56);
}

.footer a {
  color: var(--gold);
}

@keyframes fieldZoom {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

@keyframes lightsBreathe {
  0%,
  100% {
    opacity: 0.96;
  }

  50% {
    opacity: 1;
  }
}

@keyframes dustFloat {
  0% {
    opacity: 0.2;
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: 0.32;
    transform: translate3d(18px, -24px, 0);
  }

  100% {
    opacity: 0.2;
    transform: translate3d(0, -48px, 0);
  }
}

@keyframes endzoneSweep {
  0%,
  70%,
  100% {
    opacity: 0;
    transform: translate3d(-30vw, 0, 0) skewX(-14deg);
  }

  76% {
    opacity: 0.24;
  }

  88% {
    opacity: 0.08;
    transform: translate3d(172vw, 0, 0) skewX(-14deg);
  }
}

@keyframes goldShimmer {
  0%,
  68%,
  100% {
    opacity: 0;
    transform: translate3d(-120%, 0, 0);
  }

  76% {
    opacity: 0.45;
  }

  88% {
    opacity: 0;
    transform: translate3d(120%, 0, 0);
  }
}

@keyframes featureFade {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-bg,
  .site-overlay,
  .site-dust,
  .site-sweep::after,
  .brand-mark::after,
  .discord::after,
  .button.primary::after,
  .ticket-art::after,
  .referral-button::after {
    animation: none;
  }

  .site-bg {
    transform: none;
  }

  .site-dust,
  .site-sweep {
    display: none;
  }

  #feature-bot:checked ~ .feature-stage .feature-slide-bot,
  #feature-auction:checked ~ .feature-stage .feature-slide-auction,
  #feature-support:checked ~ .feature-stage .feature-slide-support {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .hero-inner {
    grid-template-columns: 1fr;
    width: min(920px, 100%);
  }

  .home-compact .hero-inner,
  .home-compact .hero-auth-panel {
    grid-template-columns: 1fr;
  }

  .vouch-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar nav {
    display: none;
  }

  .topbar-actions {
    gap: 8px;
  }

  .social-links {
    display: none;
  }

  .quick-cards,
  .feature-slide,
  .feature-detail,
  .feature-grid,
  .plan-grid,
  .access-section {
    grid-template-columns: 1fr;
  }

  .feature-stage,
  .feature-slide {
    min-height: auto;
  }

  .feature-dots {
    flex-wrap: wrap;
  }

  .platform-cards article {
    grid-template-columns: auto 1fr;
  }

  .platform-cards em {
    grid-column: 2;
    justify-self: start;
  }

  .privacy-note {
    display: grid;
  }

  .account-referral-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .access-section {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .topbar {
    padding-inline: 14px;
  }

  .brand span:last-child {
    max-width: 118px;
    line-height: 1.05;
  }

  .discord {
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .platform-strip {
    padding: 14px;
  }

  .platform-cards {
    grid-template-columns: 1fr;
  }

  .platform-cards article {
    min-height: 82px;
  }

  .access-info-grid {
    grid-template-columns: 1fr;
  }

  .compact-rewards {
    grid-template-columns: 1fr;
  }

  .account-stats {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
  }
}
