/* ============================================================
   VibeDeck — Landing Page styles
   Dark, premium, neon-accent. Token-driven.
   ============================================================ */

:root {
  --bg:       #0f0f14;
  --bg-2:     #121219;
  --surface:  #1c1c27;
  --surface-2:#23232f;
  --border:   rgba(255,255,255,0.08);
  --border-2: rgba(255,255,255,0.14);
  --text:   #ffffff;
  --muted:  #a1a1aa;
  --subtle: #71717a;
  --question: #7c3aed;
  --action:   #ff6b6b;
  --vote:     #4ecdc4;
  --reveal:   #ec4899;
  --teal: #4ecdc4;
  --pink: #ec4899;
  --primary: #7c3aed;
  --primary-rgb: 124 58 237;
  --primary-2: #a855f7;
  --display: "Space Grotesk", system-ui, sans-serif;
  --body: "Manrope", system-ui, sans-serif;
  --r-card: 26px;
  --r-md: 18px;
  --r-sm: 12px;
  --r-pill: 999px;
  --glow: 1;
  --maxw: 1440px;
}

html[data-accent="coral"] { --primary:#ff6b6b; --primary-rgb:255 107 107; --primary-2:#ff9a8b; }
html[data-accent="teal"]  { --primary:#4ecdc4; --primary-rgb:78 205 196; --primary-2:#7ff0e8; }
html[data-accent="pink"]  { --primary:#ec4899; --primary-rgb:236 72 153; --primary-2:#f472b6; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(var(--primary-rgb)/0.10), transparent 60%),
    radial-gradient(100% 60% at 100% 100%, rgba(78,205,196,0.05), transparent 55%);
  mix-blend-mode: screen;
}

h1,h2,h3,h4 { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(24px, 4vw, 64px); }

.eyebrow {
  font-family: var(--display);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary-2);
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before {
  content:""; width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}

.gradient-text {
  background: linear-gradient(100deg, #fff 30%, var(--primary-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(15,15,20,0.82), rgba(15,15,20,0.4));
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(15,15,20,0.9); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-toggle { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--border); border-radius: var(--r-pill); padding: 3px; background: rgba(255,255,255,0.02); }
.lang-toggle button { border: none; background: transparent; color: var(--subtle); font-family: var(--body); font-weight: 600; font-size: 13px; padding: 5px 11px; border-radius: var(--r-pill); cursor: pointer; transition: .2s; }
.lang-toggle button.on { background: var(--surface-2); color: var(--text); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: var(--r-pill);
  border: 1px solid transparent; cursor: pointer; transition: transform .2s, box-shadow .3s, background .2s;
  white-space: nowrap;
}
.btn-primary {
  color: #fff; border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 8px 30px rgba(var(--primary-rgb)/calc(0.45 * var(--glow)));
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(var(--primary-rgb)/calc(0.6 * var(--glow))); }
.btn-ghost { background: rgba(255,255,255,0.04); border: 1px solid var(--border-2); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* sections */
section { position: relative; z-index: 2; }
.section-pad { padding-block: 120px; }
.section-head { max-width: 640px; }
.section-head h2 { font-size: clamp(34px, 5vw, 56px); line-height: 1.04; margin: 18px 0 0; }
.section-head .sub { color: var(--muted); font-size: 19px; line-height: 1.55; margin-top: 20px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* HERO */
.hero { padding-top: 70px; padding-bottom: 90px; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: calc(0.5 * var(--glow)); pointer-events: none; z-index: 0; }
.hero-orb.a { width: 520px; height: 520px; background: var(--primary); top: -160px; left: -120px; }
.hero-orb.b { width: 420px; height: 420px; background: var(--teal); bottom: -160px; right: -80px; opacity: calc(0.28 * var(--glow)); }
.hero-orb.c { width: 360px; height: 360px; background: var(--pink); top: 220px; right: 30%; opacity: calc(0.22 * var(--glow)); }

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.hero h1 { font-size: clamp(44px, 6.6vw, 84px); line-height: 0.98; }
.hero .lede { color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.5; margin-top: 26px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 26px; margin-top: 34px; color: var(--subtle); font-size: 14px; flex-wrap: wrap; }
.hero-meta b { color: var(--text); font-family: var(--display); }
.hero-meta .dot { color: var(--primary); }

/* store badges */
.badges { display: flex; gap: 14px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #000; border: 1px solid var(--border-2);
  border-radius: 14px; padding: 10px 18px 10px 16px; cursor: pointer;
  transition: transform .2s, border-color .2s;
}
.store-badge:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.3); }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .bl { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge .bl small { font-size: 11px; color: var(--muted); }
.store-badge .bl strong { font-family: var(--display); font-size: 17px; font-weight: 600; }

/* phone mockup */
.hero-stage { display: flex; justify-content: center; align-items: center; position: relative; }
.phone {
  position: relative; width: 320px; height: 660px;
  border-radius: 52px; padding: 13px;
  background: linear-gradient(165deg, #2a2a38, #0c0c12);
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.05),
    0 40px 120px rgba(0,0,0,0.6),
    0 0 90px rgba(var(--primary-rgb)/calc(0.4 * var(--glow)));
  z-index: 3;
}
.phone-screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 40px; overflow: hidden;
  background: var(--bg);
  display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 28px; background: #000; border-radius: 16px; z-index: 20;
}
.phone-statusbar { display:flex; justify-content: space-between; align-items:center; padding: 14px 24px 0; font-size: 12px; font-weight: 700; font-family: var(--display); color: #fff; z-index: 10; }

.float-card {
  position: absolute; z-index: 2;
  border-radius: 18px; padding: 14px 16px;
  background: var(--surface); border: 1px solid var(--border-2);
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 9px;
  animation: floaty 6s ease-in-out infinite;
}
.float-card .tag { width: 9px; height: 9px; border-radius: 50%; }
.float-card.f1 { top: 40px; left: -10px; animation-delay: 0s; }
.float-card.f2 { bottom: 120px; right: -26px; animation-delay: 1.5s; }
.float-card.f3 { bottom: 24px; left: 6px; animation-delay: .8s; }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-14px) } }

.deck-area { position: relative; flex: 1; margin: 14px 16px 0; }
.swipe-card {
  position: absolute; inset: 0;
  border-radius: 26px; padding: 26px 22px;
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-2);
  display: flex; flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  will-change: transform, opacity;
}
.swipe-card .ctype { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; display:flex; align-items:center; gap:8px; }
.swipe-card .ctype .d { width: 8px; height: 8px; border-radius: 50%; }
.swipe-card .qtext { font-family: var(--display); font-size: 25px; line-height: 1.18; font-weight: 600; margin-top: auto; margin-bottom: auto; }
.swipe-card .foot { display:flex; align-items:center; justify-content: space-between; color: var(--subtle); font-size: 12px; font-weight: 600; }
.phone-tabbar { display:flex; align-items:center; justify-content:center; gap:8px; padding: 18px 0 22px; }
.phone-tabbar .swipe-hint { color: var(--subtle); font-size: 12px; font-weight: 600; display:flex; align-items:center; gap:7px; }
.phone-progress { display:flex; gap:5px; padding: 16px 18px 0; }
.phone-progress span { height: 3px; flex:1; border-radius: 2px; background: rgba(255,255,255,0.12); overflow:hidden; }
.phone-progress span.on { background: var(--primary); }

/* CARD TYPES */
.types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
.type-card {
  position: relative; border-radius: var(--r-card); padding: 28px 24px 26px;
  background: var(--surface); border: 1px solid var(--border);
  overflow: hidden; min-height: 300px;
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, box-shadow .35s;
}
.type-card:hover { transform: translateY(-8px); border-color: color-mix(in srgb, var(--tc) 50%, var(--border)); box-shadow: 0 26px 60px rgba(0,0,0,0.45), 0 0 50px color-mix(in srgb, var(--tc) 22%, transparent); }
.type-card .glow { position: absolute; top: -60px; right: -60px; width: 180px; height: 180px; border-radius: 50%; background: var(--tc); filter: blur(60px); opacity: .25; transition: opacity .35s; }
.type-card:hover .glow { opacity: .45; }
.type-icon { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: color-mix(in srgb, var(--tc) 18%, transparent); border: 1px solid color-mix(in srgb, var(--tc) 40%, transparent); color: var(--tc); }
.type-card h3 { font-size: 23px; margin-top: 22px; }
.type-card .tdesc { color: var(--muted); font-size: 14.5px; line-height: 1.5; margin-top: 9px; }
.type-card .sample { margin-top: auto; padding-top: 20px; }
.type-card .sample .lbl { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--subtle); }
.type-card .sample .ex { font-family: var(--display); font-size: 15px; line-height: 1.35; margin-top: 7px; color: #e7e7ea; }

/* MOOD / GROUP MATRIX */
.matrix { display: grid; grid-template-columns: 300px 1fr; gap: 40px; margin-top: 64px; align-items: start; }
@media (max-width: 1000px){ .matrix { grid-template-columns: 1fr; } }

.selector h4 { font-family: var(--display); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--subtle); font-weight: 700; margin-bottom: 14px; }
.chip-col { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.chip {
  display: flex; align-items: center; gap: 14px; width: 100%;
  text-align: left; cursor: pointer;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px 16px; transition: .25s;
  color: var(--text); font-family: var(--body);
}
.chip:hover { border-color: var(--border-2); transform: translateX(3px); }
.chip.on { border-color: color-mix(in srgb, var(--primary) 60%, transparent); background: color-mix(in srgb, var(--primary) 12%, var(--surface)); box-shadow: 0 0 30px rgba(var(--primary-rgb)/calc(.25 * var(--glow))); }
.chip .emoji { font-size: 22px; line-height: 1; width: 26px; text-align: center; }
.chip .ct { display: flex; flex-direction: column; }
.chip .ct b { font-family: var(--display); font-size: 16px; font-weight: 600; }
.chip .ct small { color: var(--muted); font-size: 12.5px; }

.matrix-preview { position: relative; }
.preview-card {
  position: relative; border-radius: var(--r-card); padding: 40px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-2); min-height: 420px;
  display: flex; flex-direction: column; overflow: hidden;
}
.preview-card .pglow { position:absolute; inset:0; opacity:.5; background: radial-gradient(80% 60% at 80% 0%, rgba(var(--primary-rgb)/.18), transparent 60%); pointer-events:none; }
.preview-head { display: flex; align-items: center; gap: 12px; position: relative; z-index: 2; }
.preview-head .pill { font-size: 12px; font-weight: 700; padding: 6px 13px; border-radius: var(--r-pill); border: 1px solid var(--border-2); display:inline-flex; align-items:center; gap:7px; }
.preview-head .pill .d { width:8px; height:8px; border-radius:50%; }
.preview-card .ptext { font-family: var(--display); font-size: clamp(26px, 3.4vw, 40px); line-height: 1.12; font-weight: 600; margin: auto 0; position: relative; z-index: 2; }
.preview-card .pfoot { display:flex; align-items:center; justify-content: space-between; color: var(--subtle); font-size: 13px; font-weight: 600; position: relative; z-index: 2; }
.intensity { display:flex; align-items:center; gap:6px; }
.intensity i { width: 22px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.14); font-style: normal; }
.intensity i.on { background: var(--primary); }

/* FEATURES */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.feat {
  border-radius: var(--r-card); padding: 30px;
  background: var(--surface); border: 1px solid var(--border);
  transition: .3s;
}
.feat:hover { border-color: var(--border-2); transform: translateY(-5px); }
.feat .fi { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: color-mix(in srgb, var(--primary) 16%, transparent); border: 1px solid color-mix(in srgb, var(--primary) 36%, transparent); color: var(--primary-2); }
.feat h3 { font-size: 20px; margin-top: 20px; }
.feat p { color: var(--muted); font-size: 15px; line-height: 1.55; margin-top: 9px; }

/* ADULT MODE */
.adult { position: relative; overflow: hidden; }
.adult-band {
  position: relative; border-radius: 34px; overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--reveal) 30%, var(--border-2));
  background:
    radial-gradient(90% 120% at 100% 0%, color-mix(in srgb, var(--reveal) 16%, transparent), transparent 60%),
    radial-gradient(80% 120% at 0% 100%, color-mix(in srgb, var(--action) 12%, transparent), transparent 55%),
    linear-gradient(160deg, #1a1018, #140d14);
}
.adult-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; padding: 70px 56px; position: relative; z-index: 2; }
@media (max-width: 900px){ .adult-grid { grid-template-columns: 1fr; gap: 44px; padding: 48px 28px; } }

.adult .eyebrow { color: var(--reveal); }
.adult h2 { font-size: clamp(34px, 4.8vw, 56px); line-height: 1.03; margin-top: 18px; }
.adult .asub { color: var(--muted); font-size: 18px; line-height: 1.55; margin-top: 20px; max-width: 460px; }
.adult-list { display: flex; flex-direction: column; gap: 13px; margin-top: 28px; }
.adult-list .it { display: flex; align-items: center; gap: 12px; font-size: 15.5px; color: #e9dde4; }
.adult-list .it .tk { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; flex: none; background: color-mix(in srgb, var(--reveal) 18%, transparent); color: var(--reveal); border: 1px solid color-mix(in srgb, var(--reveal) 38%, transparent); }
.adult-cta { display: flex; align-items: center; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.btn-spicy { color:#fff; border:none; background: linear-gradient(135deg, var(--reveal), var(--action)); box-shadow: 0 10px 34px color-mix(in srgb, var(--reveal) 45%, transparent); }
.btn-spicy:hover { transform: translateY(-2px); box-shadow: 0 16px 46px color-mix(in srgb, var(--reveal) 60%, transparent); }
.age-note { color: var(--subtle); font-size: 13px; }

.adult-stage { display: flex; justify-content: center; position: relative; }
.teaser-deck { position: relative; width: 300px; height: 380px; }
.teaser-card {
  position: absolute; inset: 0; border-radius: 26px; padding: 28px;
  background: linear-gradient(170deg, #241620, #1a1018);
  border: 1px solid color-mix(in srgb, var(--reveal) 26%, var(--border-2));
  display: flex; flex-direction: column;
  box-shadow: 0 26px 70px rgba(0,0,0,0.55);
}
.teaser-card .ctype { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; display:flex; align-items:center; gap:8px; color: var(--reveal); }
.teaser-card .ctype .d { width: 8px; height: 8px; border-radius: 50%; background: var(--reveal); box-shadow: 0 0 10px var(--reveal); }
.teaser-card .ttext { font-family: var(--display); font-size: 23px; line-height: 1.2; font-weight: 600; margin: auto 0; transition: filter .5s ease, opacity .5s ease; }
.teaser-card.locked .ttext { filter: blur(9px); opacity: .85; user-select: none; }
.teaser-card .foot { color: var(--subtle); font-size: 12px; font-weight: 600; display:flex; align-items:center; gap:7px; }

.lock-overlay {
  position: absolute; inset: 0; z-index: 5; border-radius: 26px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: radial-gradient(120% 90% at 50% 40%, rgba(20,13,20,0.2), rgba(20,13,20,0.66));
  transition: opacity .4s ease; text-align: center; padding: 0 26px;
}
.lock-overlay.hide { opacity: 0; pointer-events: none; }
.lock-overlay .ring { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: color-mix(in srgb, var(--reveal) 20%, #140d14); border: 1px solid color-mix(in srgb, var(--reveal) 45%, transparent); color: var(--reveal); box-shadow: 0 0 30px color-mix(in srgb, var(--reveal) 40%, transparent); }
.lock-overlay .lt { font-family: var(--display); font-weight: 600; font-size: 15px; }
.lock-overlay .ls { color: var(--muted); font-size: 12.5px; }
.peek-btn { margin-top: 4px; border: 1px solid color-mix(in srgb, var(--reveal) 45%, transparent); background: color-mix(in srgb, var(--reveal) 14%, transparent); color: #fff; font-family: var(--body); font-weight: 700; font-size: 13px; padding: 8px 18px; border-radius: var(--r-pill); cursor: pointer; transition: .2s; }
.peek-btn:hover { background: color-mix(in srgb, var(--reveal) 26%, transparent); }
.teaser-card.t-back { transform: translateY(26px) scale(.93); opacity: .5; z-index: 1; }
.teaser-card.t-mid  { transform: translateY(13px) scale(.965); opacity: .8; z-index: 2; }
.teaser-card.t-front{ z-index: 3; }
.adult-badge { position: absolute; top: -12px; right: -10px; z-index: 8; font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: .04em; padding: 7px 13px; border-radius: var(--r-pill); color:#fff; background: linear-gradient(135deg, var(--reveal), var(--action)); box-shadow: 0 8px 24px color-mix(in srgb, var(--reveal) 50%, transparent); }

/* CTA BAND */
.cta-band { position: relative; overflow: hidden; border-radius: 34px; padding: 80px 48px; text-align: center; background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--border-2); }
.cta-band .cglow1 { position:absolute; width:500px; height:500px; border-radius:50%; background: var(--primary); filter: blur(110px); opacity: calc(.4 * var(--glow)); top:-200px; left:-80px; }
.cta-band .cglow2 { position:absolute; width:420px; height:420px; border-radius:50%; background: var(--pink); filter: blur(110px); opacity: calc(.28 * var(--glow)); bottom:-200px; right:-60px; }
.cta-band h2 { font-size: clamp(36px, 5vw, 62px); line-height: 1.02; position: relative; z-index: 2; }
.cta-band p { color: var(--muted); font-size: 19px; margin-top: 18px; position: relative; z-index: 2; }
.cta-band .badges { justify-content: center; margin-top: 38px; position: relative; z-index: 2; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); margin-top: 120px; padding: 60px 0 50px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer .muted { color: var(--subtle); font-size: 14px; line-height: 1.7; max-width: 300px; margin-top: 16px; }
.footer-col h5 { font-family: var(--display); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--subtle); font-size: 14.5px; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display:flex; justify-content: space-between; align-items:center; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--border); color: var(--subtle); font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* RESPONSIVE */
@media (max-width: 940px){
  .hero-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero .lede { margin-left:auto; margin-right:auto; }
  .hero-cta, .hero-meta { justify-content: center; }
  .hero-stage { margin-top: 50px; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .phone { width: 290px; height: 600px; }
  .float-card { display: none; }
}
@media (max-width: 620px){
  .section-pad { padding-block: 72px; }
  .types-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 22px; }
  .phone { width: 268px; height: 554px; border-radius: 44px; }
  .phone-screen { border-radius: 34px; }
  .swipe-card .qtext { font-size: 20px; }
  .nav-inner { height: 62px; }
  .btn { font-size: 13.5px; padding: 10px 16px; }
  .lang-toggle button { font-size: 12px; padding: 4px 9px; }
  .hero-meta { flex-direction: column; align-items: center; gap: 8px; }
  .chip { padding: 12px 14px; }
  .preview-card { padding: 26px 22px; min-height: 300px; }
  .preview-card .ptext { font-size: 22px; }
  .adult-grid { padding: 38px 22px; }
  .teaser-deck { width: 270px; height: 340px; }
  .teaser-card .ttext { font-size: 19px; }
  .badges { flex-direction: column; align-items: center; }
  .footer-grid { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
}
