/* ===================================================================
   SelecionaPlay — styles.css
   Tema: Umbrel (dark, calmo, muito ar, acento sóbrio)
   BEM · container comum · CSS custom properties do tema
   =================================================================== */

:root {
  /* Cores (tokens do tema Umbrel) */
  --color-void: #000000;
  --color-graphite: #191919;
  --color-charcoal: #3d3d3d;
  --color-warm-smoke: #61635d;
  --color-shadow: #292929;
  --color-white: #ffffff;
  --color-fog: #cccccc;
  --color-ash: #9e9e9e;
  --color-steel-lilac: #797985;
  --color-ember: #e3a081;   /* acento quente, narrativo */
  --color-violet: #5351f3;  /* acento frio, ação */

  /* Superfícies */
  --surface-0: #000000;
  --surface-1: #101010;
  --surface-2: #191919;
  --surface-3: #202020;

  /* Tipografia */
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --feat: "cv03", "cv04", "cv09", "cv11";

  /* Escala tipográfica */
  --text-caption: 12px;
  --text-body: 16px;
  --text-sub: 18px;
  --text-h-sm: 20px;
  --text-h: 27px;
  --text-h-lg: 36px;
  --text-display: 48px;

  /* Espaçamento (com ar generoso) */
  --gap: 10px;
  --pad-card: 24px;
  --section-y: clamp(64px, 9vw, 120px);
  --container: 1120px;
  --container-pad: clamp(20px, 5vw, 40px);

  /* Raios */
  --r-icon: 5px;
  --r-image: 12px;
  --r-card: 16px;
  --r-input: 24px;
  --r-button: 24px;
  --r-pill: 99px;
  --r-app: 22%;

  /* Sombras (recipes suaves do tema) */
  --shadow-soft: rgba(0, 0, 0, 0.24) -12px -12px 32px 0px;
  --shadow-warm: rgba(104, 65, 13, 0.23) 0px 10px 20px 0px;

  --header-h: 76px;
}

/* ------------------ Reset leve ------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background: var(--color-void);
  color: var(--color-white);
  font-family: var(--font);
  font-size: var(--text-body);
  line-height: 1.5;
  font-feature-settings: var(--feat);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ------------------ Utilitários ------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--color-white); color: var(--color-void);
  padding: 10px 18px; border-radius: var(--r-button); font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

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

.accent { color: var(--color-ember); }

/* ------------------ Botões ------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--r-button);
  padding: 12px 22px;
  font-size: 14px; font-weight: 500; letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--color-white); color: var(--color-void); border-color: var(--color-white);
}
.btn--primary:hover { background: #ececec; border-color: #ececec; }
.btn--ghost {
  background: transparent; color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost:hover { border-color: var(--color-white); background: rgba(255, 255, 255, 0.05); }
.btn--full { width: 100%; }

/* ------------------ Header / Nav (pill flutuante) ------------------ */
.header {
  position: sticky; top: 0; z-index: 100;
  padding-top: 16px;
  transition: padding .2s ease;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--color-graphite);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-pill);
  padding: 10px 12px 10px 22px;
  box-shadow: var(--shadow-warm);
}
.header.is-scrolled .header__inner { background: rgba(20, 20, 20, 0.92); backdrop-filter: blur(10px); }
.logo {
  font-size: 19px; font-weight: 700; letter-spacing: 0.02em;
  text-transform: uppercase; color: var(--color-white);
}
.logo__accent { color: var(--color-ember); }
.header__nav { display: flex; align-items: center; gap: 4px; }
.header__link {
  font-size: 13px; font-weight: 500; color: var(--color-fog);
  padding: 8px 12px; border-radius: var(--r-pill);
  transition: color .15s ease, background-color .15s ease;
}
.header__link:hover { color: var(--color-white); background: rgba(255, 255, 255, 0.06); }
.header__actions { display: flex; align-items: center; gap: 8px; }
.header__cta { padding: 9px 18px; font-size: 13px; }
.burger {
  display: none;
  width: 42px; height: 42px; border-radius: var(--r-pill);
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-white); align-items: center; justify-content: center;
}
.burger svg { width: 20px; height: 20px; }
.burger .burger__close { display: none; }
.burger[aria-expanded="true"] .burger__open { display: none; }
.burger[aria-expanded="true"] .burger__close { display: block; }

/* Menu móvel */
.mobile-menu {
  display: none;
  margin-top: 10px;
  background: var(--color-graphite);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-card);
  padding: 12px;
  box-shadow: var(--shadow-warm);
}
.mobile-menu.is-open { display: block; }
.mobile-menu__list { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu__link {
  display: block; padding: 13px 14px; border-radius: 12px;
  font-size: 15px; font-weight: 500; color: var(--color-fog);
}
.mobile-menu__link:hover { background: rgba(255, 255, 255, 0.06); color: var(--color-white); }
.mobile-menu__cta { margin-top: 8px; }

@media (max-width: 820px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .burger { display: flex; }
}

/* ------------------ Secções base ------------------ */
.section { padding-block: var(--section-y); }
.section__head { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-ember);
  margin-bottom: 16px;
}
.section__title {
  font-size: var(--text-h-lg); font-weight: 600; line-height: 1.15; letter-spacing: -0.03em;
  color: var(--color-white);
}
.section__subtitle {
  margin-top: 16px; color: var(--color-fog); font-size: var(--text-sub); line-height: 1.5;
}

/* ------------------ Hero ------------------ */
.hero {
  position: relative;
  text-align: center;
  padding-top: clamp(56px, 9vw, 104px);
  padding-bottom: clamp(64px, 9vw, 112px);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; opacity: 0.9;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 80% at 50% -10%, rgba(227,160,129,0.16) 0%, rgba(0,0,0,0) 55%),
              linear-gradient(180deg, rgba(0,0,0,0) 55%, #000 100%);
}
.hero__inner { max-width: 720px; margin-inline: auto; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-graphite); border: 1px solid rgba(255,255,255,0.07);
  color: var(--color-fog); font-size: 12px; font-weight: 500;
  padding: 7px 14px; border-radius: var(--r-pill); margin-bottom: 28px;
}
.hero__badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-ember); }
.hero__title {
  font-size: var(--text-display); font-weight: 600; line-height: 1.06; letter-spacing: -0.04em;
  color: var(--color-white);
}
@media (max-width: 640px) { .hero__title { font-size: 34px; } }
.hero__subtitle {
  margin-top: 22px; margin-inline: auto; max-width: 560px;
  color: var(--color-fog); font-size: var(--text-sub); line-height: 1.55;
}
.hero__actions { margin-top: 34px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__showcase {
  margin-top: clamp(48px, 7vw, 72px);
  display: flex; gap: clamp(12px, 2.5vw, 22px); justify-content: center; align-items: center; flex-wrap: wrap;
}
.hero__icon {
  width: clamp(56px, 11vw, 76px); aspect-ratio: 1;
  border-radius: var(--r-app);
  overflow: hidden; background: var(--color-graphite);
  box-shadow: var(--shadow-warm);
}
.hero__icon img { width: 100%; height: 100%; object-fit: cover; }
.hero__note { margin-top: 26px; font-size: 12px; color: var(--color-steel-lilac); }

/* ------------------ Jogos (catálogo) ------------------ */
.games__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 32px);
}
@media (max-width: 900px) { .games__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .games__grid { grid-template-columns: 1fr; } }
.game {
  display: flex; flex-direction: column;
  background: var(--color-graphite);
  border-radius: var(--r-card);
  padding: var(--pad-card);
  transition: transform .2s ease, background-color .2s ease;
}
.game:hover { transform: translateY(-3px); background: #1d1d1d; }
.game__top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.game__icon {
  width: 64px; height: 64px; flex: none;
  border-radius: var(--r-app); overflow: hidden; background: var(--color-shadow);
}
.game__icon img { width: 100%; height: 100%; object-fit: cover; }
.game__meta { min-width: 0; }
.game__name { font-size: var(--text-h-sm); font-weight: 600; letter-spacing: -0.02em; color: var(--color-white); }
.game__dev { font-size: 13px; color: var(--color-steel-lilac); margin-top: 3px; }
.game__genre {
  align-self: flex-start;
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-ember); background: rgba(227,160,129,0.10);
  padding: 5px 10px; border-radius: var(--r-pill); margin-bottom: 14px;
}
.game__desc { font-size: 14px; line-height: 1.55; color: var(--color-fog); flex: 1; }
.game__rating { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.game__score { font-size: 14px; font-weight: 600; color: var(--color-white); }
.game__foot { margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.game__free { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: var(--color-ash); text-transform: uppercase; }
.game__btn { padding: 10px 16px; font-size: 13px; }
.game__btn svg { width: 15px; height: 15px; }

/* Estrelas (SVG com preenchimento fracionário) */
.stars { position: relative; display: inline-block; line-height: 0; }
.stars__row { display: flex; gap: 2px; }
.stars__row svg { width: 16px; height: 16px; }
.stars__base svg { color: var(--color-charcoal); }
.stars__fill {
  position: absolute; top: 0; left: 0; overflow: hidden; white-space: nowrap;
}
.stars__fill svg { color: var(--color-ember); }

/* ------------------ Método / porquê confiar ------------------ */
.method__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 28px);
}
@media (max-width: 900px) { .method__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .method__grid { grid-template-columns: 1fr; } }
.pillar {
  background: var(--color-graphite); border-radius: var(--r-card); padding: var(--pad-card);
}
.pillar__icon {
  width: 44px; height: 44px; border-radius: var(--r-image);
  background: rgba(227,160,129,0.10); color: var(--color-ember);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.pillar__icon svg { width: 22px; height: 22px; }
.pillar__title { font-size: var(--text-sub); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.pillar__text { font-size: 14px; line-height: 1.55; color: var(--color-fog); }

/* ------------------ FAQ ------------------ */
.faq__list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--color-graphite); border-radius: var(--r-card); overflow: hidden; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: transparent; border: 0; color: var(--color-white);
  padding: 20px 24px; font-size: var(--text-sub); font-weight: 500; letter-spacing: -0.01em; text-align: left;
}
.faq__q:hover { color: var(--color-fog); }
.faq__chevron { flex: none; width: 20px; height: 20px; color: var(--color-ash); transition: transform .25s ease; }
.faq__item--open .faq__chevron { transform: rotate(180deg); color: var(--color-ember); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq__a-inner { padding: 0 24px 22px; color: var(--color-fog); font-size: 15px; line-height: 1.6; }

/* ------------------ Demonstração (screenshots) ------------------ */
.demo__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 24px);
  max-width: 900px; margin-inline: auto;
}
@media (max-width: 760px) { .demo__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .demo__grid { grid-template-columns: 1fr; max-width: 300px; } }
.shot {
  position: relative; border-radius: var(--r-image); overflow: hidden;
  background: var(--color-graphite); box-shadow: var(--shadow-soft);
}
.shot__frame { aspect-ratio: 9 / 16; }
.shot__frame img { width: 100%; height: 100%; object-fit: cover; }
.shot__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 12px 10px; font-size: 12px; font-weight: 500; color: var(--color-fog);
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
}

/* ------------------ Transparência / como ganhamos ------------------ */
.earn__wrap {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 64px); align-items: center;
}
@media (max-width: 820px) { .earn__wrap { grid-template-columns: 1fr; } }
.earn__title { font-size: var(--text-h-lg); font-weight: 600; letter-spacing: -0.03em; line-height: 1.15; }
.earn__lead { margin-top: 18px; color: var(--color-fog); font-size: var(--text-sub); line-height: 1.55; }
.earn__list { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.earn__item { display: flex; gap: 14px; }
.earn__num {
  flex: none; width: 30px; height: 30px; border-radius: var(--r-pill);
  background: var(--color-graphite); color: var(--color-ember);
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600;
}
.earn__item h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.earn__item p { font-size: 14px; line-height: 1.55; color: var(--color-fog); }
.earn__note { margin-top: 26px; font-size: 13px; color: var(--color-steel-lilac); }
.earn__note a { color: var(--color-fog); text-decoration: underline; text-underline-offset: 3px; }
.earn__card {
  background: var(--color-graphite); border-radius: var(--r-card); padding: clamp(24px, 4vw, 36px);
}
.earn__card-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.earn__card-row:last-child { border-bottom: 0; }
.earn__card-k { font-size: 14px; color: var(--color-fog); }
.earn__card-v { font-size: 14px; font-weight: 600; color: var(--color-white); }
.earn__card-v.is-accent { color: var(--color-ember); }

/* ------------------ Estatísticas ------------------ */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.2vw, 26px); }
@media (max-width: 720px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: var(--color-graphite); border-radius: var(--r-card); padding: clamp(24px, 3vw, 32px);
  text-align: center;
}
.stat__num { font-size: clamp(32px, 5vw, 44px); font-weight: 700; letter-spacing: -0.03em; color: var(--color-white); line-height: 1; }
.stat__num .u { color: var(--color-ember); }
.stat__label { margin-top: 12px; font-size: 13px; color: var(--color-fog); line-height: 1.45; }

/* ------------------ Depoimentos ------------------ */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
@media (max-width: 820px) { .reviews__grid { grid-template-columns: 1fr; } }
.review {
  background: var(--color-graphite); border-radius: var(--r-card); padding: var(--pad-card);
  display: flex; flex-direction: column; gap: 16px;
}
.review__quote { font-size: 15px; line-height: 1.6; color: var(--color-fog); flex: 1; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 42px; height: 42px; flex: none; border-radius: var(--r-pill);
  background: var(--color-charcoal); color: var(--color-white);
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
}
.review__name { font-size: 14px; font-weight: 600; color: var(--color-white); }
.review__role { font-size: 12px; color: var(--color-steel-lilac); margin-top: 2px; }

/* ------------------ Formulário de subscrição ------------------ */
.subscribe__wrap {
  max-width: 720px; margin-inline: auto;
  background: var(--color-graphite); border-radius: var(--r-card);
  padding: clamp(28px, 5vw, 48px); text-align: center;
}
.subscribe__title { font-size: var(--text-h); font-weight: 600; letter-spacing: -0.03em; }
.subscribe__text { margin-top: 12px; color: var(--color-fog); font-size: 15px; line-height: 1.55; }
.form { margin-top: 28px; text-align: left; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.form__field { margin-bottom: 14px; }
.form__label { display: block; font-size: 13px; color: var(--color-fog); margin-bottom: 7px; }
.form__input {
  width: 100%; background: var(--color-void); color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-input);
  padding: 13px 18px; font-size: 15px; font-family: inherit;
  transition: border-color .15s ease;
}
.form__input::placeholder { color: var(--color-steel-lilac); }
.form__input:focus { outline: none; border-color: var(--color-ember); }
.form__consent { display: flex; align-items: flex-start; gap: 11px; margin: 6px 0 22px; }
.form__consent input { margin-top: 3px; width: 18px; height: 18px; flex: none; accent-color: var(--color-ember); }
.form__consent label { font-size: 13px; line-height: 1.5; color: var(--color-fog); }
.form__consent a { color: var(--color-white); text-decoration: underline; text-underline-offset: 3px; }
.form__success {
  display: none; margin-top: 24px; text-align: center;
  background: rgba(227,160,129,0.08); border: 1px solid rgba(227,160,129,0.22);
  border-radius: var(--r-card); padding: 26px 24px;
}
.form__success.is-visible { display: block; }
.form__success svg { width: 40px; height: 40px; color: var(--color-ember); margin-bottom: 12px; }
.form__success h3 { font-size: var(--text-sub); font-weight: 600; margin-bottom: 6px; }
.form__success p { font-size: 14px; color: var(--color-fog); }

/* ------------------ Footer ------------------ */
.footer { border-top: 1px solid rgba(255,255,255,0.07); padding-block: clamp(48px, 7vw, 72px) 32px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand-name { font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }
.footer__tag { margin-top: 12px; font-size: 13px; line-height: 1.55; color: var(--color-steel-lilac); max-width: 300px; }
.footer__col-title { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-ash); margin-bottom: 16px; }
.footer__list { display: flex; flex-direction: column; gap: 11px; }
.footer__link { font-size: 14px; color: var(--color-fog); transition: color .15s ease; }
.footer__link:hover { color: var(--color-white); }
.footer__bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer__copy { font-size: 13px; color: var(--color-steel-lilac); }
.footer__mail { font-size: 13px; color: var(--color-fog); }
.footer__mail a { color: var(--color-white); text-decoration: underline; text-underline-offset: 3px; }

/* ------------------ Botão "para o topo" ------------------ */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: var(--r-pill);
  background: var(--color-violet); color: var(--color-white); border: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  box-shadow: var(--shadow-warm);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: #6462ff; }
.to-top svg { width: 20px; height: 20px; }

/* ------------------ Cookie banner ------------------ */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 120;
  max-width: 560px; margin-inline: auto;
  background: var(--color-graphite); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-card); padding: 20px 22px;
  box-shadow: var(--shadow-warm);
  display: none;
}
.cookie.is-visible { display: block; }
.cookie__text { font-size: 13px; line-height: 1.55; color: var(--color-fog); }
.cookie__text a { color: var(--color-white); text-decoration: underline; text-underline-offset: 3px; }
.cookie__actions { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__actions .btn { padding: 10px 18px; font-size: 13px; }

/* ------------------ Páginas legais ------------------ */
.legal { padding-block: clamp(48px, 7vw, 88px); }
.legal__head { max-width: 760px; margin-inline: auto; margin-bottom: 40px; }
.legal__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--color-fog); margin-bottom: 24px;
}
.legal__back:hover { color: var(--color-white); }
.legal__back svg { width: 16px; height: 16px; }
.legal__title { font-size: var(--text-h-lg); font-weight: 600; letter-spacing: -0.03em; }
.legal__updated { margin-top: 12px; font-size: 13px; color: var(--color-steel-lilac); }
.legal__body { max-width: 760px; margin-inline: auto; }
.legal__body h2 {
  font-size: var(--text-h-sm); font-weight: 600; letter-spacing: -0.02em;
  color: var(--color-white); margin-top: 40px; margin-bottom: 12px;
}
.legal__body h3 { font-size: 16px; font-weight: 600; margin-top: 24px; margin-bottom: 8px; }
.legal__body p { color: var(--color-fog); font-size: 15px; line-height: 1.65; margin-bottom: 14px; }
.legal__body ul { margin: 0 0 14px; padding-left: 22px; list-style: disc; }
.legal__body li { color: var(--color-fog); font-size: 15px; line-height: 1.6; margin-bottom: 8px; }
.legal__body a { color: var(--color-white); text-decoration: underline; text-underline-offset: 3px; }
.legal__table { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: 14px; }
.legal__table th, .legal__table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.08); vertical-align: top; }
.legal__table th { color: var(--color-white); font-weight: 600; }
.legal__table td { color: var(--color-fog); }
