/* ==========================================================================
   Pararix — Landing Page
   Brand: #2DBEB4 (turkuaz) · gold #F0C060 · ink #1F222A
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --primary: #2DBEB4;
  --primary-600: #22A89F;
  --primary-700: #1A9A91;
  --primary-800: #14807A;
  --primary-300: #5CD6CD;
  --primary-100: #D5F4F1;
  --primary-50: #EAF9F7;

  --gold: #F0C060;
  --gold-700: #C48A20;
  --orange: #FF8C42;
  --orange-600: #FF6D00;

  /* Ink / neutrals */
  --ink: #1F222A;
  --ink-700: #2E3240;
  --ink-500: #4A4F5C;
  --muted: #6B7280;
  --muted-2: #9CA3AF;

  /* Surfaces */
  --bg: #F7F8FA;
  --bg-2: #EEF1F5;
  --surface: #FFFFFF;
  --line: #E9ECF1;
  --line-2: #EEEFF3;

  /* Effects */
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --shadow-xs: 0 1px 2px rgba(31,34,42,.06);
  --shadow-sm: 0 4px 14px rgba(31,34,42,.06);
  --shadow: 0 14px 40px rgba(31,34,42,.10);
  --shadow-lg: 0 30px 70px rgba(31,34,42,.16);
  --shadow-primary: 0 16px 38px rgba(45,190,180,.32);

  --grad-primary: linear-gradient(135deg, #2DBEB4 0%, #1A9A91 100%);
  --grad-hero: radial-gradient(1200px 600px at 80% -10%, rgba(45,190,180,.18), transparent 60%),
               radial-gradient(900px 500px at -10% 10%, rgba(240,192,96,.14), transparent 55%);

  --container: 1200px;
  --nav-h: 74px;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html { scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 6px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { line-height: 1.15; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.85rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; letter-spacing: -.01em; }
p { color: var(--ink-500); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-500); }

.text-grad {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.section-head { max-width: 680px; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head p { margin-top: 16px; font-size: 1.1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary-700);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  padding: 7px 14px; border-radius: 999px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(45,190,180,.18); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1rem; padding: 14px 26px; border-radius: 14px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--grad-primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 46px rgba(45,190,180,.42); }
.btn--ghost { background: var(--surface); color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow-xs); }
.btn--ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: #dfe3ea; }
.btn--white { background: #fff; color: var(--primary-800); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.btn--lg { padding: 17px 32px; font-size: 1.06rem; border-radius: 16px; }

/* Store buttons */
.stores { display: flex; flex-wrap: wrap; gap: 14px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff;
  padding: 11px 20px 11px 18px; border-radius: 15px;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
  box-shadow: 0 10px 26px rgba(31,34,42,.18);
}
.store-btn:hover { transform: translateY(-2px); background: #0f1219; box-shadow: 0 16px 34px rgba(31,34,42,.28); }
.store-btn svg { width: 26px; height: 26px; flex: none; }
.store-btn .s-top { display: block; font-size: .68rem; letter-spacing: .03em; opacity: .82; line-height: 1.2; font-weight: 500; }
.store-btn .s-big { display: block; font-size: 1.12rem; font-weight: 700; line-height: 1.15; letter-spacing: -.01em; }
.store-btn--light { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.store-btn--light:hover { background: #fff; box-shadow: var(--shadow); }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 22px rgba(31,34,42,.05); background: rgba(255,255,255,.85); }
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.28rem; letter-spacing: -.02em; color: var(--primary-700); }
.brand img { width: 38px; height: 38px; border-radius: 50%; }
.brand b { color: var(--primary-700); }
.brand-text { white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 9px 14px; border-radius: 10px; font-weight: 600; font-size: .97rem; color: var(--ink-700); transition: background .15s ease, color .15s ease; }
.nav-links a:hover { background: var(--primary-50); color: var(--primary-800); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-links .m-cta { display: none; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .ic-close { display: none; }
body.menu-open .nav-toggle .ic-open { display: none; }
body.menu-open .nav-toggle .ic-close { display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 86px)); padding-bottom: clamp(60px, 8vw, 110px); background: var(--grad-hero); overflow: hidden; }
.hero::before { /* soft grid dots */
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(31,34,42,.045) 1.4px, transparent 1.4px);
  background-size: 28px 28px; -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 80%); mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 80%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero-copy h1 { margin-top: 22px; }
.hero-copy .lead { margin-top: 20px; max-width: 540px; }
.hero-actions { margin-top: 32px; }
.hero-note { margin-top: 18px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: .92rem; color: var(--muted); font-weight: 500; }
.hero-note .nb { display: inline-flex; align-items: center; gap: 7px; }
.hero-note svg { width: 18px; height: 18px; color: var(--primary); flex: none; }

/* Phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: clamp(230px, 28vw, 300px);
  background: #0b0d12; border-radius: 44px; padding: 10px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,.5) inset;
  transform: rotate(-2.5deg);
}
.phone img { width: 100%; height: auto; display: block; border-radius: 36px; }
.hero-visual .glow { position: absolute; inset: -14% -8%; background: var(--grad-primary); filter: blur(80px); opacity: .25; border-radius: 50%; z-index: -1; }

/* Floating chips */
.chip {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  padding: 11px 15px; border-radius: 16px; box-shadow: var(--shadow);
  font-weight: 700; font-size: .92rem; color: var(--ink);
  animation: floaty 5.5s ease-in-out infinite;
}
.chip small { display: block; font-size: .72rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.chip .ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.chip .ico svg { width: 21px; height: 21px; }
.chip-1 { top: 12%; left: -6%; animation-delay: -1s; }
.chip-2 { top: 44%; right: -10%; animation-delay: -2.6s; }
.chip-3 { bottom: 8%; left: -2%; animation-delay: -3.8s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce){ .chip{ animation:none; } .phone{ transform:none; } }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; text-align: center; box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .2s ease;
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.stat .num { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; color: var(--primary-700); letter-spacing: -.03em; }
.stat .lbl { margin-top: 4px; font-size: .95rem; color: var(--muted); font-weight: 600; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 28px; box-shadow: var(--shadow-xs); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary-100); }
.step .badge { counter-increment: step; position: absolute; top: -18px; left: 28px; width: 44px; height: 44px; border-radius: 13px; background: var(--grad-primary); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.15rem; box-shadow: var(--shadow-primary); }
.step .badge::after { content: counter(step); }
.step .s-ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin: 8px 0 18px; background: var(--primary-50); color: var(--primary-700); }
.step .s-ico svg { width: 28px; height: 28px; }
.step h3 { margin-bottom: 8px; }
.step p { font-size: .98rem; }
.step .pill { display: inline-block; margin-top: 14px; font-size: .82rem; font-weight: 700; color: var(--gold-700); background: #FBF1D8; padding: 5px 12px; border-radius: 999px; }

/* connector arrows */
.steps .step:not(:last-child)::before {
  content: ""; position: absolute; top: 50%; right: -16px; width: 32px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--primary-300) 0 6px, transparent 6px 12px); z-index: 2;
}
@media (max-width: 860px){ .steps .step:not(:last-child)::before { display: none; } }

/* ---------- Features grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary-100); }
.feature .f-ico { width: 58px; height: 58px; border-radius: 17px; display: grid; place-items: center; margin-bottom: 20px; }
.feature .f-ico svg { width: 28px; height: 28px; }
.feature h3 { margin-bottom: 9px; }
.feature p { font-size: .98rem; }
/* icon color variants */
.i-teal { background: var(--primary-50); color: var(--primary-700); }
.i-gold { background: #FBF1D8; color: var(--gold-700); }
.i-orange { background: #FFEEE0; color: var(--orange-600); }
.i-ink { background: #ECEEF3; color: var(--ink-700); }

/* ---------- Screenshots gallery ---------- */
.gallery-wrap { position: relative; }
.gallery { display: flex; gap: 22px; overflow-x: auto; padding: 14px 22px 30px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.gallery::-webkit-scrollbar { display: none; }
.shot { scroll-snap-align: center; flex: 0 0 auto; width: clamp(210px, 24vw, 252px); }
.shot .frame { background: #0b0d12; border-radius: 34px; padding: 9px; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
.shot:hover .frame { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.shot img { border-radius: 26px; width: 100%; height: auto; display: block; }
.shot .cap { text-align: center; margin-top: 16px; font-weight: 700; font-size: .98rem; }
.shot .cap span { display: block; font-weight: 500; font-size: .85rem; color: var(--muted); }
.gallery-hint { text-align: center; color: var(--muted-2); font-size: .85rem; font-weight: 600; margin-top: 4px; }

/* ---------- Spotlight (alternating) ---------- */
.spot { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 86px); align-items: center; }
.spot + .spot { margin-top: clamp(64px, 8vw, 110px); }
.spot.reverse .spot-visual { order: 2; }
.spot-copy .eyebrow { margin-bottom: 18px; }
.spot-copy h2 { margin-bottom: 16px; }
.spot-list { margin-top: 26px; display: grid; gap: 14px; }
.spot-list li { display: flex; gap: 13px; align-items: flex-start; font-weight: 600; color: var(--ink-700); }
.spot-list .ck { width: 26px; height: 26px; border-radius: 8px; background: var(--primary-50); color: var(--primary-700); display: grid; place-items: center; flex: none; margin-top: 1px; }
.spot-list .ck svg { width: 16px; height: 16px; }
.spot-visual { display: flex; justify-content: center; position: relative; }
.spot-visual .blob { position: absolute; inset: 6% 10%; border-radius: 40% 60% 55% 45%; background: var(--grad-primary); opacity: .12; filter: blur(30px); z-index: -1; }
.spot-visual.gold .blob { background: linear-gradient(135deg, var(--gold), var(--orange)); }
.spot-phone { width: clamp(230px, 27vw, 290px); background: #0b0d12; border-radius: 42px; padding: 10px; box-shadow: var(--shadow-lg); }
.spot-phone img { border-radius: 33px; width: 100%; height: auto; display: block; }

/* ---------- Games ---------- */
.games { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.game-card { display: flex; align-items: center; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-xs); transition: transform .2s ease, box-shadow .2s ease; }
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.game-card .g-ico { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; color: #fff; flex: none; }
.game-card .g-ico svg { width: 26px; height: 26px; }
.game-card h3 { font-size: 1.08rem; margin-bottom: 2px; }
.game-card p { font-size: .9rem; }

/* ---------- Trust / security ---------- */
.trust { background: var(--ink); color: #fff; border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 70px); position: relative; overflow: hidden; }
.trust::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 360px at 90% 10%, rgba(45,190,180,.28), transparent 60%); }
.trust-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.trust h2 { color: #fff; }
.trust p { color: rgba(255,255,255,.74); margin-top: 16px; }
.trust-items { display: grid; gap: 18px; }
.trust-item { display: flex; gap: 15px; align-items: flex-start; }
.trust-item .ti { width: 46px; height: 46px; border-radius: 13px; background: rgba(45,190,180,.16); color: var(--primary-300); display: grid; place-items: center; flex: none; }
.trust-item .ti svg { width: 23px; height: 23px; }
.trust-item h3 { color: #fff; font-size: 1.06rem; margin-bottom: 3px; }
.trust-item p { margin: 0; color: rgba(255,255,255,.66); font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.qa { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease; }
.qa[open] { box-shadow: var(--shadow-sm); border-color: var(--primary-100); }
.qa summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .arr { width: 30px; height: 30px; border-radius: 9px; background: var(--primary-50); color: var(--primary-700); display: grid; place-items: center; flex: none; transition: transform .25s ease, background .2s ease; }
.qa summary .arr svg { width: 18px; height: 18px; }
.qa[open] summary .arr { transform: rotate(45deg); background: var(--primary); color: #fff; }
.qa .qa-body { padding: 0 24px 24px; }
.qa .qa-body p { color: var(--ink-500); }

/* ---------- Community / Forum ---------- */
.community {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
  background: linear-gradient(120deg, var(--primary-50), #fff 65%);
  border: 1px solid var(--primary-100); border-radius: var(--radius-xl);
  padding: clamp(30px, 4.5vw, 50px); box-shadow: var(--shadow-xs);
}
.community-text { display: flex; gap: 20px; align-items: center; max-width: 700px; }
.community .c-ico { width: 64px; height: 64px; border-radius: 18px; background: var(--grad-primary); color: #fff; display: grid; place-items: center; flex: none; box-shadow: var(--shadow-primary); }
.community .c-ico svg { width: 32px; height: 32px; }
.community h2 { font-size: clamp(1.35rem, 2.6vw, 1.9rem); margin-bottom: 6px; }
.community p { margin: 0; font-size: 1rem; }
@media (max-width: 760px){
  .community { justify-content: center; text-align: center; }
  .community-text { flex-direction: column; text-align: center; }
  .community .btn { width: 100%; }
}

/* ---------- CTA ---------- */
.cta { position: relative; background: var(--grad-primary); border-radius: var(--radius-xl); padding: clamp(48px, 7vw, 82px) clamp(24px,5vw,60px); text-align: center; overflow: hidden; color: #fff; }
.cta::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.16) 1.5px, transparent 1.5px); background-size: 26px 26px; opacity:.5; }
.cta::after { content:""; position:absolute; width:420px; height:420px; right:-120px; bottom:-180px; background:rgba(255,255,255,.12); border-radius:50%; }
.cta > * { position: relative; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.9); margin: 16px auto 0; max-width: 560px; font-size: 1.1rem; }
.cta .stores { justify-content: center; margin-top: 30px; }

/* ---------- Footer ---------- */
.footer { background: #14161c; color: rgba(255,255,255,.66); padding: clamp(56px,7vw,80px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: var(--primary-300); }
.footer .brand b { color: var(--primary-300); }
.footer-about p { margin-top: 16px; font-size: .95rem; max-width: 300px; }
.footer-about .stores { margin-top: 20px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.07); color: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.1); transition: background .18s ease, color .18s ease, transform .18s ease, border-color .18s ease; }
.footer-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; padding: 6px 0; font-size: .96rem; color: rgba(255,255,255,.62); transition: color .15s ease; }
.footer-col a:hover { color: var(--primary-300); }
.footer-bottom { margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .9rem; }
.footer-bottom a:hover { color: var(--primary-300); }
.footer-credit { color: rgba(255,255,255,.6); }
.footer-credit a { color: rgba(255,255,255,.82); font-weight: 600; }
.footer-credit a:hover { color: var(--primary-300); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Legal pages ---------- */
.page-hero { padding-top: calc(var(--nav-h) + 56px); padding-bottom: 36px; background: var(--grad-hero); border-bottom: 1px solid var(--line); }
.page-hero .crumbs { font-size: .9rem; color: var(--muted); font-weight: 600; margin-bottom: 14px; }
.page-hero .crumbs a:hover { color: var(--primary-700); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
.page-hero .upd { margin-top: 12px; color: var(--muted); font-weight: 500; font-size: .95rem; }
.legal { padding: clamp(40px,6vw,72px) 0 clamp(60px,8vw,100px); }
.legal-wrap { max-width: 820px; margin-inline: auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px,5vw,56px); box-shadow: var(--shadow-xs); }
.legal-wrap h2 { font-size: 1.4rem; margin: 38px 0 14px; }
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap h3 { font-size: 1.12rem; margin: 24px 0 10px; }
.legal-wrap p, .legal-wrap li { color: var(--ink-500); font-size: 1.02rem; }
.legal-wrap p { margin-bottom: 14px; }
.legal-wrap ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; display: grid; gap: 8px; }
.legal-wrap a { color: var(--primary-700); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal-wrap strong { color: var(--ink); }
.legal-note { background: var(--primary-50); border: 1px solid var(--primary-100); border-radius: var(--radius); padding: 18px 20px; margin: 22px 0; font-size: .96rem; color: var(--ink-700); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px,5vw,56px); align-items: start; }
.contact-info { display: grid; gap: 18px; }
.info-card { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-xs); }
.info-card .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--primary-50); color: var(--primary-700); display: grid; place-items: center; flex: none; }
.info-card .ic svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 3px; }
.info-card p, .info-card a { color: var(--muted); font-size: .97rem; }
.info-card a { color: var(--primary-700); font-weight: 700; }
.info-card a:hover { text-decoration: underline; }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,4vw,40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 8px; color: var(--ink-700); }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 13px; padding: 13px 16px;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(45,190,180,.14); }
.field textarea { resize: vertical; min-height: 140px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; color: var(--muted); }
.consent input { width: 19px; height: 19px; margin-top: 2px; flex: none; accent-color: var(--primary); }
.consent a { color: var(--primary-700); font-weight: 600; text-decoration: underline; }
.form-msg { display: none; margin-top: 16px; padding: 14px 18px; border-radius: 13px; font-weight: 600; font-size: .96rem; }
.form-msg.ok { display: block; background: var(--primary-50); color: var(--primary-800); border: 1px solid var(--primary-100); }
.form-msg.err { display: block; background: #FDECEC; color: #C0392B; border: 1px solid #F8D2D2; }
.form-card .btn[disabled] { opacity: .6; pointer-events: none; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-about { grid-column: 1 / -1; }
  .trust-grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 900px){
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions .stores, .hero-note { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .features, .steps, .games { grid-template-columns: 1fr 1fr; }
  .spot, .spot.reverse .spot-visual { grid-template-columns: 1fr; }
  .spot.reverse .spot-visual { order: 0; }
  .spot-copy { text-align: center; }
  .spot-copy .stores, .spot-copy .eyebrow { justify-content: center; }
  .spot-list { text-align: left; max-width: 420px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  body { font-size: 16px; }
  .nav-links, .nav-desktop-cta { display: none; }
  .nav-toggle { display: flex; }
  /* Mobile menu */
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; padding: 18px 22px 26px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  body.menu-open .nav-links { display: flex; opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 13px 14px; font-size: 1.05rem; }
  .nav-links .m-cta { display: block; margin-top: 8px; }
  .nav-links .m-cta a { padding: 14px; text-align: center; }
  .stats { grid-template-columns: 1fr; }
  .field.row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px){
  .features, .steps, .games { grid-template-columns: 1fr; }
  .stores { width: 100%; }
  .store-btn { flex: 1; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
