
:root {
  --bg: #060203;
  --bg-2: #110406;
  --panel: rgba(22, 9, 11, 0.72);
  --panel-strong: rgba(32, 10, 13, 0.88);
  --glass: rgba(255, 255, 255, 0.07);
  --glass-2: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.14);
  --line-red: rgba(255, 23, 52, 0.45);
  --text: #fff8ee;
  --muted: #c8b7aa;
  --soft: #8d7d76;
  --red: #ff1734;
  --red-dark: #9b0012;
  --gold: #ffca5d;
  --gold-2: #ffefb1;
  --cyan: #47f3ff;
  --green: #18d77a;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --shadow-red: 0 0 32px rgba(255, 23, 52, 0.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 36px));
  --topbar-height: 78px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font);
  background:
    radial-gradient(circle at 9% 10%, rgba(255, 23, 52, 0.24), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(255, 202, 93, 0.16), transparent 32%),
    radial-gradient(circle at 50% 80%, rgba(71, 243, 255, 0.08), transparent 35%),
    linear-gradient(135deg, #050102 0%, #120406 42%, #050304 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: auto;
  content: "";
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 38rem;
  height: 38rem;
  right: -18rem;
  top: 6rem;
  border-radius: 999px;
  background: conic-gradient(from 160deg, rgba(255,23,52,.35), transparent, rgba(255,202,93,.24), transparent, rgba(255,23,52,.35));
  filter: blur(22px);
  opacity: .72;
}

body::after {
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  opacity: .24;
}

a {
  color: inherit;
  text-decoration: none;
}

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

p {
  color: var(--muted);
  line-height: 1.72;
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.08rem);
}

strong {
  color: var(--gold-2);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 880px;
  font-size: clamp(3rem, 8vw, 7.5rem);
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(255, 23, 52, 0.28);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.5rem);
}

h3 {
  font-size: clamp(1.26rem, 2.2vw, 2rem);
}

::selection {
  background: var(--red);
  color: #fff;
}

.progress-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1000;
  background: rgba(255,255,255,.05);
}

.progress-line span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--cyan));
  box-shadow: 0 0 18px rgba(255, 23, 52, .75);
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 99;
  width: var(--container);
  min-height: var(--topbar-height);
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: .7rem .9rem .7rem 1rem;
  background: rgba(5, 2, 3, 0.58);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0,0,0,.38);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.topbar.is-scrolled {
  background: rgba(8, 2, 4, 0.88);
  border-color: rgba(255,23,52,.34);
  transform: translateY(-4px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.brand img {
  width: 210px;
  max-height: 54px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: .35rem;
}

.nav-menu a,
.footer-links a {
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  border-radius: 999px;
  padding: .76rem .95rem;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-menu a:hover,
.footer-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

.country-picker {
  position: relative;
}

.country-trigger,
.header-cta,
.btn,
.cookie-banner button,
.tab-button,
.faq-item button {
  font: inherit;
}

.country-trigger {
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: .74rem .95rem;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.country-trigger:hover,
.country-trigger[aria-expanded="true"] {
  border-color: rgba(255,202,93,.6);
  box-shadow: 0 0 0 4px rgba(255,202,93,.09);
}

.country-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 230px;
  display: grid;
  gap: .55rem;
  padding: .7rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(16, 5, 7, .94);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-8px) scale(.98);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.country-panel span {
  padding: .72rem .8rem;
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255,255,255,.05);
}

.country-panel span[aria-selected="true"] {
  color: #fff;
  background: linear-gradient(90deg, rgba(255,23,52,.2), rgba(255,202,93,.12));
}

.country-picker.is-open .country-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.header-cta,
.btn-primary,
.floating-cta,
.cookie-banner button {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #b60018 48%, #ff7034);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-red), inset 0 1px 0 rgba(255,255,255,.22);
}

.header-cta {
  border-radius: 999px;
  font-weight: 900;
  padding: .85rem 1.15rem;
  white-space: nowrap;
  transition: transform .2s ease, filter .2s ease;
}

.header-cta:hover,
.btn:hover,
.floating-cta:hover,
.cookie-banner button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section-pad,
.hero-shell,
.site-footer {
  width: var(--container);
  margin-inline: auto;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
  gap: clamp(1.3rem, 3vw, 3rem);
  align-items: center;
  min-height: calc(100vh - 108px);
  padding: clamp(3.2rem, 7vw, 7rem) 0 clamp(2rem, 5vw, 5rem);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 8% auto auto -12%;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255, 23, 52, .22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,23,52,.16), transparent 66%);
  filter: blur(.3px);
  pointer-events: none;
}

.eyebrow,
.section-label,
.offer-note {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  margin-bottom: 1.15rem;
  color: var(--gold-2);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before,
.offer-note::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
}

.hero-copy p {
  max-width: 780px;
  margin: 0 0 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .9rem 1.18rem;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, filter .22s ease;
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,202,93,.45);
}

.micro-ledger {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.2rem;
}

.micro-ledger span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem .75rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.045);
}

.micro-ledger span::before {
  content: "";
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(24,215,122,.75);
}

.hero-visual {
  position: relative;
}

.media-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 30%, rgba(255,23,52,.12));
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .55s ease, filter .55s ease;
}

.media-frame:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.media-frame figcaption {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1rem 1.1rem;
  color: #f5e7d5;
  font-size: .92rem;
  line-height: 1.55;
  background: linear-gradient(180deg, rgba(5,2,3,.72), rgba(5,2,3,.95));
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-visual .media-frame {
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.mexico-orb {
  position: absolute;
  right: -18px;
  bottom: -20px;
  display: grid;
  place-items: center;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #fff3bf, var(--gold) 38%, #7a3305 74%);
  color: #160706;
  font-weight: 1000;
  letter-spacing: .07em;
  box-shadow: 0 16px 38px rgba(0,0,0,.42), 0 0 34px rgba(255,202,93,.44);
}

.mexico-orb span {
  border: 2px solid rgba(22,7,6,.32);
  border-radius: 999px;
  padding: .28rem .42rem;
}

.summary-panel,
.security-matrix,
.bonus-lab,
.game-ribbon,
.device-stage,
.payments-hub,
.scoreboard,
.pros-audience,
.responsible-final,
.faq-wall {
  padding-block: clamp(3.4rem, 7vw, 6.8rem);
}

.summary-panel {
  position: relative;
  padding-inline: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,23,52,.1), transparent 34%),
    rgba(255,255,255,.045);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.summary-panel::before {
  content: "";
  position: absolute;
  right: -8rem;
  top: -7rem;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,202,93,.2), transparent 68%);
}

.summary-panel h2 {
  max-width: 760px;
}

.table-wrap,
.summary-panel table,
.content-card table {
  width: 100%;
}

.review-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(0,0,0,.16);
}

.review-table th,
.review-table td {
  padding: 1rem 1.05rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.review-table th {
  color: #fff;
  background: rgba(255,23,52,.16);
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-table td {
  color: var(--muted);
  line-height: 1.58;
}

.review-table tr:hover td {
  background: rgba(255,255,255,.04);
}

.review-table tr:last-child td {
  border-bottom: 0;
}

.security-matrix,
.bonus-lab,
.device-stage,
.payments-hub,
.pros-audience,
.responsible-final {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.6rem);
}

.security-matrix {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: start;
}

.content-card,
.faq-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    rgba(9, 3, 5, .66);
  box-shadow: var(--shadow);
  padding: clamp(1.15rem, 3vw, 2.1rem);
  overflow: hidden;
}

.content-card::before,
.faq-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,23,52,.14), transparent 32%, rgba(255,202,93,.08));
  pointer-events: none;
  opacity: .72;
}

.content-card > *,
.faq-card > * {
  position: relative;
  z-index: 1;
}

.steps-card {
  transform: translateY(46px);
}

.number-list,
.check-list {
  display: grid;
  gap: .72rem;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

.check-list li::marker {
  color: var(--gold);
}

.number-list li::marker {
  color: var(--red);
  font-weight: 900;
}

.bonus-lab {
  grid-template-columns: minmax(0, .93fr) minmax(340px, .82fr);
  align-items: center;
}

.offer-note {
  margin: 0 0 .85rem;
  color: var(--cyan);
}

.spotlight-frame {
  border-color: rgba(255,202,93,.22);
}

.tabs-shell {
  margin-top: 1.4rem;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  padding: .35rem;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(0,0,0,.22);
}

.tab-button {
  border: 0;
  border-radius: 999px;
  padding: .75rem 1rem;
  color: var(--muted);
  font-weight: 900;
  background: transparent;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.tab-button.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(255,23,52,.92), rgba(255,112,52,.72));
  box-shadow: 0 0 24px rgba(255,23,52,.28);
}

.tab-panels {
  margin-top: 1rem;
}

.tab-panel {
  animation: panelIn .32s ease;
}

.tab-panel[hidden] {
  display: none;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.game-ribbon {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.game-ribbon::before {
  content: "SLOTS · LIVE · BINGO · SPORTS · MXN";
  position: absolute;
  inset: 0 auto auto 50%;
  transform: translate(-50%, -26%);
  color: rgba(255,255,255,.035);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 1000;
  letter-spacing: .04em;
  white-space: nowrap;
  pointer-events: none;
}

.game-ribbon > * {
  position: relative;
  max-width: 980px;
}

.game-ribbon h3 {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: .65rem .9rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
}

.device-stage {
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1fr);
  align-items: center;
}

.device-copy {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .88fr);
  gap: clamp(1rem, 2.4vw, 1.7rem);
  align-items: start;
}

.device-copy .media-frame {
  grid-row: 1 / span 5;
  grid-column: 2;
}

.device-copy h2,
.device-copy p {
  grid-column: 1;
}

.payments-hub .payments-copy {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(340px, .74fr);
  gap: clamp(1rem, 2.4vw, 1.7rem);
  align-items: start;
}

.payments-copy h2,
.payments-copy > p,
.payments-copy > table,
.payments-copy > h3,
.payments-copy > ol {
  grid-column: 1;
}

.payments-copy .media-frame {
  grid-column: 2;
  grid-row: 1 / span 8;
  position: sticky;
  top: 110px;
}

.payments-copy table {
  margin-top: .6rem;
}

.scoreboard {
  position: relative;
}

.score-intro {
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
  margin-bottom: 1rem;
}

.score-tile {
  min-height: 220px;
  padding: 1.1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 4%, rgba(255,202,93,.18), transparent 45%),
    rgba(255,255,255,.055);
  box-shadow: 0 20px 42px rgba(0,0,0,.28);
}

.score-value {
  color: #fff;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  font-weight: 1000;
  letter-spacing: -.06em;
}

.score-max {
  color: var(--gold);
  font-weight: 900;
}

.score-tile h3 {
  margin-top: .6rem;
  font-size: 1.2rem;
  letter-spacing: -.02em;
}

.score-tile p {
  margin-bottom: 0;
  font-size: .93rem;
}

.pros-audience {
  grid-template-columns: minmax(0, 1fr) minmax(340px, .86fr);
  align-items: start;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.3rem;
}

.pros-cons h2 {
  grid-column: 1 / -1;
}

.pros-cons h3 {
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.audience-switch .tab-buttons {
  border-radius: 22px;
}

.audience-switch .tab-button {
  border-radius: 18px;
}

.responsible-final {
  grid-template-columns: minmax(0, .9fr) minmax(340px, .8fr);
}

.responsible-card {
  border-color: rgba(24,215,122,.22);
}

.responsible-card::before {
  background: linear-gradient(135deg, rgba(24,215,122,.14), transparent 42%, rgba(255,23,52,.08));
}

.conclusion-card {
  border-color: rgba(255,202,93,.2);
}

.faq-wall {
  padding-top: 2rem;
}

.faq-card {
  max-width: 980px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: .75rem;
}

.faq-item {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background: rgba(0,0,0,.18);
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.15rem;
  border: 0;
  color: #fff;
  font-weight: 900;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.faq-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,23,52,.18);
  color: var(--gold-2);
  transition: transform .2s ease, background .2s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: rgba(255,23,52,.42);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9rem 1.15rem;
  border-radius: 999px;
  font-weight: 1000;
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, filter .22s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 101;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(560px, calc(100% - 36px));
  padding: .85rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(9,3,5,.92);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: translateY(140%);
  transition: transform .35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: .94rem;
}

.cookie-banner button {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: .74rem 1rem;
  cursor: pointer;
  font-weight: 900;
}

.site-footer {
  display: grid;
  gap: 1.4rem;
  padding: 2.2rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.2rem;
}

.footer-brand img {
  width: 210px;
  max-height: 52px;
}

.footer-brand p {
  margin: 0;
  max-width: 820px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--soft);
  font-size: .92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: auto auto 1fr auto;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .brand {
    order: 1;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: .45rem;
    padding: .8rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
    background: rgba(8,2,4,.96);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  body.menu-open .nav-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a {
    padding: .95rem 1rem;
  }

  .country-picker {
    justify-self: end;
    order: 3;
  }

  .header-cta {
    order: 4;
  }

  .hero-shell,
  .security-matrix,
  .bonus-lab,
  .device-stage,
  .payments-hub .payments-copy,
  .pros-audience,
  .responsible-final {
    grid-template-columns: 1fr;
  }

  .steps-card {
    transform: none;
  }

  .device-copy .media-frame,
  .device-copy h2,
  .device-copy p,
  .payments-copy .media-frame,
  .payments-copy h2,
  .payments-copy > p,
  .payments-copy > table,
  .payments-copy > h3,
  .payments-copy > ol {
    grid-column: auto;
    grid-row: auto;
    position: relative;
    top: auto;
  }

  .score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 24px, 1180px);
    --topbar-height: 66px;
  }

  .topbar {
    top: 8px;
    margin-top: 8px;
    grid-template-columns: auto auto auto;
    border-radius: 24px;
    padding: .6rem;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 164px;
  }

  .country-picker,
  .header-cta {
    display: none;
  }

  .hero-shell {
    min-height: auto;
    padding-top: 3.5rem;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.6rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 3rem);
  }

  .hero-actions,
  .micro-ledger,
  .footer-bottom,
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .floating-cta {
    width: 100%;
  }

  .hero-visual .media-frame {
    transform: none;
  }

  .mexico-orb {
    width: 78px;
    height: 78px;
    right: -8px;
    bottom: -12px;
  }

  .summary-panel,
  .content-card,
  .faq-card {
    border-radius: 24px;
    padding-inline: 1rem;
  }

  .review-table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .review-table th,
  .review-table td {
    min-width: 210px;
  }

  .tab-buttons {
    width: 100%;
    border-radius: 22px;
  }

  .tab-button {
    flex: 1 1 100%;
  }

  .score-grid,
  .pros-cons {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    left: 12px;
    bottom: 76px;
    width: calc(100% - 24px);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
