/* =========================================================
   BabyBabyBet.com — Scheme A: Magazine + Conversion Gate
   All CTAs -> https://singbet.cc/
   ========================================================= */

:root {
  --bg: #07050a;
  --bg-elev: #120c16;
  --bg-card: rgba(22, 14, 28, 0.88);
  --line: rgba(255, 160, 190, 0.16);
  --line-strong: rgba(246, 200, 110, 0.4);
  --pink: #ff8fb8;
  --pink-hot: #f05a9a;
  --gold: #f0c96a;
  --gold-dim: #c9a24a;
  --text: #faf6f8;
  --muted: #b0a3b2;
  --dim: #756875;
  --wa: #25d366;
  --wa-d: #128c7e;
  --tg: #2aabee;
  --tg-d: #229ed9;
  --radius: 20px;
  --nav-h: 68px;
  --sticky-h: 0px;
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --display: Georgia, "Times New Roman", "Palatino Linotype", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

body.splash-active { overflow: hidden; }
body.menu-open { overflow: hidden; overscroll-behavior: none; }
body.menu-open.is-scroll-locked {
  position: fixed; left: 0; right: 0; width: 100%;
}
body.menu-open .sticky-cta { visibility: hidden; pointer-events: none; }
body.menu-open .nav-wrap,
body.menu-open .nav-wrap a,
body.menu-open .menu-toggle { touch-action: manipulation; pointer-events: auto; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .25s, transform .25s, box-shadow .25s, background .25s, opacity .25s; }
a:hover { color: var(--pink); }
ul { list-style: none; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ---------- Splash (short, magazine) ---------- */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: radial-gradient(ellipse at 50% 40%, rgba(255,143,184,.15), transparent 55%), #07050a;
  transition: opacity .55s, visibility .55s;
}
.splash.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-inner { text-align: center; }
.splash-ring {
  width: 96px; height: 96px; margin: 0 auto 1rem; border-radius: 50%;
  border: 2px solid transparent; border-top-color: var(--pink); border-right-color: var(--gold);
  animation: spin 1s linear infinite; display: grid; place-items: center;
}
.splash-ring img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,143,184,.45);
}
.splash-brand {
  font-family: var(--display); font-size: 1.6rem; font-weight: 700;
  background: linear-gradient(120deg, #fff, var(--pink), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.splash-bar {
  width: 120px; height: 2px; margin: 1rem auto 0; background: rgba(255,255,255,.08);
  border-radius: 99px; overflow: hidden;
}
.splash-bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  animation: load 1.2s ease .2s forwards;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes load { to { width: 100%; } }

/* ---------- BG ---------- */
.site-bg {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 480px at 70% 0%, rgba(255,143,184,.1), transparent 55%),
    radial-gradient(700px 400px at 0% 60%, rgba(240,201,106,.06), transparent 50%),
    #07050a;
}
#bg-canvas {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .35;
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 200;
  min-height: var(--nav-h);
  display: flex; align-items: center;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  background: rgba(7, 5, 10, .45);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
  padding-top: env(safe-area-inset-top, 0);
}
.header.scrolled {
  background: rgba(7, 5, 10, .92);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  width: min(100% - 2rem, var(--max));
}
.logo {
  display: flex; align-items: center; gap: .65rem; color: var(--text); min-width: 0;
}
.logo:hover { color: var(--text); }
.logo-mark {
  width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--line-strong); box-shadow: 0 0 20px rgba(255,143,184,.15);
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.logo-text strong {
  font-size: 1rem; font-weight: 800; letter-spacing: -.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.logo-text span {
  font-size: .65rem; color: var(--dim); letter-spacing: .08em; text-transform: uppercase;
}
.menu-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px;
  background: rgba(22,14,28,.7); cursor: pointer; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; touch-action: manipulation;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--gold); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-wrap { display: flex; align-items: center; gap: 1rem; }
.nav { display: flex; align-items: center; gap: .1rem; }
.nav a {
  color: var(--muted); font-size: .9rem; font-weight: 600;
  padding: .5rem .85rem; border-radius: 999px;
}
.nav a:hover, .nav a.active {
  color: var(--text); background: rgba(255,143,184,.1);
}
.nav-cta { display: flex; gap: .4rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.35rem; border-radius: 999px; font-weight: 700; font-size: .95rem;
  border: 1px solid transparent; min-height: 48px; max-width: 100%;
  cursor: pointer; white-space: nowrap; touch-action: manipulation; user-select: none;
  transition: transform .25s, box-shadow .25s, filter .25s;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-sm { padding: .48rem .85rem; font-size: .8rem; min-height: 38px; }
.btn-lg { padding: 1rem 1.6rem; font-size: 1.02rem; min-height: 54px; }
.btn-whatsapp {
  background: linear-gradient(135deg, var(--wa), var(--wa-d));
  color: #fff !important; box-shadow: 0 10px 28px rgba(37,211,102,.3);
}
.btn-telegram {
  background: linear-gradient(135deg, var(--tg), var(--tg-d));
  color: #fff !important; box-shadow: 0 10px 28px rgba(42,171,238,.3);
}
.btn-whatsapp:hover, .btn-telegram:hover {
  color: #fff !important; transform: translateY(-2px); filter: brightness(1.05);
}
.btn-ghost {
  background: rgba(255,255,255,.04); color: var(--text) !important;
  border-color: var(--line);
}
.btn-ghost:hover { color: var(--gold) !important; border-color: var(--line-strong); }

/* ---------- Magazine Hero ---------- */
.mag-hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.mag-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.mag-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  transform: scale(1.02);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
.mag-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,5,10,.88) 0%, rgba(7,5,10,.55) 42%, rgba(7,5,10,.25) 70%, rgba(7,5,10,.45) 100%),
    linear-gradient(180deg, rgba(7,5,10,.35) 0%, transparent 30%, rgba(7,5,10,.92) 100%);
}
.mag-hero-content {
  position: relative; z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 6rem 0 3.5rem;
  max-width: 36rem;
}
.mag-kicker {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 1rem;
  opacity: 0; animation: up .7s ease .15s forwards;
}
.mag-kicker i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--pink);
  box-shadow: 0 0 12px var(--pink); animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: .35; } }

.mag-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0; animation: up .75s ease .22s forwards;
}
.mag-hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, #fff, var(--pink) 45%, var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.mag-hero .lead {
  color: var(--muted); font-size: 1.05rem; margin-bottom: 1.6rem;
  max-width: 28rem;
  opacity: 0; animation: up .75s ease .32s forwards;
}
.mag-cta {
  display: flex; flex-wrap: wrap; gap: .7rem;
  opacity: 0; animation: up .75s ease .42s forwards;
}
.mag-note {
  margin-top: 1rem; font-size: .78rem; color: var(--dim);
  opacity: 0; animation: up .75s ease .5s forwards;
}
@keyframes up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Trust strip */
.trust {
  border-block: 1px solid var(--line);
  background: rgba(18, 12, 22, .85);
  backdrop-filter: blur(10px);
}
.trust-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .25rem; padding: 1.1rem .75rem; text-align: center;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: none; }
.trust-item strong {
  font-size: .82rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: var(--gold);
}
.trust-item span { font-size: .78rem; color: var(--muted); }

/* Sections */
.section { padding: 4.5rem 0; }
.section-head {
  max-width: 34rem; margin-bottom: 2.25rem;
}
.section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--pink); margin-bottom: .7rem;
}
.section h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  letter-spacing: -.02em; line-height: 1.15; margin-bottom: .75rem;
}
.section-head p { color: var(--muted); }

.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
.card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.card:hover {
  transform: translateY(-4px); border-color: var(--line-strong);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.card-num {
  font-family: var(--display); font-size: 2rem; color: var(--pink);
  line-height: 1; margin-bottom: .75rem; opacity: .9;
}
.card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .95rem; }

/* Lookbook horizontal */
.lookbook-wrap {
  position: relative;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
}
.lookbook {
  display: flex; gap: 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .25rem max(1rem, calc((100vw - var(--max)) / 2)) 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--pink) transparent;
}
.lookbook::-webkit-scrollbar { height: 6px; }
.lookbook::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--pink), var(--gold)); border-radius: 99px;
}
.look-card {
  flex: 0 0 min(72vw, 320px);
  scroll-snap-align: start;
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  background: var(--bg-elev);
  transition: transform .35s, box-shadow .35s;
}
.look-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.look-card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  transition: transform .7s;
}
.look-card:hover img { transform: scale(1.05); }
.look-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.1rem 1rem;
  background: linear-gradient(transparent, rgba(7,5,10,.9));
  font-weight: 700; font-size: .95rem;
}
.look-card figcaption small {
  display: block; font-weight: 500; color: var(--muted); font-size: .75rem; margin-top: .15rem;
}
.look-hint {
  text-align: center; font-size: .78rem; color: var(--dim); margin-top: .5rem;
}

/* Partners split */
.partner-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem;
}
.partner {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden;
}
.partner::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
}
.partner.singbet::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.partner.fotbet::before {
  background: linear-gradient(90deg, transparent, #e8a317, transparent);
}
.partner .badge {
  display: inline-block; align-self: flex-start;
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .65rem; border-radius: 999px;
}
.partner.singbet .badge {
  color: var(--gold); background: rgba(240,201,106,.12); border: 1px solid var(--line-strong);
}
.partner.fotbet .badge {
  color: #f0b429; background: rgba(232,163,23,.12); border: 1px solid rgba(232,163,23,.35);
}
.partner h3 { font-family: var(--display); font-size: 1.65rem; }
.partner p { color: var(--muted); flex: 1; }
.partner ul { margin: 0; }
.partner li {
  position: relative; padding-left: 1rem; color: var(--muted);
  font-size: .9rem; margin-bottom: .35rem;
}
.partner li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--pink);
}
.partner .btn { width: 100%; }

/* Steps compact */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; counter-reset: s;
}
.step {
  padding: 1.2rem; border-radius: 16px; border: 1px solid var(--line); background: var(--bg-card);
}
.step::before {
  counter-increment: s; content: counter(s);
  display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  margin-bottom: .75rem; font-weight: 800; font-size: .85rem; color: #1a0a12;
  background: linear-gradient(135deg, var(--pink), var(--gold));
}
.step h3 { font-size: 1rem; margin-bottom: .35rem; }
.step p { font-size: .86rem; color: var(--muted); }

/* Final gate CTA */
.gate {
  margin: 0 auto;
  width: min(100% - 2rem, var(--max));
  border-radius: calc(var(--radius) + 6px);
  padding: 2.75rem 1.75rem;
  text-align: center;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(500px 200px at 20% 0%, rgba(255,143,184,.16), transparent 60%),
    radial-gradient(400px 180px at 90% 100%, rgba(240,201,106,.1), transparent 55%),
    linear-gradient(160deg, #16101c, #0c0810);
}
.gate h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  margin-bottom: .65rem;
}
.gate p { color: var(--muted); max-width: 28rem; margin: 0 auto 1.5rem; }
.gate-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem;
}

/* Page hero (inner) */
.page-hero {
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: .75rem;
}
.page-hero .lead { color: var(--muted); max-width: 36rem; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .4rem; font-size: .82rem;
  color: var(--dim); margin-bottom: .85rem;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb span { color: var(--pink); }

.content-block {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.75rem; margin-bottom: 1.5rem;
}
.content-block h2 { font-family: var(--display); margin-bottom: .85rem; font-size: 1.5rem; }
.content-block p { color: var(--muted); margin-bottom: .85rem; }
.content-block p:last-child { margin-bottom: 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.faq-list { display: grid; gap: .75rem; }
.faq-item {
  border: 1px solid var(--line); border-radius: 14px; background: var(--bg-card); overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 1rem 1.15rem; font-weight: 700; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--pink); font-size: 1.2rem; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 1.15rem 1rem; color: var(--muted); font-size: .93rem; }

.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

/* Sticky + FAB */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 180;
  display: none; gap: .5rem;
  padding: .55rem .65rem calc(.55rem + env(safe-area-inset-bottom, 0));
  background: rgba(7,5,10,.97); border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.sticky-cta .btn { flex: 1; min-width: 0; font-size: .88rem; }

.fab-stack {
  position: fixed;
  right: max(.75rem, env(safe-area-inset-right, 0));
  bottom: calc(1.15rem + var(--sticky-h));
  z-index: 95; display: flex; flex-direction: column; gap: .5rem;
}
.fab {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  color: #fff !important; box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.fab-wa { background: linear-gradient(135deg, var(--wa), var(--wa-d)); }
.fab-tg { background: linear-gradient(135deg, var(--tg), var(--tg-d)); }
.fab svg { width: 24px; height: 24px; }
.fab:hover { transform: scale(1.07); color: #fff !important; }

/* Footer */
.footer {
  padding: 3rem 0 calc(2rem + var(--sticky-h));
  border-top: 1px solid var(--line); margin-top: 3rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 1.75rem; margin-bottom: 2rem;
}
.footer h4 {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .85rem;
}
.footer a, .footer p { color: var(--muted); font-size: .88rem; }
.footer a { display: block; margin-bottom: .4rem; }
.footer a:hover { color: var(--gold); }
.footer-brand p { margin-top: .65rem; max-width: 280px; }
.footer-bottom {
  padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem;
  font-size: .78rem; color: var(--dim);
}
.disclaimer {
  font-size: .72rem; color: var(--dim); max-width: 880px; margin-top: 1rem; line-height: 1.55;
}

.ah-table-wrap {
  overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-card);
  margin-bottom: 1.5rem;
}
table.ah-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.ah-table th, .ah-table td {
  padding: .85rem 1rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,.05); font-size: .9rem;
}
.ah-table th {
  background: rgba(255,143,184,.08); color: var(--gold); font-size: .75rem;
  letter-spacing: .05em; text-transform: uppercase;
}
.ah-table td { color: var(--muted); }
.ah-table tr:last-child td { border-bottom: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  :root {
    --nav-h: 58px;
    --sticky-h: calc(56px + env(safe-area-inset-bottom, 0));
  }
  .header {
    position: fixed; top: 0; left: 0; right: 0; width: 100%;
    min-height: calc(var(--nav-h) + env(safe-area-inset-top, 0));
    background: rgba(7,5,10,.94); border-bottom-color: var(--line);
  }
  body {
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0));
    padding-bottom: var(--sticky-h);
  }
  .header .container { min-height: var(--nav-h); width: min(100% - 1rem, var(--max)); }
  .logo-text span { display: none; }
  .logo-text strong { font-size: .9rem; }
  .menu-toggle { display: flex; z-index: 120; }

  .nav-wrap {
    position: fixed;
    top: calc(var(--nav-h) + env(safe-area-inset-top, 0));
    left: 0; right: 0; z-index: 210;
    flex-direction: column; align-items: stretch; gap: .4rem;
    padding: .6rem .75rem .8rem;
    background: rgba(7,5,10,.99);
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: .22s ease;
    max-height: 70dvh; overflow-y: auto;
  }
  .nav-wrap.open {
    transform: none; opacity: 1; visibility: visible; pointer-events: auto;
  }
  .nav { flex-direction: column; width: 100%; }
  .nav a {
    min-height: 44px; display: flex; align-items: center; border-radius: 10px; padding: .7rem .9rem;
  }
  .nav-cta { width: 100%; }
  .nav-cta .btn { flex: 1; min-width: 0; }

  body.menu-open::before {
    content: ""; position: fixed; inset: 0;
    top: calc(var(--nav-h) + env(safe-area-inset-top, 0));
    z-index: 150; background: rgba(0,0,0,.5);
  }

  .mag-hero { min-height: min(88vh, 760px); }
  .mag-hero-bg::after {
    background:
      linear-gradient(180deg, rgba(7,5,10,.25) 0%, rgba(7,5,10,.2) 40%, rgba(7,5,10,.94) 100%);
  }
  .mag-hero-content {
    padding: 4.5rem 0 2.25rem; max-width: 100%;
  }
  .mag-cta { flex-direction: column; }
  .mag-cta .btn { width: 100%; }

  .trust-row { grid-template-columns: 1fr; }
  .trust-item {
    border-right: none; border-bottom: 1px solid var(--line);
    flex-direction: row; justify-content: flex-start; gap: .75rem;
    padding: .85rem 0;
  }
  .trust-item:last-child { border-bottom: none; }

  .grid-3, .grid-2, .partner-split, .steps, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .look-card { flex-basis: min(78vw, 280px); }
  .gate { padding: 2rem 1.15rem; }
  .gate-actions { flex-direction: column; }
  .gate-actions .btn { width: 100%; }
  .sticky-cta { display: flex; }
  .fab-stack { display: none !important; }
  .card:hover, .look-card:hover, .partner:hover { transform: none; }
  .footer { padding: 2.25rem 0 1.25rem; margin-top: 1.5rem; }
  #bg-canvas { opacity: .2; }
}

@media (min-width: 600px) and (max-width: 980px) {
  .grid-3, .partner-split, .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-row { grid-template-columns: repeat(3, 1fr); }
  .trust-item {
    flex-direction: column; border-right: 1px solid var(--line); border-bottom: none;
    justify-content: center; text-align: center;
  }
  .trust-item:last-child { border-right: none; }
  .mag-cta { flex-direction: row; }
  .mag-cta .btn { width: auto; flex: 1; }
}

@media (hover: none) {
  .btn:hover { transform: none; filter: none; }
  .btn:active { transform: scale(.98); }
  .fab:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .splash { display: none !important; }
  body.splash-active { overflow: auto; }
  .mag-hero-bg img { animation: none; }
}
