@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Sora:wght@600&display=swap");

:root {
  --header-bg: #15101c;
  --surface-dark: #17131f;
  --surface-dark-deep: #14111b;
  --surface-dark-elevated: #1e1928;
  --ink: #14111b;
  --ink-soft: #2a2436;
  --paper: #f5f1ea;
  --paper-warm: #f7f3ed;
  --plum: #4a3058;
  --plum-deep: #432a50;
  --plum-light: #6a5578;
  --plum-muted: #8a7a96;
  --lime: #c4e033;
  --line-light: rgba(20, 17, 27, 0.11);
  --line-dark: rgba(245, 241, 234, 0.14);
  --muted: #6b6474;
  --muted-light: #b8afc4;
  --on-dark: #f5f1ea;
  --on-dark-muted: #b8afc4;
  --nav-muted: #b8b0c0;
  --nav-hover: #ffffff;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Sora", system-ui, sans-serif;
  --text-h1: clamp(2.25rem, 4.2vw, 4.375rem);
  --text-h2: clamp(2.2rem, 4vw, 3.5rem);
  --text-h3: 1.0625rem;
  --text-h3-lg: 1.375rem;
  --text-body: 1rem;
  --text-lead: clamp(1rem, 1.6vw, 1.1875rem);
  --mono: ui-monospace, "SF Mono", "Consolas", monospace;
  --space-section-y: clamp(48px, 6vw, 96px);
  --space-section-y-compact: clamp(40px, 5vw, 72px);
  --space-section-x: clamp(20px, 5vw, 72px);
  --space-block: clamp(24px, 3vw, 48px);
  --space-block-sm: clamp(20px, 2.5vw, 36px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 2px solid var(--plum-light);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  z-index: 100;
  text-decoration: none;
  font-size: 14px;
}

.skip-link:focus {
  top: 12px;
}

/* ── Header ── */
.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line-dark);
  background: var(--header-bg);
  color: var(--on-dark);
}

.brand img {
  width: 108px;
  height: auto;
}

.edition {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nav-muted);
}

.edition .dot {
  color: var(--plum-muted);
  margin: 0 6px;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--sans);
}

.site-header nav a {
  text-decoration: none;
  color: var(--nav-muted);
  transition: color 0.15s;
}

.site-header nav a:hover {
  color: var(--nav-hover);
}

/* ── Shared typography ── */
.eyebrow,
.section-tag,
.step-num,
.card-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--plum-light);
  margin: 0 0 16px;
}

.section-tag {
  color: var(--plum-muted);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--text-h2);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
}

h3 {
  font-family: var(--display);
  font-size: var(--text-h3);
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(12px, 2vw, 24px);
  align-items: end;
  padding: clamp(32px, 4vw, 48px) var(--space-section-x) clamp(12px, 1.5vw, 24px);
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line-light);
}

.hero-text {
  max-width: 560px;
  align-self: start;
  padding-top: clamp(8px, 1.5vw, 16px);
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  padding: 6px 12px;
  border-radius: 2px;
}

.hero .eyebrow .flag {
  color: var(--lime);
  font-size: 10px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--text-h1);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}

.hero-intro {
  font-size: var(--text-lead);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 22px 0 0;
  max-width: 520px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 20px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-meta span::before {
  content: "✦";
  font-size: 8px;
  color: var(--plum-light);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 0;
  border-bottom: 2px solid var(--plum);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.15s, color 0.15s;
}

.hero-cta:hover {
  color: var(--plum);
  border-color: var(--lime);
}

.hero-cta .arrow {
  font-size: 18px;
  transition: transform 0.15s;
}

.hero-cta:hover .arrow {
  transform: translateX(4px);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
  width: 100%;
  min-height: 0;
}

.hero-visual img {
  width: auto;
  height: auto;
  max-height: clamp(500px, 64vh, 740px);
  max-width: min(100%, 520px);
  object-fit: contain;
  object-position: bottom center;
  transform: none;
}

.hero-visual::after {
  display: none;
}

/* ── Opiniones cards ── */
.opiniones {
  padding: var(--space-section-y) var(--space-section-x);
  background: var(--surface-dark);
  color: var(--on-dark);
}

.opiniones-header {
  max-width: 640px;
  margin-bottom: var(--space-block-sm);
}

.opiniones-header .section-tag {
  color: var(--on-dark-muted);
}

.opiniones-header .section-tag::before {
  background: var(--lime);
}

.opiniones-header h2 {
  color: var(--on-dark);
}

.opiniones-header p {
  color: var(--on-dark-muted);
  margin: 16px 0 0;
  font-size: 17px;
  max-width: 560px;
}

.observation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.observation-card {
  background: var(--surface-dark-elevated);
  padding: clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.observation-card .card-label {
  color: var(--lime);
}

.observation-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--on-dark-muted);
}

.observation-card .icon-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--plum-light);
}

/* ── Trust section ── */
.trust {
  padding: var(--space-section-y) var(--space-section-x);
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-block);
  align-items: start;
}

.trust-question h2 {
  max-width: 480px;
}

.trust-question p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 480px;
}

.trust-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line-light);
}

.trust-checklist li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
  align-items: start;
}

.check-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--plum-light);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--plum);
  flex-shrink: 0;
}

.trust-checklist li p {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.trust-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--plum);
  text-decoration: none;
}

.trust-link:hover {
  color: var(--ink);
}

/* ── Ventajas two columns ── */
.ventajas {
  padding: clamp(44px, 6.5vw, 80px) var(--space-section-x);
  background: var(--plum);
  color: var(--on-dark);
}

.ventajas-intro {
  max-width: 600px;
  margin-bottom: var(--space-block-sm);
}

.ventajas-intro .section-tag {
  color: rgba(245, 241, 234, 0.58);
}

.ventajas-intro .section-tag::before {
  background: var(--lime);
}

.ventajas-intro h2 {
  color: var(--on-dark);
}

.ventajas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
}

.ventajas-col {
  border: 1px solid var(--line-dark);
  padding: clamp(20px, 3vw, 32px);
  background: rgba(20, 17, 27, 0.22);
}

.ventajas-col h3 {
  font-family: var(--display);
  font-size: var(--text-h3-lg);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}

.ventajas-col h3 .marker {
  font-size: 14px;
  color: var(--lime);
}

.ventajas-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ventajas-col li {
  padding: 9px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.84);
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
}

.ventajas-col li::before {
  content: "+";
  color: var(--lime);
  font-weight: 600;
  font-size: 14px;
}

.ventajas-col.revisar li::before {
  content: "?";
  color: var(--plum-muted);
}

/* ── Reseña ── */
.reseña {
  padding: var(--space-section-y) var(--space-section-x);
  background: var(--paper-warm);
}

.reseña-inner {
  max-width: 920px;
}

.reseña-body h2 {
  margin-bottom: 20px;
}

.reseña-body > p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 0 32px;
}

.reseña-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line-light);
}

.reseña-point {
  padding: 20px;
  border: 1px solid var(--line-light);
  background: var(--paper);
}

.reseña-point .card-label {
  color: var(--plum-light);
  margin-bottom: 10px;
}

.reseña-point p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Juegos typographic ── */
.juegos {
  padding: var(--space-section-y) var(--space-section-x);
  background: var(--surface-dark-deep);
  color: var(--on-dark);
}

.juegos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: var(--space-block-sm);
  flex-wrap: wrap;
}

.juegos-header h2 {
  color: var(--on-dark);
  max-width: 480px;
}

.juegos-header p {
  max-width: 380px;
  color: var(--on-dark-muted);
  font-size: 15px;
  margin: 0;
}

.category-markers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  align-items: stretch;
}

.category-item {
  background: var(--surface-dark-elevated);
  padding: clamp(20px, 3vw, 32px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

.category-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--lime);
  fill: none;
  stroke-width: 1.5;
}

.category-item h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--on-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.category-item p {
  margin: 0;
  font-size: 14px;
  color: var(--on-dark-muted);
  line-height: 1.5;
}

/* ── Promociones ── */
.promociones {
  padding: var(--space-section-y-compact) var(--space-section-x);
  background: var(--paper);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.promo-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  max-width: 820px;
}

.promo-badge {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--plum-light);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--plum);
  flex-shrink: 0;
}

.promo-block h2 {
  margin-bottom: 14px;
}

.promo-block p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 640px;
}

.promo-notes {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.promo-notes li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--plum-light);
}

.promo-note-icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--plum);
  flex-shrink: 0;
}

.promo-note-icon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ── Mobile ── */
.mobile {
  padding: var(--space-section-y-compact) var(--space-section-x);
  background: var(--paper-warm);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
}

.mobile-copy h2 {
  margin-bottom: 16px;
}

.mobile-copy p {
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
  margin: 0;
}

.mobile-visual {
  width: min(220px, 42vw);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-visual img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  object-position: center;
}

/* ── Pagos ── */
.pagos {
  padding: var(--space-section-y-compact) var(--space-section-x);
  background: var(--surface-dark);
  color: var(--on-dark);
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  border-top: 1px solid var(--line-dark);
}

.pagos-intro {
  max-width: 44rem;
}

.pagos .section-tag {
  color: var(--on-dark-muted);
}

.pagos .section-tag::before {
  background: var(--lime);
}

.pagos h2 {
  color: var(--on-dark);
}

.pagos-lead,
.pagos-note {
  color: var(--on-dark-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 640px;
}

.pagos-note {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  font-size: 14px;
}

.pagos-note strong {
  color: var(--lime);
  font-weight: 600;
}

.fiat-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fiat-card,
.crypto-card {
  display: grid;
  gap: 8px;
  min-height: 8.5rem;
  padding: 20px 22px;
  background: var(--surface-dark-elevated);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
}

.fiat-card-featured,
.crypto-card-featured {
  border-color: rgba(196, 224, 51, 0.35);
  background:
    linear-gradient(145deg, rgba(196, 224, 51, 0.08), transparent 55%),
    var(--surface-dark-elevated);
}

.fiat-label,
.crypto-label {
  color: var(--lime);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fiat-symbol,
.crypto-symbol {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 600;
  color: var(--on-dark);
  line-height: 1.15;
}

.fiat-card p,
.crypto-card p {
  margin: 0;
  font-size: 14px;
  color: var(--on-dark-muted);
  line-height: 1.5;
}

.crypto-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pagos-highlights {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  overflow: hidden;
}

.pagos-highlights article {
  min-height: 8.5rem;
  padding: 20px 22px;
  background: var(--surface-dark-deep);
}

.pagos-highlights span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pagos-highlights strong {
  display: block;
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--on-dark);
  margin-bottom: 8px;
}

.pagos-highlights p {
  margin: 0;
  font-size: 14px;
  color: var(--on-dark-muted);
  line-height: 1.5;
}

/* ── Registro flow ── */
.registro {
  padding: clamp(40px, 5.5vw, 72px) var(--space-section-x);
  background: var(--surface-dark);
  color: var(--on-dark);
}

.registro-header {
  margin-bottom: var(--space-block-sm);
}

.registro-header .section-tag {
  color: var(--on-dark-muted);
}

.registro-header .section-tag::before {
  background: var(--lime);
}

.registro-header h2 {
  color: var(--on-dark);
}

.registro-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.registro-step {
  border-top: 2px solid var(--lime);
  padding-top: 18px;
}

.registro-step .step-num {
  color: var(--lime);
  margin-bottom: 12px;
}

.registro-step h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--on-dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.registro-step p {
  margin: 0;
  font-size: 14px;
  color: var(--on-dark-muted);
  line-height: 1.55;
}

/* ── Seguridad ── */
.seguridad {
  padding: var(--space-section-y-compact) var(--space-section-x);
  background: var(--paper);
}

.seguridad-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.seguridad h2 {
  margin-bottom: 16px;
}

.seguridad > .seguridad-inner > div > p {
  color: var(--muted);
  font-size: 16px;
  max-width: 440px;
  margin: 0;
}

.security-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 15px;
  color: var(--ink-soft);
}

.security-list li .check-icon {
  margin-top: 2px;
}

/* ── Verdict panel ── */
.verdict {
  padding: var(--space-section-y) var(--space-section-x);
  background: linear-gradient(135deg, var(--plum-deep) 0%, var(--surface-dark-deep) 100%);
  color: var(--on-dark);
}

.verdict-panel {
  max-width: 780px;
  border-left: 3px solid var(--lime);
  padding-left: clamp(24px, 4vw, 40px);
}

.verdict-panel .section-tag {
  color: rgba(245, 241, 234, 0.58);
}

.verdict-panel .section-tag::before {
  background: var(--lime);
}

.verdict-panel h2 {
  color: var(--on-dark);
  margin-bottom: 20px;
}

.verdict-panel > p:not(.verdict-meta) {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1rem, 1.55vw, 1.125rem);
  line-height: 1.65;
  letter-spacing: normal;
  color: rgba(245, 241, 234, 0.88);
  margin: 0 0 14px;
}

.verdict-meta {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: normal;
  color: var(--on-dark-muted);
}

.verdict-panel > p.verdict-meta {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: normal;
}

.verdict-meta a {
  color: var(--lime);
  text-decoration: none;
}

.verdict-meta a:hover {
  text-decoration: underline;
}

/* ── FAQ ── */
.faq {
  padding: var(--space-section-y) var(--space-section-x);
  background: var(--paper-warm);
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.faq-intro h2 {
  margin-bottom: 12px;
  font-size: clamp(1.95rem, 3.4vw, 3rem);
}

.faq-intro p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq details {
  border-bottom: 1px solid var(--line-light);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 36px 1fr 20px;
  gap: 12px;
  align-items: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary .q-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--plum-light);
  letter-spacing: 0.06em;
}

.faq summary .q-toggle {
  font-size: 18px;
  color: var(--plum-light);
  font-style: normal;
  transition: transform 0.2s;
}

.faq details[open] summary .q-toggle {
  transform: rotate(45deg);
}

.faq details p {
  margin: 0;
  padding: 0 0 20px 48px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
}

/* ── Footer ── */
.site-footer.global-footer {
  position: relative;
  overflow: hidden;
  color: var(--on-dark-muted);
  background: var(--header-bg);
  border-top: 2px solid rgba(196, 224, 51, 0.45);
}

.footer-minimal {
  position: relative;
  display: grid;
  width: min(calc(100% - 2rem), 72rem);
  min-height: 12.5rem;
  gap: 0.65rem;
  place-content: center;
  place-items: center;
  margin-inline: auto;
  padding-block: 1.4rem;
  text-align: center;
}

.footer-age {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  margin-bottom: 0.15rem;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-inline-nav {
  display: flex;
  max-width: 68rem;
  flex-wrap: wrap;
  gap: 0.3rem 0.55rem;
  align-items: center;
  justify-content: center;
}

.footer-inline-nav a {
  color: #dfe1e9;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration-color: rgba(196, 224, 51, 0.42);
}

.footer-inline-nav a:hover {
  color: var(--lime);
}

.footer-inline-nav span {
  color: rgba(196, 224, 51, 0.5);
  font-size: 0.72rem;
}

.footer-responsible-copy,
.footer-meta-copy,
.footer-disclosure-copy {
  max-width: 58rem;
  margin: 0;
  font-family: var(--sans);
  line-height: 1.45;
}

.footer-responsible-copy {
  color: #b8afc4;
  font-size: 0.75rem;
}

.footer-meta-copy {
  color: #8f879c;
  font-size: 0.7rem;
}

.footer-disclosure-copy {
  color: #7a7288;
  font-size: 0.68rem;
}

/* ── Service pages ── */
.service-main {
  background: var(--paper-warm);
}

.service-hero {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 8vw, 120px);
  background: var(--surface-dark);
  color: var(--on-dark);
  border-bottom: 1px solid var(--line-dark);
}

.service-hero .eyebrow {
  color: var(--on-dark-muted);
  margin-bottom: 20px;
}

.service-hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 720px;
}

.service-hero > p:last-of-type {
  margin: 20px 0 0;
  font-size: 17px;
  color: var(--on-dark-muted);
  max-width: 560px;
}

.service-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) clamp(20px, 5vw, 32px);
}

.service-block {
  padding: 0 0 36px;
  margin: 0 0 36px;
  border-bottom: 1px solid var(--line-light);
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-block h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.service-block p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
}

.service-related {
  margin-top: 8px;
  font-size: 15px;
}

.service-related a {
  color: var(--plum);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-home {
  margin-top: 48px;
  font-family: var(--sans);
  font-weight: 600;
}

.service-home a {
  color: var(--plum);
  text-decoration: none;
}

.service-home a:hover {
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .observation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-markers {
    grid-template-columns: 1fr;
  }

  .reseña-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  :root {
    --space-section-y: clamp(40px, 8vw, 64px);
    --space-section-y-compact: clamp(32px, 7vw, 52px);
    --space-block: clamp(20px, 4vw, 32px);
    --space-block-sm: clamp(16px, 3.5vw, 24px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .edition {
    grid-column: 1 / -1;
    order: 3;
  }

  .site-header nav {
    grid-column: 1 / -1;
    order: 4;
    padding-top: 8px;
    border-top: 1px solid var(--line-light);
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    padding: clamp(24px, 5vw, 36px) var(--space-section-x) clamp(20px, 4vw, 28px);
  }

  .hero-text {
    padding-top: 0;
  }

  .hero-visual {
    order: 1;
    align-self: center;
    max-width: min(320px, 82vw);
    margin-left: 0;
    margin-bottom: 0;
    justify-content: center;
  }

  .hero-visual img {
    max-height: clamp(320px, 48vh, 440px);
    max-width: 100%;
    transform: translateX(0);
    object-position: bottom center;
  }

  .trust,
  .ventajas-grid,
  .mobile,
  .seguridad-inner,
  .faq {
    grid-template-columns: 1fr;
  }

  .registro-flow {
    grid-template-columns: 1fr;
  }

  .fiat-grid,
  .crypto-grid,
  .pagos-highlights {
    grid-template-columns: 1fr;
  }

  .juegos-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-visual {
    width: min(180px, 56vw);
    justify-self: center;
  }

  .mobile-visual img {
    max-height: 220px;
  }

  .promo-notes {
    gap: 8px 14px;
  }

  .footer-minimal {
    min-height: 13.5rem;
    padding-block: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-cta .arrow,
  .faq summary .q-toggle {
    transition: none;
  }
}
