/* =========================================================================
   SWIPEY AI — "Neon Crush / Swipe Right" Design System
   Deliberately NOT serif/candlelight, NOT generic purple AI-SaaS.
   Indigo base + coral→pink→violet gradient + mint "match" pop.
   ========================================================================= */

:root {
  /* --- Core palette --- */
  --indigo-950: #0c0a1f;
  --indigo-900: #14112e;
  --indigo-850: #1a1640;
  --indigo-800: #221b52;
  --indigo-700: #2e2570;
  --ink: #0c0a1f;

  /* Crush gradient stops (coral → pink → violet) */
  --coral: #ff6b6b;
  --pink: #ff4d8d;
  --hot: #ff2e93;
  --violet: #8b5cf6;
  --indigo-accent: #6366f1;

  /* Mint "match" pop */
  --mint: #2ee6a6;
  --mint-bright: #46ffc1;

  /* Neutrals on dark */
  --white: #ffffff;
  --paper: #f7f5ff;
  --mist: #c9c4e8;
  --muted: #9690bd;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);

  /* Gradients */
  --crush: linear-gradient(120deg, #ff6b6b 0%, #ff2e93 45%, #8b5cf6 100%);
  --crush-soft: linear-gradient(120deg, rgba(255,107,107,.18) 0%, rgba(255,46,147,.16) 45%, rgba(139,92,246,.18) 100%);
  --crush-text: linear-gradient(100deg, #ff8a8a 0%, #ff4d8d 40%, #a98bff 100%);

  /* Surfaces */
  --glass: rgba(255, 255, 255, 0.045);
  --glass-2: rgba(255, 255, 255, 0.07);
  --card: #181336;

  /* Type */
  --font-sans: "Space Grotesk", "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  /* Radii & shadow */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;
  --shadow: 0 18px 50px -12px rgba(8, 5, 25, 0.7);
  --shadow-pink: 0 18px 60px -12px rgba(255, 46, 147, 0.45);
  --shadow-mint: 0 14px 40px -10px rgba(46, 230, 166, 0.5);

  --maxw: 1180px;
}

/* --- Reset / base --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 600px at 80% -5%, rgba(139,92,246,.22), transparent 60%),
    radial-gradient(1000px 700px at 5% 10%, rgba(255,46,147,.16), transparent 55%),
    radial-gradient(900px 600px at 50% 110%, rgba(46,230,166,.10), transparent 60%),
    var(--indigo-950);
  color: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: var(--font-sans); line-height: 1.12; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 76px 0; }
.section-sm { padding: 48px 0; }

.gradient-text {
  background: var(--crush-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: .76rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--mint-bright);
  background: rgba(46,230,166,.10); border: 1px solid rgba(46,230,166,.25);
  padding: 6px 14px; border-radius: var(--r-pill);
}
.lead { font-size: 1.16rem; color: var(--mist); }
.muted { color: var(--muted); }
.center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: var(--r-pill); border: 0; cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, filter .2s ease;
  text-align: center; line-height: 1;
}
.btn-primary { background: var(--crush); color: #fff; box-shadow: var(--shadow-pink); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-mint { background: linear-gradient(120deg, var(--mint) 0%, var(--mint-bright) 100%); color: #053527; box-shadow: var(--shadow-mint); }
.btn-mint:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-ghost { background: var(--glass-2); color: var(--white); border: 1px solid var(--line-strong); }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.08rem; }
.btn-block { display: flex; width: 100%; }

/* --- Cards / glass --- */
.glass {
  background: linear-gradient(180deg, var(--glass-2), var(--glass));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }

/* --- Badges / pills --- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 600; font-family: var(--font-sans);
  padding: 5px 12px; border-radius: var(--r-pill);
  background: var(--glass-2); border: 1px solid var(--line); color: var(--mist);
}
.pill-mint { background: rgba(46,230,166,.12); border-color: rgba(46,230,166,.3); color: var(--mint-bright); }
.pill-pink { background: rgba(255,46,147,.12); border-color: rgba(255,46,147,.32); color: #ff9ec4; }

/* =========================================================================
   AGE GATE
   ========================================================================= */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(8, 5, 25, 0.92); backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
#age-gate.hidden { display: none; }
.age-card {
  max-width: 460px; text-align: center; padding: 40px 34px;
  background: linear-gradient(180deg, #1c1742, #14112e);
  border: 1px solid var(--line-strong); border-radius: var(--r-xl);
  box-shadow: var(--shadow);
}
.age-card .logo-mark { font-size: 2rem; margin-bottom: 10px; }
.age-card h2 { font-size: 1.5rem; margin-bottom: 10px; }
.age-card p { color: var(--mist); font-size: .98rem; margin-bottom: 22px; }
.age-actions { display: flex; gap: 12px; flex-direction: column; }
.age-tiny { font-size: .76rem; color: var(--muted); margin-top: 18px; }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(12, 10, 31, 0.72); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-sans); font-weight: 700; font-size: 1.25rem; color: #fff; }
.brand .heart { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: var(--crush); box-shadow: var(--shadow-pink); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-sans); font-weight: 600; font-size: .92rem; color: var(--mist);
  padding: 9px 13px; border-radius: var(--r-pill); transition: background .18s, color .18s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: var(--glass-2); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.has-drop { position: relative; }
.dropdown {
  position: absolute; top: 130%; left: 0; min-width: 210px; padding: 8px;
  background: #1a1640; border: 1px solid var(--line-strong); border-radius: var(--r);
  box-shadow: var(--shadow); display: none; flex-direction: column; gap: 2px;
}
.has-drop:hover .dropdown { display: flex; }
.dropdown a { padding: 9px 12px; border-radius: 10px; font-size: .9rem; }

.burger { display: none; background: var(--glass-2); border: 1px solid var(--line); color: #fff; width: 44px; height: 44px; border-radius: 12px; font-size: 1.3rem; cursor: pointer; }
.mobile-menu { display: none; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; padding: 70px 0 50px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.7rem); margin: 18px 0; }
.hero .lead { max-width: 540px; margin-bottom: 26px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
.hero-meta .stat { display: flex; flex-direction: column; }
.hero-meta .stat b { font-family: var(--font-sans); font-size: 1.5rem; color: #fff; }
.hero-meta .stat span { font-size: .82rem; color: var(--muted); }

/* score chip */
.score-chip {
  display: inline-flex; align-items: center; gap: 12px; padding: 8px 8px 8px 18px;
  background: var(--glass-2); border: 1px solid var(--line-strong); border-radius: var(--r-pill);
}
.score-chip .num { font-family: var(--font-sans); font-weight: 700; background: var(--mint); color: #053527; padding: 8px 14px; border-radius: var(--r-pill); }

/* =========================================================================
   SWIPE DECK + CARDS + MATCH OVERLAY
   ========================================================================= */
.swipe-stage { position: relative; width: 100%; max-width: 380px; margin: 0 auto; height: 540px; }
.swipe-deck { position: relative; width: 100%; height: 100%; }
.swipe-card {
  position: absolute; inset: 0; border-radius: var(--r-xl); overflow: hidden;
  background: var(--card); border: 1px solid var(--line-strong);
  box-shadow: var(--shadow); cursor: grab; user-select: none;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), opacity .35s;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.swipe-card.dragging { transition: none; cursor: grabbing; }
.swipe-card .photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
.swipe-card .photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,10,31,0) 35%, rgba(12,10,31,.92) 100%); }
.swipe-card .info { position: relative; padding: 22px; z-index: 2; }
.swipe-card .info h3 { font-size: 1.5rem; display: flex; align-items: center; gap: 8px; }
.swipe-card .info .age { font-weight: 500; color: var(--mist); font-size: 1.1rem; }
.swipe-card .info p { color: var(--mist); font-size: .95rem; margin: 6px 0 12px; }
.swipe-card .vibes { display: flex; gap: 7px; flex-wrap: wrap; }
.swipe-card .vibes .pill { font-size: .72rem; padding: 4px 10px; background: rgba(255,255,255,.14); color: #fff; border: 0; }
.swipe-card .verified { position: absolute; top: 16px; right: 16px; z-index: 3; background: rgba(46,230,166,.92); color: #053527; font-weight: 700; font-size: .72rem; padding: 5px 11px; border-radius: var(--r-pill); }

/* swipe stamps */
.stamp { position: absolute; top: 30px; z-index: 4; font-family: var(--font-sans); font-weight: 800; font-size: 1.6rem; letter-spacing: .06em; padding: 8px 16px; border-radius: 12px; border: 4px solid; opacity: 0; transform: rotate(-12deg); }
.stamp.like { left: 22px; color: var(--mint-bright); border-color: var(--mint-bright); transform: rotate(-16deg); }
.stamp.nope { right: 22px; color: var(--coral); border-color: var(--coral); transform: rotate(16deg); }

.swipe-controls { display: flex; gap: 16px; justify-content: center; margin-top: 22px; }
.swipe-btn { width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--glass-2); color: #fff; font-size: 1.4rem; cursor: pointer; display: grid; place-items: center; transition: transform .15s, box-shadow .2s; }
.swipe-btn:hover { transform: translateY(-3px); }
.swipe-btn.nope:hover { box-shadow: 0 10px 30px -8px rgba(255,107,107,.5); color: var(--coral); }
.swipe-btn.like { width: 72px; height: 72px; background: linear-gradient(120deg, var(--mint), var(--mint-bright)); color: #053527; font-size: 1.7rem; }
.swipe-btn.like:hover { box-shadow: var(--shadow-mint); }

/* Match overlay */
#match-overlay { position: fixed; inset: 0; z-index: 9500; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(8,5,25,.82); backdrop-filter: blur(10px); }
#match-overlay.show { display: flex; animation: fadeIn .3s ease; }
.match-card { text-align: center; max-width: 420px; }
.match-burst { font-family: var(--font-sans); font-weight: 800; font-size: clamp(2.4rem, 9vw, 4rem); background: var(--crush-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: pop .5s cubic-bezier(.2,1.4,.4,1); }
.match-card p { color: var(--mist); margin: 8px 0 24px; font-size: 1.05rem; }
.match-avatar { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 18px; background-size: cover; background-position: center; border: 3px solid var(--mint); box-shadow: var(--shadow-mint); }
.match-close { margin-top: 16px; }
.match-close a { color: var(--muted); font-size: .85rem; cursor: pointer; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* =========================================================================
   RELATIONSHIP LEVEL TRACK
   ========================================================================= */
.level-track { display: grid; gap: 12px; }
.level-row { display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: center; padding: 16px; border-radius: var(--r); background: var(--glass); border: 1px solid var(--line); }
.level-num { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; font-family: var(--font-sans); font-weight: 800; font-size: 1.3rem; background: var(--crush-soft); border: 1px solid var(--line-strong); color: #fff; }
.level-row h4 { font-size: 1.05rem; }
.level-row p { color: var(--muted); font-size: .9rem; }

/* =========================================================================
   TABLES (compare / plans)
   ========================================================================= */
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); }
table.data { width: 100%; border-collapse: collapse; min-width: 560px; font-size: .95rem; }
table.data th, table.data td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.data thead th { font-family: var(--font-sans); font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; color: var(--mint-bright); background: rgba(46,230,166,.06); }
table.data tbody tr:hover { background: var(--glass); }
table.data td b { color: #fff; }
.tick { color: var(--mint-bright); font-weight: 700; }
.cross { color: var(--coral); font-weight: 700; }

/* =========================================================================
   FEATURE GRID / ICON CARDS
   ========================================================================= */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.icon-card .ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.4rem; background: var(--crush-soft); border: 1px solid var(--line-strong); margin-bottom: 16px; }
.icon-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.icon-card p { color: var(--muted); font-size: .94rem; }

/* =========================================================================
   PROS / CONS
   ========================================================================= */
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pc-box { padding: 26px; border-radius: var(--r-lg); border: 1px solid var(--line); }
.pc-box.pros { background: rgba(46,230,166,.06); border-color: rgba(46,230,166,.25); }
.pc-box.cons { background: rgba(255,107,107,.06); border-color: rgba(255,107,107,.22); }
.pc-box h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.pc-box li { display: flex; gap: 10px; margin-bottom: 12px; color: var(--mist); font-size: .96rem; }
.pc-box.pros li::before { content: "✓"; color: var(--mint-bright); font-weight: 800; }
.pc-box.cons li::before { content: "✕"; color: var(--coral); font-weight: 800; }

/* =========================================================================
   VERDICT / SCORE
   ========================================================================= */
.verdict { display: grid; grid-template-columns: 200px 1fr; gap: 30px; align-items: center; }
.score-ring { width: 180px; height: 180px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--mint) 0% 76%, rgba(255,255,255,.08) 76% 100%); margin: 0 auto; }
.score-ring .inner { width: 144px; height: 144px; border-radius: 50%; background: #14112e; display: grid; place-items: center; flex-direction: column; text-align: center; }
.score-ring .inner b { font-family: var(--font-sans); font-size: 2.6rem; color: #fff; line-height: 1; }
.score-ring .inner span { font-size: .78rem; color: var(--muted); }

.score-bars { display: grid; gap: 12px; }
.score-bar label { display: flex; justify-content: space-between; font-size: .9rem; margin-bottom: 5px; }
.score-bar .track { height: 9px; border-radius: 99px; background: rgba(255,255,255,.08); overflow: hidden; }
.score-bar .fill { height: 100%; background: var(--crush); border-radius: 99px; }

/* =========================================================================
   FAQ / ACCORDION
   ========================================================================= */
.faq-item { border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; overflow: hidden; background: var(--glass); }
.faq-q { width: 100%; text-align: left; padding: 18px 22px; background: none; border: 0; color: #fff; font-family: var(--font-sans); font-weight: 600; font-size: 1.02rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-q .chev { transition: transform .25s; color: var(--mint-bright); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 22px; color: var(--mist); }
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 20px; }

/* =========================================================================
   QUICK SUMMARY / CALLOUT
   ========================================================================= */
.callout { padding: 24px 26px; border-radius: var(--r-lg); background: var(--crush-soft); border: 1px solid var(--line-strong); }
.callout.mint { background: rgba(46,230,166,.08); border-color: rgba(46,230,166,.28); }
.callout h3 { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }

/* TOC */
.toc { position: sticky; top: 88px; }
.toc h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 12px; }
.toc a { display: block; padding: 7px 12px; border-radius: 9px; color: var(--mist); font-size: .9rem; border-left: 2px solid transparent; }
.toc a:hover { color: #fff; background: var(--glass); }

/* breadcrumbs / byline */
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a:hover { color: var(--mint-bright); }
.byline { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: .88rem; margin: 14px 0 30px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.byline .av { width: 36px; height: 36px; border-radius: 50%; background: var(--crush); }

/* article body */
.article { font-size: 1.06rem; }
.article h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 42px 0 16px; }
.article h3 { font-size: 1.3rem; margin: 28px 0 12px; }
.article p { margin-bottom: 18px; color: var(--mist); }
.article ul.bul { margin: 0 0 18px; padding-left: 4px; }
.article ul.bul li { display: flex; gap: 10px; margin-bottom: 10px; color: var(--mist); }
.article ul.bul li::before { content: "♥"; color: var(--hot); font-size: .9rem; margin-top: 2px; }
.article-grid { display: grid; grid-template-columns: 240px 1fr; gap: 46px; align-items: start; }

/* affiliate disclosure inline */
.aff-note { font-size: .8rem; color: var(--muted); background: var(--glass); border: 1px solid var(--line); border-radius: var(--r); padding: 10px 16px; display: flex; gap: 8px; align-items: center; }

/* CTA band */
.cta-band { background: var(--crush); border-radius: var(--r-xl); padding: 50px 40px; text-align: center; box-shadow: var(--shadow-pink); position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 12px auto 26px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { border-top: 1px solid var(--line); padding: 56px 0 30px; margin-top: 40px; background: rgba(8,5,25,.4); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-grid h5 { font-family: var(--font-sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--mint-bright); margin-bottom: 14px; }
.footer-grid a { display: block; color: var(--muted); font-size: .92rem; padding: 5px 0; }
.footer-grid a:hover { color: #fff; }
.footer-disclosure { font-size: .8rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 24px; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 22px; font-size: .82rem; color: var(--muted); }
.adult-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,46,147,.12); border: 1px solid rgba(255,46,147,.3); color: #ff9ec4; font-weight: 700; padding: 4px 11px; border-radius: var(--r-pill); font-size: .78rem; }

/* utility */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); background: linear-gradient(120deg, var(--mint), var(--mint-bright)); color: #053527; font-weight: 700; padding: 13px 24px; border-radius: var(--r-pill); box-shadow: var(--shadow-mint); opacity: 0; pointer-events: none; transition: all .3s; z-index: 9999; font-family: var(--font-sans); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.mt-0{margin-top:0}.mt-1{margin-top:14px}.mt-2{margin-top:26px}.mt-3{margin-top:40px}
.mb-2{margin-bottom:26px}.mb-3{margin-bottom:40px}
.coupon-code { font-family: var(--font-sans); font-weight: 800; letter-spacing: .12em; font-size: 1.4rem; padding: 12px 22px; border: 2px dashed var(--mint); border-radius: var(--r); color: var(--mint-bright); background: rgba(46,230,166,.06); cursor: pointer; }
.countdown { display: flex; gap: 12px; justify-content: center; }
.countdown .unit { background: var(--glass-2); border: 1px solid var(--line-strong); border-radius: var(--r); padding: 12px 16px; min-width: 70px; text-align: center; }
.countdown .unit b { font-family: var(--font-sans); font-size: 1.7rem; color: #fff; display: block; }
.countdown .unit span { font-size: .72rem; color: var(--muted); text-transform: uppercase; }
.strike { text-decoration: line-through; color: var(--muted); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .swipe-stage { max-width: 340px; height: 480px; }
  .article-grid { grid-template-columns: 1fr; gap: 0; }
  .toc { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .verdict { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 54px 0; }
  .nav-links, .nav-cta .btn:not(.burger) { display: none; }
  .burger { display: grid; place-items: center; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2, .pc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 30px; }
  .mobile-menu.open { display: flex; flex-direction: column; gap: 4px; padding: 14px 0 18px; border-top: 1px solid var(--line); }
  .mobile-menu a { padding: 11px 14px; border-radius: 10px; color: var(--mist); font-family: var(--font-sans); font-weight: 600; }
  .mobile-menu a:hover { background: var(--glass-2); color: #fff; }
}
@media (max-width: 480px) {
  .cta-band { padding: 36px 22px; }
  .swipe-stage { max-width: 300px; height: 440px; }
}
