/* =========================================================================
   BharatGeoTag — Marketing site styles
   New-age landing page: aurora bg, glassmorphism, scroll animations,
   animated phone mockup, theme-aware.
   ========================================================================= */

:root {
  --bg: #0a0e1a;
  --bg-2: #0e1424;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f6fa;
  --text-2: #b4bbcd;
  --muted: #6f7896;
  --saffron: #FF9933;
  --saffron-2: #FF6B00;
  --indigo: #6B7BFF;
  --indigo-2: #1F3A8A;
  --green: #138808;
  --pink: #FF5E9C;
  --cyan: #00E5FF;
  --danger: #ff5252;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.6), 0 8px 30px -8px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px -10px rgba(255, 153, 51, 0.35);
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
  --bg: #f7f6f1;
  --bg-2: #ffffff;
  --surface: rgba(10, 14, 26, 0.03);
  --surface-2: rgba(10, 14, 26, 0.05);
  --border: rgba(10, 14, 26, 0.08);
  --border-strong: rgba(10, 14, 26, 0.14);
  --text: #0a0e1a;
  --text-2: #3a4258;
  --muted: #7c849a;
  --shadow-lg: 0 30px 60px -25px rgba(31, 58, 138, 0.18), 0 8px 20px -8px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 60px -10px rgba(255, 107, 0, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* =========================================================================
   Boot screen
   ========================================================================= */
.boot {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.boot.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.boot-mark { animation: bootPulse 1.2s var(--ease) infinite; }
.boot-mark svg { width: 64px; height: 64px; }
@keyframes bootPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.92); opacity: 0.6; }
}

/* =========================================================================
   Aurora background
   ========================================================================= */
.aurora {
  position: fixed; inset: 0; z-index: -1;
  overflow: hidden; pointer-events: none;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  will-change: transform;
}
.aurora-blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--saffron), transparent 70%);
  top: -200px; left: -100px;
  animation: float1 18s ease-in-out infinite;
}
.aurora-blob--2 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--indigo), transparent 70%);
  top: 30%; right: -200px;
  animation: float2 22s ease-in-out infinite;
}
.aurora-blob--3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--pink), transparent 70%);
  bottom: -100px; left: 30%;
  animation: float3 26s ease-in-out infinite;
}
[data-theme="light"] .aurora-blob { opacity: 0.4; }
@keyframes float1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(60px, 80px) scale(1.1); } }
@keyframes float2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-80px, 40px) scale(0.9); } }
@keyframes float3 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(40px, -60px) scale(1.05); } }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 80%);
}
[data-theme="light"] .grid-overlay {
  background-image:
    linear-gradient(rgba(10,14,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,14,26,0.04) 1px, transparent 1px);
}

/* =========================================================================
   Layout helpers
   ========================================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.muted { color: var(--text-2); font-weight: 500; }
.mono { font-family: 'JetBrains Mono', monospace; font-feature-settings: "tnum"; }
.accent { color: var(--saffron); }

/* =========================================================================
   Navigation
   ========================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] .nav.scrolled {
  background: rgba(247, 246, 241, 0.8);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 153, 51, 0.1);
  display: grid; place-items: center;
  color: var(--saffron);
  border: 1px solid rgba(255, 153, 51, 0.2);
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 17px;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 10.5px; color: var(--muted);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 3px;
  font-weight: 500;
}

.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  font-size: 14.5px; font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  display: grid; place-items: center;
  transition: all 0.2s var(--ease);
}
.icon-btn:hover { background: var(--surface-2); border-color: var(--border-strong); }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn .icon-sun { display: none; }
.icon-btn .icon-moon { display: block; }
[data-theme="light"] .icon-btn .icon-sun { display: block; }
[data-theme="light"] .icon-btn .icon-moon { display: none; }
.nav-burger { display: none; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600; font-size: 14.5px;
  border: 1px solid transparent;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-lg { padding: 14px 24px; font-size: 15.5px; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-2) 100%);
  color: #0a0e1a;
  box-shadow: 0 8px 24px -8px rgba(255, 107, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(255, 107, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--border-strong);
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  padding: 140px 0 60px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: rgba(255, 153, 51, 0.08);
  border: 1px solid rgba(255, 153, 51, 0.18);
  color: var(--saffron);
  font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
  transition: all 0.2s var(--ease);
}
.eyebrow:hover { background: rgba(255, 153, 51, 0.14); }
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 12px var(--saffron);
  animation: pulse 2s ease-in-out infinite;
}
.eyebrow svg { width: 14px; height: 14px; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 24px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-2) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 19.5px);
  color: var(--text-2);
  max-width: 560px;
  margin: 0 0 36px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex; gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  list-style: none; padding: 0; margin: 0;
}
.hero-trust li {
  display: flex; align-items: center; gap: 6px;
  font-size: 13.5px; color: var(--text-2);
}
.hero-trust svg {
  width: 16px; height: 16px; color: var(--saffron);
}

/* =========================================================================
   PHONE MOCKUP
   ========================================================================= */
.hero-visual {
  position: relative;
  display: grid; place-items: center;
}
.phone {
  width: 300px; height: 600px;
  border-radius: 44px;
  background: linear-gradient(135deg, #1a1f2e, #0a0e1a);
  border: 2px solid rgba(255,255,255,0.12);
  padding: 14px;
  position: relative;
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.phone::before, .phone::after {
  content: "";
  position: absolute; top: 18px;
  width: 4px; height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}
.phone::before { left: -6px; }
.phone::after { right: -6px; top: 80px; height: 100px; }
.phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #1a2533;
  position: relative;
}

/* Sample photo inside the phone */
.photo-bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.photo-sky {
  position: absolute; top: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(180deg, #ffb47a 0%, #ff8c5a 30%, #b85b3c 70%, #6d4030 100%);
}
.photo-mountains {
  position: absolute; bottom: 35%; left: 0; right: 0; height: 35%;
  background:
    radial-gradient(ellipse at 20% 100%, #4a3528 0%, transparent 50%),
    radial-gradient(ellipse at 60% 100%, #5c4232 0%, transparent 60%),
    radial-gradient(ellipse at 90% 100%, #3d2a1f 0%, transparent 50%);
}
.photo-site {
  position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(180deg, #5a4636 0%, #3d2f23 100%);
}
.photo-site::before {
  content: ""; position: absolute; bottom: 30%; left: 15%; right: 15%; height: 35%;
  background: linear-gradient(180deg, transparent 0%, #2a1f15 100%);
  clip-path: polygon(0 100%, 5% 60%, 15% 70%, 25% 40%, 35% 60%, 45% 30%, 55% 50%, 65% 25%, 75% 45%, 85% 30%, 95% 50%, 100% 100%);
}
.photo-crane {
  position: absolute; bottom: 30%; left: 50%;
  width: 2px; height: 80px;
  background: #1a120a;
  transform-origin: bottom;
  transform: rotate(-15deg);
}
.photo-crane::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 60px; height: 2px; background: #1a120a;
}
.photo-crane::after {
  content: ""; position: absolute; top: 0; right: 0;
  width: 2px; height: 20px; background: #1a120a;
}

/* Camera UI overlays */
.cam-top {
  position: absolute; top: 38px; left: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px; z-index: 3;
}
.cam-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  color: white;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.cam-chip-alt {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
}
.cam-chip .mono { font-size: 10.5px; }
.cam-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 8px #ff3b30;
  animation: blink 1.4s ease-in-out infinite;
}
.cam-dot.live { background: #ff3b30; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.sep { opacity: 0.5; margin: 0 4px; }

.cam-grid {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
}
.cam-grid span {
  position: absolute;
  background: rgba(255,255,255,0.15);
}
.cam-grid span:nth-child(1) { left: 33.33%; top: 0; bottom: 0; width: 1px; }
.cam-grid span:nth-child(2) { left: 66.66%; top: 0; bottom: 0; width: 1px; }
.cam-grid span:nth-child(3) { top: 33.33%; left: 0; right: 0; height: 1px; }

/* Stamp */
.stamp {
  position: absolute;
  bottom: 120px; left: 12px; right: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #0a0e1a;
  border-radius: 10px;
  padding: 10px 12px;
  z-index: 4;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: stampIn 0.6s var(--ease-out) 0.3s backwards;
}
@keyframes stampIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.stamp-top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--saffron-2);
  margin-bottom: 4px;
}
.stamp-row {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  margin-top: 2px;
}
.stamp-row svg { width: 12px; height: 12px; color: var(--saffron); }
.stamp-row.small { font-size: 10px; color: #555; font-weight: 500; }
.stamp-divider {
  height: 1px; background: #eee;
  margin: 6px 0;
}
.stamp-row.small .plus-code {
  background: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  color: var(--indigo-2);
}

/* Mini map */
.mini-map {
  position: absolute;
  top: 130px; right: 12px;
  width: 72px; height: 72px;
  background: #d4e8d4;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 3;
}
.mini-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 12px 12px;
}
.mini-map-road {
  position: absolute;
  background: white;
  height: 8px; top: 50%; left: -10%; right: -10%;
  transform: rotate(-25deg);
}
.mini-map-pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  width: 12px; height: 12px;
  background: var(--saffron);
  border: 2px solid white;
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Camera bottom */
.cam-bottom {
  position: absolute; bottom: 14px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px;
  z-index: 3;
}
.cam-thumbs {
  display: flex; gap: 4px;
  flex-direction: column;
}
.cam-thumbs span {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.3);
}
.shutter {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: grid; place-items: center;
}
.shutter-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.shutter-core {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: white;
  transition: transform 0.15s var(--ease);
}
.shutter:active .shutter-core { transform: scale(0.85); }
.cam-flip {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  display: grid; place-items: center;
}
.cam-flip svg { width: 18px; height: 18px; }

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(20, 25, 40, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  z-index: 5;
  min-width: 180px;
}
[data-theme="light"] .float-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(10,14,26,0.1);
  color: #0a0e1a;
}
.float-card-1 {
  top: 30%; left: -80px;
  animation: floatCard1 5s ease-in-out infinite;
}
.float-card-2 {
  bottom: 18%; right: -90px;
  animation: floatCard2 5s ease-in-out 0.5s infinite;
}
@keyframes floatCard1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(8px, -10px); } }
@keyframes floatCard2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-8px, 8px); } }
.float-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--saffron);
  display: grid; place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.float-card div { display: flex; flex-direction: column; }
.float-card strong { font-size: 12.5px; font-weight: 700; }
.float-card span { font-size: 11px; color: var(--text-2); margin-top: 1px; }

/* =========================================================================
   Stats strip
   ========================================================================= */
.stats-strip {
  margin-top: 80px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(10px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  display: flex; flex-direction: column;
  text-align: center;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-suffix {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--saffron-2);
  margin-left: 4px;
}
.stat-label {
  font-size: 13px; color: var(--text-2);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* =========================================================================
   Trust marquee
   ========================================================================= */
.trust {
  padding: 48px 0 32px;
  text-align: center;
}
.trust-eyebrow {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 24px;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 24px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-2);
  width: max-content;
}
.marquee-track span { flex-shrink: 0; }
.m-dot { color: var(--saffron); opacity: 0.6; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================================
   Section common
   ========================================================================= */
section { padding: 100px 0; position: relative; }
.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.kicker {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 153, 51, 0.1);
  border: 1px solid rgba(255, 153, 51, 0.2);
  color: var(--saffron);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 18px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}

/* =========================================================================
   Features
   ========================================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 153, 51, 0.15), transparent 60%);
  opacity: 0; transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.feature:hover {
  border-color: rgba(255, 153, 51, 0.3);
  transform: translateY(-4px);
  background: var(--surface-2);
}
.feature:hover::before { opacity: 1; }

.feature--big {
  grid-column: span 2;
  grid-row: span 2;
  display: flex; flex-direction: column;
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255, 153, 51, 0.12);
  border: 1px solid rgba(255, 153, 51, 0.2);
  color: var(--saffron);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.feature--big h3 { font-size: 24px; margin-bottom: 12px; }
.feature p {
  color: var(--text-2);
  font-size: 14.5px;
  margin: 0 0 16px;
  line-height: 1.55;
}
.feature--big p { font-size: 16px; margin-bottom: 20px; }
.feature-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 11.5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-weight: 500;
}
.feature-visual { margin-top: auto; padding-top: 20px; }
.feature-visual--stamp {
  display: flex; justify-content: center;
}
.mini-stamp {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 12px;
  min-width: 220px;
}
.mini-stamp-line {
  display: flex; justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text-2);
}
.mini-stamp-line:last-child { border-bottom: none; }
.mini-stamp-line span:first-child {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* =========================================================================
   How it works
   ========================================================================= */
.how { background: var(--bg-2); }
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 51, 0.3);
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}
.step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
}
.step p {
  color: var(--text-2);
  font-size: 14.5px;
  margin: 0 0 20px;
  line-height: 1.55;
}
.step-illust {
  height: 90px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(255, 94, 156, 0.08));
  border: 1px solid rgba(255, 153, 51, 0.15);
  position: relative;
  overflow: hidden;
}
.step-illust--1::after {
  content: "📍 GPS LOCKED";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--saffron);
  letter-spacing: 0.1em;
}
.step-illust--2::after {
  content: "STAMP READY";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--saffron);
  letter-spacing: 0.1em;
  animation: stampIn 1.5s var(--ease) infinite;
}
.step-illust--3::after {
  content: "→ Shared";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--saffron);
  letter-spacing: 0.1em;
}

/* =========================================================================
   Templates showcase
   ========================================================================= */
.tpl-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.tpl {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 12px;
}
.tpl strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  display: flex; align-items: center; gap: 6px;
}
.tpl span { font-size: 12.5px; color: var(--text-2); }
.pro-tag {
  font-size: 10px;
  background: var(--saffron);
  color: #0a0e1a;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.tpl-card {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: #1a2533;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.tpl:hover .tpl-card {
  transform: translateY(-6px) rotate(-1deg);
  border-color: var(--saffron);
  box-shadow: var(--shadow-glow);
}
.tpl.featured .tpl-card { border-color: rgba(255, 153, 51, 0.4); }
.tpl-premium .tpl-card { border-color: rgba(255, 153, 51, 0.3); }

.tpl-photo {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, #ffb47a 0%, #b85b3c 40%, #4a3528 80%, #2a1f15 100%);
}
.tpl-photo::after {
  content: ""; position: absolute; bottom: 30%; left: 20%; right: 20%; height: 30%;
  background: linear-gradient(180deg, transparent 0%, #2a1f15 100%);
  clip-path: polygon(0 100%, 20% 50%, 40% 70%, 60% 30%, 80% 60%, 100% 100%);
}

.tpl-stamp {
  position: absolute;
  background: rgba(255,255,255,0.95);
  color: #0a0e1a;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1.3;
}
.tpl-stamp-line { display: flex; gap: 4px; }
.tpl-stamp-line b { font-weight: 800; min-width: 32px; color: var(--muted); font-size: 8.5px; }
.tpl-stamp-head { font-weight: 800; letter-spacing: 0.08em; color: var(--saffron-2); margin-bottom: 3px; font-size: 8.5px; }
.tpl-stamp-foot { margin-top: 3px; font-size: 8.5px; opacity: 0.7; }

.tpl-stamp--A {
  top: 12px; right: 12px;
  font-size: 9px;
}
.tpl-stamp--A span { font-size: 8px; opacity: 0.7; }

.tpl-stamp--B {
  bottom: 12px; left: 12px; right: 12px;
  font-size: 8.5px;
}

.tpl-stamp--C {
  bottom: 12px; left: 12px; right: 60px;
  font-size: 8.5px;
}
.tpl-stamp--C div:not(:last-child) { margin-bottom: 2px; }
.tpl-map {
  position: absolute; top: 12px; right: 12px;
  width: 44px; height: 44px;
  background: #d4e8d4;
  border-radius: 6px;
  border: 1px solid white;
  background-image:
    linear-gradient(rgba(0,0,0,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.1) 1px, transparent 1px);
  background-size: 8px 8px;
}

.tpl-stamp--D {
  bottom: 12px; left: 12px; right: 12px;
}

.tpl-stamp--E {
  top: 12px; left: 12px; right: 12px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-2));
  color: white;
  text-align: center;
}
.tpl-stamp--E .tpl-stamp-head { color: rgba(255,255,255,0.95); }
.tpl-pro-badge {
  position: absolute; top: 8px; right: 8px;
  z-index: 2;
  background: var(--saffron);
  color: #0a0e1a;
  font-size: 8.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.08em;
}

/* =========================================================================
   Privacy section
   ========================================================================= */
.priv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.priv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s var(--ease);
}
.priv-card.big {
  grid-row: span 2;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.08), rgba(255, 94, 156, 0.05));
  border-color: rgba(255, 153, 51, 0.2);
  display: grid; place-items: center;
  padding: 40px;
}
.priv-card:hover {
  border-color: rgba(255, 153, 51, 0.3);
  transform: translateY(-3px);
}
.priv-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--green);
  color: white;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.priv-icon svg { width: 18px; height: 18px; }
.priv-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}
.priv-card p {
  font-size: 14px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.5;
}
.priv-card p em { color: var(--saffron); font-style: normal; font-weight: 600; }
.priv-card p code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  background: var(--surface-2);
  padding: 1px 6px;
  border-radius: 4px;
}

/* Big visual */
.priv-phone {
  width: 220px; aspect-ratio: 9/16;
  background: linear-gradient(135deg, #1a1f2e, #0a0e1a);
  border-radius: 28px;
  border: 1.5px solid rgba(255,255,255,0.12);
  padding: 8px;
  box-shadow: var(--shadow-lg);
}
.priv-phone-screen {
  width: 100%; height: 100%;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 153, 51, 0.2), transparent 70%);
  display: grid; place-items: center;
  text-align: center;
}
.priv-icon-big {
  width: 80px; height: 80px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-2));
  color: white;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 12px 32px rgba(255, 107, 0, 0.4);
  animation: lockFloat 4s ease-in-out infinite;
}
.priv-icon-big svg { width: 40px; height: 40px; }
.priv-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}
@keyframes lockFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* =========================================================================
   Pricing
   ========================================================================= */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.price-card:hover { transform: translateY(-4px); }
.price-card--pro {
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.08), rgba(255, 94, 156, 0.04));
  border-color: rgba(255, 153, 51, 0.3);
  box-shadow: var(--shadow-glow);
}
.price-tag {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--saffron), var(--saffron-2));
  color: #0a0e1a;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 14px;
}
.price-tier--pro { color: var(--saffron); }
.price-amount {
  display: flex; align-items: baseline; gap: 4px;
  font-family: 'Space Grotesk', sans-serif;
}
.price-amount .currency {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-2);
  align-self: flex-start;
  margin-top: 6px;
}
.price-amount .amount {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}
.price-amount .period {
  font-size: 16px;
  color: var(--text-2);
  margin-left: 4px;
}
.price-period {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 24px;
}
.price-list {
  list-style: none; padding: 0; margin: 0 0 28px;
}
.price-list li {
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.price-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
}
.price-list li:last-child { border-bottom: none; }
.price-list li strong { color: var(--text); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.faq-wrap .section-head { text-align: left; margin: 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s var(--ease);
}
.faq-item[open] {
  border-color: rgba(255, 153, 51, 0.3);
  background: var(--surface-2);
}
.faq-item summary {
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--saffron);
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
}
.faq-icon svg { width: 14px; height: 14px; transition: transform 0.2s var(--ease); }
.faq-item[open] .faq-icon svg { transform: rotate(180deg); }
.faq-body {
  padding: 0 22px 22px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
}
.faq-body p { margin: 0; }
.faq-body a { color: var(--saffron); }
.faq-body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  background: var(--surface-2);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--text);
}

/* =========================================================================
   Download CTA
   ========================================================================= */
.download { padding: 80px 0; }
.download-inner {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(255, 94, 156, 0.05));
  border: 1px solid rgba(255, 153, 51, 0.2);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.dl-bg {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
}
.dl-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}
.dl-blob-1 {
  width: 400px; height: 400px;
  background: var(--saffron);
  top: -200px; left: -100px;
  animation: float1 20s ease-in-out infinite;
}
.dl-blob-2 {
  width: 400px; height: 400px;
  background: var(--pink);
  bottom: -200px; right: -100px;
  animation: float2 24s ease-in-out infinite;
}
.dl-content { position: relative; z-index: 1; }
.dl-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 16px;
}
.dl-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 36px;
}
.dl-ctas {
  display: flex; gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  background: #0a0e1a;
  color: white;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s var(--ease);
}
[data-theme="light"] .store-btn { background: white; color: #0a0e1a; border-color: rgba(10,14,26,0.1); }
.store-btn:hover { transform: translateY(-2px); border-color: var(--saffron); }
.store-btn span { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn small {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 500;
}
.store-btn strong { font-size: 18px; font-weight: 700; }
.store-btn--alt { background: transparent; }
[data-theme="light"] .store-btn--alt { background: rgba(10,14,26,0.05); }

.dl-meta {
  font-size: 13px;
  color: var(--muted);
}
.dl-meta a { color: var(--saffron); }
.dl-meta a:hover { text-decoration: underline; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-foot {
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  background: var(--bg-2);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.foot-brand .brand { margin-bottom: 14px; }
.foot-tag {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
}
.foot-tag strong { color: var(--text); }
.foot-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 14px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 10px; }
.foot-col a {
  color: var(--text-2);
  font-size: 14px;
  transition: color 0.15s var(--ease);
}
.foot-col a:hover { color: var(--saffron); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.foot-bottom code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 4px;
}

/* =========================================================================
   Scroll reveal
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================================
   Mobile menu (off-canvas)
   ========================================================================= */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: 100px 28px 28px;
  transform: translateY(-100%);
  transition: transform 0.3s var(--ease);
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-size: 22px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero { padding: 120px 0 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature--big { grid-column: span 2; grid-row: auto; }
  .priv-grid { grid-template-columns: repeat(2, 1fr); }
  .priv-card.big { grid-column: span 2; grid-row: auto; }
  .tpl-grid { grid-template-columns: repeat(3, 1fr); }
  .tpl:nth-child(n+4) { display: none; }
  .steps { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .faq-wrap .section-head { text-align: center; margin: 0 auto; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  section { padding: 70px 0; }
  .container { padding: 0 18px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: grid; }
  .nav-inner { padding: 14px 18px; }
  .hero-title { font-size: clamp(38px, 11vw, 56px); }
  .features-grid { grid-template-columns: 1fr; }
  .feature--big { grid-column: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .priv-grid { grid-template-columns: 1fr; }
  .priv-card.big { grid-column: auto; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card--pro { order: -1; }
  .tpl-grid { grid-template-columns: repeat(3, 1fr); }
  .float-card-1 { left: -20px; }
  .float-card-2 { right: -20px; }
  .download-inner { padding: 50px 24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .phone { width: 260px; height: 520px; }
  .float-card { display: none; }
  .mini-map { width: 56px; height: 56px; }
  .dl-ctas { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 280px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-lg { justify-content: center; }
  .stat-num { font-size: 36px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}