/* ═══════════════════════════════════════════════════════════════════════════
   Explorely – Landing Page Stylesheet
   Fonts: Outfit (headings) · DM Sans (body) · Space Mono (numbers)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ────────────────────────────────────────────────────────── */
:root {
  /* Colours — matched to screenshots */
  --clr-bg:            #0a0d18;
  --clr-bg-card:       #0d1525;
  --clr-bg-raised:     #111e32;
  --clr-primary:       #0a7029;
  --clr-primary-light: #108e36;
  --clr-primary-glow:  rgba(16, 142, 54, 0.18);
  --clr-accent:        #c8df52;
  --clr-accent2:       #fede00;
  --clr-special:       #dc6c08;
  --clr-event:         #083e65;
  --clr-purple:        #6631d7;
  --clr-border:        rgba(16, 142, 54, 0.25);
  --clr-border-hover:  rgba(16, 142, 54, 0.6);
  --clr-text:          #e8f0e9;
  --clr-text-muted:    #6b8575;
  --clr-text-faint:    #3a5040;

  /* Typography */
  --ff-head:   'Outfit', sans-serif;
  --ff-body:   'DM Sans', sans-serif;
  --ff-mono:   'Space Mono', monospace;

  /* Spacing */
  --section-py: 6rem;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset / Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--clr-primary); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-primary); border-radius: 3px; }

/* ── Typography helpers ───────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-head); font-weight: 700; line-height: 1.15; }

.section-eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  color: var(--clr-primary-light);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--clr-text);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-padded { padding: var(--section-py) 0; }

/* ── Skeleton Loaders ─────────────────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}

.skeleton-block,
.skeleton-inline {
  display: block;
  background: linear-gradient(90deg, var(--clr-bg-card) 25%, var(--clr-bg-raised) 50%, var(--clr-bg-card) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: 6px;
  pointer-events: none;
}
.skeleton-inline { display: inline-block; }

.skeleton-card {
  background: linear-gradient(90deg, var(--clr-bg-card) 25%, var(--clr-bg-raised) 50%, var(--clr-bg-card) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: 16px;
  min-height: 220px;
}

/* ── Scroll Reveal ────────────────────────────────────────────────────────── */
.reveal-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn-primary-exp {
  background: var(--clr-primary);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--clr-primary);
  transition: background 0.22s var(--ease), box-shadow 0.22s var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-primary-exp:hover {
  background: var(--clr-primary-light);
  box-shadow: 0 0 20px rgba(10, 112, 41, 0.45);
  color: #fff;
}

.btn-outline-exp {
  background: transparent;
  color: var(--clr-primary-light);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--clr-border);
  transition: border-color 0.22s var(--ease), color 0.22s var(--ease), background 0.22s var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline-exp:hover {
  border-color: var(--clr-primary-light);
  color: #fff;
  background: var(--clr-primary-glow);
}

.btn-ghost-exp {
  background: transparent;
  color: var(--clr-text-muted);
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-ghost-exp:hover {
  color: var(--clr-text);
  border-color: var(--clr-border);
}

/* ── Navbar ───────────────────────────────────────────────────────────────── */
#mainNav {
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 1.5rem 0;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), padding 0.3s var(--ease);
}
#mainNav.scrolled {
  background: rgba(7, 9, 15, 0.92);
  border-bottom-color: var(--clr-border);
  padding: 0.9rem 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand-icon svg {
  width: 28px;
  height: 28px;
  color: var(--clr-primary-light);
}
.brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.brand-name {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  color: var(--clr-text);
  text-decoration: none;
}
.navbar-brand {
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff !important;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.75rem !important;
  transition: color 0.2s;
  position: relative;
  text-transform: uppercase;
}
.navbar-nav .nav-link:hover { color: #fff !important; }
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--clr-accent);
  transition: width 0.25s var(--ease), left 0.25s var(--ease);
}
.navbar-nav .nav-link:hover::after { width: 60%; left: 20%; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #04060f;
}

/* Full-bleed background video */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  z-index: 0;
}

/* Gradient overlay — deep left for text, fades right to let video show */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(4, 6, 15, 0.88) 0%,
      rgba(4, 6, 15, 0.65) 40%,
      rgba(4, 6, 15, 0.15) 70%,
      transparent 100%),
    linear-gradient(to bottom,
      rgba(4, 6, 15, 0.5) 0%,
      transparent 25%,
      transparent 70%,
      rgba(4, 6, 15, 0.9) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Video controls group */
.hero-video-controls {
  position: absolute;
  bottom: 6.5rem;
  right: 1.75rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-vid-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(200, 223, 82, 0.4);
  background: rgba(4, 6, 15, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.hero-vid-btn:hover {
  background: rgba(16, 142, 54, 0.35);
  border-color: var(--clr-accent);
  transform: scale(1.1);
}
.hero-vid-btn svg { width: 18px; height: 18px; }

/* Aurora colour tint layered on top of video */
.hero-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.hero-aurora--tint { opacity: 0.35; }

.aurora-band {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

/* Green aurora — primary Explorely brand */
.aurora-1 {
  width: 140%;
  height: 55%;
  top: -15%;
  left: -25%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(16, 142, 54, 0.55) 0%,
    rgba(6, 90, 35, 0.3) 40%,
    transparent 70%);
  animation: aurora1Drift 12s ease-in-out infinite alternate;
}

/* Purple/indigo aurora — depth layer */
.aurora-2 {
  width: 110%;
  height: 45%;
  top: 5%;
  right: -30%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(102, 49, 215, 0.4) 0%,
    rgba(8, 62, 101, 0.35) 45%,
    transparent 70%);
  animation: aurora2Drift 16s ease-in-out infinite alternate;
  animation-delay: -5s;
}

/* Teal/cyan aurora — mid layer */
.aurora-3 {
  width: 100%;
  height: 40%;
  top: 20%;
  left: -10%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(0, 180, 140, 0.28) 0%,
    rgba(16, 142, 54, 0.2) 50%,
    transparent 70%);
  animation: aurora3Drift 19s ease-in-out infinite alternate;
  animation-delay: -9s;
}

/* Accent yellow-green shimmer — top highlight */
.aurora-4 {
  width: 80%;
  height: 30%;
  top: -5%;
  left: 20%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(200, 223, 82, 0.18) 0%,
    rgba(16, 142, 54, 0.12) 50%,
    transparent 70%);
  filter: blur(50px);
  animation: aurora4Drift 10s ease-in-out infinite alternate;
  animation-delay: -3s;
}

/* Stars layer */
.aurora-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 8%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 15%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 72% 5%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 22%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 8% 45%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 42% 38%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 42%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 35%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 65%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 78% 68%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 75%, rgba(200,223,82,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 18% 85%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 82% 88%, rgba(255,255,255,0.4) 0%, transparent 100%);
  animation: starsTwinkle 6s ease-in-out infinite alternate;
}

@keyframes aurora1Drift {
  0%   { transform: translateX(0%)   translateY(0%)  scaleX(1)    scaleY(1); opacity: 0.85; }
  25%  { transform: translateX(4%)   translateY(3%)  scaleX(1.08) scaleY(0.95); }
  50%  { transform: translateX(8%)   translateY(-2%) scaleX(1.04) scaleY(1.05); opacity: 1; }
  75%  { transform: translateX(3%)   translateY(5%)  scaleX(0.96) scaleY(1.02); }
  100% { transform: translateX(-4%)  translateY(2%)  scaleX(1.1)  scaleY(0.9); opacity: 0.75; }
}
@keyframes aurora2Drift {
  0%   { transform: translateX(0%)  translateY(0%)  scaleX(1)    rotate(0deg); opacity: 0.7; }
  33%  { transform: translateX(-6%) translateY(4%)  scaleX(1.1)  rotate(2deg); opacity: 0.9; }
  66%  { transform: translateX(4%)  translateY(-3%) scaleX(0.92) rotate(-1deg); }
  100% { transform: translateX(7%)  translateY(6%)  scaleX(1.05) rotate(3deg); opacity: 0.65; }
}
@keyframes aurora3Drift {
  0%   { transform: translateX(0%)  translateY(0%)  scaleY(1); opacity: 0.7; }
  40%  { transform: translateX(5%)  translateY(-4%) scaleY(1.15); opacity: 0.9; }
  100% { transform: translateX(-5%) translateY(3%)  scaleY(0.88); opacity: 0.6; }
}
@keyframes aurora4Drift {
  0%   { transform: translateX(0%) scaleX(1); opacity: 0.8; }
  50%  { transform: translateX(6%) scaleX(1.12); opacity: 1; }
  100% { transform: translateX(-4%) scaleX(0.9); opacity: 0.6; }
}
@keyframes starsTwinkle {
  0%   { opacity: 0.7; }
  50%  { opacity: 1; }
  100% { opacity: 0.6; }
}

/* Grid overlay removed from hero */
.hero-grid-overlay { display: none; }

.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero-title span {
  display: block;
}
.hero-title .accent { color: var(--clr-primary-light); }

.hero-subtitle {
  font-family: var(--ff-body);
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 500px;
  margin-bottom: 0;
  line-height: 1.75;
  font-weight: 400;
}

.hero-ctas { gap: 0.85rem; }

/* ── Hero Lottie wrap ─────────────────────────────────────────────────────── */
.hero-lottie-wrap {
  position: relative;
  width: 460px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Green glow ring behind the animation */
.lottie-glow-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,142,54,0.18) 0%, rgba(16,142,54,0.06) 50%, transparent 70%);
  animation: lottieGlowPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes lottieGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.08); opacity: 1; }
}

.hero-lottie-player {
  width: 480px;
  height: 480px;
  position: relative;
  z-index: 1;
  /* Shift pink/purple → dark teal-blue matching Explorely palette */
  filter: hue-rotate(160deg) saturate(1.3) brightness(1.05) drop-shadow(0 0 40px rgba(16,142,54,0.5));
}

/* Fallback globe (shown if Lottie fails) */
.lottie-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.lottie-fallback.show {
  display: flex;
}

/* Globe rings (used in fallback) */
.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  animation: ringPulse 3s ease-in-out infinite;
}
.ring-1 { width: 200px; height: 200px; animation-delay: 0s; }
.ring-2 { width: 290px; height: 290px; animation-delay: 0.4s; opacity: .7; }
.ring-3 { width: 360px; height: 360px; animation-delay: 0.8s; opacity: .4; }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: inherit; }
  50%       { transform: scale(1.03); }
}
.globe-core {
  width: 110px; height: 110px;
  background: radial-gradient(circle at 38% 38%, var(--clr-primary-light) 0%, var(--clr-primary) 55%, #041a0b 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(10,112,41,0.5), 0 0 80px rgba(10,112,41,0.2);
}
.globe-icon { width: 48px; height: 48px; color: rgba(255,255,255,0.85); }
.orbit-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--clr-accent); box-shadow: 0 0 10px var(--clr-accent);
}
.dot-1 { animation: orbit1 4s linear infinite; }
.dot-2 { animation: orbit2 6s linear infinite; background: var(--clr-primary-light); box-shadow: 0 0 10px var(--clr-primary-light); }
.dot-3 { animation: orbit3 8s linear infinite; background: var(--clr-special); box-shadow: 0 0 10px var(--clr-special); }
@keyframes orbit1 { from { transform: rotate(0deg) translateX(100px) rotate(0deg); } to { transform: rotate(360deg) translateX(100px) rotate(-360deg); } }
@keyframes orbit2 { from { transform: rotate(120deg) translateX(145px) rotate(-120deg); } to { transform: rotate(480deg) translateX(145px) rotate(-480deg); } }
@keyframes orbit3 { from { transform: rotate(240deg) translateX(180px) rotate(-240deg); } to { transform: rotate(600deg) translateX(180px) rotate(-600deg); } }

/* Hero stats bar — seamlessly connected to hero */
.hero-stats-bar {
  position: relative;
  z-index: 3;
  background:
    linear-gradient(to bottom,
      rgba(4, 6, 15, 0.82) 0%,
      rgba(7, 10, 20, 0.98) 100%);
  border-top: 1px solid rgba(16, 142, 54, 0.18);
  border-bottom: 1px solid rgba(16, 142, 54, 0.10);
  padding: 1.2rem 0 1.4rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
/* Green accent line at top of stats bar */
.hero-stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(16, 142, 54, 0.6) 30%,
    rgba(200, 223, 82, 0.4) 50%,
    rgba(16, 142, 54, 0.6) 70%,
    transparent 100%);
}

.stat-item { padding: 0.5rem 1rem; }
.stat-value {
  font-family: var(--ff-mono);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--clr-primary-light);
  display: block;
  line-height: 1;
}
.stat-label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
  display: block;
}

/* ── FEATURES ─────────────────────────────────────────────────────────────── */
.feature-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-primary-light), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.feature-card:hover {
  border-color: var(--clr-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(10, 112, 41, 0.12);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--clr-primary-glow);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon-wrap svg { width: 22px; height: 22px; color: var(--clr-primary-light); }

.feature-title {
  font-family: var(--ff-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 0.75rem;
}
.feature-desc {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin: 0;
  font-family: var(--ff-body);
}

/* ── WHY EXPLORELY ────────────────────────────────────────────────────────── */
.why-section { background: linear-gradient(180deg, var(--clr-bg) 0%, rgba(10,19,35,1) 100%); }

.why-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--clr-border);
}
.why-row:last-child { border-bottom: none; }
.why-row.reverse { flex-direction: row-reverse; }

@media (max-width: 767px) {
  .why-row, .why-row.reverse { flex-direction: column; }
}

.why-img-wrap {
  flex: 0 0 48%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.why-img-wrap:hover img { transform: scale(1.04); }
.why-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  pointer-events: none;
}

.why-text { flex: 1; }
.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-primary-glow);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--clr-primary-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.why-badge svg { width: 13px; height: 13px; }

.why-title {
  font-family: var(--ff-head);
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.why-desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  max-width: 460px;
  font-family: var(--ff-body);
}

/* ── APP PREVIEW ──────────────────────────────────────────────────────────── */
.app-preview-section {
  background: radial-gradient(ellipse at 50% 50%, rgba(10, 112, 41, 0.06) 0%, transparent 70%), var(--clr-bg);
}

.phone-carousel-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.phone-mockup-outer {
  padding: 1rem;
  filter: drop-shadow(0 0 40px rgba(10, 112, 41, 0.22));
}

.phone-mockup {
  width: 270px;
  height: 540px;
  background: #0f1829;
  border-radius: 44px;
  border: 2.5px solid rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.04);
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #060a12;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}
.phone-screen {
  position: absolute;
  inset: 6px;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #0c1520;
}
.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 18px 2px;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.55);
  background: rgba(10, 112, 41, 0.25);
  flex-shrink: 0;
  padding-top: 28px;
}
.phone-screen-inner {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.phone-screen-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: opacity 0.4s var(--ease);
}
.phone-home-bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.22);
  border-radius: 2px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  z-index: 5;
}
.carousel-arrow:hover {
  background: var(--clr-primary-glow);
  border-color: var(--clr-primary-light);
  transform: translateY(-50%) scale(1.05);
}
.carousel-arrow svg { width: 18px; height: 18px; }
.arrow-left  { left:  -28px; }
.arrow-right { right: -28px; }

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-bg-raised);
  border: 1px solid var(--clr-border);
  cursor: pointer;
  transition: background 0.2s, width 0.25s var(--ease);
}
.carousel-dot.active {
  background: var(--clr-primary-light);
  width: 24px;
  border-radius: 4px;
}

.carousel-label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  min-height: 1.2em;
}

/* ── DESTINATIONS ─────────────────────────────────────────────────────────── */
.city-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  display: block;
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.city-card:hover {
  border-color: var(--clr-border-hover);
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}
.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.city-card:hover img { transform: scale(1.07); }

.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,9,15,0.88) 0%, rgba(7,9,15,0.25) 55%, transparent 100%);
  transition: background 0.3s var(--ease);
}
.city-card:hover .city-card-overlay {
  background: linear-gradient(to top, rgba(7,9,15,0.92) 0%, rgba(7,9,15,0.4) 60%, rgba(10, 112, 41, 0.08) 100%);
}

.city-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
}
.city-card-name {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.city-card-country {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.city-card-meta {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.city-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  color: var(--clr-primary-light);
  background: rgba(10, 112, 41, 0.18);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: 0.18rem 0.6rem;
}
.city-meta-chip svg { width: 10px; height: 10px; }

/* ── LEADERBOARD ──────────────────────────────────────────────────────────── */
.leaderboard-section {
  background: linear-gradient(180deg, rgba(10,19,35,1) 0%, var(--clr-bg) 100%);
}

.leaderboard-table-wrap {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  overflow: hidden;
}

.leaderboard-table {
  border-collapse: collapse;
}
.leaderboard-table thead tr {
  background: var(--clr-bg-raised);
  border-bottom: 1px solid var(--clr-border);
}
.leaderboard-table thead th {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  padding: 1rem 1.25rem;
  font-weight: 400;
}
.leaderboard-table tbody tr {
  border-bottom: 1px solid rgba(16, 142, 54, 0.08);
  transition: background 0.2s var(--ease);
}
.leaderboard-table tbody tr:last-child { border-bottom: none; }
.leaderboard-table tbody tr:hover { background: rgba(10, 112, 41, 0.05); }
.leaderboard-table tbody td {
  padding: 0.9rem 1.25rem;
  vertical-align: middle;
}

.lb-rank {
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  min-width: 40px;
}
.lb-rank.gold   { color: var(--clr-accent); }
.lb-rank.silver { color: #c0c0c0; }
.lb-rank.bronze { color: #cd7f32; }
.lb-rank-medal  { font-size: 1.1rem; }

.lb-explorer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.lb-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--clr-border);
  background: var(--clr-bg-raised);
  object-fit: cover;
  flex-shrink: 0;
}
.lb-avatar.lazy { opacity: 0; transition: opacity 0.4s var(--ease); }
.lb-avatar.loaded { opacity: 1; }
.lb-name {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 1px;
}
.lb-username {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  color: var(--clr-text-muted);
}
.lb-level-badge {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  background: var(--clr-primary-glow);
  border: 1px solid var(--clr-border);
  color: var(--clr-primary-light);
  border-radius: 100px;
  padding: 0.18rem 0.6rem;
  text-transform: uppercase;
}
.lb-points {
  font-family: var(--ff-mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-accent);
  text-align: right;
  white-space: nowrap;
}
.lb-cities {
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  text-align: center;
}

/* Top 3 rows highlight */
.lb-top-1 { background: linear-gradient(90deg, rgba(254,222,0,0.04) 0%, transparent 100%) !important; }
.lb-top-2 { background: linear-gradient(90deg, rgba(192,192,192,0.04) 0%, transparent 100%) !important; }
.lb-top-3 { background: linear-gradient(90deg, rgba(205,127,50,0.04) 0%, transparent 100%) !important; }

/* ── EXPEDITION CTA ───────────────────────────────────────────────────────── */
.expedition-section {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.expedition-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(10, 112, 41, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(8, 62, 101, 0.15) 0%, transparent 60%),
    var(--clr-bg-card);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.expedition-title {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.expedition-subtitle {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--ff-body);
}

.expedition-form { max-width: 480px; }

.expedition-input-group {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.expedition-input-group:focus-within {
  border-color: var(--clr-primary-light);
  box-shadow: 0 0 20px rgba(10, 112, 41, 0.2);
}
.expedition-input {
  background: transparent !important;
  border: none !important;
  color: var(--clr-text) !important;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  padding: 0.85rem 1.25rem !important;
  box-shadow: none !important;
}
.expedition-input::placeholder { color: var(--clr-text-faint); }
.expedition-input:focus { outline: none; }

.expedition-btn {
  background: var(--clr-primary);
  color: #fff;
  border: none;
  padding: 0 1.25rem;
  border-radius: 0;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.expedition-btn:hover { background: var(--clr-primary-light); }
.expedition-btn svg { width: 18px; height: 18px; }

.form-feedback {
  font-size: 0.82rem;
  min-height: 1.2em;
  text-align: center;
  font-family: var(--ff-mono);
}
.form-feedback.success { color: var(--clr-primary-light); }
.form-feedback.error   { color: #f66; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: #040508;
  border-top: 1px solid var(--clr-border);
}
.site-footer--minimal {}

.footer-logo { text-decoration: none; }
.footer-logo .brand-name { font-size: 0.9rem; letter-spacing: 0.2em; }
.footer-tagline {
  font-size: 0.83rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  max-width: 320px;
  margin: 0;
  font-family: var(--ff-body);
}

.footer-col-title {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--clr-primary-light);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-weight: 400;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--clr-text); }

.footer-divider {
  border-color: var(--clr-border);
  margin: 0;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--clr-text-faint);
}
.footer-social {
  color: var(--clr-text-faint);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-social svg { width: 18px; height: 18px; }
.footer-social:hover { color: var(--clr-primary-light); }

/* ══════════════════════════════════════════════════════════════════════════
   CITY PAGE
   ══════════════════════════════════════════════════════════════════════════ */
.city-hero-section {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  overflow: hidden;
}
.city-hero-img-wrap {
  position: absolute;
  inset: 0;
}
.city-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.city-hero-img.loaded { transform: scale(1); }
.city-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,9,15,0.92) 0%, rgba(7,9,15,0.5) 50%, rgba(7,9,15,0.15) 100%);
}

.city-hero-badge {
  margin-bottom: 0.75rem;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-primary-glow);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--clr-primary-light);
  text-transform: uppercase;
}

.city-hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.3rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.city-hero-country {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.city-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(7,9,15,0.6);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  color: var(--clr-primary-light);
  backdrop-filter: blur(6px);
}
.city-meta-badge svg { width: 13px; height: 13px; }

/* City content */
.city-description {
  font-size: 0.98rem;
  color: var(--clr-text-muted);
  line-height: 1.85;
  margin: 0;
  font-family: var(--ff-body);
}

.city-section-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-icon { width: 20px; height: 20px; color: var(--clr-primary-light); flex-shrink: 0; }

/* Highlight cards */
.highlight-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.25s, transform 0.25s;
}
.highlight-card:hover {
  border-color: var(--clr-border-hover);
  transform: translateX(4px);
}
.highlight-icon {
  width: 36px;
  height: 36px;
  background: var(--clr-primary-glow);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-icon svg { width: 16px; height: 16px; color: var(--clr-primary-light); }
.highlight-title {
  font-family: var(--ff-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.35rem;
}
.highlight-desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Gem cards */
.gem-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 1.25rem;
  height: 100%;
  transition: border-color 0.25s, transform 0.25s;
}
.gem-card:hover { border-color: var(--clr-border-hover); transform: translateY(-3px); }
.gem-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  background: rgba(200, 223, 82, 0.12);
  border: 1px solid rgba(200, 223, 82, 0.25);
  color: var(--clr-accent);
  border-radius: 100px;
  padding: 0.15rem 0.6rem;
  margin-bottom: 0.6rem;
}
.gem-name {
  font-family: var(--ff-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}
.gem-desc {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Tips list */
.tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tips-list li {
  position: relative;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  border-bottom: 1px solid rgba(16, 142, 54, 0.07);
}
.tips-list li:last-child { border-bottom: none; }
.tips-list li::before {
  content: '→';
  position: absolute;
  left: 0.5rem;
  color: var(--clr-primary-light);
  font-family: var(--ff-mono);
  font-size: 0.8rem;
}

/* Sidebar */
.city-sidebar { position: sticky; top: 90px; }

.sidebar-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 1.5rem;
}
.sidebar-card-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(16, 142, 54, 0.07);
}
.quest-item:last-child { border-bottom: none; }
.quest-name {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
}
.quest-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.quest-xp {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  color: var(--clr-accent);
}
.quest-diff {
  font-family: var(--ff-mono);
  font-size: 0.58rem;
  padding: 0.12rem 0.5rem;
  border-radius: 100px;
  border: 1px solid;
}
.quest-diff.easy   { color: var(--clr-primary-light); border-color: var(--clr-border); }
.quest-diff.medium { color: var(--clr-accent2); border-color: rgba(254,222,0,0.3); }
.quest-diff.hard   { color: var(--clr-special); border-color: rgba(220,108,8,0.3); }

/* Sidebar CTA */
.sidebar-cta-card {
  background: linear-gradient(135deg, var(--clr-bg-card) 0%, rgba(10,112,41,0.08) 100%);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.sidebar-cta-icon {
  width: 56px;
  height: 56px;
  background: var(--clr-primary-glow);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.sidebar-cta-icon svg { width: 26px; height: 26px; color: var(--clr-primary-light); }
.sidebar-cta-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}
.sidebar-cta-text {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Related city cards (smaller variant) */
.city-card-sm {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
  display: block;
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 0.25s, transform 0.25s;
}
.city-card-sm:hover {
  border-color: var(--clr-border-hover);
  transform: translateY(-3px);
}
.city-card-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.city-card-sm:hover img { transform: scale(1.06); }
.city-card-sm .city-card-overlay {
  background: linear-gradient(to top, rgba(7,9,15,0.82) 0%, transparent 70%);
}
.city-card-sm .city-card-body { padding: 1rem; }
.city-card-sm .city-card-name { font-size: 0.95rem; }

/* ── Blog Posts ───────────────────────────────────────────────────────────── */
.blog-post-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  overflow: hidden;
}

.blog-post-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--clr-border);
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.blog-author, .blog-date, .blog-read-time {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  text-transform: uppercase;
}
.blog-meta-icon { width: 12px; height: 12px; color: var(--clr-primary-light); }

.blog-post-title {
  font-family: var(--ff-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.blog-post-intro {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin: 0;
}

.blog-facts-list {
  padding: 0;
}
.blog-fact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(16, 142, 54, 0.07);
  transition: background 0.2s var(--ease);
}
.blog-fact-item:last-child { border-bottom: none; }
.blog-fact-item:hover { background: rgba(10, 112, 41, 0.04); }

.blog-fact-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--clr-primary-glow);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-primary-light);
  margin-top: 2px;
}
.blog-fact-heading {
  font-family: var(--ff-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.blog-fact-text {
  font-family: var(--ff-body);
  font-size: 0.87rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Store Badge Buttons ──────────────────────────────────────────────────── */
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 1.35rem;
  border-radius: 10px;
  font-family: var(--ff-body);
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.2s var(--ease);
  line-height: 1;
}
.btn-store svg { flex-shrink: 0; }
.btn-store-label { display: flex; flex-direction: column; gap: 2px; }
.btn-store-label small { font-size: 0.6rem; font-weight: 400; letter-spacing: 0.03em; opacity: 0.75; }
.btn-store-label strong { font-size: 0.88rem; font-weight: 700; letter-spacing: 0.01em; }
.btn-store-apple {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.btn-store-apple:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.88);
  color: #000;
  transform: translateY(-1px);
}
.btn-store-google {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-store-google:hover {
  background: rgba(255,255,255,0.14);
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}

/* ── Nav Download Dropdown ────────────────────────────────────────────────── */
.nav-download-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-download-toggle::after { display: none; }
.nav-download-menu {
  background: var(--clr-bg-card) !important;
  border: 1px solid var(--clr-border) !important;
  border-radius: 12px !important;
  padding: 0.5rem !important;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important;
}
.nav-download-menu .dropdown-item {
  color: var(--clr-text) !important;
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.15s;
}
.nav-download-menu .dropdown-item:hover,
.nav-download-menu .dropdown-item:focus {
  background: var(--clr-bg-raised) !important;
  color: #fff !important;
}
.nav-download-menu .dropdown-divider {
  border-color: var(--clr-border);
  margin: 0.3rem 0;
}

/* ── Utilities ────────────────────────────────────────────────────────────── */
.z-1 { z-index: 1; }

@media (max-width: 575px) {
  :root { --section-py: 4rem; }
  .section-title { font-size: 1.8rem; }
  .hero-title   { font-size: 2.4rem; }
  .arrow-left   { left:  -18px; }
  .arrow-right  { right: -18px; }
  .phone-mockup { width: 240px; height: 480px; }
}
