/* ── Self-hosted Fonts ── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/inter-800.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/jetbrains-400.woff2') format('woff2');
}

/* ── Theme Variables ── */
:root {
  --green:    #3d7a3a;
  --green-lt: #4e9c4a;
  --earth:    #b5651d;
  --earth-lt: #d4803a;
  --blue-geo: #2e7dbf;
  --blue-lt:  #4da6e8;
  --radius:   12px;

  /* Dark theme (default) */
  --bg:           #111d2b;
  --bg-alt:       rgba(255,255,255,0.015);
  --bg-nav:       rgba(17,29,43,0.92);
  --bg-nav-solid: rgba(17,29,43,0.99);
  --navy:         #1a2a3d;
  --navy-mid:     #1e3350;
  --text:         #e8edf2;
  --text-muted:   #8fa3b8;
  --border:       rgba(255,255,255,0.08);
  --card-bg:      rgba(255,255,255,0.04);
  --shadow:       0 4px 24px rgba(0,0,0,0.35);
  --grid-line:    rgba(255,255,255,0.025);
  --scrollbar:    #1e3350;
}

[data-theme="light"] {
  --bg:           #f0f5fb;
  --bg-alt:       rgba(0,0,0,0.025);
  --bg-nav:       rgba(240,245,251,0.95);
  --bg-nav-solid: rgba(240,245,251,0.99);
  --navy:         #dde8f4;
  --navy-mid:     #cddaec;
  --text:         #0f1e2d;
  --text-muted:   #4a6278;
  --border:       rgba(0,0,0,0.09);
  --card-bg:      rgba(255,255,255,0.85);
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --grid-line:    rgba(0,0,0,0.04);
  --scrollbar:    #cddaec;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}

/* ── Accessibility: reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--scrollbar); border-radius: 3px; }

/* ── Progress Bar ── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--blue-geo), var(--green-lt), var(--blue-lt));
  z-index: 300;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── Back to Top ── */
#back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-geo);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(46,125,191,0.4);
  z-index: 200;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
#back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-top:hover { background: var(--blue-lt); }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: var(--bg-nav);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}
nav.scrolled { background: var(--bg-nav-solid); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(46,125,191,0.5), 0 0 12px rgba(46,125,191,0.25);
  transition: box-shadow 0.3s;
}
.nav-logo-wrap:hover { box-shadow: 0 0 0 3px rgba(46,125,191,0.7), 0 0 20px rgba(46,125,191,0.4); }
.nav-logo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-logo-wrap.logo-sm { width: 34px; height: 34px; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand-name { font-size: 0.95rem; font-weight: 700; color: var(--text); letter-spacing: 0.02em; transition: color 0.35s; }
.nav-brand-sub  { font-size: 0.68rem; color: var(--text-muted); font-weight: 400; letter-spacing: 0.04em; transition: color 0.35s; }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--blue-geo) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-lt) !important; }
.nav-cta.disabled { opacity: 0.6; cursor: default; }

/* Theme toggle */
#theme-toggle {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
#theme-toggle:hover { background: var(--navy); transform: scale(1.08); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(46,125,191,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(61,122,58,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(181,101,29,0.08) 0%, transparent 60%);
  pointer-events: none;
  transition: background 0.35s;
}
[data-theme="light"] .hero-bg {
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(46,125,191,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(61,122,58,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(181,101,29,0.05) 0%, transparent 60%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  transition: background-image 0.35s;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Hero content fade-in on load */
.hero-content { position: relative; max-width: 780px; }
.hero-content > * {
  animation: heroFadeUp 0.8s ease forwards;
  opacity: 0;
}
.hero-content > *:nth-child(1) { animation-delay: 0.15s; }
.hero-content > *:nth-child(2) { animation-delay: 0.30s; }
.hero-content > *:nth-child(3) { animation-delay: 0.50s; }
.hero-content > *:nth-child(4) { animation-delay: 0.65s; }
.hero-content > *:nth-child(5) { animation-delay: 0.80s; }
.hero-content > *:nth-child(6) { animation-delay: 0.95s; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,125,191,0.15);
  border: 1px solid rgba(46,125,191,0.3);
  color: var(--blue-lt);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background: var(--blue-lt);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-logo-wrap {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 28px;
  flex-shrink: 0;
  box-shadow:
    0 0 0 3px rgba(46,125,191,0.5),
    0 0 0 7px rgba(46,125,191,0.12),
    0 12px 48px rgba(46,125,191,0.35);
  animation: logoGlow 3s ease-in-out infinite;
  transition: transform 0.3s;
}
.hero-logo-wrap:hover { transform: scale(1.06); }
.hero-logo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes logoGlow {
  0%, 100% { box-shadow: 0 0 0 3px rgba(46,125,191,0.5), 0 0 0 7px rgba(46,125,191,0.12), 0 12px 48px rgba(46,125,191,0.35); }
  50%       { box-shadow: 0 0 0 4px rgba(46,125,191,0.75), 0 0 0 10px rgba(46,125,191,0.18), 0 16px 56px rgba(46,125,191,0.5); }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.hero h1 .brand { color: var(--blue-lt); }

/* Typing tagline */
.hero-tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: 0.03em;
  min-height: 1.6em;
  transition: color 0.35s;
}
.hero-tagline::after {
  content: '|';
  color: var(--blue-lt);
  animation: blink 0.75s step-end infinite;
  margin-left: 1px;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
  transition: color 0.35s;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 9px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue-geo);
  color: #fff;
  box-shadow: 0 4px 20px rgba(46,125,191,0.4);
}
.btn-primary:hover {
  background: var(--blue-lt);
  box-shadow: 0 6px 28px rgba(46,125,191,0.55);
  transform: translateY(-2px);
}
.btn-icon { font-size: 1.1rem; }

.coming-soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 9px;
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.35s, color 0.35s;
}
.coming-soon-tag.shrink { flex-shrink: 0; }
.coming-soon-tag .tag-label {
  font-size: 0.68rem;
  background: var(--earth);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Section Commons ── */
section { padding: 90px 5%; }
.section-inner { max-width: 1080px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  transition: color 0.35s;
}
.section-title .accent { color: var(--blue-lt); }
.section-body {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.8;
  transition: color 0.35s;
}
.divider { border: none; border-top: 1px solid var(--border); margin: 0; transition: border-color 0.35s; }

/* ── About ── */
#about { background: var(--bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}
.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.35s;
}
.about-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green-lt);
  border-radius: 50%;
  flex-shrink: 0;
}
.about-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  transition: color 0.35s;
}

/* ── Platform ── */
.platform-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 50px;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.3s;
}
.platform-card:hover { box-shadow: 0 8px 40px rgba(46,125,191,0.15); }

.platform-info { padding: 48px 44px; }
.platform-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; }
.platform-info p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; transition: color 0.35s; }

.platform-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip {
  background: rgba(46,125,191,0.12);
  border: 1px solid rgba(46,125,191,0.25);
  color: var(--blue-lt);
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.chip:hover { background: rgba(46,125,191,0.22); transform: translateY(-1px); }

.platform-visual {
  background: linear-gradient(135deg, var(--navy-mid) 0%, rgba(46,125,191,0.10) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  border-left: 1px solid var(--border);
  min-height: 320px;
  transition: background 0.35s, border-color 0.35s;
}

/* Mockup always dark (terminal aesthetic) */
.mockup-window {
  width: 100%;
  max-width: 320px;
  background: #0d1520;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mockup-dot { width: 9px; height: 9px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-body { padding: 20px 16px; }
.mockup-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.mockup-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #8fa3b8;
  width: 80px;
  flex-shrink: 0;
}
.mockup-bar-fill {
  height: 8px;
  border-radius: 4px;
  flex: 1;
  animation: barGrow 1.2s ease forwards;
  transform-origin: left;
}
@keyframes barGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.fill-green { background: linear-gradient(90deg, var(--green), var(--green-lt)); width: 75%; animation-delay: 0.2s; }
.fill-blue  { background: linear-gradient(90deg, var(--blue-geo), var(--blue-lt)); width: 55%; animation-delay: 0.4s; }
.fill-earth { background: linear-gradient(90deg, var(--earth), var(--earth-lt)); width: 88%; animation-delay: 0.6s; }
.fill-short { background: linear-gradient(90deg, var(--green), var(--blue-geo)); width: 40%; animation-delay: 0.8s; }
.mockup-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 14px 0; }
.mockup-result { font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; color: var(--green-lt); }
.mockup-result.mt-sm { margin-top: 6px; }

/* ── Mission / Vision ── */
#mission { background: var(--bg-alt); }

.mission-pillars {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  margin-top: 50px;
  align-items: stretch;
}
.pillar {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: background 0.35s, border-color 0.3s, transform 0.25s, box-shadow 0.25s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(46,125,191,0.12); }
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.pillar h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.pillar p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  transition: color 0.35s;
}
.pillar-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--blue-lt);
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.6;
}

.mission-statement {
  margin-top: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue-geo);
  border-radius: var(--radius);
  padding: 32px 36px;
  transition: background 0.35s, border-color 0.35s;
}
.mission-statement blockquote {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
  transition: color 0.35s;
}
.mission-statement cite {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-lt);
  font-style: normal;
  letter-spacing: 0.04em;
}

.platform-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.platform-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 22px;
  flex: 1;
  min-width: 160px;
  transition: background 0.35s, border-color 0.3s, transform 0.25s;
}
.platform-badge:hover { transform: translateY(-3px); border-color: rgba(46,125,191,0.35); }
.platform-badge .pb-icon { font-size: 1.4rem; }
.platform-badge .pb-text { display: flex; flex-direction: column; }
.platform-badge .pb-name { font-size: 0.88rem; font-weight: 700; }
.platform-badge .pb-status {
  font-size: 0.68rem;
  color: var(--earth-lt);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.mission-closing {
  margin-top: 40px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(46,125,191,0.08) 0%, rgba(61,122,58,0.06) 100%);
  border: 1px solid rgba(46,125,191,0.2);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  transition: color 0.35s;
}

@media (max-width: 760px) {
  .mission-pillars { grid-template-columns: 1fr; }
  .pillar-connector { transform: rotate(90deg); padding: 8px 0; }
  .platform-badge { min-width: 140px; }
}

/* ── Geonify Spotlight ── */
.geonify-spotlight {
  margin-top: 32px;
  border-radius: 16px;
  border: 1px solid rgba(77,166,232,0.3);
  background: linear-gradient(135deg, rgba(46,125,191,0.10) 0%, rgba(61,122,58,0.07) 60%, rgba(181,101,29,0.06) 100%);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.geonify-spotlight:hover {
  border-color: rgba(77,166,232,0.55);
  box-shadow: 0 8px 40px rgba(46,125,191,0.15);
}
/* Animated shimmer line */
.geonify-spotlight::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(77,166,232,0.07), transparent);
  animation: shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%   { left: -60%; }
  100% { left: 120%; }
}
.spotlight-left { flex: 1; min-width: 0; }
.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(212,128,58,0.18);
  border: 1px solid rgba(212,128,58,0.4);
  color: var(--earth-lt);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.spotlight-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--earth-lt);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.spotlight-title {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.spotlight-title span { color: var(--blue-lt); }
.spotlight-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 22px;
  transition: color 0.35s;
}
.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.spotlight-preview {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-lt);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(77,166,232,0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.spotlight-preview.lg { font-size: 0.95rem; }
.spotlight-preview:hover { color: #fff; border-color: rgba(77,166,232,0.7); }
.spotlight-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.launch-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.35s;
  white-space: nowrap;
}
.launch-tag:hover { border-color: rgba(46,125,191,0.35); }
.launch-tag .lt-icon { font-size: 1.1rem; }
.launch-tag .lt-cs {
  font-size: 0.65rem;
  background: var(--earth);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: auto;
}

/* Geonify feature grid */
.geo-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.geo-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: background 0.35s, border-color 0.3s, transform 0.25s, box-shadow 0.25s;
}
.geo-feat:hover {
  transform: translateY(-3px);
  border-color: rgba(46,125,191,0.3);
  box-shadow: 0 6px 24px rgba(46,125,191,0.10);
}
.geo-feat-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(46,125,191,0.10);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.geo-feat:hover .geo-feat-icon { transform: scale(1.12) rotate(-4deg); }
.geo-feat h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.geo-feat p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  transition: color 0.35s;
}

/* Geonify bottom CTA */
.geo-cta-bar {
  margin-top: 28px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(46,125,191,0.10) 0%, rgba(61,122,58,0.07) 100%);
  border: 1px solid rgba(46,125,191,0.22);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transition: box-shadow 0.3s;
}
.geo-cta-bar:hover { box-shadow: 0 6px 28px rgba(46,125,191,0.12); }
.geo-cta-bar p {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-style: italic;
  transition: color 0.35s;
}

@media (max-width: 700px) {
  .geonify-spotlight { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .spotlight-right { flex-direction: row; flex-wrap: wrap; }
  .geo-cta-bar { flex-direction: column; align-items: flex-start; }
}

/* ── Feature Cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  cursor: default;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.35s, transform 0.15s ease-out;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(var(--tilt-z, 0px));
  will-change: transform;
}

/* Per-card glow colors */
.feature-card[data-glow="blue"]:hover   { border-color: rgba(46,125,191,0.5);  box-shadow: 0 0 0 1px rgba(46,125,191,0.25), 0 12px 36px rgba(46,125,191,0.18); }
.feature-card[data-glow="green"]:hover  { border-color: rgba(61,122,58,0.5);   box-shadow: 0 0 0 1px rgba(61,122,58,0.25),  0 12px 36px rgba(61,122,58,0.18); }
.feature-card[data-glow="earth"]:hover  { border-color: rgba(181,101,29,0.5);  box-shadow: 0 0 0 1px rgba(181,101,29,0.25), 0 12px 36px rgba(181,101,29,0.18); }
.feature-card[data-glow="cyan"]:hover   { border-color: rgba(32,178,170,0.5);  box-shadow: 0 0 0 1px rgba(32,178,170,0.25), 0 12px 36px rgba(32,178,170,0.18); }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: transform 0.3s;
}
.feature-card:hover .feature-icon { transform: scale(1.12) rotate(-4deg); }

.icon-blue  { background: rgba(46,125,191,0.15); }
.icon-green { background: rgba(61,122,58,0.15); }
.icon-earth { background: rgba(181,101,29,0.15); }
.icon-cyan  { background: rgba(32,178,170,0.15); }

.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 14px; transition: color 0.35s; }

.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 0.7rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  transition: color 0.35s, border-color 0.35s;
}

/* ── Reliability ── */
#reliability { background: var(--bg-alt); }
.reliability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.rel-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  text-align: center;
  transition: background 0.35s, border-color 0.35s, transform 0.25s, box-shadow 0.25s;
}
.rel-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(46,125,191,0.12); }
.rel-card .rel-num { font-size: 2rem; font-weight: 800; color: var(--blue-lt); margin-bottom: 8px; }
.rel-card p { color: var(--text-muted); font-size: 0.88rem; transition: color 0.35s; }

.disclaimer {
  margin-top: 40px;
  padding: 20px 24px;
  background: rgba(181,101,29,0.08);
  border: 1px solid rgba(181,101,29,0.2);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: color 0.35s;
}
.disclaimer-icon { font-size: 1.1rem; margin-top: 1px; }

/* ── Security ── */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  align-items: start;
}
.security-item { display: flex; gap: 16px; margin-bottom: 24px; }
.security-icon {
  width: 38px;
  height: 38px;
  background: rgba(61,122,58,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.security-item:hover .security-icon { transform: scale(1.1); }
.security-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.security-item p  { color: var(--text-muted); font-size: 0.85rem; transition: color 0.35s; }

.security-badge {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: background 0.35s, border-color 0.35s;
}
.security-badge .badge-icon { font-size: 3rem; margin-bottom: 16px; }
.security-badge h3  { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.security-badge p   { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 20px; transition: color 0.35s; }
.security-badge a {
  color: var(--blue-lt);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(77,166,232,0.35);
}

/* ── Access ── */
#access { background: var(--bg-alt); }
.access-cta {
  margin-top: 50px;
  background: linear-gradient(135deg, rgba(46,125,191,0.13) 0%, rgba(61,122,58,0.09) 100%);
  border: 1px solid rgba(46,125,191,0.25);
  border-radius: 16px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  transition: box-shadow 0.3s;
}
.access-cta:hover { box-shadow: 0 8px 40px rgba(46,125,191,0.12); }
.access-cta-text h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 12px; }
.access-cta-text p  { color: var(--text-muted); font-size: 0.95rem; max-width: 480px; transition: color 0.35s; }
.access-cta-actions { display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }

/* ── Footer ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 5% 32px;
  transition: background 0.35s, border-color 0.35s;
}
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 36px; }
.footer-brand-name { font-weight: 700; font-size: 0.95rem; }
.footer-brand-sub  { font-size: 0.72rem; color: var(--text-muted); transition: color 0.35s; }
.footer-desc { color: var(--text-muted); font-size: 0.85rem; max-width: 280px; line-height: 1.7; transition: color 0.35s; }

.footer-links-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  transition: color 0.35s;
}
.footer-links-col ul { list-style: none; }
.footer-links-col ul li { margin-bottom: 10px; }
.footer-links-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links-col ul li a:hover { color: var(--blue-lt); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transition: border-color 0.35s;
}
.footer-copy  { color: var(--text-muted); font-size: 0.82rem; transition: color 0.35s; }
.footer-contact a { color: var(--text-muted); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--blue-lt); }

/* ── Responsive ── */
@media (max-width: 860px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--bg-nav-solid);
    padding: 16px 5%;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-links.open .nav-cta { margin-top: 8px; border-radius: 7px; padding: 10px 0; text-align: center; display: block; }
  .nav-toggle { display: flex; }
  .about-grid, .platform-card, .security-grid { grid-template-columns: 1fr; }
  .platform-visual { border-left: none; border-top: 1px solid var(--border); min-height: 200px; }
  .reliability-grid { grid-template-columns: 1fr 1fr; }
  .access-cta { flex-direction: column; padding: 36px 28px; }
  .access-cta-actions { flex-direction: row; flex-wrap: wrap; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 560px) {
  section { padding: 60px 4%; }
  .hero { padding: 90px 4% 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .reliability-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  #back-top { bottom: 16px; right: 16px; }
}

/* ── Privacy Page ── */
.privacy-page { line-height: 1.8; }

.nav-back {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--text); }

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 5% 100px;
}

.page-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 14px;
  display: block;
}

.page h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.page-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.page .section { margin-bottom: 44px; padding: 0; }

.page .section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
  padding-left: 14px;
  border-left: 3px solid var(--blue-lt);
}

.page .section p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 14px;
}

.page .section ul {
  list-style: none;
  margin-bottom: 14px;
}

.page .section ul li {
  color: var(--text-muted);
  font-size: 0.93rem;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.page .section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--blue-lt);
}

.page .section a {
  color: var(--blue-lt);
  text-decoration: none;
  border-bottom: 1px solid rgba(77,166,232,0.3);
}

.highlight-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.page-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 44px 0;
}

.privacy-footer {
  border-top: 1px solid var(--border);
  padding: 32px 5%;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  background: transparent;
}
.privacy-footer a { color: var(--text-muted); text-decoration: none; }
.privacy-footer a:hover { color: var(--blue-lt); }

.privacy-nav {
  position: sticky;
  top: 0;
  height: 68px;
}

/* ───────────────────────────────────────────────────────────
   Landing Page (Geonify focus) — appended, non-destructive
   ─────────────────────────────────────────────────────────── */

/* Hero — focused */
.lp-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 5% 70px;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(46,125,191,0.10), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(61,122,58,0.08), transparent 55%);
  pointer-events: none;
}
.lp-hero-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue-lt);
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.lp-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-lt);
  box-shadow: 0 0 0 4px rgba(78,156,74,0.18);
}
.lp-h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--text);
}
.lp-h1 .accent { color: var(--blue-lt); }
.lp-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 30px;
  max-width: 520px;
}
.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1;
}
.lp-btn-primary {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
[data-theme="light"] .lp-btn-primary {
  background: linear-gradient(135deg, #1a1a1a, #383838);
}
.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(0,0,0,0.28);
}
.lp-btn-primary .gp-icon {
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lp-btn-primary .gp-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.lp-btn-primary .gp-small { font-size: 0.62rem; opacity: 0.75; font-weight: 500; letter-spacing: 0.04em; }
.lp-btn-primary .gp-big { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }
.lp-btn-primary .gp-pill {
  margin-left: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--earth);
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}
.lp-btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  padding: 14px 22px;
  font-size: 0.95rem;
  font-weight: 600;
}
.lp-btn-secondary:hover {
  border-color: var(--blue-lt);
  color: var(--blue-lt);
}

/* Phone mockup */
.lp-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.lp-phone {
  width: 280px;
  height: 560px;
  background: #0e1620;
  border-radius: 38px;
  padding: 14px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.30),
    0 0 0 2px rgba(255,255,255,0.05) inset;
  position: relative;
}
[data-theme="light"] .lp-phone {
  box-shadow:
    0 30px 80px rgba(15,30,45,0.18),
    0 0 0 2px rgba(255,255,255,0.05) inset;
}
.lp-phone::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 22px;
  background: #0e1620;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.lp-phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f4f7fb 0%, #e6eef7 100%);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 38px 18px 18px;
  position: relative;
}
.lp-screen-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: #2e7dbf;
  margin-bottom: 4px;
}
.lp-screen-h {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f1e2d;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.lp-soil-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.lp-soil-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: #4a6278;
  font-weight: 500;
}
.lp-soil-row .label { width: 36px; font-weight: 700; color: #0f1e2d; }
.lp-soil-row .bar {
  flex: 1;
  height: 10px;
  background: #d8e2ee;
  border-radius: 5px;
  overflow: hidden;
}
.lp-soil-row .fill {
  height: 100%;
  border-radius: 5px;
}
.fill-a { width: 78%; background: linear-gradient(90deg, #4e9c4a, #6cc068); }
.fill-b { width: 62%; background: linear-gradient(90deg, #2e7dbf, #4da6e8); }
.fill-c { width: 45%; background: linear-gradient(90deg, #b5651d, #d4803a); }
.fill-d { width: 30%; background: linear-gradient(90deg, #7a8fa8, #a3b4c8); }
.lp-result {
  background: #fff;
  border: 1px solid #e0e8f1;
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: auto;
}
.lp-result .rk { font-size: 0.62rem; color: #4a6278; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.lp-result .rv { font-size: 1rem; color: #0f1e2d; font-weight: 700; margin-top: 2px; }
.lp-result .rt { font-size: 0.72rem; color: #4a6278; margin-top: 6px; }
.lp-tab-bar {
  display: flex;
  justify-content: space-around;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid #e0e8f1;
  font-size: 0.85rem;
}
.lp-tab-bar span { opacity: 0.45; }
.lp-tab-bar span.active { opacity: 1; color: #2e7dbf; }

/* What you can do — 3 blocks */
.lp-feat-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.lp-feat {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.lp-feat:hover {
  transform: translateY(-4px);
  border-color: var(--blue-lt);
}
.lp-feat-icon {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(46,125,191,0.10);
  border-radius: 14px;
  margin-bottom: 16px;
}
.lp-feat h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.lp-feat p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Why different — two stat blocks */
.lp-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 36px;
}
.lp-why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.lp-why-card .icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 50px; height: 50px;
  background: rgba(61,122,58,0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.lp-why-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 700;
}
.lp-why-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Coming next */
.lp-next {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.lp-next-item {
  background: var(--card-bg);
  border: 1px dashed var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
}
.lp-next-item .ic { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.lp-next-item h4 {
  margin: 0 0 4px;
  font-size: 0.98rem;
  color: var(--text);
  font-weight: 700;
}
.lp-next-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.lp-next-note {
  text-align: center;
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Final CTA */
.lp-final {
  text-align: center;
  background: linear-gradient(135deg, rgba(46,125,191,0.08), rgba(61,122,58,0.06));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px 30px;
  margin: 0 auto;
  max-width: 760px;
}
.lp-final h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.lp-final p {
  color: var(--text-muted);
  margin: 0 0 26px;
  font-size: 1rem;
}
.lp-final .lp-cta-row { justify-content: center; }

/* Mobile responsiveness */
@media (max-width: 860px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .lp-sub { margin-left: auto; margin-right: auto; }
  .lp-cta-row { justify-content: center; }
  .lp-feat-3 { grid-template-columns: 1fr; }
  .lp-why { grid-template-columns: 1fr; }
  .lp-next { grid-template-columns: 1fr; }
  .lp-phone { width: 240px; height: 480px; }
}

/* Slim nav for landing page */
.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--blue-geo);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lp-nav-cta:hover {
  background: var(--blue-lt);
  transform: translateY(-1px);
}

/* ───────────────────────────────────────────────────────────
   Cinematic effects layer — aurora, glow, glass, float
   ─────────────────────────────────────────────────────────── */

/* Body global subtle grid + noise feel */
body {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(46,125,191,0.18), transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 30%, rgba(61,122,58,0.10), transparent 60%),
    radial-gradient(ellipse 70% 60% at 0% 70%, rgba(181,101,29,0.08), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

/* Hero — aurora background */
.lp-hero {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.lp-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 20% 30%, rgba(46,125,191,0.35), transparent 60%),
    radial-gradient(50% 50% at 80% 20%, rgba(77,166,232,0.28), transparent 60%),
    radial-gradient(50% 50% at 70% 80%, rgba(61,122,58,0.22), transparent 65%),
    radial-gradient(40% 40% at 10% 90%, rgba(181,101,29,0.18), transparent 65%);
  filter: blur(20px);
  animation: aurora 18s ease-in-out infinite alternate;
  z-index: -2;
}
.lp-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black 30%, transparent 75%);
  z-index: -1;
  pointer-events: none;
}
@keyframes aurora {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-3%,2%) scale(1.06); }
  100% { transform: translate(2%,-2%) scale(1.02); }
}

/* Floating decorative orbs */
.lp-hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}
.lp-hero .orb-1 { width: 380px; height: 380px; background: radial-gradient(circle, #4da6e8, transparent 70%); top: -100px; left: -120px; animation: float 14s ease-in-out infinite; }
.lp-hero .orb-2 { width: 300px; height: 300px; background: radial-gradient(circle, #6cc068, transparent 70%); bottom: -100px; right: -80px; animation: float 16s ease-in-out -4s infinite; }
.lp-hero .orb-3 { width: 240px; height: 240px; background: radial-gradient(circle, #d4803a, transparent 70%); top: 40%; right: 10%; animation: float 12s ease-in-out -8s infinite; opacity: 0.35; }
@keyframes float {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(20px, -25px); }
}

/* Eyebrow chip with shine */
.lp-eyebrow {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(77,166,232,0.25);
  position: relative;
  overflow: hidden;
}
.lp-eyebrow::after {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: shine 4s ease-in-out infinite;
}
@keyframes shine { 0%{left:-50%} 60%{left:120%} 100%{left:120%} }

/* Hero headline with animated gradient */
.lp-h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
  background: linear-gradient(120deg, #ffffff 0%, #d8e8f7 40%, #4da6e8 60%, #ffffff 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: textShift 8s linear infinite;
}
[data-theme="light"] .lp-h1 {
  background: linear-gradient(120deg, #0f1e2d 0%, #1a3550 35%, #2e7dbf 60%, #0f1e2d 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-h1 .accent {
  background: linear-gradient(120deg, #4da6e8, #6cc068, #4da6e8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: textShift 5s linear infinite;
}
@keyframes textShift { to { background-position: 200% center; } }

.lp-sub {
  color: rgba(232,237,242,0.78);
}
[data-theme="light"] .lp-sub { color: var(--text-muted); }

/* Primary CTA — glow + shimmer */
.lp-btn-primary {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1f1f1f 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 10px 30px rgba(46,125,191,0.35),
    0 0 0 1px rgba(77,166,232,0.20),
    inset 0 1px 0 rgba(255,255,255,0.10);
  overflow: hidden;
}
.lp-btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-25deg);
  animation: btnShine 3.5s ease-in-out infinite;
}
@keyframes btnShine { 0%,60%,100% { left: -75%; } 80% { left: 125%; } }
.lp-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 16px 40px rgba(46,125,191,0.55),
    0 0 0 1px rgba(77,166,232,0.40),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.lp-btn-secondary {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
}
.lp-btn-secondary:hover {
  background: rgba(77,166,232,0.10);
  border-color: rgba(77,166,232,0.45);
  color: #fff;
  transform: translateY(-2px);
}

/* Phone — float + glow */
.lp-phone-wrap {
  perspective: none;
}
.lp-phone {
  width: 290px;
  height: 580px;
  background: linear-gradient(145deg, #0a1018 0%, #1a2a3d 100%);
  border-radius: 42px;
  padding: 14px;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.45),
    0 0 0 2px rgba(255,255,255,0.06) inset,
    0 0 60px rgba(46,125,191,0.25);
  position: relative;
  animation: phoneFloat 6s ease-in-out infinite;
  transition: transform 0.4s ease;
}
.lp-phone:hover {
  transform: scale(1.03);
}
@keyframes phoneFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
.lp-phone::after {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(77,166,232,0.25), transparent 60%);
  z-index: -1;
  filter: blur(30px);
  animation: phoneGlow 5s ease-in-out infinite alternate;
}
@keyframes phoneGlow {
  from { opacity: 0.5; }
  to   { opacity: 1; }
}

/* Section commons — scroll fade-in for non-reveal blocks */
section { position: relative; }
section + .divider, hr.divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* Section labels — gradient pill */
.section-label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(77,166,232,0.10);
  border: 1px solid rgba(77,166,232,0.25);
  border-radius: 999px;
  color: var(--blue-lt);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

/* Section titles — gradient text */
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  background: linear-gradient(120deg, var(--text) 30%, var(--blue-lt) 70%, var(--text));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.025em;
}

/* Feature cards — glass + animated gradient border + spotlight */
.lp-feat {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 34px 28px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2), border-color 0.35s, box-shadow 0.35s;
}
[data-theme="light"] .lp-feat {
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.70));
  border-color: rgba(0,0,0,0.06);
}
.lp-feat::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(77,166,232,0.5), transparent 30%, transparent 70%, rgba(108,192,104,0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.lp-feat:hover::before { opacity: 1; }
.lp-feat:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.30), 0 0 40px rgba(77,166,232,0.18);
}

/* Cursor spotlight on feature cards */
.lp-feat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(450px circle at var(--mx, 50%) var(--my, 50%), rgba(77,166,232,0.18), transparent 40%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.lp-feat:hover::after { opacity: 1; }

.lp-feat-icon {
  background: linear-gradient(135deg, rgba(77,166,232,0.25), rgba(108,192,104,0.18));
  box-shadow: 0 8px 24px rgba(46,125,191,0.20);
  width: 56px; height: 56px;
  border-radius: 16px;
}
.lp-feat h3 {
  font-size: 1.2rem;
  background: linear-gradient(120deg, var(--text), #4da6e8 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Why cards — same glass + spotlight treatment */
.lp-why-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 22px;
  border-color: rgba(255,255,255,0.08);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2), border-color 0.35s, box-shadow 0.35s;
}
[data-theme="light"] .lp-why-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.70));
}
.lp-why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(450px circle at var(--mx, 50%) var(--my, 50%), rgba(108,192,104,0.18), transparent 40%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.lp-why-card:hover::after { opacity: 1; }
.lp-why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108,192,104,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 0 30px rgba(108,192,104,0.15);
}
.lp-why-card .icon {
  background: linear-gradient(135deg, rgba(108,192,104,0.25), rgba(77,166,232,0.18));
  box-shadow: 0 8px 24px rgba(61,122,58,0.20);
  width: 56px; height: 56px;
  border-radius: 16px;
}

/* Coming next — gradient dashed cards */
.lp-next-item {
  background: linear-gradient(145deg, rgba(255,255,255,0.025), transparent);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.lp-next-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 8px, rgba(77,166,232,0.04) 8px, rgba(77,166,232,0.04) 16px);
  pointer-events: none;
  opacity: 0.6;
}
.lp-next-item:hover {
  transform: translateY(-4px);
  border-color: rgba(77,166,232,0.45);
}
.lp-next-item .ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, rgba(181,101,29,0.20), rgba(77,166,232,0.15));
  border-radius: 14px;
  font-size: 1.5rem;
}

/* Final CTA — glow border + pulse */
.lp-final {
  position: relative;
  background: linear-gradient(145deg, rgba(46,125,191,0.10), rgba(61,122,58,0.06));
  border: 1px solid rgba(77,166,232,0.20);
  border-radius: 28px;
  padding: 70px 40px;
  overflow: hidden;
  isolation: isolate;
}
.lp-final::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, #4da6e8, #6cc068, #d4803a, #4da6e8);
  border-radius: 28px;
  z-index: -1;
  opacity: 0.45;
  filter: blur(18px);
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.lp-final::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg);
  border-radius: 27px;
  z-index: -1;
}
.lp-final h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  background: linear-gradient(120deg, var(--text), #4da6e8 60%, #6cc068);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Nav cleanup for dark + glass */
#main-nav {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.lp-nav-cta {
  background: linear-gradient(135deg, #2e7dbf, #4da6e8);
  box-shadow: 0 4px 14px rgba(46,125,191,0.40);
}
.lp-nav-cta:hover {
  background: linear-gradient(135deg, #4da6e8, #6cc068);
  box-shadow: 0 6px 20px rgba(77,166,232,0.55);
  transform: translateY(-1px);
}

/* Reveal — smoother + scale */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.3, 1.2), transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Mobile tweaks */
@media (max-width: 860px) {
  .lp-h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .lp-phone { transform: rotateY(0) rotateX(0); animation: phoneFloatM 6s ease-in-out infinite; }
  @keyframes phoneFloatM { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
  .lp-final { padding: 50px 24px; }
}
