:root {
  --bg: #070605;
  --bg-elevated: #0f0e0c;
  --surface: #161412;
  --border: rgba(212, 175, 55, 0.12);
  --border-strong: rgba(212, 175, 55, 0.22);
  --text: #f5f0e8;
  --text-muted: #a39e94;
  --gold: #d4af37;
  --gold-bright: #e8c547;
  --gold-dim: #8a7335;
  --gold-glow: rgba(212, 175, 55, 0.12);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --radius: 12px;
  --radius-sm: 6px;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: var(--gold-bright);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: rgba(7, 6, 5, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  color: var(--gold);
  text-decoration: none;
}

.logo.muted {
  color: var(--text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
}

.nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  padding: 0.5rem 1.15rem;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: #1a1508 !important;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 8px 32px var(--gold-glow);
}

.nav-cta:hover {
  filter: brightness(1.05);
  color: #1a1508 !important;
  text-decoration: none;
}

.mobile-menu {
  display: none;
}

.menu-summary {
  list-style: none;
  cursor: pointer;
  padding: 8px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-summary::-webkit-details-marker {
  display: none;
}

.menu-summary::marker {
  content: "";
}

.menu-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-bars span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

.mobile-nav {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 220px;
  padding: 1.25rem 1.35rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.mobile-nav a {
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 800px) {
  .nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-bright) 0%, #b8922a 100%);
  color: #140f06;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 12px 40px var(--gold-glow);
}

.btn-primary:hover {
  color: #140f06;
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-lg {
  padding: 1rem 1.85rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem) 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  max-width: 38rem;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 0 0 1.35rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}

.lead {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin: 0 0 2rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-stats strong {
  color: var(--text);
  font-weight: 600;
}

.hero-visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 0;
}

.hero-card {
  width: 100%;
  max-width: 400px;
  padding: 1.85rem 1.65rem 1.75rem;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: linear-gradient(165deg, rgba(22, 20, 18, 0.98) 0%, rgba(10, 9, 8, 0.99) 55%, var(--bg) 100%);
  box-shadow:
    0 1px 0 rgba(212, 175, 55, 0.12) inset,
    0 32px 80px rgba(0, 0, 0, 0.55);
  align-self: center;
}

.hero-card-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-card-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--text);
}

.hero-card-lead {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.partner-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 1rem;
}

.partner-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: -8px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(145deg, #2a2622, #1a1816);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.partner-avatar:first-child {
  margin-left: 0;
}

.partner-avatar-more {
  background: linear-gradient(145deg, var(--gold-dim), #5c4d26);
  color: #f5f0e8;
  font-size: 1rem;
  font-weight: 600;
}

.hero-card-foot {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero-card-rule {
  height: 1px;
  margin: 1.35rem 0 1.25rem;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
}

#launch,
#contact,
#casino-streaming-marketing {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.hero-launch-big {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
  line-height: 1.15;
  display: block;
  margin-bottom: 0.5rem;
}

.hero-launch-sub {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.hero-launch-sub--flush {
  margin-bottom: 1rem;
}

.section-seo {
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.seo-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1rem;
  max-width: 40rem;
}

.section-seo p {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 46rem;
}

.section-seo p:last-child {
  margin-bottom: 0;
}

.hero-price-line {
  margin: 0 0 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero-price-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-price-wide {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.hero-price-wide strong {
  color: var(--text);
  font-weight: 600;
}

.hero-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-bright);
  text-decoration: none;
}

.hero-card-link:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-visual {
    order: -1;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-card {
    max-width: none;
  }
}

/* Strip */
.section {
  padding: clamp(3.25rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3rem);
  max-width: 1100px;
  margin: 0 auto;
}

.strip {
  max-width: none;
  padding-top: 0;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.strip-dot {
  color: var(--gold-dim);
  user-select: none;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 0 0 0.75rem;
}

.section-label.light {
  color: var(--gold-bright);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 32rem;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  padding: 1.75rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.card-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: rgba(212, 175, 55, 0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* Streaming audience (streamers & affiliates) */
#streaming-audience {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.section-stream {
  max-width: none;
  margin: 0;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 55%);
}

.stream-header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.stream-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1.15rem;
}

.stream-deck {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.stream-deck strong {
  color: var(--text);
  font-weight: 600;
}

.stream-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem 3rem;
  align-items: start;
}

.stream-main {
  padding: 1.75rem 1.65rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stream-main p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.stream-main p:last-of-type {
  margin-bottom: 0;
}

.stream-subhead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.stream-note {
  margin-top: 1.25rem !important;
  padding: 1rem 1.1rem;
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
  color: var(--text-muted) !important;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.stream-cta {
  margin-top: 1.5rem;
}

.stream-aside {
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg-elevated) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.stream-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.stream-list li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--border);
}

.stream-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.stream-list-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.stream-list-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .stream-layout {
    grid-template-columns: 1fr;
  }
}

/* Accent split */
.section-accent {
  max-width: none;
  margin: 0;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(180deg, #0c0a08 0%, #070605 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 500;
  margin: 0 0 1rem;
}

.split-lead {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 1px;
  transform: rotate(45deg);
}

.split-panel {
  display: flex;
  justify-content: center;
}

.quote {
  margin: 0;
  padding: 2rem 2rem 2rem 2.25rem;
  border-left: 3px solid var(--gold);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 26rem;
}

.quote p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.45;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.quote footer {
  font-size: 0.85rem;
  font-style: normal;
  font-family: var(--font-sans);
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.35rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.steps li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-index {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--gold);
  border-radius: 50%;
}

.steps h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* CTA */
.cta-band {
  max-width: 640px;
  text-align: center;
  padding-bottom: 5rem;
}

.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 500;
  margin: 0 0 1rem;
}

.cta-inner > p {
  color: var(--text-muted);
  margin: 0 auto 1.75rem;
  max-width: 34rem;
}

.cta-inner strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.cta-mails {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.cta-inner > p a {
  font-weight: 600;
  color: var(--gold-bright);
}

.cta-inner > p a:hover {
  color: var(--gold);
}

/* Footer */
.site-footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 3rem;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-mails {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-mails a:hover {
  color: var(--gold-bright);
}

.footer-mails-sep {
  color: var(--text-muted);
  user-select: none;
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 1rem;
  max-width: 42rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}
