/* ============================================================
   Bet4win Brasil — design tokens
   ============================================================ */
:root {
  --ink: #0B0E14;
  --ink-panel: #151A24;
  --ink-raised: #1C2230;
  --gold: #E8B94A;
  --gold-soft: #F3D384;
  --gold-deep: #B8862C;
  --ember: #FF6B35;
  --ember-soft: #FF8C5A;
  --ember-deep: #C64A1E;
  --jade: #1FAE7A;
  --parchment: #F5EDE0;
  --muted: #A8A0AF;

  --font-display: "Archivo Black", sans-serif;
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;

  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 900px 500px at 12% -8%, rgba(232, 185, 74, 0.10), transparent 60%),
    radial-gradient(ellipse 800px 600px at 88% 12%, rgba(255, 107, 53, 0.08), transparent 55%);
  background-attachment: fixed;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--parchment);
  margin: 0;
}

p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: rgba(232, 185, 74, 0.35);
  color: var(--ink);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.no-scroll { overflow: hidden; }

.bg-noise {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
  transition: all 0.2s ease-out;
}

.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn--primary {
  background: linear-gradient(90deg, var(--ember), var(--ember), var(--gold));
  color: var(--ink);
  box-shadow: 0 12px 32px -10px rgba(255, 107, 53, 0.55);
}
.btn--primary:hover:not(:disabled) {
  filter: brightness(1.1);
  box-shadow: 0 16px 40px -10px rgba(255, 107, 53, 0.7);
}

.btn--secondary {
  background: var(--ink-raised);
  color: var(--parchment);
  border: 1px solid rgba(232, 185, 74, 0.3);
}
.btn--secondary:hover:not(:disabled) {
  border-color: rgba(232, 185, 74, 0.7);
  background: var(--ink-panel);
}

.btn--lg { padding: 1.1rem 2rem; font-size: 1.1rem; border-radius: var(--radius-xl); }
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.9rem; }
.btn--block { width: 100%; }

.link-underline {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--parchment);
  opacity: 0.7;
  text-decoration: underline;
  text-decoration-color: rgba(232, 185, 74, 0.3);
  text-underline-offset: 4px;
  transition: opacity 0.2s, color 0.2s;
}
.link-underline:hover { opacity: 1; color: var(--gold); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  transition: all 0.3s;
}
.site-header.is-scrolled {
  background: rgba(11, 14, 20, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 185, 74, 0.15);
  box-shadow: 0 8px 30px -15px rgba(0,0,0,0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--parchment);
}
.logo__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(232, 185, 74, 0.5);
  color: var(--gold);
}
.logo__mark svg { animation: spin-slower 40s linear infinite; }
.logo__win { color: var(--ember); }

.main-nav {
  display: none;
}
.main-nav__list {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}
.main-nav__link {
  padding: 0.5rem 0.85rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(245, 237, 224, 0.75);
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
}
.main-nav__link:hover { color: var(--gold); background: rgba(255,255,255,0.05); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-switch { position: relative; display: none; }
.lang-switch__toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: rgba(245, 237, 224, 0.8);
  border-radius: 0.5rem;
}
.lang-switch__toggle:hover { color: var(--gold); background: rgba(255,255,255,0.05); }
.lang-switch__toggle svg.chevron { transition: transform 0.2s; }
.lang-switch.is-open .chevron { transform: rotate(180deg); }
.lang-switch__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 160px;
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 185, 74, 0.2);
  background: var(--ink-panel);
  box-shadow: 0 20px 45px -20px rgba(0,0,0,0.65);
  display: none;
}
.lang-switch.is-open .lang-switch__menu { display: block; }
.lang-switch__option {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.5rem 0.6rem;
  font-size: 0.9rem;
  border-radius: 0.4rem;
  color: rgba(245, 237, 224, 0.8);
}
.lang-switch__option:hover { color: var(--gold); background: rgba(255,255,255,0.05); }
.lang-switch__option[aria-selected="true"] { color: var(--gold); }

.header-login {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(245, 237, 224, 0.8);
  border-radius: 0.5rem;
}
.header-login:hover { color: var(--gold); background: rgba(255,255,255,0.05); }

.icon-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 0.6rem;
  border: 1px solid rgba(232, 185, 74, 0.2);
  background: transparent;
  color: var(--parchment);
}
.icon-btn:hover { color: var(--gold); border-color: rgba(232, 185, 74, 0.5); }

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .lang-switch { display: block; }
  .header-login { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ============================================================
   Mobile drawer
   ============================================================ */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-drawer.is-open { opacity: 1; pointer-events: auto; }
.mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,14,20,0.8);
  backdrop-filter: blur(4px);
}
.mobile-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 85%;
  max-width: 360px;
  background: var(--ink-panel);
  border-left: 1px solid rgba(232, 185, 74, 0.15);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.16,1,.3,1);
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-drawer__link {
  padding: 0.85rem 0.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: rgba(245, 237, 224, 0.85);
  border-radius: 0.5rem;
}
.mobile-drawer__link:hover { color: var(--gold); background: rgba(255,255,255,0.05); }

.mobile-drawer__lang {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 185, 74, 0.1);
}
.mobile-drawer__lang-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.mobile-drawer__lang-list { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.mobile-drawer__lang-option {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 185, 74, 0.15);
  background: transparent;
  color: rgba(245, 237, 224, 0.7);
  font-size: 0.85rem;
}
.mobile-drawer__lang-option[aria-pressed="true"] {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232, 185, 74, 0.1);
}

.mobile-drawer__auth {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 1024px) { .mobile-drawer { display: none; } }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 8.5rem 0 4rem;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero__glow--ember {
  top: -8rem; left: -6rem; width: 420px; height: 420px;
  background: rgba(255,107,53,0.2); filter: blur(110px);
}
.hero__glow--gold {
  top: 2.5rem; right: -6rem; width: 480px; height: 480px;
  background: rgba(232,185,74,0.15); filter: blur(120px);
}
.hero__ring {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  border-radius: 999px;
  border: 1px solid rgba(232, 185, 74, 0.1);
  display: none;
}
.hero__ring::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 999px;
  border: 1px dashed rgba(232, 185, 74, 0.15);
  animation: spin-slower 40s linear infinite;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 185, 74, 0.3);
  background: rgba(232, 185, 74, 0.05);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__title {
  margin-top: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.hero__title-highlight {
  display: block;
  margin-top: 0.25rem;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(245, 237, 224, 0.7);
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero__controls {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__nav-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(232, 185, 74, 0.2);
  background: transparent;
  color: rgba(245, 237, 224, 0.7);
}
.hero__nav-btn:hover { color: var(--gold); border-color: rgba(232, 185, 74, 0.5); }

.hero__dots { display: flex; align-items: center; gap: 0.5rem; }
.hero__dot {
  height: 6px;
  width: 6px;
  border-radius: 999px;
  border: none;
  background: rgba(245, 237, 224, 0.2);
  transition: all 0.3s;
}
.hero__dot:hover { background: rgba(245, 237, 224, 0.4); }
.hero__dot.is-active {
  width: 32px;
  background: linear-gradient(90deg, var(--gold), var(--ember));
}

.hero__media { position: relative; }
.hero__media-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(232, 185, 74, 0.2);
  box-shadow: 0 0 0 1px rgba(232,185,74,0.25), 0 18px 40px -12px rgba(232,185,74,0.25);
}
.hero__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink), transparent 60%);
  opacity: 0.6;
}

.hero__pill {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  width: 100px;
  height: 100px;
  border-radius: 999px;
  background: var(--ink-panel);
  border: 1px solid rgba(232, 185, 74, 0.25);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 20px 45px -20px rgba(0,0,0,0.65);
  animation: float 6s ease-in-out infinite;
}
.hero__pill-value { font-family: var(--font-display); color: var(--gold); font-size: 1.4rem; line-height: 1; }
.hero__pill-label { font-size: 0.65rem; color: rgba(245, 237, 224, 0.6); margin-top: 0.25rem; }

@media (min-width: 1024px) {
  .hero { padding-top: 10rem; }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
  .hero__ring { display: block; }
  .hero__media-frame { max-width: none; }
}

/* ============================================================
   Activity strip
   ============================================================ */
.activity-strip {
  padding: 0.5rem 0;
}
.activity-strip__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.activity-strip__track::-webkit-scrollbar { display: none; }

.activity-card {
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 185, 74, 0.12);
  background: rgba(21, 26, 36, 0.7);
  padding: 0.75rem;
  transition: all 0.3s;
}
.activity-card:hover {
  border-color: rgba(232, 185, 74, 0.35);
  transform: translateY(-4px);
}
.activity-card__thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 0.85rem;
  overflow: hidden;
}
.activity-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.activity-card__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(11,14,20,0.85);
  border: 1px solid rgba(232,185,74,0.3);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.activity-card__title { margin-top: 0.75rem; font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; }
.activity-card__meta { margin-top: 0.2rem; font-size: 0.78rem; color: rgba(245, 237, 224, 0.55); }
.activity-card__value { margin-top: 0.35rem; font-size: 0.9rem; font-weight: 700; color: var(--gold); }

@media (min-width: 1024px) {
  .activity-strip__track { display: grid; grid-template-columns: repeat(5, 1fr); overflow: visible; }
  .activity-card { width: auto; }
}

/* ============================================================
   Section heading + content grid
   ============================================================ */
.section { padding: 5rem 0; position: relative; }
.section-eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ember);
}
.section-title {
  margin-top: 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
}
.section-title .accent { color: var(--gold); }
.section-lead {
  margin-top: 1rem;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(245, 237, 224, 0.65);
}
.section-lead.centered { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

.content-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .content-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .content-grid { grid-template-columns: repeat(3, 1fr); } }

.content-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(232, 185, 74, 0.12);
  background: var(--ink-panel);
  box-shadow: 0 20px 45px -20px rgba(0,0,0,0.65);
  transition: all 0.3s;
}
.content-card:hover { border-color: rgba(232, 185, 74, 0.4); transform: translateY(-4px); }
.content-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.content-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.content-card:hover .content-card__media img { transform: scale(1.1); }
.content-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--ink), rgba(11,14,20,0.1) 60%, transparent);
  opacity: 0.9;
}
.content-card__badge {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 1;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--ember);
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
}
.content-card__body { padding: 1rem; }
.content-card__category {
  font-size: 0.7rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 107, 53, 0.9);
}
.content-card__title { margin-top: 0.25rem; font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; line-height: 1.3; }
.content-card__desc { margin-top: 0.5rem; font-size: 0.85rem; line-height: 1.55; color: rgba(245, 237, 224, 0.55); }

/* ============================================================
   Promo banner
   ============================================================ */
.promo-banner {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(232, 185, 74, 0.3);
  background: linear-gradient(135deg, var(--ink-panel), var(--ink-raised), var(--ink-panel));
  box-shadow: 0 0 0 1px rgba(232,185,74,0.25), 0 18px 40px -12px rgba(232,185,74,0.25);
  overflow: hidden;
  display: grid;
}
.promo-banner__glow-a { position: absolute; top: -5rem; right: -5rem; width: 280px; height: 280px; border-radius: 999px; background: rgba(232,185,74,0.1); filter: blur(90px); }
.promo-banner__glow-b { position: absolute; bottom: -6rem; left: 2.5rem; width: 260px; height: 260px; border-radius: 999px; background: rgba(255,107,53,0.1); filter: blur(90px); }
.promo-banner__copy { position: relative; padding: 2.5rem 1.75rem; }
.promo-banner__title { margin-top: 1.25rem; font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.2; }
.promo-banner__text { margin-top: 1rem; max-width: 30rem; color: rgba(245, 237, 224, 0.65); line-height: 1.6; }
.promo-banner__cta { margin-top: 2rem; }
.promo-banner__media { position: relative; min-height: 240px; }
.promo-banner__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-banner__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--ink-panel), transparent 55%);
}

@media (min-width: 1024px) {
  .promo-banner { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .promo-banner__copy { padding: 4rem; }
  .promo-banner__media { min-height: 100%; }
  .promo-banner__media::after { background: linear-gradient(to right, var(--ink-panel), transparent 45%); }
}

/* ============================================================
   Benefits
   ============================================================ */
.benefits-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

.benefit-card {
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 185, 74, 0.12);
  background: rgba(21, 26, 36, 0.6);
  padding: 1.75rem;
  transition: all 0.3s;
}
.benefit-card:hover { border-color: rgba(232, 185, 74, 0.35); transform: translateY(-4px); }
.benefit-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(232,185,74,0.15), rgba(255,107,53,0.1));
  border: 1px solid rgba(232, 185, 74, 0.25);
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.benefit-card__title { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }
.benefit-card__text { margin-top: 0.5rem; font-size: 0.9rem; line-height: 1.6; color: rgba(245, 237, 224, 0.6); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  margin-top: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 185, 74, 0.12);
  background: rgba(21, 26, 36, 0.6);
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--parchment);
}
.faq-item__question svg { color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.is-open .faq-item__question svg { transform: rotate(180deg); }
.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
}
.faq-item.is-open .faq-item__answer { grid-template-rows: 1fr; }
.faq-item__answer-inner { overflow: hidden; }
.faq-item__answer p {
  padding: 0 1.35rem 1.1rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(245, 237, 224, 0.65);
}

/* ============================================================
   CTA section
   ============================================================ */
.cta-box {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(232, 185, 74, 0.25);
  background: linear-gradient(to bottom, var(--ink-panel), var(--ink-raised));
  padding: 3rem 1.5rem;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  inset: -6rem 0 auto 0;
  height: 14rem;
  background: rgba(232, 185, 74, 0.1);
  filter: blur(100px);
}
.cta-box__title { position: relative; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; }
.cta-box__text { position: relative; margin: 1rem auto 0; max-width: 34rem; color: rgba(245, 237, 224, 0.65); line-height: 1.6; }
.cta-box__actions { position: relative; margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }

@media (min-width: 1024px) { .cta-box { padding: 4.5rem 3rem; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid rgba(232, 185, 74, 0.1);
  background: rgba(21, 26, 36, 0.6);
  padding: 3.5rem 0;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand__text { margin-top: 1rem; font-size: 0.9rem; line-height: 1.6; color: rgba(245, 237, 224, 0.55); max-width: 20rem; }
.footer-social { margin-top: 1.25rem; display: flex; gap: 0.75rem; }
.footer-social a {
  display: grid; place-items: center; width: 36px; height: 36px;
  border-radius: 999px; border: 1px solid rgba(232, 185, 74, 0.15);
  color: rgba(245, 237, 224, 0.6);
}
.footer-social a:hover { color: var(--gold); border-color: rgba(232, 185, 74, 0.45); }

.footer-col__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col__list { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col__list a { font-size: 0.9rem; color: rgba(245, 237, 224, 0.6); }
.footer-col__list a:hover { color: var(--gold); }
.footer-col p { margin-top: 1rem; font-size: 0.9rem; line-height: 1.6; color: rgba(245, 237, 224, 0.6); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 185, 74, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom__copy { font-size: 0.75rem; color: rgba(245, 237, 224, 0.45); }
.footer-bottom__notice { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: rgba(245, 237, 224, 0.5); }
.age-badge {
  display: grid; place-items: center; width: 24px; height: 24px;
  border-radius: 0.4rem; border: 1px solid rgba(232, 185, 74, 0.25);
  color: var(--gold); font-weight: 700; font-size: 0.6rem;
}
.footer-bottom__notice svg { color: var(--ember); flex-shrink: 0; }

/* ============================================================
   Animations
   ============================================================ */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-slower { to { transform: rotate(360deg); } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
