/* ─── Custom Properties ─────────────────────────────────────────── */
:root {
  --bg:          #08090c;
  --bg-surface:  #0d0f14;
  --bg-card:     #0f1115;
  --bg-card-2:   #111419;
  --border:      rgba(255,255,255,0.07);
  --border-light:rgba(255,255,255,0.11);

  --accent-blue:   #3b82f6;
  --accent-teal:   #2dd4bf;
  --accent-purple: #a78bfa;

  --text-primary:   #eef0f8;
  --text-secondary: #8990a8;
  --text-muted:     #454d64;

  --font: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'SF Mono', ui-monospace, 'Fira Code', monospace;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.accent { color: var(--accent-blue); }

/* ─── Noise texture ─────────────────────────────────────────────── */
.noise-layer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ─── Fade-in ───────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay   { transition-delay: 0.2s; }

/* ─── Nav ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background 0.4s ease, border-color 0.4s ease;
}
.nav.scrolled {
  background: rgba(8,9,12,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.03em; }
.nav-links { display: flex; gap: 28px; }
.nav-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text-primary); }

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 120px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Aurora background — slow animated gradients */
.hero-aurora {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 15% 65%, rgba(59,130,246,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 35%, rgba(167,139,250,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 10%, rgba(45,212,191,0.05) 0%, transparent 55%);
  animation: auroraShift 14s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}
@keyframes auroraShift {
  0%   { transform: scale(1)    translate(0,   0);   opacity: 0.9; }
  33%  { transform: scale(1.06) translate(-18px, 12px); opacity: 1;   }
  66%  { transform: scale(0.97) translate(14px, -10px); opacity: 0.85; }
  100% { transform: scale(1.04) translate(-8px,  6px);  opacity: 0.95; }
}

/* Dot grid */
.hero-dot-grid {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 75%);
  z-index: 1;
  pointer-events: none;
}

/* Blurred monument silhouette */
.hero-monument {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 860px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  filter: blur(14px);
}
.hero-monument svg {
  width: 100%;
  height: 100%;
}

/* Bottom vignette */
.hero-vignette {
  position: absolute;
  bottom: 0; left: -100vw; right: -100vw;
  height: 260px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 3;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 4; }

/* Badge pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(200,215,255,0.8);
  margin-bottom: 24px;
  width: fit-content;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-teal);
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
  background: linear-gradient(148deg, #ffffff 0%, #9fafc8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-headline-accent {
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 38px;
  max-width: 440px;
}

.br-desktop { display: none; }
@media (min-width: 900px) { .br-desktop { display: inline; } }

/* Store buttons */
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.hero-stars {
  color: #f59e0b;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  transition: all 0.25s ease;
  opacity: 0.55;
  cursor: not-allowed;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
a.btn-store {
  cursor: pointer;
  opacity: 1;
}
a.btn-store:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
/* Primary (Google Play) button gets a subtle tint */
.btn-store--primary {
  background: rgba(59,130,246,0.06);
  border-color: rgba(59,130,246,0.2);
  opacity: 0.65;
}
a.btn-store--primary {
  opacity: 1;
}
a.btn-store--primary:hover {
  background: rgba(59,130,246,0.14);
  border-color: rgba(59,130,246,0.4);
}
.store-icon { width: 20px; height: 20px; flex-shrink: 0; font-size: 20px; line-height: 1; }
.store-label { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.store-sub {
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.store-main { font-size: 0.9rem; font-weight: 600; }

/* ─── Phone mockup ──────────────────────────────────────────────── */
.hero-phone {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
}

/* Float wrapper animates as one unit */
.phone-float-wrap {
  position: relative;
  animation: float 5.5s ease-in-out infinite;
  transform-origin: center bottom;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Animated gradient glow ring around phone */
.phone-glow-ring {
  position: absolute;
  inset: -3px;
  border-radius: 47px;
  background: linear-gradient(135deg,
    var(--accent-blue),
    var(--accent-purple),
    var(--accent-teal),
    var(--accent-blue)
  );
  background-size: 300% 300%;
  animation: glowRing 5s linear infinite;
  opacity: 0.55;
  filter: blur(10px);
  z-index: -1;
}
@keyframes glowRing {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.phone-frame {
  position: relative;
  width: 320px;
  background: #090a0f;
  border-radius: 44px;
  border: 1.5px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 56px 100px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(255,255,255,0.03);
  overflow: hidden;
  padding: 14px 8px 18px;
  z-index: 1;
}

.phone-notch {
  width: 88px; height: 24px;
  background: #060709;
  border-radius: 0 0 18px 18px;
  margin: 0 auto 8px;
  position: relative; z-index: 2;
}

.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/17;
  background: #0c0e16;
}

.phone-home-bar {
  width: 88px; height: 4px;
  background: rgba(255,255,255,0.17);
  border-radius: 4px;
  margin: 10px auto 0;
}

/* AR screen */
.ar-placeholder { position: relative; width: 100%; height: 100%; overflow: hidden; }
.ar-bg-gradient {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.6s ease;

  /* Overlay: dark vignette + slight tint so AR UI stays readable */
  &::after {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 100% 100% at 50% 50%, transparent 35%, rgba(0,0,0,0.6) 100%),
      linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 50%),
      linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 30%);
    pointer-events: none;
  }
}

/* Monument silhouette shape inside the phone screen */
.ar-monument-silhouette {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 72%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
  filter: blur(0.5px);
}
.ar-monument-silhouette svg {
  width: 100%;
  height: 100%;
  fill: #1a1208;
}

/* AR corners */
.ar-corner { position: absolute; width: 20px; height: 20px; z-index: 3; }
.ar-corner::before, .ar-corner::after {
  content: ''; position: absolute;
  background: var(--accent-teal); border-radius: 1px;
}
.ar-corner::before { width: 2px; height: 14px; }
.ar-corner::after  { width: 14px; height: 2px; }
.ar-corner--tl { top:12px; left:12px; }
.ar-corner--tl::before { top:0; left:0; } .ar-corner--tl::after { top:0; left:0; }
.ar-corner--tr { top:12px; right:12px; }
.ar-corner--tr::before { top:0; right:0; } .ar-corner--tr::after { top:0; right:0; }
.ar-corner--bl { bottom:12px; left:12px; }
.ar-corner--bl::before { bottom:0; left:0; } .ar-corner--bl::after { bottom:0; left:0; }
.ar-corner--br { bottom:12px; right:12px; }
.ar-corner--br::before { bottom:0; right:0; } .ar-corner--br::after { bottom:0; right:0; }

.ar-scan-line {
  position: absolute; left:12px; right:12px; height:1px;
  background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
  z-index: 3;
  animation: scanMove 3s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent-teal);
}
@keyframes scanMove {
  0%   { top:15%; opacity:0; }
  10%  { opacity:1; }
  90%  { opacity:1; }
  100% { top:75%; opacity:0; }
}

.ar-target {
  position: absolute; top:30%; left:50%;
  transform: translate(-50%,-50%); z-index:3;
}
.ar-target-ring {
  width:40px; height:40px;
  border: 1.5px solid rgba(59,130,246,0.7);
  border-radius:50%;
  animation: pulseRing 2s ease-in-out infinite;
}
.ar-target-dot {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:4px; height:4px;
  background:var(--accent-blue); border-radius:50%;
  box-shadow:0 0 6px var(--accent-blue);
}
@keyframes pulseRing {
  0%,100% { transform:scale(1); opacity:.8; }
  50%      { transform:scale(1.15); opacity:1; }
}

.ar-info-card {
  position:absolute; bottom:14px; left:10px; right:10px;
  background:rgba(6,8,14,0.9);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(59,130,246,0.2);
  border-radius:12px; padding:10px 12px; z-index:4;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.ar-info-card.fading {
  opacity: 0;
  transform: translateY(6px);
}
.ar-info-title  { font-size:.72rem; font-weight:700; letter-spacing:-.02em; margin-bottom:1px; }
.ar-info-year   { font-size:.55rem; color:var(--accent-teal); font-weight:500; margin-bottom:5px; }
.ar-info-desc   { font-size:.5rem; color:var(--text-secondary); line-height:1.5; margin-bottom:6px; }
.ar-info-tags   { display:flex; gap:4px; }
.ar-tag {
  font-size:.44rem; padding:2px 6px; border-radius:100px;
  background:rgba(59,130,246,0.12); border:1px solid rgba(59,130,246,0.28);
  color:var(--accent-blue); font-weight:500;
}
.ar-hud-top {
  position:absolute; top:10px; left:12px; right:12px;
  display:flex; justify-content:space-between; z-index:4;
}
.ar-hud-text {
  font-size:.44rem; font-family:var(--font-mono);
  color:var(--accent-teal); opacity:.8; letter-spacing:.05em;
}

/* Outer glow beneath phone */
.phone-glow {
  position:absolute; inset:-50px;
  background:radial-gradient(ellipse at center,
    rgba(59,130,246,0.16) 0%, rgba(167,139,250,0.07) 50%, transparent 70%);
  pointer-events:none; z-index:-2;
}

/* Scroll hint */
.hero-scroll-hint {
  position:absolute; bottom:40px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:6px;
  font-size:.62rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--text-muted); grid-column:1/-1; z-index:5;
}
.scroll-arrow {
  width:1px; height:26px;
  background:linear-gradient(to bottom, var(--text-muted), transparent);
  animation:scrollBob 1.8s ease-in-out infinite;
}
@keyframes scrollBob {
  0%,100% { transform:scaleY(1); opacity:.4; }
  50%      { transform:scaleY(1.35); opacity:1; }
}

/* ─── Stats bar ─────────────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(59,130,246,0.03) 0%, transparent 70%);
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 52px;
}

.stat-number {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 5px;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* ─── Section shared ────────────────────────────────────────────── */
.section-eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.14;
  margin-bottom: 56px;
  color: var(--text-primary);
}

/* ─── How it works ──────────────────────────────────────────────── */
.how {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.04) 0%, transparent 55%);
}

.steps { display: flex; align-items: flex-start; }

.step { flex: 1; text-align: center; padding: 0 24px; }

/* Connector with arrow */
.step-connector {
  flex: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  align-self: flex-start;
  position: relative;
}
.step-connector-line {
  width: 28px; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(59,130,246,0.3), rgba(255,255,255,0.12));
}
.step-connector-arrow {
  position: absolute;
  right: 2px;
  top: -3px;
  width: 0; height: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 5px solid rgba(59,130,246,0.4);
}

.step-icon-wrap {
  position: relative;
  width: 68px; height: 68px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: #0f1115;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
}
.step-icon { width: 32px; height: 32px; color: rgba(255,255,255,0.8); }

.step-number {
  position: absolute; top: -9px; right: -9px;
  font-size: .55rem; font-family: var(--font-mono); font-weight: 700;
  color: var(--accent-blue);
  background: var(--bg); border: 1px solid rgba(59,130,246,0.3);
  border-radius: 100px; padding: 2px 6px; letter-spacing: .04em;
}

.step-title { font-size: 1.05rem; font-weight: 700; letter-spacing: -.03em; margin-bottom: 10px; }
.step-desc  { font-size: .875rem; color: var(--text-secondary); line-height: 1.68; max-width: 220px; margin: 0 auto; }

/* ─── Features — Bento grid ─────────────────────────────────────── */
.features {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Span rules — alternating asymmetry */
.bento-card--ar       { grid-column: span 2; }  /* wide */
.bento-card--wiki     { grid-column: span 1; }
.bento-card--nearby   { grid-column: span 1; }
.bento-card--timelines{ grid-column: span 2; }  /* wide */
.bento-card--open     { grid-column: span 1; }
.bento-card--fast     { grid-column: span 2; }  /* wide */

.bento-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.bento-card:hover {
  border-color: rgba(59,130,246,0.22);
  background: var(--bg-card-2);
  transform: translateY(-2px);
}

/* Icon inside bento */
.bento-icon-wrap {
  width: 36px; height: 36px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.bento-icon-wrap svg { width: 100%; height: 100%; }
.bento-title { font-size: 1rem; font-weight: 700; letter-spacing: -.03em; margin-bottom: 8px; }
.bento-desc  { font-size: .84rem; color: var(--text-secondary); line-height: 1.65; max-width: 340px; }

/* Stat pill inside card */
.bento-stat-pill {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  color: var(--accent-blue);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
}

/* ── AR card ── */
.bento-card--ar {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 200px;
}
.bento-text { flex: 1; }
.bento-text .bento-desc { max-width: 280px; }

/* Mini AR viewfinder decoration */
.mini-ar {
  flex-shrink: 0;
  position: relative;
  width: 110px; height: 110px;
}
.mini-ar-corner {
  position: absolute;
  width: 18px; height: 18px;
}
.mini-ar-corner::before, .mini-ar-corner::after {
  content: ''; position: absolute;
  background: var(--accent-teal);
  border-radius: 1px; opacity: 0.8;
}
.mini-ar-corner::before { width: 2px; height: 12px; }
.mini-ar-corner::after  { width: 12px; height: 2px; }
.mini-ar-corner.tl { top:0; left:0; }
.mini-ar-corner.tl::before { top:0; left:0; } .mini-ar-corner.tl::after { top:0; left:0; }
.mini-ar-corner.tr { top:0; right:0; }
.mini-ar-corner.tr::before { top:0; right:0; } .mini-ar-corner.tr::after { top:0; right:0; }
.mini-ar-corner.bl { bottom:0; left:0; }
.mini-ar-corner.bl::before { bottom:0; left:0; } .mini-ar-corner.bl::after { bottom:0; left:0; }
.mini-ar-corner.br { bottom:0; right:0; }
.mini-ar-corner.br::before { bottom:0; right:0; } .mini-ar-corner.br::after { bottom:0; right:0; }

.mini-ar-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 38px; height: 38px;
  border: 1.5px solid rgba(59,130,246,0.5);
  border-radius: 50%;
  animation: pulseRing 2.2s ease-in-out infinite;
}
.mini-ar-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 5px; height: 5px;
  background: var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-blue);
}
.mini-ar-scan {
  position: absolute;
  left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
  box-shadow: 0 0 6px var(--accent-teal);
  animation: miniScan 2.5s ease-in-out infinite;
}
@keyframes miniScan {
  0%   { top: 10%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: 88%; opacity: 0; }
}

/* ── Wikidata card ── */
.bento-card--wiki {
  min-height: 220px;
}

/* ── Nearby card ── with radar animation ── */
.bento-card--nearby { min-height: 220px; }

.radar {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  pointer-events: none;
}
.radar-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 50%;
  animation: radarPing 3s ease-out infinite;
}
.radar-ring.r1 { width: 30px; height: 30px; animation-delay: 0s; }
.radar-ring.r2 { width: 55px; height: 55px; animation-delay: 0.6s; }
.radar-ring.r3 { width: 80px; height: 80px; animation-delay: 1.2s; }
@keyframes radarPing {
  0%   { opacity: 0.8; transform: translate(-50%,-50%) scale(0.85); }
  100% { opacity: 0;   transform: translate(-50%,-50%) scale(1.2); }
}
.radar-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-blue);
}
.radar-dot {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-teal);
}
.radar-dot.d1 { top: 28%; left: 68%; }
.radar-dot.d2 { top: 60%; left: 30%; }
.radar-dot.d3 { top: 20%; left: 38%; }

/* ── Timelines card ── */
.bento-card--timelines { min-height: 190px; }

.tl-vis {
  position: relative;
  margin-top: 24px;
  height: 48px;
}
.tl-track {
  position: absolute;
  top: 12px; left: 8px; right: 8px; height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.15) 15%,
    rgba(255,255,255,0.15) 85%,
    transparent
  );
}
.tl-node {
  position: absolute;
  top: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.tl-node::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--bg-card);
  border: 1.5px solid var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(59,130,246,0.5);
}
.tl-node span {
  font-size: .6rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: .02em;
}
.tl-node.n1 { left: 8%; }
.tl-node.n2 { left: 30%; }
.tl-node.n3 { left: 58%; }
.tl-node.n4 { left: 82%; }

/* ── Fast card ── */
.bento-card--fast { min-height: 190px; }
.bento-fast-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}
.bento-fast-text { flex: 0 0 auto; max-width: 220px; }

.speed-bars { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.speed-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.speed-label {
  font-size: .72rem;
  color: var(--text-secondary);
  width: 84px;
  flex-shrink: 0;
}
.speed-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}
.speed-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
  border-radius: 100px;
  transition: width 1.2s var(--ease);
}
.speed-fill.animated { width: var(--w); }
.speed-val {
  font-size: .68rem;
  font-family: var(--font-mono);
  color: var(--accent-teal);
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

/* ─── Locations ticker tape ──────────────────────────────────────── */
.ticker-wrap {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--bg-surface);
}

.ticker-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker-fade--left  { left: 0;  background: linear-gradient(to right, var(--bg-surface), transparent); }
.ticker-fade--right { right: 0; background: linear-gradient(to left,  var(--bg-surface), transparent); }

.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: tickerScroll 55s linear infinite;
  width: max-content;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.ticker-item--discovery {
  text-transform: none;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ticker-item--discovery strong {
  color: var(--text-primary);
  font-weight: 600;
}
.ticker-flag { font-size: 1rem; }
.ticker-sep {
  font-size: .45rem;
  color: var(--accent-blue);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ─── CTA Band ──────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  padding: 110px 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.cta-band-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%,
      rgba(59,130,246,0.1) 0%,
      rgba(167,139,250,0.05) 50%,
      transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; text-align: center; }

.cta-band-eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 16px;
  display: block;
}

.cta-band-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.045em;
  margin-bottom: 14px;
  background: linear-gradient(148deg, #ffffff 0%, #9fafc8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-band-sub { font-size: .95rem; color: var(--text-secondary); margin-bottom: 28px; }
.cta-band-stores {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-band-waitlist-label {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.cta-form { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.cta-input {
  padding: 12px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: .9rem; font-family: var(--font);
  width: 272px;
  transition: border-color .25s; outline: none;
}
.cta-input::placeholder { color: var(--text-muted); }
.cta-input:focus { border-color: rgba(59,130,246,0.4); }

.cta-submit {
  padding: 12px 28px;
  background: var(--accent-blue);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: .9rem; font-weight: 600;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 0 0 0 rgba(59,130,246,0);
}
.cta-submit:hover {
  background: #5b9aff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.35);
}
.cta-submit:active { transform: translateY(0); }
.cta-confirm { margin-top: 14px; font-size: .82rem; color: var(--accent-teal); min-height: 1.2em; }

/* ─── Footer ────────────────────────────────────────────────────── */
.footer { padding: 52px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; flex-direction: column; gap: 20px; }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo { font-size: 1.1rem; font-weight: 700; letter-spacing: -.03em; }
.footer-links { display: flex; gap: 24px; }
.footer-link { font-size: .82rem; color: var(--text-muted); transition: color .2s; }
.footer-link:hover { color: var(--text-secondary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-tagline { font-size: .78rem; color: var(--text-secondary); font-style: italic; }
.footer-copy    { font-size: .72rem; color: var(--text-muted); }
.footer-link-inline { color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.footer-link-inline:hover { color: var(--text-secondary); }

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
    gap: 56px;
  }
  .hero-content { order: 1; }
  .hero-phone   { order: 2; }
  .hero-badge   { margin: 0 auto 24px; }
  .hero-sub     { margin: 0 auto 38px; }
  .hero-cta-group { justify-content: center; }
  .hero-scroll-hint { display: none; }

  .stats-inner { gap: 0; }
  .stat        { padding: 16px 24px; }
  .stat-sep    { width: 40px; height: 1px; }

  .steps { flex-direction: column; align-items: center; gap: 36px; }
  .step-connector { display: none; }
  .step { padding: 0; }

  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card--ar,
  .bento-card--timelines,
  .bento-card--fast     { grid-column: span 2; }
  .bento-card--wiki,
  .bento-card--nearby,
  .bento-card--open     { grid-column: span 1; }

  .bento-card--ar { flex-direction: column; gap: 24px; align-items: flex-start; }
  .mini-ar { display: none; }

  .bento-fast-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  .bento-fast-text  { max-width: 100%; }

  .footer-top    { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--ar,
  .bento-card--timelines,
  .bento-card--fast     { grid-column: span 1; }

  .phone-frame  { width: 220px; }
  .section-title { margin-bottom: 36px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .stats-inner  { flex-direction: column; }
  .stat-sep     { width: 40px; height: 1px; }
}

/* ─── Warm accent ───────────────────────────────────────────────── */
:root {
  --accent-amber: #d4865a;
  --accent-amber-glow: rgba(212,134,90,0.15);
}

/* ─── Replace section ───────────────────────────────────────────── */
.replace-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.replace-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.replace-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 14px;
  background: linear-gradient(148deg, #ffffff 0%, #9fafc8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.replace-sub {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 340px;
}
.replace-cta { display: inline-flex; }
.replace-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.replace-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.replace-item:first-child { border-top: 1px solid var(--border); }
.replace-strike {
  font-size: .9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.2);
}
.replace-cost {
  font-size: .75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 8px;
}
.replace-item--in {
  background: rgba(212,134,90,0.05);
  border-color: rgba(212,134,90,0.2) !important;
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  margin-top: 4px;
}
.replace-item--in:first-child { border-top-color: rgba(212,134,90,0.2) !important; }
.replace-in-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--accent-amber);
  display: flex;
  align-items: center;
  gap: 8px;
}
.replace-in-icon { font-size: .8rem; }
.replace-free {
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent-amber);
  background: rgba(212,134,90,0.12);
  border: 1px solid rgba(212,134,90,0.3);
  border-radius: 6px;
  padding: 2px 10px;
}
@media (max-width: 900px) {
  .replace-inner { grid-template-columns: 1fr; gap: 40px; }
  .replace-sub { max-width: 100%; }
}

/* ─── Data sources bar ──────────────────────────────────────────── */
.sources-bar {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.sources-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sources-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.sources-divider {
  width: 1px;
  height: 14px;
  background: var(--border);
}
.sources-list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.source-item {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.source-item:hover { opacity: 1; }
.source-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-teal);
  opacity: 0.6;
}

/* ─── Emotional section ─────────────────────────────────────────── */
.moment-section {
  padding: 110px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.moment-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%,
    rgba(212,134,90,0.05) 0%,
    rgba(59,130,246,0.04) 50%,
    transparent 70%);
  pointer-events: none;
}
.moment-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.moment-quote-mark {
  font-size: 5rem;
  line-height: 0.5;
  color: var(--accent-amber);
  opacity: 0.3;
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 24px;
}
.moment-text {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.75;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 32px;
}
.moment-text em {
  font-style: normal;
  color: var(--text-primary);
  font-weight: 500;
}
.moment-caption {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-amber);
  font-weight: 600;
  font-style: normal;
}

/* ─── Traveler personas ─────────────────────────────────────────── */
.personas-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.persona-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.persona-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.persona-card:hover { transform: translateY(-3px); }
.persona-card--traveler::before { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59,130,246,0.06), transparent); }
.persona-card--history::before  { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,134,90,0.07), transparent); }
.persona-card--parent::before   { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(167,139,250,0.06), transparent); }
.persona-card:hover::before { opacity: 1; }
.persona-card:hover.persona-card--traveler { border-color: rgba(59,130,246,0.3); }
.persona-card:hover.persona-card--history  { border-color: rgba(212,134,90,0.3); }
.persona-card:hover.persona-card--parent   { border-color: rgba(167,139,250,0.3); }

.persona-emoji {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}
.persona-type {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.persona-card--traveler .persona-type { color: var(--accent-blue); }
.persona-card--history  .persona-type { color: var(--accent-amber); }
.persona-card--parent   .persona-type { color: var(--accent-purple); }

.persona-hook {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.persona-desc {
  font-size: .85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}
.persona-quote {
  font-size: .8rem;
  font-style: italic;
  color: var(--text-muted);
  border-left: 2px solid var(--border);
  padding-left: 12px;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .personas-grid { grid-template-columns: 1fr; }
}

/* ─── Achievement teaser ────────────────────────────────────────── */
.achievement-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.achievement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.achievement-text .section-eyebrow { margin-bottom: 14px; display: block; }
.achievement-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.12;
  margin-bottom: 16px;
  background: linear-gradient(148deg, #ffffff 0%, #9fafc8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.achievement-sub {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.achievement-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.achievement-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,134,90,0.06), transparent);
  pointer-events: none;
}
.ach-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ach-title { font-size: .78rem; font-weight: 700; letter-spacing: -.01em; }
.ach-country-badge {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: rgba(212,134,90,0.1);
  border: 1px solid rgba(212,134,90,0.25);
  border-radius: 100px;
  color: var(--accent-amber);
}
.ach-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.ach-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}
.ach-stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -.04em;
  display: block;
  margin-bottom: 3px;
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ach-stat-label {
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}
.ach-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
  font-size: .65rem;
  color: var(--text-secondary);
}
.ach-progress-pct { color: var(--accent-amber); font-weight: 600; }
.ach-progress-track {
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 16px;
}
.ach-progress-fill {
  height: 100%;
  width: 6%;
  background: linear-gradient(90deg, var(--accent-amber), var(--accent-blue));
  border-radius: 100px;
  transition: width 1.4s var(--ease);
}
.ach-progress-fill.animated { width: 6%; }
.ach-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ach-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .65rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid;
}
.ach-badge--earned {
  color: var(--accent-amber);
  background: rgba(212,134,90,0.08);
  border-color: rgba(212,134,90,0.25);
}
.ach-badge--locked {
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  border-color: var(--border);
}
.ach-badge-icon { font-size: .7rem; }
.ach-nudge {
  margin-top: 14px;
  font-size: .72rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  opacity: 0.7;
}
@media (max-width: 900px) {
  .achievement-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── FAQ ───────────────────────────────────────────────────────── */
.faq-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent-teal); }
.faq-icon {
  width: 20px; height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .7rem;
  color: var(--text-muted);
  transition: transform 0.3s ease, border-color 0.2s, color 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent-teal);
  color: var(--accent-teal);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-bottom: 0;
  transition: padding-bottom 0.35s ease;
}
.faq-item.open .faq-answer-inner { padding-bottom: 20px; }

/* ─── Sticky download bar ───────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  background: rgba(8,9,12,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-text {
  font-size: .78rem;
  color: var(--text-secondary);
  white-space: nowrap;
}
.sticky-bar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.sticky-btn--primary {
  background: var(--accent-blue);
  color: #fff;
  text-decoration: none;
}
.sticky-btn--primary:hover {
  background: #5b9aff;
  transform: translateY(-1px);
}
.sticky-btn--secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: not-allowed;
  opacity: 0.55;
}
.sticky-bar-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}
.sticky-bar-close:hover { color: var(--text-secondary); }
@media (max-width: 600px) {
  .sticky-bar-text { display: none; }
  .sticky-bar { justify-content: center; }
}

/* ─── About / GEO section ──────────────────────────────────────── */
.about-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.about-inner { max-width: 900px; margin: 0 auto; text-align: left; }
.about-inner .section-title { text-align: left; margin-bottom: 48px; }
.about-inner .section-eyebrow { text-align: left; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}
.about-block-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.about-block-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.about-link {
  color: var(--accent-teal, #5eead4);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-link:hover { opacity: 0.8; }
@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-inner .section-title { font-size: 1.6rem; }
}

/* ─── Inline CTAs ───────────────────────────────────────────────── */
.inline-cta {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.inline-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.inline-cta-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}
.inline-cta-text strong { color: var(--text-primary); }
.inline-cta-btn { flex-shrink: 0; }
@media (max-width: 600px) {
  .inline-cta-inner { flex-direction: column; text-align: center; }
}
