/* =======================================================================
   PrimeGo — hoja de estilos principal
   Base azul acero muy oscura con acentos neón: lima ácida, aqua y magenta.
   Tipografía: Unbounded (titulares) + Onest (texto).
   ======================================================================= */

/* ---------- 1. Variables ---------- */
:root {
  /* Superficies */
  --bg: #070b16;
  --bg-soft: #0a1020;
  --bg-card: #0e1526;
  --bg-card-hover: #131d33;
  --bg-top: #101c2b;
  --bg-deep: #05080f;

  /* Acentos */
  --lime: #cdfa4d;
  --lime-soft: #e6ff8f;
  --lime-glow: rgba(205, 250, 77, .22);

  --aqua: #2ee8d5;
  --aqua-soft: #7ff5e8;
  --aqua-glow: rgba(46, 232, 213, .16);

  --magenta: #ff4d9d;

  /* Texto */
  --text: #eef4ff;
  --text-muted: #93a6c6;
  --text-dim: #61759a;
  --ink: #071018;

  /* Bordes */
  --border: rgba(255, 255, 255, .07);
  --border-strong: rgba(255, 255, 255, .14);
  --border-lime: rgba(205, 250, 77, .4);
  --border-aqua: rgba(46, 232, 213, .3);

  /* Formas */
  --radius-xl: 26px;
  --radius: 18px;
  --radius-sm: 12px;
  --pill: 999px;

  --header-h: 66px;
  --agebar-h: 38px;
  --container: 1120px;

  --font-display: "Unbounded", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Onest", "Segoe UI", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.32, .72, 0, 1);
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--agebar-h) + 16px);
}

body,
h1, h2, h3, h4,
p, ul, ol, figure { margin: 0; }

ul, ol { padding: 0; }

body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }

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

/* ---------- 3. Utilidades ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.container--center {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 5px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .03);
  color: var(--aqua);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.section-lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: var(--pill);
  font-size: .93rem;
  font-weight: 700;
  text-align: center;
  transition: transform .2s var(--ease), background .2s var(--ease),
              box-shadow .25s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}

.btn--primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(205, 250, 77, .22);
}

.btn--primary:hover {
  background: var(--lime-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(205, 250, 77, .32);
}

.btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: rgba(255, 255, 255, .03);
}

.btn--ghost:hover {
  border-color: var(--aqua);
  color: var(--aqua);
  transform: translateY(-2px);
}

/* Aparición progresiva */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ---------- 4. Barra de aviso ---------- */
.agebar {
  position: sticky;
  top: 0;
  z-index: 51;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--agebar-h);
  padding: 0 16px;
  /* Degradado opaco: mismo aspecto que la versión translúcida, pero no deja pasar el contenido al hacer scroll. */
  background: linear-gradient(90deg, #171e1a 0%, #0f1a20 55%, #0a1d25 100%);
  border-bottom: 1px solid var(--border);
}

.agebar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 800;
}

.agebar__text {
  color: var(--text-muted);
  font-size: .78rem;
  line-height: 1.35;
  text-align: center;
}

/* ---------- 5. Header ---------- */
.header {
  position: sticky;
  top: var(--agebar-h);
  z-index: 50;
  width: 100%;
  background: rgba(7, 11, 22, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(7, 11, 22, .96);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 1240px;
  height: var(--header-h);
  margin: 0 auto;
  padding: 0 20px;
}

.header__logo-link { display: flex; align-items: center; flex-shrink: 0; }
.header__logo { width: auto; height: 46px; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.header__nav-link {
  position: relative;
  padding: 8px 14px;
  border-radius: var(--pill);
  color: var(--text-muted);
  font-size: .87rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color .2s var(--ease), background .2s var(--ease);
}

.header__nav-link:hover {
  background: rgba(255, 255, 255, .05);
  color: var(--lime);
}

.header__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 34px;
  border: 1px solid var(--border-lime);
  border-radius: var(--pill);
  color: var(--lime);
  font-size: .72rem;
  font-weight: 800;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.header__age:hover { background: var(--lime); color: var(--ink); }

.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .05);
  transition: background .2s var(--ease);
}

.header__burger:hover { background: rgba(255, 255, 255, .1); }

.header__burger-lines,
.header__burger-lines::before,
.header__burger-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}

.header__burger-lines { position: relative; }

.header__burger-lines::before,
.header__burger-lines::after { content: ""; position: absolute; left: 0; }
.header__burger-lines::before { top: -6px; }
.header__burger-lines::after { top: 6px; }

.header__burger[aria-expanded="true"] .header__burger-lines { background: transparent; }
.header__burger[aria-expanded="true"] .header__burger-lines::before { transform: translateY(6px) rotate(45deg); background: var(--lime); }
.header__burger[aria-expanded="true"] .header__burger-lines::after { transform: translateY(-6px) rotate(-45deg); background: var(--lime); }

.header__mobile-nav {
  position: absolute;
  top: calc(100% + 8px);
  left: 12px;
  right: 12px;
  z-index: 49;
  display: flex;
  flex-direction: column;
  padding: 8px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #0a1120;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .6);
}

.header__mobile-link {
  display: block;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: .95rem;
  font-weight: 600;
  transition: color .2s var(--ease), background .2s var(--ease);
}

.header__mobile-link:hover {
  background: rgba(205, 250, 77, .1);
  color: var(--lime);
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding: clamp(52px, 8vw, 96px) 20px clamp(44px, 6vw, 72px);
  overflow: hidden;
  background: var(--bg);
}

/* Rejilla diagonal tenue */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(65deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 46px 46px, 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 20%, transparent 75%);
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.hero__blob--lime {
  top: -160px;
  left: 8%;
  width: 460px;
  height: 340px;
  background: rgba(205, 250, 77, .16);
}

.hero__blob--aqua {
  right: 2%;
  bottom: -180px;
  width: 480px;
  height: 360px;
  background: rgba(46, 232, 213, .14);
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .03);
  color: var(--text-muted);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.hero__pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.hero__pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--lime);
  animation: pulseRing 2.4s ease-out infinite;
}

@keyframes pulseRing {
  0%   { transform: scale(.6); opacity: .9; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hero__title {
  max-width: 15ch;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.2vw, 2.9rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero__highlight {
  color: var(--lime);
  background-image: linear-gradient(transparent 64%, rgba(205, 250, 77, .22) 64%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__tagline {
  max-width: 620px;
  color: var(--text-muted);
  font-size: clamp(.95rem, 1.6vw, 1.08rem);
  line-height: 1.75;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 720px;
  margin-top: 18px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
  text-align: left;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--aqua);
}

.hero__stat:nth-child(2) .hero__stat-value { color: var(--lime); }
.hero__stat:nth-child(3) .hero__stat-value { color: var(--magenta); }

.hero__stat-label {
  color: var(--text-dim);
  font-size: .8rem;
  line-height: 1.4;
}

/* ---------- 7. Cinta animada ---------- */
.ticker {
  overflow: hidden;
  padding: 11px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerScroll 34s linear infinite;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
}

.ticker__item {
  color: var(--text-dim);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker__dot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--lime);
  transform: rotate(45deg);
}

.ticker__group .ticker__item:nth-child(4n + 3) { color: var(--text-muted); }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 8. Divulgación ---------- */
.disclosure {
  padding: 9px 20px;
  background: rgba(255, 77, 157, .05);
  border-bottom: 1px solid rgba(255, 77, 157, .13);
  text-align: center;
}

.disclosure__text {
  color: var(--text-dim);
  font-size: .77rem;
  line-height: 1.5;
}

.disclosure__link {
  color: var(--magenta);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- 9. Ranking ---------- */
.offers { padding: clamp(44px, 6vw, 72px) 0; }

.offers__header { text-align: center; }

.offers__updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  color: var(--text-dim);
  font-size: .76rem;
}

.offers__live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 0 rgba(46, 232, 213, .6);
  animation: liveDot 2.2s ease-out infinite;
}

@keyframes liveDot {
  0%   { box-shadow: 0 0 0 0 rgba(46, 232, 213, .55); }
  70%  { box-shadow: 0 0 0 8px rgba(46, 232, 213, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 232, 213, 0); }
}

.offers__grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 36px;
}

.offer {
  position: relative;
  display: grid;
  grid-template-columns: 232px 1fr 236px;
  gap: 26px;
  padding: 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color .3s var(--ease), background .3s var(--ease),
              transform .3s var(--ease), box-shadow .35s var(--ease),
              opacity .7s var(--ease);
}

.offer:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .4);
}

.offer__chip {
  position: absolute;
  top: -11px;
  left: 26px;
  padding: 4px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--pill);
  background: var(--bg-soft);
  color: var(--text-muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer__chip--top {
  border-color: transparent;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(205, 250, 77, .28);
}

/* Tarjeta líder */
.offer--top {
  background:
    radial-gradient(ellipse 60% 120% at 0% 0%, rgba(205, 250, 77, .08), transparent 60%),
    var(--bg-top);
  border-color: var(--border-lime);
}

.offer--top:hover {
  border-color: var(--lime);
  box-shadow: 0 24px 54px rgba(205, 250, 77, .12);
}

/* Columna de marca */
.offer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 26px;
  border-right: 1px solid var(--border);
}

.offer__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}

.offer__logo-wrap:hover {
  background: rgba(255, 255, 255, .07);
  border-color: var(--border-strong);
}

.offer__logo { width: 100%; height: auto; }

.offer__score {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.offer__score-value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--text);
}

.offer--top .offer__score-value { color: var(--lime); }

.offer__score-max {
  color: var(--text-dim);
  font-size: .82rem;
  font-weight: 600;
}

.offer__meter {
  height: 5px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .07);
  overflow: hidden;
}

.offer__meter-fill {
  display: block;
  height: 100%;
  border-radius: var(--pill);
  background: linear-gradient(90deg, var(--aqua), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s .25s var(--ease);
}

.offer.is-visible .offer__meter-fill { transform: scaleX(1); }

/* Columna central */
.offer__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.offer__description {
  color: var(--text-muted);
  font-size: .96rem;
  line-height: 1.75;
}

.offer__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: auto;
  list-style: none;
}

.offer__feature {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .025);
  color: var(--text-muted);
  font-size: .79rem;
}

.offer__check { color: var(--lime); font-weight: 800; }

/* Columna de acción */
.offer__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-left: 26px;
  border-left: 1px solid var(--border);
}

.offer__payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.offer__pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 5px 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  color: var(--text-dim);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.offer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border-aqua);
  color: var(--aqua);
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease),
              transform .2s var(--ease), box-shadow .25s var(--ease);
}

.offer__btn:hover {
  background: var(--aqua);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(46, 232, 213, .25);
}

.offer__btn--top {
  border-color: transparent;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(205, 250, 77, .25);
}

.offer__btn--top:hover {
  background: var(--lime-soft);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(205, 250, 77, .35);
}

.offer__tc {
  color: var(--text-dim);
  font-size: .68rem;
  line-height: 1.45;
  text-align: center;
}

/* ---------- 10. Metodología ---------- */
.how {
  padding: clamp(48px, 6vw, 78px) 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 60% at 100% 0%, rgba(46, 232, 213, .05), transparent 60%),
    var(--bg-soft);
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.how__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease),
              box-shadow .3s var(--ease), opacity .7s var(--ease);
}

.how__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--aqua));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

.how__card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

.how__card:hover::before { transform: scaleX(1); }

.how__number {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, .045);
  user-select: none;
}

.how__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.how__icon svg { width: 22px; height: 22px; }

.how__icon--lime {
  background: var(--lime-glow);
  border: 1px solid rgba(205, 250, 77, .25);
  color: var(--lime);
}

.how__icon--aqua {
  background: var(--aqua-glow);
  border: 1px solid var(--border-aqua);
  color: var(--aqua);
}

.how__card-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.02em;
}

.how__card-text {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.75;
}

/* ---------- 11. Medios de pago ---------- */
.pay { padding: clamp(48px, 6vw, 78px) 0; }

.pay__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.pay__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease), transform .3s var(--ease), opacity .7s var(--ease);
}

.pay__card:hover {
  border-color: var(--border-aqua);
  transform: translateY(-4px);
}

.pay__tag {
  align-self: flex-start;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .05);
  color: var(--text-dim);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pay__card:first-child .pay__tag { background: var(--lime-glow); color: var(--lime); }
.pay__card:nth-child(2) .pay__tag { background: var(--aqua-glow); color: var(--aqua); }

.pay__name {
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: -.02em;
}

.pay__time {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--aqua);
}

.pay__note {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: .84rem;
  line-height: 1.7;
}

/* ---------- 12. Transparencia ---------- */
.trust { padding: 0 0 clamp(48px, 6vw, 78px); }

.trust__box {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 50% 120% at 100% 50%, rgba(255, 77, 157, .07), transparent 60%),
    var(--bg-card);
}

.trust__title {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -.025em;
}

.trust__body {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.8;
}

.trust__badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  font-size: .85rem;
  font-weight: 600;
}

.trust__badge span { color: var(--lime); font-weight: 800; }

/* ---------- 13. Preguntas frecuentes ---------- */
.faq {
  padding: clamp(48px, 6vw, 78px) 0;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 40px auto 0;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color .3s var(--ease), background .3s var(--ease),
              opacity .7s var(--ease), transform .7s var(--ease);
}

.faq__item:hover { border-color: var(--border-strong); }
.faq__item.is-open { border-color: var(--border-lime); background: var(--bg-top); }

.faq__item h3 { margin: 0; font-size: inherit; font-weight: inherit; }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  text-align: left;
  transition: color .2s var(--ease);
}

.faq__question:hover { color: var(--lime); }

.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .35s var(--ease);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  border-radius: 2px;
  background: var(--lime);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}

.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__question[aria-expanded="true"] .faq__icon {
  background: var(--lime);
  border-color: var(--lime);
  transform: rotate(180deg);
}

.faq__question[aria-expanded="true"] .faq__icon::before { background: var(--ink); }
.faq__question[aria-expanded="true"] .faq__icon::after { opacity: 0; }

.faq__answer {
  padding: 0 22px 22px;
  color: var(--text-muted);
  font-size: .89rem;
  line-height: 1.8;
}

/* ---------- 14. Juego responsable ---------- */
.responsible { padding: clamp(48px, 6vw, 78px) 0; }

.responsible__box {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--border-lime);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 40% 120% at 0% 50%, rgba(205, 250, 77, .08), transparent 60%),
    var(--bg-card);
}

.responsible__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.responsible__title {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -.025em;
}

.responsible__text {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.8;
}

.responsible__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 14px;
  color: var(--text-dim);
  font-size: .83rem;
  list-style: none;
}

.responsible__links a {
  color: var(--aqua);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- 15. Footer ---------- */
.footer {
  margin-top: auto;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 20px 30px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 28px;
}

.footer__link {
  color: var(--text-muted);
  font-size: 13px;
  transition: color .2s var(--ease);
}

.footer__link:hover { color: var(--lime); }

.footer__notice {
  max-width: 860px;
  margin: 0 auto 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .02);
}

.footer__notice-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer__age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 800;
}

.footer__notice-title {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
}

.footer__notice-text {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer__support {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
  margin-top: 18px;
}

.footer__helper {
  color: var(--aqua);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__legal {
  max-width: 860px;
  margin: 0 auto 22px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .012);
}

.footer__legal-title {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
  color: var(--text);
}

.footer__legal-block { margin-bottom: 16px; }
.footer__legal-block:last-child { margin-bottom: 0; }

.footer__legal-subtitle {
  margin-bottom: 5px;
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 700;
}

.footer__legal-text {
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.7;
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 8px;
  color: var(--text-dim);
  font-size: 12px;
  list-style: none;
}

.footer__legal-links a,
.footer__legal-link { color: var(--aqua); text-decoration: underline; text-underline-offset: 3px; }

.footer__copy {
  color: var(--text-dim);
  font-size: 12px;
  text-align: center;
}

/* ---------- 16. Volver arriba ---------- */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-lime);
  border-radius: 16px;
  background: rgba(14, 21, 38, .92);
  color: var(--lime);
  font-size: 1.1rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.to-top:hover {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-3px);
}

/* ---------- 17. Verificación de edad ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(5, 8, 15, .93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.age-gate__card {
  width: 100%;
  max-width: 460px;
  padding: 36px 30px;
  border: 1px solid var(--border-lime);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(205, 250, 77, .1), transparent 65%),
    var(--bg-card);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}

.age-gate__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.age-gate__kicker {
  margin-bottom: 10px;
  color: var(--text-dim);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.age-gate__title {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.age-gate__text {
  color: var(--text-muted);
  font-size: .89rem;
  line-height: 1.75;
}

.age-gate__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.age-gate__accept,
.age-gate__decline {
  padding: 14px 16px;
  border-radius: var(--pill);
  font-size: .88rem;
  font-weight: 700;
  transition: transform .2s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.age-gate__accept {
  border: 0;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(205, 250, 77, .25);
}

.age-gate__accept:hover { background: var(--lime-soft); transform: translateY(-2px); }

.age-gate__decline {
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-muted);
}

.age-gate__decline:hover { color: var(--text); border-color: var(--text-dim); }

/* ---------- 18. Acceso denegado ---------- */
.denied {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
}

.denied__card {
  width: 100%;
  max-width: 480px;
  padding: 40px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  text-align: center;
}

.denied__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  border: 1px solid var(--border-lime);
  border-radius: 20px;
  background: var(--lime-glow);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 800;
}

.denied__kicker {
  margin-bottom: 10px;
  color: var(--text-dim);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.denied__title {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -.03em;
}

.denied__text {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.75;
}

.denied__button {
  margin-top: 24px;
  padding: 13px 26px;
  border: 1px solid var(--border-strong);
  border-radius: var(--pill);
  background: transparent;
  color: var(--text);
  font-size: .89rem;
  font-weight: 600;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}

.denied__button:hover { border-color: var(--lime); color: var(--lime); }

/* =======================================================================
   19. Páginas internas (about, legales, contacto, 404)
   ======================================================================= */
.page {
  position: relative;
  flex: 1;
  padding: clamp(34px, 5vw, 60px) 0 clamp(48px, 6vw, 84px);
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  top: -220px;
  left: 50%;
  width: 620px;
  height: 380px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(205, 250, 77, .09);
  filter: blur(100px);
  pointer-events: none;
}

.container--narrow {
  position: relative;
  max-width: 820px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--text-dim);
  font-size: .78rem;
}

.breadcrumbs a { transition: color .2s var(--ease); }
.breadcrumbs a:hover { color: var(--lime); }
.breadcrumbs span[aria-current] { color: var(--text-muted); }

.page__title {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.page__updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  color: var(--text-dim);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.page__lead {
  margin-top: 22px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.8;
}

.prose { margin-top: 30px; }

.prose h2 {
  margin: 38px 0 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -.025em;
}

.prose h2:first-child { margin-top: 0; }

.prose h2 .prose__num {
  margin-right: 10px;
  color: var(--lime);
  font-weight: 700;
}

.prose h3 {
  margin: 24px 0 8px;
  font-size: .98rem;
  font-weight: 700;
  color: var(--aqua);
}

.prose p {
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.85;
}

.prose ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.prose li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 26px;
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.75;
}

.prose li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 6px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--lime);
  transform: rotate(45deg);
}

.prose strong { color: var(--text); font-weight: 700; }

.prose a {
  color: var(--aqua);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s var(--ease);
}

.prose a:hover { color: var(--aqua-soft); }

.prose__weight {
  margin-left: 8px;
  padding: 3px 9px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .05);
  color: var(--text-dim);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* Bloques reutilizados dentro del cuerpo de texto */
.prose .pay__grid {
  grid-template-columns: repeat(2, 1fr);
  margin: 22px 0 30px;
}

.prose .pay__name {
  margin: 0;
  color: var(--text);
  font-size: .95rem;
}

.prose .pay__time { margin: 0; color: var(--aqua); }
.prose .pay__note { margin: 0; }

.prose .faq__list {
  max-width: none;
  margin: 22px 0 0;
}

.prose .faq__item h3 {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.prose .faq__answer p:last-child { margin-bottom: 0; }

.prose__box {
  margin: 26px 0;
  padding: 24px;
  border: 1px solid var(--border-lime);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 50% 130% at 0% 50%, rgba(205, 250, 77, .07), transparent 60%),
    var(--bg-card);
}

.prose__box h3 { margin-top: 0; color: var(--lime); }
.prose__box p:last-child, .prose__box ul:last-child { margin-bottom: 0; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.info-card:hover { border-color: var(--border-aqua); transform: translateY(-3px); }

.info-card__label {
  color: var(--text-dim);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.info-card__value {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.02em;
  overflow-wrap: anywhere;
}

.info-card__value a { color: var(--lime); text-decoration: none; }
.info-card__value a:hover { text-decoration: underline; }

.info-card__note {
  color: var(--text-muted);
  font-size: .84rem;
  line-height: 1.65;
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 60% 130% at 100% 50%, rgba(46, 232, 213, .07), transparent 60%),
    var(--bg-card);
}

.page-cta__title {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -.02em;
}

.page-cta__text {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.7;
}

/* 404 */
.notfound {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 10vw, 120px) 20px;
  text-align: center;
}

.notfound__code {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.06em;
  background: linear-gradient(135deg, var(--lime), var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.notfound__title {
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -.03em;
}

.notfound__text {
  max-width: 460px;
  margin: 0 auto 28px;
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.8;
}

.notfound__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-top: 28px;
  font-size: .84rem;
}

.notfound__links a { color: var(--text-dim); transition: color .2s var(--ease); }
.notfound__links a:hover { color: var(--aqua); }

/* =======================================================================
   20. Responsive
   ======================================================================= */
@media (max-width: 1040px) {
  .offer { grid-template-columns: 200px 1fr 210px; gap: 20px; padding: 24px; }
  .offer__brand { padding-right: 20px; }
  .offer__action { padding-left: 20px; }
}

@media (max-width: 900px) {
  .offer {
    grid-template-columns: 200px 1fr;
    grid-template-areas:
      "brand body"
      "action action";
  }
  .offer__brand { grid-area: brand; }
  .offer__body { grid-area: body; }
  .offer__action {
    grid-area: action;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0 0;
    border-top: 1px solid var(--border);
    border-left: none;
  }
  .offer__btn { width: auto; min-width: 200px; order: 2; }
  .offer__payments { order: 1; }
  .offer__tc { order: 3; width: 100%; text-align: center; }

  .pay__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__box { grid-template-columns: 1fr; gap: 26px; padding: 30px 26px; }
  .trust__badges { flex-direction: row; flex-wrap: wrap; }
  .trust__badge { flex: 1 1 180px; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__burger { display: flex; order: 3; }
  .header__age { order: 2; margin-left: auto; }
  .header__logo-link { order: 1; }
  .header__logo { height: 38px; }

  .how__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; max-width: 420px; }
  .hero__stat { flex-direction: row; align-items: baseline; gap: 10px; }
}

@media (max-width: 640px) {
  .offer {
    grid-template-columns: 1fr;
    grid-template-areas: "brand" "body" "action";
    gap: 18px;
    padding: 22px 18px;
  }

  .offer__chip { left: 18px; }

  .offer__brand {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 0 0 18px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .offer__logo-wrap { flex: 1; max-width: 190px; padding: 12px; }
  .offer__score { flex-direction: column; align-items: flex-start; gap: 0; }
  .offer__meter { display: none; }

  .offer__action { padding-top: 18px; }
  .offer__btn { width: 100%; min-width: 0; }

  .responsible__box { flex-direction: column; align-items: center; text-align: center; }
  .responsible__links { justify-content: center; }
  .footer__notice-header { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 520px) {
  .agebar { height: auto; padding: 8px 14px; }
  .agebar__text { font-size: .7rem; }
  html { scroll-padding-top: 130px; }

  .btn { width: 100%; }
  .hero__cta-row { width: 100%; }
  .hero { padding-top: 44px; }

  .pay__grid { grid-template-columns: 1fr; }
  .age-gate__actions { grid-template-columns: 1fr; }
  .age-gate__card { padding: 28px 20px; }
  .trust__box { padding: 26px 20px; }
  .responsible__box { padding: 26px 20px; }
  .faq__question { padding: 17px 18px; font-size: .9rem; }
  .faq__answer { padding: 0 18px 18px; }

  .page-cta { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
  .page-cta .btn { width: 100%; }
  .prose__box { padding: 20px 18px; }
}
