/* ─── Variables ──────────────────────────────────────────────── */
:root {
  --bg:           #0d0d1a;
  --bg2:          #111126;
  --primary:      #e91e8c;
  --primary-dark: #c41474;
  --primary-glow: rgba(233,30,140,0.28);
  --orange:       #ff6b00;
  --orange-glow:  rgba(255,107,0,0.20);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --white:        #ffffff;
  --w85:          rgba(255,255,255,0.85);
  --w70:          rgba(255,255,255,0.70);
  --w55:          rgba(255,255,255,0.55);
  --w40:          rgba(255,255,255,0.40);
  --w30:          rgba(255,255,255,0.30);
  --w20:          rgba(255,255,255,0.20);
  --w15:          rgba(255,255,255,0.15);
  --w10:          rgba(255,255,255,0.10);
  --w08:          rgba(255,255,255,0.08);
  --w06:          rgba(255,255,255,0.06);
  --w04:          rgba(255,255,255,0.04);
  --card-bg:      rgba(255,255,255,0.04);
  --card-border:  rgba(255,255,255,0.08);
  --radius:       0.75rem;
  --radius-sm:    0.5rem;
  --max-w:        72rem;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { color-scheme: dark; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
svg { display: block; }
strong { font-weight: 600; }
ul { list-style: none; }

/* ─── Atmospheric gradients ──────────────────────────────────── */
.bg-gradients {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.bg-grad { position: absolute; border-radius: 50%; }
.bg-orange {
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, hsl(25,80%,50%), transparent 70%);
  opacity: 0.18;
}
.bg-magenta {
  bottom: 10%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 450px;
  background: radial-gradient(ellipse, #e91e8c, transparent 70%);
  opacity: 0.12;
}
.bg-violet-left {
  top: -80px; left: -80px;
  width: 700px; height: 550px;
  background: radial-gradient(ellipse, hsl(265,55%,22%), transparent 70%);
  opacity: 0.30;
}
.bg-violet-right {
  top: -80px; right: -80px;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse, hsl(252,45%,18%), transparent 70%);
  opacity: 0.25;
}
.bg-lavender {
  top: 35%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 300px;
  background: radial-gradient(ellipse, hsl(270,40%,40%), transparent 70%);
  opacity: 0.07;
}

/* ─── Palm silhouettes ───────────────────────────────────────── */
.palms {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1; overflow: hidden;
}
.palm { position: absolute; bottom: 0; color: hsl(252,35%,7%); }
.palm-bl  { left: -24px;  width: 112px; height: 320px; opacity: 0.35; }
.palm-bl2 { left:  64px;  width:  80px; height: 240px; opacity: 0.20; }
.palm-br  { right: -24px; width: 112px; height: 320px; opacity: 0.35; }
.palm-br2 { right:  64px; width:  80px; height: 240px; opacity: 0.20; }

/* ─── Header / Nav ───────────────────────────────────────────── */
.site-header {
  position: relative; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: var(--max-w); margin: 0 auto;
  gap: 1rem;
}
.logo {
  display: inline-flex; align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  height: 43px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.nav-links {
  display: none;
  align-items: center; gap: 2rem;
  font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--w55);
}
.nav-links a:hover { color: var(--white); }
.nav-plat-link {
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--w15);
  border-radius: 9999px;
  font-size: 0.6875rem !important;
  background: var(--w04);
  color: var(--w55) !important;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.nav-plat-link:hover { border-color: var(--primary); color: var(--primary) !important; background: rgba(233,30,140,0.08); }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-pills {
  display: flex; gap: 0.5rem; flex-shrink: 0;
}
.nav-pill {
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--w15);
  border-radius: 9999px;
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--w55); background: var(--w04);
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero-section {
  position: relative; z-index: 10;
  padding: 3rem 1.5rem 5rem;
  background-image:
    linear-gradient(to right, rgba(8,8,20,0.88) 40%, rgba(8,8,20,0.45) 100%),
    url("/hero-bg.webp");
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(233,30,140,0.35);
  border-radius: 9999px; background: rgba(233,30,140,0.08);
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.75rem;
}
.hero-badge svg { flex-shrink: 0; color: var(--primary); }

.hero-title {
  font-family: var(--font-display);
  font-style: italic; font-weight: 800;
  line-height: 0.88; text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.hero-title-main {
  display: block;
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--white);
}
.hero-title-sub {
  display: block;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  color: var(--w85);
}

.hero-platform-label {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-desc {
  color: var(--w55);
  font-size: 0.9375rem; line-height: 1.75;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.375rem;
  height: 2.875rem; padding: 0 1.5rem;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--white); font-weight: 600; font-size: 0.875rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  box-shadow: 0 4px 24px var(--primary-glow);
}
.btn-primary:hover {
  background: hsl(330,75%,60%);
  box-shadow: 0 4px 32px rgba(233,30,140,0.42);
}
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  display: inline-flex; align-items: center;
  height: 2.875rem; padding: 0 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--w15);
  background: var(--w04);
  color: var(--w70); font-weight: 500; font-size: 0.875rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--w30); color: var(--white); background: var(--w08); }

/* ─── Countdown ──────────────────────────────────────────────── */
.hero-countdown {
  display: flex; flex-direction: column; align-items: flex-start;
}
@media (min-width: 900px) {
  .hero-countdown { align-items: flex-end; }
}
.countdown-label {
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--w30); margin-bottom: 1.5rem;
}
.countdown-row { display: flex; align-items: flex-start; gap: 0.625rem; }
.cd-block { display: flex; flex-direction: column; align-items: center; gap: 0.625rem; transition: transform 75ms; }
.cd-block.cd-tick { transform: scale(1.05); }
.cd-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700; font-style: italic;
  color: var(--white); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-line { width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--w20), transparent); }
.cd-label { font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--w30); }
.cd-sep {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; color: var(--primary);
  opacity: 0.5; margin-bottom: 1.5rem; user-select: none; line-height: 1;
}

/* ─── Ticker ─────────────────────────────────────────────────── */
.ticker {
  position: relative; z-index: 10;
  background: rgba(233,30,140,0.10);
  border-top: 1px solid rgba(233,30,140,0.20);
  border-bottom: 1px solid rgba(233,30,140,0.20);
  overflow: hidden;
  padding: 0.75rem 0;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker-move 40s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-inner { display: inline-flex; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-size: 0.8125rem; font-weight: 700; font-style: italic;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--primary);
}
.ticker-star { opacity: 0.6; }
@keyframes ticker-move {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Section common ─────────────────────────────────────────── */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-container--narrow { max-width: 56rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--w55); font-size: 0.9375rem;
  margin-bottom: 2rem;
}

/* ─── How-to Section ─────────────────────────────────────────── */
.how-to-section {
  position: relative; z-index: 10;
  padding: 5rem 0;
  border-top: 1px solid var(--w06);
}
.how-to-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .how-to-grid { grid-template-columns: repeat(3, 1fr); } }

.how-to-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, background 0.2s;
}
.how-to-card:hover { border-color: var(--w20); background: var(--w06); }

.how-to-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(233,30,140,0.3);
  background: rgba(233,30,140,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}
.how-to-icon svg { width: 1.25rem; height: 1.25rem; }
.how-to-platform {
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.375rem;
}
.how-to-title {
  font-family: var(--font-display);
  font-size: 1.125rem; font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--white); margin-bottom: 0.75rem;
}
.how-to-desc { font-size: 0.875rem; color: var(--w55); line-height: 1.7; }

/* ─── Cheats Section ─────────────────────────────────────────── */
.cheats-section {
  position: relative; z-index: 10;
  padding: 5rem 0;
  border-top: 1px solid var(--w06);
}

.notice-banner {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: 0.875rem; color: rgba(255,200,150,0.9);
  margin-bottom: 0;
}
.notice-banner svg { flex-shrink: 0; margin-top: 0.1rem; color: var(--orange); }
.notice-banner strong { color: var(--orange); }

/* Inline email CTA */
.inline-cta {
  padding: 0.75rem 1.25rem;
  background: rgba(233,30,140,0.07);
  border: 1px solid rgba(233,30,140,0.2);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 2.5rem;
}
.inline-email-form {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.8125rem;
}
.inline-email-form > svg { color: var(--primary); flex-shrink: 0; }
.inline-cta-label { color: var(--w55); white-space: nowrap; }
.inline-email-input {
  flex: 1; min-width: 180px; max-width: 280px;
  height: 2rem; padding: 0 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white); font-size: 0.8125rem;
}
.inline-email-input::placeholder { color: var(--w30); }
.inline-email-input:focus { outline: none; border-color: var(--primary); }
.inline-email-btn {
  height: 2rem; padding: 0 1rem;
  background: var(--primary); border: none; border-radius: var(--radius-sm);
  color: var(--white); font-size: 0.8rem; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: opacity 0.15s;
}
.inline-email-btn:hover { opacity: 0.85; }
.inline-email-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.inline-email-error { color: #ff6b6b; font-size: 0.75rem; }
.inline-email-success {
  font-size: 0.8125rem; color: #4ade80; margin: 0;
  padding: 0.1rem 0;
}

/* Platform tabs */
.platform-tabs {
  display: flex; gap: 0.5rem;
  margin-bottom: 2rem;
}
.tab-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  height: 2.5rem; padding: 0 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--w15);
  background: var(--w04);
  color: var(--w55); font-weight: 600; font-size: 0.8125rem;
  transition: all 0.15s;
}
.tab-btn:hover { border-color: var(--w30); color: var(--white); }
.tab-btn.active {
  background: var(--primary); border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px var(--primary-glow);
}
.tab-btn svg { flex-shrink: 0; }
.plat-icon {
  flex-shrink: 0;
  filter: invert(1) brightness(0.75);
  object-fit: contain;
}
.tab-btn:hover .plat-icon { filter: invert(1) brightness(1); }
.tab-btn.active .plat-icon { filter: invert(1) brightness(1); }

/* Cheat cards grid */
.cheats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px)  { .cheats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cheats-grid { grid-template-columns: repeat(3, 1fr); } }

.cheat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: 0.625rem;
  transition: border-color 0.15s, background 0.15s;
}
.cheat-card:hover { border-color: var(--w20); background: var(--w06); }

.cheat-card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 0.5rem;
}
.cheat-name {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white); line-height: 1.2;
}
.cheat-badge {
  flex-shrink: 0;
  font-size: 0.5625rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid currentColor;
}
.cat-health   { color: #ff5c8a; background: rgba(255,92,138,0.10); }
.cat-weapons  { color: var(--orange); background: rgba(255,107,0,0.10); }
.cat-wanted   { color: #f72585; background: rgba(247,37,133,0.10); }
.cat-movement { color: #7b5ef8; background: rgba(123,94,248,0.10); }
.cat-vehicles { color: #00b4d8; background: rgba(0,180,216,0.10); }
.cat-weather  { color: #4cc9f0; background: rgba(76,201,240,0.10); }
.cat-special  { color: #3a86ff; background: rgba(58,134,255,0.10); }

.cheat-desc { font-size: 0.8125rem; color: var(--w40); line-height: 1.55; }

.cheat-code {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: auto;
  padding: 0.625rem 0.75rem;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--w08);
  border-radius: var(--radius-sm);
}
.cheat-code.hidden { display: none; }

.code-str {
  flex: 1; min-width: 0;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem; line-height: 1.5;
  color: var(--w70);
  word-break: break-word;
}
.pc-code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem; font-weight: 600;
  color: var(--primary); letter-spacing: 0.1em;
  text-transform: uppercase;
}

.copy-btn {
  flex-shrink: 0;
  height: 1.875rem; padding: 0 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid var(--w15);
  background: var(--w06);
  color: var(--w55); font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.15s;
}
.copy-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(233,30,140,0.08); }
.copy-btn.copied { border-color: #22c55e; color: #22c55e; background: rgba(34,197,94,0.08); }

/* ─── Reactions ──────────────────────────────────────────────── */
.reaction-row {
  display: flex; gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--w06);
  margin-top: 0.75rem;
}
.rxn-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.2rem 0.65rem;
  border: 1px solid var(--w10);
  border-radius: 9999px;
  background: transparent;
  color: var(--w40);
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  user-select: none;
}
.rxn-btn:hover { border-color: var(--w30); color: var(--w70); background: var(--w04); }
.rxn-btn.rxn-active {
  border-color: var(--primary);
  background: rgba(233,30,140,0.10);
  color: var(--primary);
}
.rxn-voted .rxn-btn:not(.rxn-active) { opacity: 0.38; cursor: default; }
.rxn-count { font-variant-numeric: tabular-nums; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-section {
  position: relative; z-index: 10;
  padding: 5rem 0;
  border-top: 1px solid var(--w06);
}
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item.open { border-color: var(--w20); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.125rem 1.25rem;
  font-size: 0.9375rem; font-weight: 500; color: var(--w85);
  background: none;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--white); }
.faq-icon {
  flex-shrink: 0; width: 1.125rem; height: 1.125rem;
  color: var(--w30);
  transition: transform 0.25s, color 0.15s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--primary); }
.faq-a {
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner { padding: 0 1.25rem 1.25rem; font-size: 0.875rem; color: var(--w55); line-height: 1.75; }

/* ─── Article ────────────────────────────────────────────────── */
.article-section {
  position: relative; z-index: 10;
  padding: 5rem 0;
  border-top: 1px solid var(--w06);
}
.guide-article {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.guide-article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 1.5rem;
}
.guide-article h3 {
  font-family: var(--font-display);
  font-size: 1.125rem; font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--primary);
  margin: 2rem 0 0.75rem;
}
.guide-article p {
  font-size: 0.9375rem; color: var(--w55);
  line-height: 1.8; margin-bottom: 1rem;
}
.guide-article ul {
  margin: 0.5rem 0 1rem; padding-left: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.guide-article ul li {
  font-size: 0.9375rem; color: var(--w55); line-height: 1.7;
  padding-left: 1.25rem; position: relative;
}
.guide-article ul li::before {
  content: "›";
  position: absolute; left: 0;
  color: var(--primary); font-weight: 700;
}
.guide-article strong { color: var(--w85); }

/* ─── Email CTA section ──────────────────────────────────────── */
.cta-section {
  position: relative; z-index: 10;
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--w06);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.cta-form-wrap {
  width: 100%; max-width: 36rem;
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  background: var(--card-bg);
  padding: 3rem 2.5rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
@media (max-width: 480px) {
  .cta-form-wrap { padding: 2rem 1.25rem; }
}
.cta-eyebrow {
  font-size: 0.875rem; color: var(--w40);
  margin-bottom: 0.5rem; letter-spacing: 0.03em;
}
.cta-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--white); margin-bottom: 1.5rem;
  line-height: 1.4;
}
.cta-sub {
  font-size: 0.875rem; color: var(--w40);
  font-weight: 300; margin-bottom: 1.25rem; line-height: 1.6;
}

.cta-form {
  display: flex; gap: 0.75rem;
  width: 100%; max-width: 28rem; margin: 0 auto;
}
@media (max-width: 480px) { .cta-form { flex-direction: column; } }
.cta-input {
  flex: 1; height: 3.25rem;
  border-radius: 0.625rem;
  border: 1px solid var(--w10);
  background: rgba(255,255,255,0.06);
  color: var(--white); font-size: 0.9375rem;
  font-family: var(--font-body);
  padding: 0 1.125rem; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.cta-input::placeholder { color: var(--w25); }
.cta-input:focus {
  border-color: rgba(233,30,140,0.45);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.12);
}
.cta-privacy {
  font-size: 0.8125rem; color: var(--w30);
  margin-top: 1rem; letter-spacing: 0.01em;
}
.cta-success {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem; padding: 1rem 0;
}
.success-text { font-size: 1rem; color: var(--w70); }
.form-row { display: flex; flex-direction: column; gap: 0.625rem; }
@media (min-width: 480px) { .form-row { flex-direction: row; } }
.form-input {
  flex: 1; height: 3rem;
  border-radius: var(--radius);
  border: 1px solid var(--w10);
  background: rgba(255,255,255,0.06);
  color: var(--white); font-size: 0.875rem;
  font-family: var(--font-body);
  padding: 0 1rem; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input::placeholder { color: var(--w20); }
.form-input:focus {
  border-color: rgba(233,30,140,0.45);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.12);
}
.form-btn {
  height: 3rem; padding: 0 1.75rem;
  border-radius: var(--radius);
  background: var(--primary); color: var(--white);
  font-size: 0.875rem; font-weight: 600;
  font-family: var(--font-body); white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  box-shadow: 0 4px 24px var(--primary-glow);
}
.form-btn:hover { background: hsl(330,75%,60%); box-shadow: 0 4px 32px rgba(233,30,140,0.42); }
.form-btn:active { transform: scale(0.97); }
.form-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.form-error { font-size: 0.6875rem; color: var(--primary); margin-top: 0.5rem; }
.cta-hint { font-size: 0.6875rem; color: var(--w20); margin-top: 0.875rem; font-weight: 300; }

/* ─── Success state ──────────────────────────────────────────── */
.success-state {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 2.5rem 0;
}
.success-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(233,30,140,0.30);
  background: rgba(233,30,140,0.08);
  display: flex; align-items: center; justify-content: center;
}
.success-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.success-title {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--white);
}
.success-sub { font-size: 0.875rem; color: var(--w40); max-width: 26rem; text-align: center; line-height: 1.6; }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  position: relative; z-index: 10;
  padding: 0 1.5rem 2rem;
  margin-top: 2rem;
}
.footer-sep {
  width: 100%; max-width: var(--max-w); margin: 0 auto 2rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--w08), transparent);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem;
  font-size: 0.6875rem; color: var(--w25); font-weight: 300;
}
@media (min-width: 640px) { .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--w55);
}
.footer-links { display: flex; align-items: center; gap: 1.5rem; }
.footer-links a:hover { color: var(--w55); }

/* ─── Nav: active state & dropdown ────────────────────────────── */
.nav-active { color: var(--primary) !important; }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.25rem; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  padding-top: 0.625rem;
  background: transparent;
  border: none;
  z-index: 200;
}
.nav-dropdown-inner {
  background: #1a1a2e;
  border: 1px solid var(--w15);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.45rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  color: var(--w70);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--w06); color: var(--primary); }

/* ─── Subpage hero ───────────────────────────────────────────── */
.subpage-hero {
  padding: 6rem 1.5rem 3rem;
  position: relative; z-index: 10;
}
.subpage-hero .section-container { max-width: var(--max-w); margin: 0 auto; }
.subpage-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800; font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--white);
  margin: 1rem 0 1.25rem;
}
.subpage-hero-desc {
  font-size: 1.0625rem;
  color: var(--w55);
  max-width: 52ch;
  line-height: 1.7;
}
.hero-highlight { color: var(--primary); display: block; }

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; color: var(--w40);
  margin-bottom: 0.5rem;
}
.breadcrumb a { color: var(--w55); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span[aria-hidden] { color: var(--w25); }
.breadcrumb [aria-current] { color: var(--w55); }

/* ─── Subpage hero category badge ────────────────────────────── */
.subpage-hero-badge {
  display: inline-flex; align-items: center;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  border: 1px solid;
  margin: 0.5rem 0 0.25rem;
}

/* ─── Category grid (categories index) ──────────────────────── */
.cat-grid-section { padding: 1.5rem 1.5rem 4rem; position: relative; z-index: 10; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.cat-card {
  display: flex; flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  backdrop-filter: blur(4px);
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(233,30,140,0.15);
  border-color: rgba(233,30,140,0.35);
}
.cat-card-icon {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.625rem;
  background: var(--w06);
  color: var(--primary);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cat-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.375rem;
}
.cat-card-tagline {
  font-size: 0.8125rem; color: var(--w55); line-height: 1.5;
  margin-bottom: 1.25rem; flex: 1;
}
.cat-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--w08);
}
.cat-card-count {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--w40);
}
.cat-card-arrow {
  font-size: 0.8125rem; font-weight: 600;
  color: var(--primary);
  transition: transform 0.15s;
}
.cat-card:hover .cat-card-arrow { transform: translateX(4px); }
.cat-grid-note {
  font-size: 0.8125rem; color: var(--w30); text-align: center; line-height: 1.6;
}
.cat-grid-note a { color: var(--primary); text-decoration: underline; }

/* ─── Resource cards ─────────────────────────────────────────── */
.internal-links-section { padding: 0 1.5rem 4rem; position: relative; z-index: 10; }
.resource-cards { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .resource-cards { flex-direction: row; } }
.resource-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  flex: 1;
  transition: border-color 0.2s, transform 0.15s;
}
.resource-card:hover { border-color: rgba(233,30,140,0.35); transform: translateY(-2px); }
.resource-card-icon {
  width: 2.75rem; height: 2.75rem;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.5rem;
  background: var(--w06);
  color: var(--primary);
}
.resource-card > div:not(.resource-card-icon) { flex: 1; }
.resource-card strong { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.resource-card p { font-size: 0.8125rem; color: var(--w40); line-height: 1.4; }
.resource-card-arrow { font-size: 1.125rem; color: var(--primary); flex-shrink: 0; transition: transform 0.15s; }
.resource-card:hover .resource-card-arrow { transform: translateX(4px); }

/* ─── Category pills ─────────────────────────────────────────── */
.other-cats-section { padding: 0 1.5rem 4rem; position: relative; z-index: 10; }
.cat-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cat-pill {
  display: inline-flex; align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  border: 1px solid var(--w15);
  background: var(--w06);
  color: var(--w70);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.cat-pill:hover { background: rgba(233,30,140,0.12); border-color: rgba(233,30,140,0.4); color: var(--primary); }

/* ─── Back link ──────────────────────────────────────────────── */
.back-link-wrap { margin-top: 2.5rem; }
.back-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--w55);
  border: 1px solid var(--w15);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  transition: border-color 0.15s, color 0.15s;
}
.back-link:hover { border-color: var(--primary); color: var(--primary); }

/* ─── Guide page ─────────────────────────────────────────────── */
.toc-section { padding: 0 1.5rem 1.5rem; position: relative; z-index: 10; }
.toc-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}
.toc-title {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 0.875rem;
}
.toc-list { list-style: decimal; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.toc-list a { font-size: 0.9rem; color: var(--w55); transition: color 0.15s; text-decoration: underline; text-underline-offset: 3px; }
.toc-list a:hover { color: var(--primary); }

/* Guide layout — sidebar TOC + article */
.guide-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 2rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 900px) {
  .guide-layout {
    grid-template-columns: 220px 1fr;
    gap: 3rem;
  }
}

/* Guide TOC sidebar */
.guide-toc-inner {
  position: sticky;
  top: 5rem;
}
.guide-toc-label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--w40);
  margin-bottom: 1rem;
}
.guide-toc nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.guide-toc nav a {
  font-size: 0.875rem;
  color: var(--w55);
  text-decoration: none;
  transition: color 0.15s;
  line-height: 1.5;
}
.guide-toc nav a:hover { color: var(--primary); }

/* Guide sections */
.guide-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--w06);
}
.guide-section:last-child { border-bottom: none; }

.guide-content-section { padding: 0 1.5rem 4rem; position: relative; z-index: 10; }
.guide-article--full { max-width: none; }
.guide-intro { font-size: 1.0625rem; color: var(--w70); line-height: 1.75; margin-bottom: 2.5rem; }
.guide-h2 {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-family: var(--font-display);
  font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white);
  margin: 3rem 0 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--w08);
}
.guide-h2:first-of-type { border-top: none; }
.guide-plat-icon { flex-shrink: 0; opacity: 0.9; }
.guide-steps { display: flex; flex-direction: column; gap: 3.5rem; margin: 2.5rem 0; }
.guide-step {
  display: flex; gap: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem 2rem;
}
.guide-step-num {
  flex-shrink: 0;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: rgba(233,30,140,0.15);
  border: 1px solid rgba(233,30,140,0.35);
  color: var(--primary);
  font-weight: 700; font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center;
}
.guide-step-body { flex: 1; }
.guide-step-body strong { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.guide-step-body p { font-size: 0.875rem; color: var(--w55); line-height: 1.6; }
.guide-tip-box {
  background: rgba(233,30,140,0.07);
  border: 1px solid rgba(233,30,140,0.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.875rem; color: var(--w70); line-height: 1.6;
  margin: 1.5rem 0;
}
.guide-tip-box strong { color: var(--primary); }
.guide-list { display: flex; flex-direction: column; gap: 0.75rem; padding-left: 1rem; }
.guide-list li {
  font-size: 0.9375rem; color: var(--w55); line-height: 1.6;
  padding-left: 0.5rem;
  list-style: disc;
}
.guide-list li strong { color: var(--w85); }
.inline-code {
  font-family: 'Courier New', monospace;
  font-size: 0.875em;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--w15);
  border-radius: 0.25rem;
  padding: 0.1em 0.4em;
  color: var(--primary);
}

/* ─── Nav platform pills (subpage nav) ────────────────────────── */
.nav-plat-divider {
  color: var(--w15);
  font-size: 0.875rem;
  user-select: none;
}
.nav-plat-pill {
  display: inline-flex; align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--w15);
  color: var(--w55);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.nav-plat-pill:hover {
  border-color: rgba(233,30,140,0.5);
  color: var(--primary);
  background: rgba(233,30,140,0.08);
}

/* ─── Map CTA section ────────────────────────────────────────── */
.map-cta-section {
  position: relative;
  z-index: 10;
  margin: 2rem 1.5rem 3rem;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0,229,255,0.20);
  background: linear-gradient(135deg, rgba(0,10,30,0.95) 0%, rgba(10,5,35,0.95) 100%);
  box-shadow: 0 0 0 1px rgba(0,229,255,0.08), 0 24px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}
@media (min-width: 900px) {
  .map-cta-section { margin: 2rem auto 3rem; max-width: var(--max-w); }
}

/* outer box */
.map-cta-box {
  position: relative;
  overflow: hidden;
}
/* dot grid background */
.map-cta-dot-grid {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(10, 1fr);
  pointer-events: none;
  opacity: 0.35;
}
.map-cta-dot {
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(0,229,255,0.6);
  place-self: center;
}
.map-cta-dot:nth-child(3n) { background: rgba(233,30,140,0.5); }
.map-cta-dot:nth-child(7n) { background: rgba(255,107,0,0.4); }
.map-cta-dot:nth-child(5n) { width: 3px; height: 3px; opacity: 0.8; }

/* content */
.map-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2.5rem;
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .map-cta-content { padding: 2.5rem 1.25rem; }
}
.map-cta-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center;
}
@media (max-width: 480px) {
  .map-cta-badges { display: none; }
}
.map-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.22);
  color: rgba(0,229,255,0.85);
}
.map-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800; font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--white);
}
.map-cta-highlight {
  background: linear-gradient(90deg, #00e5ff, #e91e8c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.map-cta-desc {
  font-size: 1rem; color: var(--w55); max-width: 48ch; line-height: 1.7;
}
.map-cta-btn {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #00b4cc, #0088a8);
  color: #fff;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(0,180,204,0.4), 0 0 0 1px rgba(0,229,255,0.3);
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.map-cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #00c8e6, #0099bb);
  box-shadow: 0 8px 32px rgba(0,200,230,0.5), 0 0 0 1px rgba(0,229,255,0.5);
}
.map-cta-btn:active { transform: translateY(0); }
.map-cta-btn-arrow {
  font-size: 1.125rem;
  transition: transform 0.15s;
}
.map-cta-btn:hover .map-cta-btn-arrow { transform: translateX(4px); }
.map-cta-hint {
  font-size: 0.75rem; color: var(--w25); letter-spacing: 0.04em;
}

/* ── Language Switcher ──────────────────────────────────────── */
.nav-lang-switcher { position: relative; }
.lang-trigger {
  display: flex; align-items: center; gap: 0.3rem;
  background: none; border: none; cursor: pointer;
  color: var(--w70); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.4rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}
.lang-trigger:hover { color: var(--neon-cyan); }
.lang-trigger svg { flex-shrink: 0; }
.lang-current { font-size: 0.75rem; }
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 100;
  padding-top: 0.5rem;
}
.lang-dropdown-menu.lang-open { display: block; }
.lang-dropdown-inner {
  background: rgba(14,10,30,0.97);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 7rem;
}
.lang-opt {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--w70);
  transition: background 0.12s, color 0.12s;
  text-decoration: none;
  white-space: nowrap;
}
.lang-opt:hover { background: rgba(0,229,255,0.08); color: var(--neon-cyan); }
.lang-opt--active { color: var(--neon-cyan); background: rgba(0,229,255,0.05); }

/* Mobile: show lang switcher nicely */
@media (max-width: 600px) {
  .lang-dropdown-menu { right: auto; left: 0; }
}

/* ── Nav plat pill styling fix ──────────────────────────────── */
.nav-plat-pill {
  display: inline-flex; align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.07em;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--w55);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  text-decoration: none;
}
.nav-plat-pill:hover { background: rgba(0,229,255,0.1); color: var(--neon-cyan); border-color: rgba(0,229,255,0.3); }
.nav-plat-divider { color: var(--w25); font-size: 0.85rem; user-select: none; }

/* ── Mobile hamburger button ─────────────────────────────────── */
.mob-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: none; border: none; cursor: pointer;
  padding: 0; flex-shrink: 0; z-index: 110;
}
.mob-menu-btn span {
  display: block;
  width: 100%; height: 2px;
  background: var(--w70);
  border-radius: 2px;
  transition: background 0.15s;
}
.mob-menu-btn:hover span { background: var(--white); }
@media (min-width: 768px) { .mob-menu-btn { display: none; } }

/* ── Mobile overlay ──────────────────────────────────────────── */
.mob-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 200;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.mob-overlay.mob-open { display: block; }

/* ── Mobile drawer ───────────────────────────────────────────── */
.mob-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 88vw); height: 100dvh;
  background: rgba(10,8,25,0.99);
  border-left: 1px solid rgba(255,255,255,0.07);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mob-drawer.mob-open { transform: translateX(0); }
.mob-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.mob-close-btn {
  background: none; border: none; cursor: pointer;
  color: var(--w55); padding: 0.3rem;
  border-radius: 0.25rem;
  transition: color 0.15s, background 0.15s;
  line-height: 0;
}
.mob-close-btn:hover { color: var(--white); background: var(--w06); }
.mob-nav {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0 2rem;
  flex: 1;
}
.mob-nav-link {
  display: block;
  padding: 0.8rem 1.5rem;
  font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--w70);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  border-left: 3px solid transparent;
}
.mob-nav-link:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.mob-nav-active { color: var(--primary) !important; border-left-color: var(--primary); }
.mob-nav-sub {
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0 0.75rem 1rem;
  margin: 0 1.5rem 0.25rem;
  border-left: 2px solid rgba(255,255,255,0.08);
  gap: 0.1rem;
}
.mob-nav-sub-link {
  display: block;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem; font-weight: 500;
  color: var(--w55);
  text-decoration: none;
  border-radius: 0.375rem;
  transition: color 0.12s, background 0.12s;
}
.mob-nav-sub-link:hover { color: var(--white); background: var(--w06); }
.mob-nav-platforms {
  display: flex;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 0.5rem;
}
.mob-nav-lang {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: auto;
}
@media (min-width: 768px) {
  .mob-overlay, .mob-drawer { display: none !important; }
}

/* ── Guide page enhancements ────────────────────────────────── */
.guide-history-cta { font-style: italic; color: var(--w55); }
.guide-history-cta a { color: var(--neon-cyan); }

/* ── Legal pages ─────────────────────────────────────────────── */
.legal-main {
  min-height: 80vh;
  padding: 6rem 1.5rem 4rem;
}
.legal-container {
  max-width: 780px;
  margin: 0 auto;
}
.legal-breadcrumb {
  font-size: 0.85rem;
  color: var(--w55);
  margin-bottom: 1.5rem;
}
.legal-breadcrumb a { color: var(--neon-cyan); text-decoration: none; }
.legal-breadcrumb a:hover { text-decoration: underline; }
.legal-h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.hero-title-accent { color: var(--neon-cyan, #00e5ff); }
.legal-last-updated {
  font-size: 0.85rem;
  color: var(--w55);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin: 2rem 0 0.75rem;
}
.legal-body p {
  color: var(--w75);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.legal-quickbox {
  background: rgba(0,229,255,0.07);
  border-left: 3px solid var(--neon-cyan);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  color: var(--w75);
  line-height: 1.6;
}
.legal-quickbox strong { color: #fff; }
.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.legal-list li {
  color: var(--w75);
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
  line-height: 1.6;
}
.legal-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--neon-cyan);
  font-weight: 700;
}
.legal-author-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.legal-author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
img.legal-author-avatar {
  object-fit: cover;
  background: none;
  display: block;
}
.legal-contact-form {
  background: rgba(255,255,255,0.04);
  border-radius: 1rem;
  padding: 1.75rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(255,255,255,0.07);
}
.legal-form-group {
  margin-bottom: 1.25rem;
}
.legal-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--w75);
  margin-bottom: 0.4rem;
}
.legal-required { color: var(--neon-pink); }
.legal-form-group input,
.legal-form-group select,
.legal-form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  color: #fff;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s;
  outline: none;
}
.legal-form-group input:focus,
.legal-form-group select:focus,
.legal-form-group textarea:focus {
  border-color: var(--neon-cyan);
  background: rgba(0,229,255,0.05);
}
.legal-form-group select option {
  background: #1a1a2e;
  color: #fff;
}
.legal-form-group textarea { resize: vertical; min-height: 120px; }
.legal-submit-btn {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.legal-submit-btn:hover { opacity: 0.85; }
.legal-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.legal-form-note {
  font-size: 0.8rem;
  color: var(--w55);
  margin-top: 0.75rem;
}
.legal-form-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.4rem;
  display: none;
}
.legal-form-status:not(:empty) { display: block; }
.legal-form-success { background: rgba(0,229,255,0.1); color: var(--neon-cyan); }
.legal-form-error { background: rgba(255,45,120,0.1); color: var(--neon-pink); }

/* ── Footer legal row ────────────────────────────────────────── */
.footer-legal-links { margin-top: 0.5rem; font-size: 0.8rem; opacity: 0.7; }
.footer-legal-links a { color: var(--w55); }
.footer-legal-links a:hover { color: var(--neon-cyan); }
.footer-rss {
  margin-top: 0.75rem;
  font-size: 0.8rem;
}
.footer-rss a {
  color: var(--neon-pink);
  text-decoration: none;
  opacity: 0.7;
}
.footer-rss a:hover { opacity: 1; }

/* ══ Blog ════════════════════════════════════════════════════════ */
.blog-list-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--neon-cyan,#00e5ff); transform: translateY(-2px); }
.blog-card-img { width: 100%; max-height: 280px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 280px; object-fit: cover; display: block; }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.blog-type-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--neon-pink,#ff2d78), var(--neon-cyan,#00e5ff));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 0.3rem;
  width: fit-content;
}
.blog-type-badge--large { font-size: 0.8rem; padding: 0.3rem 0.8rem; }
.blog-card-title { font-size: 1.3rem; font-weight: 700; margin: 0; line-height: 1.3; }
.blog-card-title a { color: #fff; text-decoration: none; }
.blog-card-title a:hover { color: var(--neon-cyan,#00e5ff); }
.blog-card-excerpt { color: var(--w55,#aaa); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.blog-card-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; color: var(--w55,#aaa); }
.blog-card-date { opacity: 0.8; }
.blog-card-author { opacity: 0.8; }
.blog-read-more {
  display: inline-block;
  color: var(--neon-cyan,#00e5ff);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 0.25rem;
}
.blog-read-more:hover { text-decoration: underline; }
.blog-empty { text-align: center; padding: 4rem 2rem; color: var(--w55,#aaa); font-size: 1.1rem; }
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 2rem;
  gap: 1rem;
}
.blog-page-btn {
  color: var(--neon-cyan,#00e5ff);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: 0.5rem;
  transition: background 0.2s;
  min-width: 120px;
  text-align: center;
  display: inline-block;
}
.blog-page-btn:hover { background: rgba(0,229,255,0.08); }
.blog-page-btn--disabled { opacity: 0; pointer-events: none; }
.blog-page-info { color: var(--w55,#aaa); font-size: 0.85rem; }

/* Blog article */
.blog-article-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}
.blog-article-hero-img { width: 100%; max-height: 420px; overflow: hidden; border-radius: 1rem; margin-bottom: 2rem; }
.blog-article-hero-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.blog-article-header { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.blog-article-title { font-family: var(--font-display); font-style: italic; text-transform: uppercase; font-size: 2rem; font-weight: 800; line-height: 1.2; margin: 0; }
.blog-article-meta { margin: 0.5rem 0 0; font-size: 0.82rem; color: var(--w50); }
.blog-author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(0,229,255,0.12);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0 1.5rem;
}
.blog-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(0,229,255,0.25);
}
.blog-author-by { font-size: 0.75rem; color: var(--w50); display: block; text-transform: uppercase; letter-spacing: 0.08em; }
.blog-author-name { font-size: 1rem; color: #fff; }
.blog-article-content { line-height: 1.8; font-size: 1rem; color: rgba(255,255,255,0.88); }
.blog-article-content h2 { font-size: 1.4rem; font-weight: 700; margin: 2rem 0 0.75rem; color: var(--neon-cyan,#00e5ff); }
.blog-article-content h3 { font-size: 1.15rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
.blog-article-content p { margin: 0 0 1rem; }
.blog-article-content ul, .blog-article-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.blog-article-content li { margin-bottom: 0.4rem; }
.blog-article-content a { color: var(--neon-cyan,#00e5ff); }
.blog-article-content img { max-width: 100%; border-radius: 0.5rem; margin: 1rem 0; }
.blog-article-content blockquote {
  border-left: 3px solid var(--neon-cyan,#00e5ff);
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  background: rgba(0,229,255,0.05);
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: var(--w55,#aaa);
}
.blog-related-section { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.blog-related-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.25rem; color: #fff; }
.blog-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.blog-related-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.blog-related-card:hover { border-color: var(--neon-cyan,#00e5ff); }
.blog-related-img { width: 100%; height: 120px; object-fit: cover; display: block; }
.blog-related-body { padding: 0.875rem; }
.blog-related-body h3 { font-size: 0.9rem; font-weight: 700; margin: 0 0 0.4rem; line-height: 1.3; }
.blog-related-body h3 a { color: #fff; text-decoration: none; }
.blog-related-body h3 a:hover { color: var(--neon-cyan,#00e5ff); }
.blog-related-body p { font-size: 0.8rem; color: var(--w55,#aaa); line-height: 1.5; margin: 0 0 0.4rem; }
.blog-back-link { margin-top: 2.5rem; }
.blog-back-link .btn-secondary {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
}
.blog-back-link .btn-secondary:hover { border-color: var(--neon-cyan,#00e5ff); background: rgba(0,229,255,0.05); }
@media (max-width: 600px) {
  .blog-article-title { font-size: 1.5rem; }
  .blog-related-grid { grid-template-columns: 1fr; }
  .blog-pagination { flex-wrap: wrap; justify-content: center; }
}

/* ─── Homepage Blog Section ──────────────────────────────────── */
.homepage-blog-section {
  position: relative; z-index: 10;
  padding: 5rem 0;
  border-top: 1px solid var(--w06);
}

.homepage-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px)  { .homepage-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .homepage-blog-grid { grid-template-columns: repeat(3, 1fr); } }

.homepage-blog-card {
  display: flex; flex-direction: column; gap: 0.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.homepage-blog-card:hover {
  border-color: var(--w20);
  background: var(--w06);
}

.homepage-blog-card-date {
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary);
}

.homepage-blog-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem; font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white); line-height: 1.2;
  margin: 0;
}

.homepage-blog-card-excerpt {
  font-size: 0.875rem; color: var(--w55);
  line-height: 1.65; flex: 1;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.homepage-blog-card-read {
  font-size: 0.8125rem; font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-top: auto; padding-top: 0.25rem;
}
