/* ============================================================
   GTA VI HUB — Landing page
   Palette: Vice City sunset — hot pink, neon cyan, orange, purple
   ============================================================ */

:root {
  /* Core palette */
  --pink:      #ff2d95;
  --pink-hot:  #ff1f8e;
  --magenta:   #e5097f;
  --cyan:      #2de2e6;
  --blue:      #4d9bff;
  --purple:    #7b2ff7;
  --orange:    #ff8a3d;
  --gold:      #ffd166;

  /* Surfaces */
  --bg:        #07060d;
  --bg-2:      #0d0a17;
  --panel:     rgba(22, 16, 38, 0.6);
  --panel-brd: rgba(255, 45, 149, 0.22);

  /* Text */
  --txt:       #f6f2ff;
  --txt-dim:   #b9b0d4;
  --txt-faint: #7d769a;

  /* Signature gradients */
  --grad-sunset: linear-gradient(100deg, var(--pink) 0%, var(--orange) 45%, var(--purple) 100%);
  --grad-neon:   linear-gradient(100deg, var(--cyan) 0%, var(--pink) 55%, var(--purple) 100%);
  --grad-vi:     linear-gradient(180deg, var(--cyan) 0%, var(--pink) 100%);

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--txt);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Brand wordmark ---------- */
.brand,
.footer-brand { display: inline-flex; align-items: center; gap: .42rem; font-family: "Archivo Black", sans-serif; letter-spacing: -.01em; }
.brand-gta { font-size: 1.25rem; font-style: italic; color: var(--txt); }
.brand-vi  {
  font-size: 1.25rem; font-style: italic;
  background: var(--grad-vi); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand-hub {
  font-size: .7rem; letter-spacing: .28em; align-self: center;
  color: var(--cyan); padding: .15rem .45rem; border: 1px solid rgba(45,226,230,.4);
  border-radius: 6px; font-family: "Archivo", sans-serif;
}

/* Logo mark + wordmark (Vice City Wiki) */
.brand { gap: .6rem; }
.brand-logo {
  height: 30px; width: auto; display: block;
  filter: drop-shadow(0 2px 8px rgba(255, 45, 149, .35));
  transition: transform .25s var(--ease), filter .25s;
}
.brand:hover .brand-logo { transform: translateY(-1px); filter: drop-shadow(0 3px 14px rgba(255, 45, 149, .55)); }
.brand-word {
  font-family: "Archivo Black", sans-serif; font-style: italic;
  font-size: 1.02rem; line-height: 1; letter-spacing: -.01em; color: var(--txt);
  white-space: nowrap;
}
.brand-word em { font-style: italic; background: var(--grad-vi); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-brand { gap: .6rem; }
.footer-brand .brand-logo { height: 34px; }
.footer-brand .brand-word { font-size: 1.1rem; }
@media (max-width: 420px) { .brand-word { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  --pad: .85rem 1.5rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: var(--pad); border-radius: 999px; font-weight: 700; font-size: .95rem;
  letter-spacing: .01em; cursor: pointer; border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), opacity .2s, filter .25s;
  text-align: center;
}
.btn-primary {
  background: var(--grad-sunset); color: #fff;
  box-shadow: 0 8px 30px -8px rgba(255, 45, 149, .65), inset 0 0 0 1px rgba(255,255,255,.15);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(255, 45, 149, .8); filter: saturate(1.1); }
.btn-ghost {
  background: rgba(255,255,255,.04); color: var(--txt);
  border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.btn.is-disabled { opacity: .55; pointer-events: none; filter: grayscale(.3); }

/* ============================================================
   CINEMATIC INTRO — content hidden until JS removes html.intro
   ============================================================ */
.nav,
.hero-content,
.scroll-cue {
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html.intro .nav,
html.intro .hero-content,
html.intro .scroll-cue {
  opacity: 0 !important;
  pointer-events: none;
}

/* Skip button — visible only during intro */
.intro-skip {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.45); cursor: pointer; background: none; border: none;
  padding: .5rem .9rem;
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  backdrop-filter: blur(6px);
  transition: opacity 1.4s ease, color .2s, border-color .2s;
  animation: skip-appear 0.6s 1.2s ease both;
}
.intro-skip:hover { color: var(--cyan); border-color: var(--cyan); }
html:not(.intro) .intro-skip { opacity: 0; pointer-events: none; }
@keyframes skip-appear { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 6, 13, .82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--panel-brd);
}
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a {
  position: relative; font-weight: 600; font-size: .92rem; color: var(--txt-dim);
  padding: .35rem 0; transition: color .2s;
}
.nav-links a:hover { color: var(--txt); }
.nav-links a[data-soon]::after {
  content: "soon"; position: absolute; top: -.9rem; left: 50%; transform: translateX(-50%);
  font-size: .52rem; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap;
  color: var(--cyan); border: 1px solid rgba(45,226,230,.4); border-radius: 4px; padding: 0 .28rem;
}
.nav-cta { --pad: .55rem 1.1rem; font-size: .85rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  text-align: left; padding: 6rem clamp(1.25rem, 5vw, 4rem) clamp(3rem, 7vh, 5rem); overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.12) contrast(1.03);
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(115% 80% at 20% 96%, rgba(7,6,13,.8) 0%, rgba(7,6,13,.35) 42%, transparent 70%),
    linear-gradient(180deg, rgba(7,6,13,.62) 0%, rgba(7,6,13,.05) 18%, transparent 38%, rgba(7,6,13,.5) 76%, var(--bg) 100%),
    linear-gradient(90deg, rgba(7,6,13,.45) 0%, rgba(7,6,13,.08) 48%, transparent 72%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}

.hero-content { position: relative; z-index: 2; max-width: 680px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .32em; font-size: .72rem; font-weight: 700;
  color: var(--cyan); margin-bottom: .9rem; text-shadow: 0 2px 14px rgba(0,0,0,.6);
}
.hero-title {
  font-family: "Archivo Black", sans-serif; font-style: italic;
  font-size: clamp(3.8rem, 10vw, 7.5rem); line-height: .92; letter-spacing: -.03em;
  text-shadow: 0 4px 40px rgba(0,0,0,.85);
  margin: .5rem 0 1rem;
}
.hero-lead {
  display: block;
  font-size: 0.27em;
  font-family: "Inter", system-ui, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--txt-dim);
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  text-transform: none;
  margin-bottom: .35em;
}
.grad-text {
  background: var(--grad-neon); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,.85)) drop-shadow(0 0 22px rgba(255,45,149,.3));
}
.hero-sub {
  max-width: 500px; margin: 1rem 0 0; color: var(--txt); font-size: clamp(.98rem, 1.6vw, 1.1rem);
  text-shadow: 0 2px 16px rgba(0,0,0,.85);
}

/* ---------- Countdown ---------- */
.countdown-wrap { margin: 1.7rem 0 0; }
.countdown-label {
  text-transform: uppercase; letter-spacing: .25em; font-size: .75rem; font-weight: 700;
  color: var(--txt-dim); margin-bottom: .85rem;
}
.countdown { display: inline-flex; align-items: flex-start; gap: .35rem; }
.cd-unit {
  display: flex; flex-direction: column; align-items: center;
  min-width: clamp(64px, 16vw, 96px);
  padding: .85rem .5rem .65rem;
  background: var(--panel); border: 1px solid var(--panel-brd); border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px -16px rgba(255,45,149,.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.cd-num {
  font-family: "Archivo Black", sans-serif; font-style: italic;
  font-size: clamp(1.9rem, 5.5vw, 3rem); line-height: 1; font-variant-numeric: tabular-nums;
  background: var(--grad-vi); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cd-tag {
  margin-top: .45rem; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--txt-faint); font-weight: 700;
}
.cd-sep {
  font-family: "Archivo Black", sans-serif; font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--pink); align-self: center; padding-top: .2rem; opacity: .6;
  animation: blink 2s steps(1) infinite;
}
@keyframes blink { 50% { opacity: .15; } }
.countdown-target { margin-top: .9rem; font-size: .82rem; color: var(--txt-faint); letter-spacing: .04em; }

.hero-cta { display: flex; gap: .9rem; justify-content: flex-start; flex-wrap: wrap; margin-top: 1.8rem; }

/* ---------- Scroll cue ---------- */
.scroll-cue {
  position: absolute; bottom: 1.6rem; right: 2rem; z-index: 3;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
}
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: var(--cyan); animation: scrolldot 1.6s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(12px); } }

/* ============================================================
   MILESTONES
   ============================================================ */
.milestones {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) 1.25rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.milestone {
  position: relative; padding: 1.6rem 1.5rem; border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08); overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.milestone::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--grad-sunset);
}
.milestone:hover { transform: translateY(-4px); border-color: var(--panel-brd); }
.milestone.is-active { border-color: var(--pink); box-shadow: 0 12px 50px -20px rgba(255,45,149,.6); }
.milestone.is-active::after {
  content: "Now"; position: absolute; top: 1rem; right: 1rem; font-size: .6rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase; color: #fff; background: var(--pink);
  padding: .2rem .5rem; border-radius: 6px;
}
.m-date { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan); font-weight: 700; }
.m-title { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.4rem; margin: .35rem 0 .4rem; }
.m-desc { color: var(--txt-dim); font-size: .92rem; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 5vw, 3.5rem); text-align: center; }
.section-head h2 {
  font-family: "Archivo Black", sans-serif; font-style: italic;
  font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.02; letter-spacing: -.02em; margin-top: .5rem;
}
.section-sub { color: var(--txt-dim); margin-top: .9rem; font-size: 1.02rem; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { max-width: var(--maxw); margin: 0 auto; padding: clamp(2rem, 6vw, 4rem) 1.25rem; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.feature-card {
  position: relative; min-height: 340px; border-radius: 20px; overflow: hidden;
  display: flex; align-items: flex-end; isolation: isolate;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.feature-card::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform .6s var(--ease); transform: scale(1.05);
}
.fc--map::before       { background-image: url("../assets/img/features/map.jpg"); }
.fc--wiki::before      { background-image: url("../assets/img/features/wiki.jpg"); }
.fc--community::before { background-image: url("../assets/img/features/community.jpg"); }
.fc--tools::before     { background-image: url("../assets/img/features/tools.jpg"); }
.feature-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7,6,13,.15) 0%, rgba(7,6,13,.55) 45%, rgba(7,6,13,.96) 100%);
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--pink); box-shadow: 0 30px 60px -30px rgba(255,45,149,.55); }
.feature-card:hover::before { transform: scale(1.12); }
.fc-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2; font-size: .62rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: var(--bg);
  background: var(--cyan); padding: .3rem .55rem; border-radius: 6px;
}
.fc-body { padding: 1.6rem; }
.fc-body h3 { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.6rem; }
.fc-body > p { color: var(--txt-dim); margin: .35rem 0 .9rem; font-size: .95rem; }
.fc-list { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem .9rem; }
.fc-list li { position: relative; padding-left: 1.1rem; font-size: .86rem; color: var(--txt); }
.fc-list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 8px var(--pink);
}

/* ============================================================
   POSTCARD MARQUEE
   ============================================================ */
.postcards { padding: clamp(2rem, 6vw, 4rem) 0; }
.postcards .section-head { padding: 0 1.25rem; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 1rem; width: max-content; animation: scroll-x 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track figure { position: relative; width: 360px; flex: 0 0 auto; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.marquee-track img { width: 100%; height: 220px; object-fit: cover; }
.marquee-track figcaption {
  position: absolute; left: .8rem; bottom: .7rem; font-family: "Archivo", sans-serif; font-weight: 800;
  font-size: 1.05rem; text-shadow: 0 2px 12px rgba(0,0,0,.8); letter-spacing: .01em;
}
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   NOTIFY
   ============================================================ */
.notify { padding: clamp(3rem, 8vw, 6rem) 1.25rem; }
.notify-inner {
  max-width: 640px; margin: 0 auto; text-align: center; padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 24px; position: relative; overflow: hidden;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(255,45,149,.18), transparent 60%),
    linear-gradient(180deg, var(--bg-2), #0a0814);
  border: 1px solid var(--panel-brd);
}
.notify-inner h2 { font-family: "Archivo Black", sans-serif; font-style: italic; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.notify-inner > p { color: var(--txt-dim); margin: .7rem auto 1.6rem; max-width: 440px; }
.notify-form { display: flex; gap: .6rem; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.notify-form input {
  flex: 1 1 220px; padding: .85rem 1.1rem; border-radius: 999px; font-size: .95rem; font-family: inherit;
  background: rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.18); color: var(--txt);
  transition: border-color .2s, box-shadow .2s;
}
.notify-form input::placeholder { color: var(--txt-faint); }
.notify-form input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(45,226,230,.18); }
.notify-msg { margin-top: 1rem; font-size: .9rem; min-height: 1.2em; font-weight: 600; }
.notify-msg.ok { color: var(--cyan); }
.notify-msg.err { color: var(--pink); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { max-width: var(--maxw); margin: 0 auto; padding: 3rem 1.25rem 4rem; text-align: center; border-top: 1px solid rgba(255,255,255,.07); }
.footer-brand { margin-bottom: 1rem; }
.footer-disclaimer { max-width: 640px; margin: 0 auto; color: var(--txt-faint); font-size: .78rem; line-height: 1.7; }
.footer-copy { margin-top: 1rem; color: var(--txt-dim); font-size: .82rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .milestones { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
}
@media (max-width: 520px) {
  .cd-unit { min-width: 60px; padding: .7rem .35rem .5rem; }
  .cd-sep { display: none; }
  .countdown { gap: .5rem; }
  .fc-list { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
}

/* ---- Mobile nav: show hamburger-style stacked links ---- */
@media (max-width: 860px) {
  /* Nav user dropdown: full-width on small screens */
  .nav-dropdown { right: 0; left: auto; min-width: 180px; }

  /* Forum pages */
  .forum-main { padding: 5rem 1rem 3rem; }
  .cat-row { padding: .9rem 1rem; }
  .page-hero { flex-direction: column; gap: 1rem; }
  .page-hero-inner h1 { font-size: 1.4rem; }
  .breadcrumb { padding: 0 1rem; }
  .thread-wrap, .reply-section { padding: 0; }

  /* Wiki */
  .wiki-main { padding: 5rem 1rem 3rem; }
  .article-wrap { padding: 5rem 1rem 3rem; }
  .wiki-edit-wrap { padding: 5rem 1rem 3rem; }

  /* Profile */
  .profile-wrap { padding: 5rem 1rem 3rem; }
  .profile-header { gap: 1.25rem; }

  /* Tools */
  .tools-wrap { padding: 5rem 1rem 3rem; }
}

@media (max-width: 520px) {
  /* Forum category rows: stack meta */
  .cat-meta { flex-direction: column; gap: .15rem; }

  /* Nav: hide "Join free" to save space */
  .nav-cta + .nav-cta { display: none; }

  /* Admin stats: 2 columns */
  .admin-stats { grid-template-columns: repeat(2, 1fr); }

  /* Notes layout: ensure single column */
  .notes-layout { min-height: auto; }

  /* Profile stats: tighter */
  .profile-stats { gap: 1rem; }
  .profile-stat-num { font-size: 1.1rem; }

  /* Collectibles item: hide hint on very small */
  .collect-item-hint { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .marquee-track { animation: none; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem 4.5rem;
}
.stats-strip-inner {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  background: rgba(255,255,255,.02);
  overflow: hidden;
}
.stat-item {
  flex: 1;
  padding: 1.75rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: background .22s;
}
.stat-item:hover { background: rgba(255,45,149,.06); }
.stat-num {
  font-family: "Archivo Black", sans-serif;
  font-style: italic;
  font-size: 2rem;
  line-height: 1;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--txt-faint);
  margin-top: .45rem;
}
.stat-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,.06);
  flex-shrink: 0;
}
@media (max-width: 680px) {
  .stats-strip-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 44%; }
  .stat-divider { display: none; }
  .stat-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,.06); }
  .stat-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.06); }
}

/* ============================================================
   MOBILE HAMBURGER NAV
   ============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: none; border: none; padding: 0;
  cursor: pointer; margin-left: .75rem; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--txt); border-radius: 2px;
  transition: transform .32s var(--ease), opacity .25s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 45;
  background: rgba(7,6,13,.97);
  backdrop-filter: blur(28px) saturate(1.25);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.nav-mobile.is-open { opacity: 1; pointer-events: all; }

.nav-mobile-close {
  position: absolute; top: 1.4rem; right: 1.5rem;
  background: none; border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px; padding: .4rem .75rem;
  color: var(--txt-dim); font-size: .95rem; cursor: pointer;
  transition: color .2s, border-color .2s;
}
.nav-mobile-close:hover { color: var(--pink); border-color: var(--pink); }

.nav-mobile-links {
  display: flex; flex-direction: column; align-items: center;
  gap: .25rem; text-align: center; padding: 0 1rem;
}
.nav-mobile-links a {
  font-family: "Archivo Black", sans-serif; font-style: italic;
  font-size: clamp(2.2rem, 9vw, 3rem);
  color: var(--txt-dim);
  line-height: 1.2; padding: .3rem 0;
  transition: color .18s;
  letter-spacing: -.02em;
}
.nav-mobile-links a:hover { color: var(--txt); }

.nav-mobile-ctas {
  display: flex; gap: .75rem; margin-top: 2.5rem;
  flex-wrap: wrap; justify-content: center;
}

@media (max-width: 860px) {
  .nav-hamburger { display: flex; }
}

/* ============================================================
   FEATURE CARDS — link treatment + live badge + explore cta
   ============================================================ */
.feature-card {
  text-decoration: none;
  cursor: pointer;
}
.fc-badge--live {
  background: rgba(45,226,230,.12) !important;
  color: var(--cyan) !important;
  border: 1px solid rgba(45,226,230,.3);
}
.fc-explore {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--cyan);
  opacity: .55;
  transition: opacity .2s, transform .2s;
}
.feature-card:hover .fc-explore {
  opacity: 1;
  transform: translateX(4px);
}

/* ============================================================
   MARQUEE — real screenshots, city name on hover
   ============================================================ */
.marquee-track figure {
  position: relative;
  width: 420px;
}
.marquee-track img {
  height: 270px;
  transition: filter .3s;
}
.marquee-track figure:hover img {
  filter: brightness(1.08) saturate(1.1);
}
.marquee-track figcaption {
  position: absolute; left: 1rem; bottom: .9rem;
  font-family: "Archivo Black", sans-serif; font-style: italic;
  font-size: 1.05rem; color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.9);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.marquee-track figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,6,13,.65) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .25s;
  border-radius: inherit;
}
.marquee-track figure:hover::after { opacity: 1; }
.marquee-track figure:hover figcaption { opacity: 1; transform: none; }
