/* =========================================================
   JOKER WILD COURT — Promo Website Styles
   Harlequin Purple · Stage Gold · Crimson Curtain · Playbill Cream
   Bungee display · Inter body
   ========================================================= */

:root {
  /* Brand */
  --harlequin-purple: #6B2FA0;
  --harlequin-purple-dark: #4A1F70;
  --harlequin-purple-glow: #8E45C2;
  --stage-gold: #E8B33A;
  --stage-gold-bright: #F0C84A;
  --footlight-gold: #F5D472;
  --crimson-curtain: #C9243F;
  --crimson-deep: #8F1A2C;
  --jest-magenta: #B0379A;

  /* Surfaces */
  --diamond-black: #1E1726;
  --diamond-deeper: #110B19;
  --velvet-plum: #2C2140;
  --velvet-plum-light: #3A2C52;
  --stage-divider: #4A305E33;

  /* Light surfaces */
  --playbill-cream: #F7EFDC;
  --playbill-cream-warm: #EFE4CA;

  /* Text */
  --cream: #F7EFDC;
  --cream-warm: #EFE4CA;
  --ink-black: #191320;
  --ink-muted: #4A4058;
  --text-on-dark: #F7EFDC;
  --text-on-dark-muted: #C9BCDE;
  --text-on-dark-faded: #8A7E9C;

  /* Fonts */
  --font-display: 'Bungee', 'Bungee Inline', Impact, sans-serif;
  --font-heading: 'Bungee', 'Bungee Inline', Impact, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --max-w: 1200px;
  --radius-card: 14px;
  --radius-btn: 10px;

  --grad-cta: linear-gradient(165deg, #6B2FA0 0%, #4A1F70 100%);
  --grad-gold: linear-gradient(90deg, #C99B2A 0%, #E8B33A 50%, #F5D472 100%);
  --grad-gold-text: linear-gradient(90deg, #E8B33A 0%, #F7EFDC 50%, #F0C84A 100%);
  --grad-crimson: linear-gradient(135deg, #C9243F 0%, #8F1A2C 100%);
  --grad-stage-fade: linear-gradient(180deg, #1E1726 0%, #110B19 100%);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
body {
  background: var(--diamond-deeper);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--stage-gold); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--stage-gold-bright); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400; /* Bungee is display-only single weight */
  letter-spacing: 1px;
  line-height: 1.15;
  color: var(--cream);
  margin: 0;
}

.t-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--stage-gold);
  margin-bottom: 14px;
}

.accent { color: var(--stage-gold); font-style: italic; }
.accent-crimson { color: var(--crimson-curtain); }
.accent-cream { color: var(--cream); }

.gold-text {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.outlined-gold {
  -webkit-text-stroke: 1.5px var(--stage-gold);
  color: transparent;
}

/* Divider — harlequin diamond */
.divider-glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 16px;
}
.divider-glyph .line {
  height: 2px;
  width: 70px;
  background: linear-gradient(90deg, transparent, var(--stage-gold), transparent);
}
.divider-glyph .glyph {
  color: var(--stage-gold);
  font-size: 18px;
  filter: drop-shadow(0 0 8px rgba(232,179,58,0.45));
  line-height: 1;
  transform: rotate(45deg);
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--stage-gold);
  border-radius: 2px;
}

/* ---------- Top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(30, 23, 38, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stage-divider);
}

.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(232,179,58,0.5), 0 8px 22px rgba(74,31,112,0.6);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 1.5px;
  font-weight: 400;
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.nav-links a:hover { color: var(--stage-gold); }

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--cream);
  border: none;
  cursor: pointer;
  padding: 6px;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 64px;
    right: 12px;
    background: var(--velvet-plum-light);
    border: 1px solid var(--stage-divider);
    border-radius: 14px;
    padding: 14px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    display: none;
  }
  .nav-links.open { display: flex; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17,11,25,0.55) 0%, rgba(17,11,25,0.92) 100%),
    var(--grad-stage-fade);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero_bg.webp');
  background-size: cover;
  background-position: center 20%;
  opacity: 0.55;
  z-index: 0;
  filter: contrast(1.05) saturate(1.08);
}

.hero::after {
  /* Footlight glow from below + harlequin purple stage wash */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(232,179,58,0.32) 0%, transparent 60%),
    radial-gradient(circle 360px at 22% 18%, rgba(107,47,160,0.32) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 85% 80%, rgba(201,36,63,0.18) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 84px;
  padding-bottom: 84px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(232, 179, 58, 0.12);
  border: 1px solid rgba(232, 179, 58, 0.45);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--stage-gold);
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--stage-gold);
  box-shadow: 0 0 12px var(--stage-gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 88px);
  line-height: 1.04;
  letter-spacing: 1.5px;
  margin: 0 0 22px 0;
  font-weight: 400;
  color: var(--cream);
  text-shadow: 0 6px 32px rgba(74,31,112,0.6);
}

.hero-title .row { display: block; }
.hero-title .row.italic { font-style: italic; color: var(--stage-gold); }
.hero-title .row.outline { -webkit-text-stroke: 1.5px var(--stage-gold); color: transparent; }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-on-dark-muted);
  max-width: 640px;
  margin: 0 0 36px 0;
  text-align: left;
  font-style: italic;
  line-height: 1.6;
}
.hero-sub strong { color: var(--cream); font-style: normal; font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  min-height: 52px;
}

.btn-primary {
  background: var(--grad-cta);
  color: var(--cream);
  box-shadow: 0 8px 28px rgba(74, 31, 112, 0.55), inset 0 1px 0 rgba(255,255,255,0.18);
  border: 1px solid rgba(232,179,58,0.3);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.1); color: var(--cream); box-shadow: 0 12px 36px rgba(74, 31, 112, 0.7), inset 0 1px 0 rgba(255,255,255,0.22); }

.btn-gold {
  background: var(--grad-gold);
  color: var(--ink-black);
  box-shadow: 0 8px 26px rgba(232, 179, 58, 0.42), inset 0 1px 0 rgba(255,255,255,0.45);
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.07); color: var(--ink-black); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(232,179,58,0.55);
}
.btn-ghost:hover { border-color: var(--stage-gold); color: var(--stage-gold); background: rgba(232,179,58,0.06); }

/* ---------- Sections ---------- */

section.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(32px, 5.2vw, 52px);
  letter-spacing: 1.5px;
  margin: 0 0 8px;
  color: var(--cream);
  font-weight: 400;
}

.section-head p {
  max-width: 700px;
  margin: 14px auto 0;
  color: var(--text-on-dark-muted);
  font-family: var(--font-body);
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
}

/* ---------- Stat strip ---------- */

.stat-strip {
  background:
    linear-gradient(135deg, rgba(232,179,58,0.08) 0%, rgba(107,47,160,0.10) 100%),
    var(--diamond-deeper);
  padding: 56px 0;
  border-top: 1px solid var(--stage-divider);
  border-bottom: 1px solid var(--stage-divider);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 58px);
  color: var(--stage-gold);
  letter-spacing: 1px;
  line-height: 1;
  font-weight: 400;
  text-shadow: 0 0 24px rgba(232,179,58,0.35);
}
.stat .num.purple { color: var(--harlequin-purple-glow); text-shadow: 0 0 24px rgba(142, 69, 194, 0.4); }
.stat .num.crimson { color: var(--crimson-curtain); text-shadow: 0 0 24px rgba(201, 36, 63, 0.4); }
.stat .num.cream { color: var(--cream); text-shadow: none; }
.stat .lbl {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-top: 12px;
  font-weight: 400;
}

@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 18px; }
}

/* ---------- Features grid ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.feature-card {
  background:
    linear-gradient(180deg, rgba(58,44,82,0.92) 0%, rgba(30,23,38,0.96) 100%);
  border: 1px solid var(--stage-divider);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,179,58,0.55);
  box-shadow: 0 14px 40px rgba(0,0,0,0.55);
}
.feature-card:hover::before { opacity: 1; }

.feature-card .ico {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 179, 58, 0.14);
  border: 1px solid rgba(232, 179, 58, 0.45);
  color: var(--stage-gold);
  margin-bottom: 18px;
  font-size: 24px;
}
.feature-card.alt .ico {
  background: rgba(107, 47, 160, 0.18);
  border-color: rgba(142, 69, 194, 0.5);
  color: var(--harlequin-purple-glow);
}
.feature-card.crimson .ico {
  background: rgba(201, 36, 63, 0.16);
  border-color: rgba(201, 36, 63, 0.5);
  color: var(--crimson-curtain);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  letter-spacing: 0.8px;
  margin: 0 0 10px;
  color: var(--cream);
  font-weight: 400;
}

.feature-card p {
  margin: 0;
  color: var(--text-on-dark-muted);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ---------- Wild Five (the troupe / pentad-equivalent) ---------- */

.troupe-section {
  background:
    radial-gradient(ellipse 60% 60% at 50% 30%, rgba(74,31,112,0.4) 0%, transparent 70%),
    var(--diamond-deeper);
  position: relative;
}

.troupe-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.troupe-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--velvet-plum);
  border: 2px solid var(--stage-gold-bright);
  box-shadow: 0 12px 30px rgba(0,0,0,0.55), 0 0 28px rgba(232,179,58,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.troupe-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,0.65), 0 0 38px rgba(240,200,74,0.35); }

.troupe-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--diamond-black);
}

.troupe-card .label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(17,11,25,0.94) 60%);
  padding: 30px 12px 12px;
  text-align: center;
}
.troupe-card .label .name {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--cream);
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}
.troupe-card .label .domain {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--stage-gold);
  margin-top: 4px;
  display: block;
}

@media (max-width: 920px) {
  .troupe-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .troupe-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Rank ladder ---------- */

.rank-ladder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 36px auto 0;
  max-width: 980px;
}

.rank-pill {
  position: relative;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 400;
  background: transparent;
  color: var(--text-on-dark-muted);
  border: 1.5px solid rgba(232, 179, 58, 0.35);
  transition: all 0.25s ease;
}
.rank-pill .num {
  display: inline-block;
  color: var(--stage-gold);
  margin-right: 8px;
  font-size: 11px;
  opacity: 0.7;
}
.rank-pill.active {
  background: var(--harlequin-purple);
  color: var(--cream);
  border-color: var(--stage-gold);
  box-shadow: 0 0 18px rgba(232,179,58,0.45);
}
.rank-pill.crowned {
  background: var(--grad-gold);
  color: var(--ink-black);
  border-color: var(--stage-gold-bright);
  box-shadow: 0 0 24px rgba(240,200,74,0.55);
}

/* ---------- Screenshots Swiper ---------- */

.screens-wrap {
  position: relative;
  padding: 0 8px;
}

.screen-frame {
  width: 240px;
  max-width: 60vw;
  aspect-ratio: 1260 / 2736;
  margin: 0 auto;
  background: var(--diamond-deeper);
  border-radius: 32px;
  padding: 10px;
  border: 1.5px solid var(--stage-divider);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(232, 179, 58, 0.22),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}

.screen-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 6px;
  background: #000;
  border-radius: 4px;
  z-index: 2;
}

.screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.swiper { padding: 30px 0 50px; }
.swiper-pagination-bullet { background: var(--text-on-dark-faded); opacity: 0.65; }
.swiper-pagination-bullet-active { background: var(--stage-gold); opacity: 1; }
.swiper-button-next, .swiper-button-prev { color: var(--stage-gold); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 22px; font-weight: 800; }

.screen-caption {
  text-align: center;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  font-weight: 400;
}

/* ---------- Commentary card (atmosphere) ---------- */

.commentary-card {
  background:
    linear-gradient(180deg, rgba(232,179,58,0.06) 0%, var(--velvet-plum) 100%);
  border: 1.5px solid var(--stage-gold);
  border-radius: 18px;
  padding: 40px 36px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
}
.commentary-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--stage-gold);
  line-height: 1;
  opacity: 0.45;
}

.commentary-card .stamp {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(232,179,58,0.14);
  border: 1.5px solid var(--stage-gold);
  color: var(--stage-gold);
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 999px;
  margin-bottom: 18px;
}

.commentary-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 36px);
  letter-spacing: 1px;
  margin: 0 0 14px;
  color: var(--cream);
  font-weight: 400;
}

.commentary-card .verbatim {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--stage-gold);
  letter-spacing: 0.3px;
  margin: 20px 0;
  padding: 20px 24px;
  background: rgba(232,179,58,0.07);
  border-left: 3px solid var(--stage-gold);
  border-radius: 0 12px 12px 0;
  line-height: 1.55;
}

.commentary-card .body-text {
  color: var(--text-on-dark-muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.commentary-card .body-text strong { color: var(--cream); font-weight: 600; }

/* ---------- AI disclosure strip ---------- */

.ai-strip {
  margin-top: 40px;
  background: var(--diamond-deeper);
  border: 1px dashed rgba(232,179,58,0.4);
  border-radius: 14px;
  padding: 20px 26px;
  color: var(--text-on-dark-muted);
  font-size: 15px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  line-height: 1.6;
}

.ai-strip .ico-ai {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,179,58,0.12);
  border: 1px solid rgba(232,179,58,0.45);
  color: var(--stage-gold);
}
.ai-strip strong { color: var(--cream); }

/* ---------- CTA section ---------- */

.cta-section {
  position: relative;
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--diamond-deeper) 0%, #08050F 100%);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 480px at 50% 40%, rgba(232,179,58,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(201,36,63,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.2vw, 72px);
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.05;
}
.cta-section h2 .stroke {
  -webkit-text-stroke: 2px var(--stage-gold);
  color: transparent;
  font-style: italic;
}

.cta-section p {
  color: var(--text-on-dark-muted);
  font-size: 18px;
  font-style: italic;
  max-width: 580px;
  margin: 0 auto 32px;
}

/* ---------- Page hero (legal/contact) ---------- */

.page-hero {
  padding: 96px 0 56px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(232,179,58,0.16) 0%, transparent 65%),
    linear-gradient(180deg, var(--diamond-black), var(--diamond-deeper));
  text-align: center;
  border-bottom: 1px solid var(--stage-divider);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6.5vw, 64px);
  letter-spacing: 1.5px;
  color: var(--cream);
  font-weight: 400;
}

.page-hero .sub {
  margin: 18px auto 0;
  color: var(--text-on-dark-muted);
  font-size: 17px;
  font-style: italic;
  max-width: 640px;
}

/* ---------- Legal content ---------- */

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
}

.legal-content .meta {
  display: inline-block;
  font-family: var(--font-heading);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--stage-gold);
  margin-bottom: 28px;
  font-weight: 400;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin: 40px 0 14px;
  color: var(--cream);
  letter-spacing: 1px;
  font-weight: 400;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  margin: 26px 0 10px;
  color: var(--cream);
  letter-spacing: 0.5px;
  font-weight: 400;
}

.legal-content p, .legal-content ul, .legal-content ol {
  margin: 0 0 14px;
  text-align: left;
}
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--cream); font-weight: 600; }
.legal-content em { color: var(--text-on-dark); }
.legal-content a { color: var(--stage-gold); text-decoration: underline; text-decoration-color: rgba(232,179,58,0.4); }
.legal-content a:hover { color: var(--stage-gold-bright); text-decoration-color: var(--stage-gold-bright); }

/* ---------- Contact ---------- */

.contact-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

.contact-card {
  background: var(--velvet-plum);
  border: 1px solid var(--stage-divider);
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--text-on-dark-muted);
  margin-bottom: 8px;
  font-weight: 400;
}

.field input, .field textarea {
  width: 100%;
  background: var(--diamond-deeper);
  border: 1px solid var(--stage-divider);
  border-radius: 10px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-on-dark-faded); }
.field input:focus, .field textarea:focus {
  border-color: var(--stage-gold);
  box-shadow: 0 0 0 3px rgba(232,179,58,0.18);
}
.field textarea { min-height: 140px; resize: vertical; }

.contact-info {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--stage-divider);
  color: var(--text-on-dark-muted);
  font-size: 14px;
  text-align: center;
}

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

/* ---------- Footer ---------- */

footer {
  background: #08050F;
  border-top: 1px solid var(--stage-divider);
  padding: 64px 0 30px;
  color: var(--text-on-dark-muted);
  font-size: 14.5px;
}

footer .inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

footer h5 {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 14px;
  font-weight: 400;
}

footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
footer a { color: var(--text-on-dark-muted); }
footer a:hover { color: var(--stage-gold); }

footer .col-brand p {
  margin: 14px 0 0;
  max-width: 320px;
  line-height: 1.6;
  font-style: italic;
}

.compliance-footer {
  border-top: 1px solid var(--stage-divider);
  padding-top: 22px;
  margin-top: 12px;
  color: var(--text-on-dark-faded);
  font-size: 13px;
  text-align: center;
  line-height: 1.75;
}
.compliance-footer .strong {
  color: var(--cream);
  font-weight: 600;
}

footer .legal {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-on-dark-faded);
}

@media (max-width: 800px) {
  footer .inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  footer .inner { grid-template-columns: 1fr; }
}

/* ---------- Privacy acceptance button ---------- */

.privacy-accept-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 16px 22px;
  background: linear-gradient(180deg, rgba(8,5,15,0) 0%, #08050F 38%);
  display: flex;
  justify-content: center;
}
.privacy-accept-btn.hidden { display: none; }

.accept-btn {
  width: 100%;
  max-width: 440px;
  min-height: 56px;
  border: 1px solid rgba(232,179,58,0.3);
  background: var(--grad-cta);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: var(--radius-btn);
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(74,31,112,0.6), inset 0 1px 0 rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 0 24px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.accept-btn:hover { transform: translateY(-1px); filter: brightness(1.1); }

/* ---------- Utility ---------- */

.section-bg-alt { background: linear-gradient(180deg, var(--diamond-black) 0%, var(--diamond-deeper) 100%); }
.muted { color: var(--text-on-dark-muted); }
.tag-pill {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stage-divider);
  color: var(--text-on-dark-muted);
  margin: 4px 4px 4px 0;
}
.tag-pill.gold { color: var(--stage-gold); border-color: rgba(232,179,58,0.45); background: rgba(232,179,58,0.08); }
.tag-pill.purple { color: var(--harlequin-purple-glow); border-color: rgba(142,69,194,0.45); background: rgba(107,47,160,0.10); }
.tag-pill.crimson { color: var(--crimson-curtain); border-color: rgba(201,36,63,0.45); background: rgba(201,36,63,0.10); }

/* ---------- Responsive ---------- */

@media (max-width: 760px) {
  section.section { padding: 70px 0; }
  .hero { min-height: auto; }
  .hero .container { padding-top: 60px; padding-bottom: 60px; }
  .commentary-card { padding: 26px 22px; }
  .contact-card { padding: 28px 22px; }
  .legal-content { padding: 44px 16px 80px; }
  .rank-pill { font-size: 11px; padding: 10px 16px; letter-spacing: 1.4px; }
}
