/* ============================================================
   WESPOT — Landing
   Direction artistique : obsidienne · or · diamant · carbone
   ============================================================ */

@font-face {
  font-family: 'ProtoMono';
  src: url('assets/fonts/ProtoMono-Medium.ttf') format('truetype');
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --bg: #060608;
  --surface: #0e0e12;
  --elevated: #16161c;
  --glass: rgba(22, 22, 28, 0.66);

  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dark: #8b7340;
  --gold-glow: rgba(201, 169, 98, 0.35);

  --ice: #7fd8ff;
  --ice-light: #a9ecff;
  --ice-deep: #3fa9ff;

  --platinum: #e5e4e2;
  --text: #f8f6f1;
  --text-2: #9b9ba8;
  --muted: #55555f;

  --border: rgba(201, 169, 98, 0.18);
  --border-faint: rgba(255, 255, 255, 0.06);

  --mono: 'ProtoMono', ui-monospace, 'SF Mono', Menlo, monospace;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #000; }

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

/* ── Ambient background layers ───────────────────────────── */
.bg-layers { position: fixed; inset: 0; z-index: -2; pointer-events: none; }

.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 98, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 98, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 78%);
}

.bg-carbon {
  position: absolute; inset: 0; opacity: 0.5;
  background:
    repeating-linear-gradient(45deg, #0a0a0d 0 2px, #0e0e13 2px 4px),
    repeating-linear-gradient(-45deg, #0a0a0d 0 2px, #101017 2px 4px);
  background-blend-mode: overlay;
  mask-image: linear-gradient(#000, transparent 60%);
}

.bg-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.5; }
.bg-glow--gold {
  width: 60vw; height: 60vw; top: -22vw; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
}
.bg-glow--ice {
  width: 44vw; height: 44vw; bottom: -10vw; right: -10vw;
  background: radial-gradient(circle, rgba(63, 169, 255, 0.18), transparent 70%);
}

.bg-noise {
  position: absolute; inset: 0; opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Cursor glow ─────────────────────────────────────────── */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 480px; height: 480px;
  margin: -240px 0 0 -240px; border-radius: 50%; z-index: -1; pointer-events: none;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.10), transparent 60%);
  transition: opacity 0.4s; opacity: 0;
  will-change: transform;
}

/* ── Scroll progress ─────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%; z-index: 100;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ── Typography helpers ──────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-2);
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 10px var(--gold); animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.grad-gold {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 45%, var(--gold-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad-ice {
  background: linear-gradient(120deg, var(--ice-light), var(--ice) 45%, var(--ice-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55em; font-family: var(--mono); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; padding: 0.85em 1.4em; border-radius: 14px;
  border: 1px solid transparent; cursor: pointer; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { font-size: 0.92rem; padding: 1.05em 1.7em; border-radius: 16px; }
.btn--block { width: 100%; }

.btn--gold {
  color: #1a1206;
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  box-shadow: 0 8px 28px rgba(201, 169, 98, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn--gold:hover { box-shadow: 0 12px 40px rgba(201, 169, 98, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.6); }

.btn--ice {
  color: #04141f;
  background: linear-gradient(120deg, var(--ice-light), var(--ice) 55%, var(--ice-deep));
  box-shadow: 0 8px 28px rgba(63, 169, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.btn--ice:hover { box-shadow: 0 12px 40px rgba(63, 169, 255, 0.45); }

.btn--ghost {
  color: var(--text); background: var(--glass);
  border-color: var(--border); backdrop-filter: blur(12px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); }

/* Official store badges */
.store-badge {
  display: inline-flex; border-radius: 12px;
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}
.store-badge img { height: 54px; width: auto; display: block; }
.store-badge:hover { transform: translateY(-3px); filter: drop-shadow(0 10px 22px rgba(201,169,98,0.28)); }

/* travelling sheen on gold/ice buttons */
.btn--gold::after, .btn--ice::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg); transition: left 0.6s var(--ease);
}
.btn--gold:hover::after, .btn--ice:hover::after { left: 130%; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1rem, 4vw, 2.4rem);
  transition: background 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 6, 8, 0.72); backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border-faint); padding-top: 0.7rem; padding-bottom: 0.7rem;
}
.nav__brand { display: inline-flex; align-items: center; gap: 0.55rem; }
.logomark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  background: var(--elevated); border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 18px rgba(201, 169, 98, 0.12);
}
.logomark--lg { width: 76px; height: 76px; border-radius: 22px; }
.nav__word { font-family: var(--mono); font-weight: 700; letter-spacing: 0.32em; font-size: 1.02rem; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em; color: var(--text-2);
  position: relative; transition: color 0.3s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 0.85rem; }
.lang {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--text-2); cursor: pointer;
  padding: 0.5em 0.8em; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--border-faint);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, color 0.3s;
}
.lang:hover { border-color: var(--border); }
.lang [data-lang] { transition: color 0.3s; }
.lang [data-lang].active { color: var(--gold-light); }
.lang__sep { color: var(--muted); }

/* ── Hero ────────────────────────────────────────────────── */
.hero { position: relative; padding: clamp(7rem, 16vh, 11rem) clamp(1rem, 4vw, 2.4rem) 4rem; }
.hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: clamp(2rem, 5vw, 4rem);
}
.hero__title {
  font-family: var(--mono); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 4.6vw, 3.7rem); line-height: 1.06; margin: 1.3rem 0;
}
.hero__title span { display: block; white-space: nowrap; }
.hero__lead { max-width: 34rem; color: var(--text-2); font-size: clamp(1rem, 1.3vw, 1.15rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__proof { display: flex; align-items: center; gap: 0.9rem; margin-top: 2rem; }
.hero__proof p { font-size: 0.85rem; color: var(--text-2); }
.hero__proof strong { color: var(--text); font-family: var(--mono); }
.avatars { display: flex; }
.avatars span {
  width: 30px; height: 30px; border-radius: 50%; margin-left: -8px;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}
.avatars span:nth-child(2) { background: linear-gradient(135deg, var(--ice-light), var(--ice-deep)); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #f472b6, #8b2f63); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, #34d399, #166f4f); }

/* scroll cue */
.scrollcue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  width: 24px; height: 38px; border: 1px solid var(--border); border-radius: 14px;
  display: grid; place-items: start center; padding-top: 7px;
}
.scrollcue span { width: 3px; height: 7px; border-radius: 2px; background: var(--gold); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(-3px); } 50% { opacity: 1; } 100% { opacity: 0; transform: translateY(9px); } }

/* ── Phone device ────────────────────────────────────────── */
.hero__device { position: relative; display: grid; place-items: center; perspective: 1400px; }
.phone {
  position: relative; width: clamp(240px, 27vw, 310px); aspect-ratio: 9 / 19.2;
  border-radius: 44px; padding: 11px; transform-style: preserve-3d;
  background: linear-gradient(150deg, #2a2a31, #0c0c10 45%, #050506);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 2px 3px rgba(255, 255, 255, 0.12);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.phone__notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 34%; height: 22px; border-radius: 0 0 14px 14px; background: #050506;
}
.phone__screen {
  position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, #14141a, #060608 70%);
}
.device-halo {
  position: absolute; inset: -12% -8%; z-index: -1; border-radius: 50%; filter: blur(70px);
  background: radial-gradient(circle, var(--gold-glow), transparent 65%); opacity: 0.65;
}

/* app screen */
.app { display: flex; flex-direction: column; height: 100%; padding: 2.6rem 0.9rem 0.9rem; }
.app__statusbar {
  display: flex; justify-content: space-between; font-family: var(--mono);
  font-size: 0.6rem; color: var(--text-2); padding: 0 0.4rem 0.7rem;
}
.app__dots { color: var(--gold); letter-spacing: -2px; }

.spotcard {
  flex: 1; border-radius: 20px; overflow: hidden; position: relative;
  background: var(--surface); border: 1px solid var(--border-faint);
  display: flex; flex-direction: column;
}
.spotcard__photo {
  position: relative; flex: 1;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(201,169,98,.18), transparent 60%),
    linear-gradient(160deg, #1a2230, #0c0f15 60%, #07090d);
  display: grid; place-items: center;
}
.spotcard__photo::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(127,216,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,216,255,.06) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: radial-gradient(circle at 50% 60%, #000, transparent 75%);
}
.car-art { width: 80%; filter: drop-shadow(0 0 10px rgba(201,169,98,.35)); animation: scanPulse 4s var(--ease) infinite; }
@keyframes scanPulse { 0%,100% { filter: drop-shadow(0 0 6px rgba(201,169,98,.25)); } 50% { filter: drop-shadow(0 0 16px rgba(201,169,98,.5)); } }
.spotcard__rarity {
  position: absolute; top: 9px; right: 9px; z-index: 2;
  font-family: var(--mono); font-size: 0.5rem; font-weight: 700; letter-spacing: 0.12em;
  padding: 3px 7px; border-radius: 6px; color: #1a1206;
  background: linear-gradient(120deg, var(--gold-light), var(--gold-dark));
}
.spotcard__body { padding: 0.7rem 0.8rem 0.85rem; }
.spotcard__user { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.45rem; }
.spotcard__avatar {
  width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--mono); font-size: 0.55rem; color: #000;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}
.spotcard__name { font-family: var(--mono); font-size: 0.62rem; color: var(--gold-light); }
.spotcard__title { font-family: var(--mono); font-weight: 700; font-size: 0.86rem; letter-spacing: 0.02em; }
.spotcard__meta { font-family: var(--mono); font-size: 0.56rem; color: var(--gold); margin-top: 2px; }
.spotcard__actions { display: flex; gap: 0.8rem; margin-top: 0.6rem; font-size: 0.58rem; color: var(--text-2); }

.app__scanbtn {
  margin-top: 0.7rem; align-self: center; display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--mono); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
  padding: 0.5rem 1rem; border-radius: 999px; color: #1a1206;
  background: linear-gradient(120deg, var(--gold-light), var(--gold-dark));
}
.app__scanbtn .ring { width: 9px; height: 9px; border-radius: 50%; border: 2px solid #1a1206; }

/* ── Marquee ─────────────────────────────────────────────── */
.marquee {
  border-block: 1px solid var(--border-faint); padding: 1.1rem 0; overflow: hidden;
  background: linear-gradient(var(--surface), rgba(14,14,18,0.4));
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 2.4rem; white-space: nowrap;
  font-family: var(--mono); font-size: 1.1rem; letter-spacing: 0.18em; color: var(--text-2);
  animation: scroll-x 38s linear infinite;
}
.marquee__track i { color: var(--gold); font-style: normal; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ── Sections ────────────────────────────────────────────── */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(4.5rem, 11vh, 8rem) clamp(1rem, 4vw, 2.4rem); }
.section__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__title {
  font-family: var(--mono); font-weight: 700; letter-spacing: -0.01em;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem); line-height: 1.08; margin-top: 1rem;
}

/* ── Features grid (bento) ───────────────────────────────── */
.grid-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(176px, auto);
  gap: 1.1rem;
  grid-template-areas:
    "ident ident garage"
    "ident ident rarity"
    "rank  rasso  rasso";
}
.feature-card--ident  { grid-area: ident; }
.feature-card--garage { grid-area: garage; }
.feature-card--rarity { grid-area: rarity; }
.feature-card--rank   { grid-area: rank; }
.feature-card--rasso  { grid-area: rasso; }

.feature-card {
  position: relative; padding: 1.8rem; border-radius: 22px; overflow: hidden;
  display: flex; flex-direction: column;
  background: linear-gradient(160deg, rgba(22,22,28,0.9), rgba(12,12,16,0.7));
  border: 1px solid var(--border-faint);
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
  transform-style: preserve-3d; will-change: transform;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(201,169,98,0.5), transparent 40%, transparent 70%, rgba(201,169,98,0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.5s;
}
.feature-card:hover { border-color: var(--border); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 1.1rem; color: var(--gold); flex: none;
  background: radial-gradient(circle at 30% 20%, rgba(201,169,98,0.22), rgba(201,169,98,0.04));
  border: 1px solid var(--border);
}
.feature-card__icon--lg { width: 60px; height: 60px; border-radius: 17px; }
.feature-card__head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.3rem;
}
.feature-card__head .feature-card__icon { margin-bottom: 0; }
.feature-card__tag {
  font-family: var(--mono); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-light); padding: 0.45em 0.85em;
  border-radius: 999px; border: 1px solid var(--border);
  background: rgba(201,169,98,0.06); white-space: nowrap;
}
.feature-card h3 { font-family: var(--mono); font-weight: 700; font-size: 1.18rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-2); font-size: 0.96rem; }
.feature-card strong { color: var(--gold-light); font-weight: 500; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; padding-top: 1.2rem; }

/* Big hero feature */
.feature-card--ident {
  padding: 2.2rem;
  background:
    radial-gradient(90% 70% at 100% 100%, rgba(201,169,98,0.1), transparent 60%),
    linear-gradient(160deg, rgba(24,23,28,0.92), rgba(12,12,16,0.72));
}
.feature-card--ident h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-top: 0.2rem; }
.feature-card--ident p { font-size: 1.04rem; max-width: 32rem; }
.feature-card--ident::after {
  content: ''; position: absolute; right: -40px; bottom: -40px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(201,169,98,0.12), transparent 65%);
  filter: blur(6px); pointer-events: none;
}
.chips li {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em; color: var(--text-2);
  padding: 0.35em 0.7em; border-radius: 999px; border: 1px solid var(--border-faint);
  background: rgba(255,255,255,0.02);
}

/* ── How / steps ─────────────────────────────────────────── */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; counter-reset: s; }
.step {
  position: relative; padding: 2rem 1.8rem; border-radius: 22px;
  background: linear-gradient(160deg, rgba(22,22,28,0.8), rgba(12,12,16,0.6));
  border: 1px solid var(--border-faint); overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s;
  transform-style: preserve-3d;
}
.step:hover { border-color: var(--border); }
.step__num {
  font-family: var(--mono); font-weight: 700; font-size: 2.6rem; line-height: 1;
  background: linear-gradient(180deg, var(--gold-light), transparent 130%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 0.8rem;
}
.step h3 { font-family: var(--mono); font-size: 1.3rem; margin-bottom: 0.45rem; }
.step p { color: var(--text-2); font-size: 0.95rem; }

/* ── Stats ───────────────────────────────────────────────── */
.stats { padding-block: clamp(3rem, 7vh, 5rem); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  padding: clamp(2rem, 4vw, 3rem); border-radius: 28px;
  background: linear-gradient(160deg, rgba(22,22,28,0.7), rgba(10,10,14,0.5));
  border: 1px solid var(--border-faint);
  position: relative; overflow: hidden;
}
.stats__grid::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 50% 0%, var(--gold-glow), transparent 60%); opacity: 0.25;
}
.stat { text-align: center; position: relative; }
.stat__num {
  display: block; font-family: var(--mono); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { font-size: 0.82rem; color: var(--text-2); letter-spacing: 0.03em; }

/* ── Premium / plans ─────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column; gap: 1.3rem;
  padding: 2rem 1.7rem; border-radius: 24px;
  background: linear-gradient(160deg, rgba(20,20,26,0.85), rgba(10,10,14,0.6));
  border: 1px solid var(--border-faint);
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
  transform-style: preserve-3d;
}
.plan--gold { border-color: var(--border); box-shadow: 0 20px 60px rgba(201,169,98,0.12); }
.plan--gold::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(160deg, var(--gold-light), transparent 40%, transparent 60%, var(--gold-dark));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.plan--ice::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(160deg, var(--ice-light), transparent 45%, transparent 60%, var(--ice-deep));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.plan__badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 0.35em 0.9em; border-radius: 999px; color: #1a1206; white-space: nowrap;
  background: linear-gradient(120deg, var(--gold-light), var(--gold-dark));
  box-shadow: 0 6px 18px rgba(201,169,98,0.4);
}
.plan__head { display: flex; flex-direction: column; gap: 0.3rem; }
.plan__tier { font-family: var(--mono); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.18em; }
.plan__price b { font-family: var(--mono); font-size: 2.2rem; font-weight: 700; }
.plan__price small { color: var(--text-2); font-size: 0.85rem; font-family: var(--mono); }
.plan__hint { font-size: 0.75rem; color: var(--gold); font-family: var(--mono); }
.plan--ice .plan__hint { color: var(--ice); }
.plan__list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.plan__list li { position: relative; padding-left: 1.5rem; color: var(--text-2); font-size: 0.92rem; }
.plan__list li::before {
  content: '✓'; position: absolute; left: 0; top: 0; color: var(--gold);
  font-family: var(--mono); font-weight: 700;
}
.plan--ice .plan__list li::before { color: var(--ice); }

/* ── CTA ─────────────────────────────────────────────────── */
.cta__card {
  position: relative; max-width: 760px; margin: 0 auto; text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.4rem, 4vw, 3rem);
  border-radius: 32px; overflow: hidden;
  background: linear-gradient(160deg, rgba(24,22,18,0.9), rgba(10,10,14,0.7));
  border: 1px solid var(--border);
}
.cta__glow { position: absolute; inset: 0; background: radial-gradient(70% 120% at 50% 0%, var(--gold-glow), transparent 60%); opacity: 0.4; }
.cta__card .logomark { margin: 0 auto 1.4rem; }
.cta__card h2 { font-family: var(--mono); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); position: relative; }
.cta__card h2 .grad-gold { display: block; white-space: nowrap; }
.cta__card p { color: var(--text-2); max-width: 38rem; margin: 1rem auto 2rem; position: relative; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; position: relative; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border-faint); margin-top: 3rem; }
.footer__top {
  max-width: var(--maxw); margin: 0 auto; padding: 3.5rem clamp(1rem, 4vw, 2.4rem) 2rem;
  display: grid; grid-template-columns: 1.3fr 2fr; gap: 2.5rem;
}
.footer__brand p { color: var(--text-2); font-size: 0.9rem; margin-top: 0.9rem; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer__cols h4 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); margin-bottom: 1rem; }
.footer__cols a { display: block; color: var(--text-2); font-size: 0.88rem; padding: 0.28rem 0; transition: color 0.3s; }
.footer__cols a:hover { color: var(--gold-light); }
.footer__bottom {
  max-width: var(--maxw); margin: 0 auto; padding: 1.6rem clamp(1rem, 4vw, 2.4rem) 3rem;
  border-top: 1px solid var(--border-faint);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
}
.footer__bottom p { font-size: 0.78rem; color: var(--muted); }
.footer__disclaimer { max-width: 40rem; font-size: 0.68rem !important; line-height: 1.5; font-style: italic; }

/* ── Reveal animations ───────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
.reveal-device { opacity: 0; transform: translateY(40px) rotateX(12deg) scale(0.96); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-device.in { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__device { order: 1; }
  .hero__actions, .hero__proof { justify-content: center; }
  .hero__lead { margin-inline: auto; }
  .grid-features {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "ident ident"
      "garage rarity"
      "rank rasso";
  }
  .steps { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-features {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    grid-template-areas: "ident" "garage" "rarity" "rank" "rasso";
  }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .nav__cta { display: none; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  [data-reveal], .reveal-device { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
