/* ============================================================
   MOTOZEN — Landing page styles
   ============================================================ */

:root {
  --bg: #0a0b0d;
  --bg-2: #0f1115;
  --surface: #14171c;
  --surface-2: #1a1e24;
  --border: #1f2329;
  --border-2: #2a2f37;
  --text: #f4f5f7;
  --text-dim: #a8aeb8;
  --text-muted: #6c727c;
  --accent: #c5f02c;
  --accent-hot: #d9ff3d;
  --accent-dim: #79941a;
  --accent-soft: rgba(197, 240, 44, 0.12);
  --accent-glow: rgba(197, 240, 44, 0.35);
  --danger: #ff5577;
  --info: #6aa3ff;

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --maxw: 1280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(1000px 600px at 80% -10%, rgba(197, 240, 44, 0.08), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(197, 240, 44, 0.04), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

::selection {
  background: var(--accent);
  color: #000;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ============================================================
   Layout helpers
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 880px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  padding: 8px 14px;
  border: 1px solid rgba(197, 240, 44, 0.25);
  border-radius: 100px;
  background: var(--accent-soft);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 2.2s infinite ease-in-out;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-wrap: balance;
}

h1 { font-size: clamp(44px, 6vw, 88px); font-weight: 700; letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 4vw, 56px); letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 600; letter-spacing: -0.02em; }

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 56ch;
  text-wrap: pretty;
}

.muted { color: var(--text-muted); }
.mono { font-family: var(--font-mono); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 22px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 220ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #0a0b0d;
  box-shadow: 0 8px 26px -10px var(--accent-glow), inset 0 -2px 0 rgba(0,0,0,0.12);
}
.btn-primary:hover {
  background: var(--accent-hot);
  transform: translateY(-1px);
  box-shadow: 0 14px 38px -10px var(--accent-glow);
}
.btn-ghost {
  background: rgba(255,255,255,0.03);
  border-color: var(--border-2);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}
.btn-link {
  height: auto;
  padding: 0;
  background: transparent;
  color: var(--accent);
  border: 0;
  border-radius: 0;
  border-bottom: 1px dashed rgba(197,240,44,0.4);
  padding-bottom: 2px;
  font-weight: 500;
}
.btn-link:hover { color: var(--accent-hot); border-color: var(--accent); }
.btn .arrow {
  transition: transform 220ms ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   Top nav
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(10, 11, 13, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease, background 220ms ease, padding 200ms ease;
}
.nav.scrolled {
  border-color: var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  height: 26px;
  display: block;
}
.brand-mark img {
  height: 100%;
  width: auto;
  display: block;
}
.brand-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--accent);
  color: #0a0b0d;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-dim);
  padding: 8px 14px;
  border-radius: 100px;
  transition: color 180ms ease, background 180ms ease;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cta .btn { height: 40px; padding: 0 16px; font-size: 14px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav { padding: 14px 0; }
  .nav.scrolled { padding: 10px 0; }
  .nav-inner { gap: 12px; }
  .brand { gap: 8px; }
  .brand-mark { height: 22px; }
  .brand-tag { font-size: 9px; padding: 2px 6px; letter-spacing: 0.1em; }
  /* Hide secondary CTA, keep only primary signup */
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn { height: 36px; padding: 0 14px; font-size: 13px; }
}

@media (max-width: 380px) {
  .brand-tag { display: none; }
  .brand-mark { height: 20px; }
  .nav-cta .btn .arrow { display: none; }
  .nav-cta .btn { padding: 0 12px; }
}

/* ============================================================
   Mobile: stack CTAs and prevent overflow
   ============================================================ */
@media (max-width: 560px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-meta { gap: 14px 22px; }

  /* Preview tabs scrollable instead of overflowing */
  .preview-tabs {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
  }
  .preview-tabs::-webkit-scrollbar { display: none; }
  .preview-tab { flex-shrink: 0; }

  /* CTA card: stack buttons */
  .cta-card { padding: 48px 22px; }

  /* Community CTA row */
  #spolecznosc .community > div:first-child > div:last-child {
    flex-direction: column;
    align-items: stretch !important;
  }
  #spolecznosc .community .btn { width: 100%; justify-content: center; }

  /* Marquee items smaller */
  .marquee-item { font-size: 20px; gap: 10px; }

  /* Stats — make sure huge numbers don't overflow */
  .stat-block { padding: 28px 20px; }

  /* Section heads — break long titles */
  h2 { word-wrap: break-word; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero { padding: 140px 0 60px; }
}

.hero-title {
  margin-top: 24px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 900ms cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-title .line:nth-child(2) .line-inner { animation-delay: 80ms; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 160ms; }

@keyframes rise {
  to { transform: translateY(0); }
}

.hero-title .accent-word {
  position: relative;
  color: var(--accent);
}
.hero-title .accent-word::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 6%;
  height: 14%;
  background: var(--accent-soft);
  border-radius: 4px;
  z-index: -1;
}

.hero-sub {
  margin-top: 28px;
  opacity: 0;
  animation: fadeIn 800ms 380ms forwards ease;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-cta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeIn 800ms 520ms forwards ease;
}

.hero-meta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 26px;
  opacity: 0;
  animation: fadeIn 800ms 700ms forwards ease;
  flex-wrap: wrap;
}
.hero-meta .item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 13px;
}
.hero-meta .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--accent);
}

/* ============================================================
   Hero — dashboard mockup
   ============================================================ */
.mockup {
  position: relative;
  height: 540px;
  opacity: 0;
  animation: fadeIn 1100ms 200ms forwards ease;
}
@media (max-width: 1000px) {
  .mockup { height: 460px; margin-top: 20px; }
}

.mockup-orb {
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side at 60% 45%, rgba(197,240,44,0.22), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.mockup-card {
  position: absolute;
  background: linear-gradient(180deg, #15181d 0%, #101216 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 60px -30px rgba(0,0,0,0.5),
    0 1px 0 rgba(255,255,255,0.04) inset;
  overflow: hidden;
}

/* Main dashboard window */
.dash {
  inset: 30px 60px 30px 0;
  padding: 18px 20px;
}
@media (max-width: 1000px) {
  .dash { inset: 0; }
}
.dash-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.dash-bar-left {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dash-bar-left .pill {
  background: var(--accent);
  color: #0a0b0d;
  padding: 3px 7px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 10px;
}
.dash-bar-dots { display:flex; gap: 6px; }
.dash-bar-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--border-2); }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.stat {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
}
.stat .label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.stat .value {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.stat .value.accent { color: var(--accent); }
.stat .sub {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
}

.dash-section-title {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: space-between;
}

.dash-map-row {
  margin-top: 10px;
  position: relative;
  height: 150px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0e1014;
  border: 1px solid var(--border);
}
.map-svg { width: 100%; height: 100%; display: block; }

.dash-trip-info {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(10,11,13,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-2);
  padding: 8px 12px;
  border-radius: 10px;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px;
}
.dash-trip-info .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse 1.4s infinite;
}

.dash-vehicles {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.vehicle {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.015);
  position: relative;
  overflow: hidden;
}
.vehicle .v-name {
  font-size: 12px;
  font-weight: 600;
}
.vehicle .v-sub {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}
.vehicle .v-bar {
  margin-top: 10px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
}
.vehicle .v-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--accent);
}
.vehicle .v-badge::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* Floating cards */
.float-card {
  background: linear-gradient(180deg, #181c22 0%, #0f1115 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}
.float-notif {
  position: absolute;
  top: -10px; right: 0;
  width: 230px;
  animation: float 6s ease-in-out infinite;
}
.float-fuel {
  position: absolute;
  bottom: -10px; left: -20px;
  width: 250px;
  animation: float 7s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-row {
  display: flex; align-items: center; gap: 12px;
}
.float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.float-text .title {
  font-size: 12px; font-weight: 600;
}
.float-text .sub {
  font-size: 11px; color: var(--text-muted);
  margin-top: 2px;
}

.float-spark {
  margin-top: 10px;
  display: flex; align-items: center; gap: 10px;
}
.spark {
  flex: 1;
  height: 30px;
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
  background: rgba(255,255,255,0.012);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: -0.02em;
}
.marquee-item .star {
  color: var(--accent);
  font-size: 18px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Section heading
   ============================================================ */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-head h2 { margin-top: 18px; }
.section-head .lead { margin: 22px auto 0; }

.section-head.left {
  text-align: left;
  margin-left: 0;
}
.section-head.left .lead { margin-left: 0; }

/* ============================================================
   Features grid
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) {
  .features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .features { grid-template-columns: 1fr; }
}

.feature {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.8,.2,1), border-color 220ms ease, background 220ms ease;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(197,240,44,0.25);
  background: linear-gradient(180deg, rgba(197,240,44,0.04), rgba(255,255,255,0));
}
.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), rgba(197,240,44,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}
.feature:hover::before { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(197,240,44,0.18);
}
.feature h3 {
  margin-bottom: 10px;
}
.feature p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
}

.feature .feature-foot {
  margin-top: 24px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.feature.big {
  grid-column: span 2;
  padding: 32px;
}
@media (max-width: 980px) { .feature.big { grid-column: span 2; } }
@media (max-width: 640px) { .feature.big { grid-column: span 1; } }

.feature.big {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 740px) {
  .feature.big { grid-template-columns: 1fr; }
}

.feature-illu {
  position: relative;
  height: 200px;
  border-radius: var(--radius);
  border: 1px solid var(--border-2);
  background: linear-gradient(180deg, #0f1115, #0a0c10);
  overflow: hidden;
}

/* ============================================================
   App preview (redesigned — vertical tabs + device showcase)
   ============================================================ */
.app-section {
  position: relative;
  padding-top: 40px;
  overflow: hidden;
}
.app-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.app-bg-glow {
  position: absolute;
  z-index: 0;
  top: 30%;
  right: -10%;
  width: 800px;
  height: 600px;
  background: radial-gradient(closest-side, rgba(197,240,44,0.14), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.app-header {
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.app-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.app-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.app-counter #app-counter-current {
  color: var(--accent);
  font-size: 22px;
  font-weight: 600;
  transition: color 240ms ease;
}
.app-counter-sep { opacity: 0.4; padding: 0 2px; }
.app-counter-total { color: var(--text-dim); }

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .app-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- LEFT: vertical tab list ---- */
.app-tabs {
  list-style: none;
  display: grid;
  gap: 10px;
}
.app-tab {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
  cursor: pointer;
  transition: border-color 280ms ease, background 280ms ease, transform 280ms cubic-bezier(.2,.8,.2,1);
  outline: none;
}
.app-tab:hover {
  border-color: rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}
.app-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.app-tab.active {
  border-color: rgba(197,240,44,0.4);
  background: linear-gradient(180deg, rgba(197,240,44,0.07), rgba(197,240,44,0.01));
  box-shadow: 0 12px 36px -16px rgba(197,240,44,0.3);
}
.app-tab-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding-top: 4px;
  transition: color 240ms ease;
}
.app-tab.active .app-tab-num { color: var(--accent); }

.app-tab-body h3 {
  font-size: 20px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  transition: color 240ms ease;
}
.app-tab-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 360ms ease, opacity 240ms ease, color 240ms ease;
}
.app-tab.active .app-tab-body p {
  max-height: 120px;
  opacity: 1;
  color: var(--text-dim);
  margin-top: 6px;
}

/* Progress bar at the bottom of active tab — auto-advance indicator */
.app-tab-progress {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 12px;
  height: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 240ms ease;
}
.app-tab-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  border-radius: 2px;
}
.app-tab.active .app-tab-progress { opacity: 1; }
.app-tab.active .app-tab-progress span {
  animation: app-progress 7s linear forwards;
}
.app-tab.paused .app-tab-progress span {
  animation-play-state: paused;
}
@keyframes app-progress {
  from { width: 0; }
  to { width: 100%; }
}

.app-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.app-meta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse 2s infinite ease-in-out;
}

/* ---- RIGHT: device showcase ---- */
.app-right {
  position: relative;
}
.app-stage {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  border: 1px solid var(--border);
  padding: 14px;
  padding-bottom: 0;
  box-shadow:
    0 50px 100px -50px rgba(0,0,0,0.5),
    0 0 100px -50px var(--accent-glow);
  overflow: visible;
}
.app-stage::before {
  /* corner accent strokes (top-left / bottom-right) */
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(197,240,44,0.5) 0%, transparent 30%),
    linear-gradient(315deg, rgba(197,240,44,0.5) 0%, transparent 30%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
  opacity: 0.6;
}

.app-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 6px 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.app-chrome-dots {
  display: flex; gap: 6px;
}
.app-chrome-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-2);
}
.app-chrome-dots span:first-child { background: #ff5577; }
.app-chrome-dots span:nth-child(2) { background: #f5c542; }
.app-chrome-dots span:last-child { background: var(--accent); }
.app-chrome-url {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.app-chrome-url svg { color: var(--accent); opacity: 0.7; }
.app-chrome-actions { display: flex; gap: 6px; width: 56px; justify-content: flex-end; }
.app-chrome-actions span {
  width: 22px; height: 10px;
  border-radius: 2px;
  background: var(--border-2);
}

.app-device {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 4 / 3;
}
.app-device img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 520ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1);
}
.app-device img.active {
  opacity: 1;
  transform: scale(1);
}

/* Annotations — floating chips around the device */
.app-annots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.annot {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 10px;
  background: linear-gradient(180deg, rgba(20,23,28,0.92), rgba(15,17,21,0.92));
  border: 1px solid var(--border-2);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 32px -12px rgba(0,0,0,0.6);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition: opacity 360ms ease, transform 360ms cubic-bezier(.2,.8,.2,1);
}
.annot.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.annot-tl { top: -18px; left: 8%; }
.annot-tr { top: -18px; right: 6%; }
.annot-bl { bottom: -18px; left: 6%; }
.annot-br { bottom: -18px; right: 6%; }
.annot-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid rgba(197,240,44,0.2);
}
.annot-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: #0a0b0d;
  padding: 4px 8px;
  border-radius: 4px;
}
.annot-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft), 0 0 12px var(--accent-glow);
  animation: pulse 1.8s infinite ease-in-out;
  margin-left: 4px;
  margin-right: 4px;
}

@media (max-width: 740px) {
  .annot { font-size: 11px; padding: 7px 12px 7px 8px; }
  .annot-tl, .annot-bl { left: 0; }
  .annot-tr, .annot-br { right: 0; }
  .annot-icon { width: 22px; height: 22px; }
}
@media (max-width: 560px) {
  .app-annots .annot-br, .app-annots .annot-bl { display: none; }
  .app-stage { padding: 10px; padding-bottom: 0; }
  .app-tab { padding: 16px; }
  .app-tab-body h3 { font-size: 18px; }
}

/* ============================================================
   Stats
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-block {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-block:last-child { border-right: 0; }
@media (max-width: 880px) {
  .stat-block:nth-child(2) { border-right: 0; }
  .stat-block:nth-child(1), .stat-block:nth-child(2) { border-bottom: 1px solid var(--border); }
}

.stat-block .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}
.stat-block .num .suffix {
  color: var(--accent);
  font-size: 0.65em;
  margin-left: 4px;
}
.stat-block .label {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   How it works
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.step .step-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-2);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-dim); font-size: 15px; }

.step.active .step-num {
  color: var(--accent);
  -webkit-text-stroke: 0;
}

/* ============================================================
   Community / showcase
   ============================================================ */
.community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .community { grid-template-columns: 1fr; } }

.community-mock {
  position: relative;
  background: linear-gradient(180deg, #15181d, #0f1115);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5);
}
.post {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.post:last-child { border-bottom: 0; }
.post .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: #0a0b0d;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-mono);
}
.post-body { flex: 1; }
.post-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
}
.post-head .name { font-weight: 600; }
.post-head .group { color: var(--accent); font-size: 12px; }
.post-head .time { color: var(--text-muted); font-size: 11px; }
.post-text {
  margin-top: 6px;
  color: var(--text-dim);
  font-size: 14px;
}
.post-foot {
  display: flex; gap: 16px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}
.post-foot .like.active { color: var(--accent); }

/* ============================================================
   CTA section
   ============================================================ */
.cta-card {
  position: relative;
  background:
    radial-gradient(700px 400px at 80% 110%, rgba(197,240,44,0.18), transparent 60%),
    radial-gradient(500px 300px at 10% -10%, rgba(197,240,44,0.08), transparent 60%),
    linear-gradient(180deg, #14171c, #0f1115);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  text-align: center;
  overflow: hidden;
}
.cta-card::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, transparent 0deg, rgba(197,240,44,0.06) 60deg, transparent 120deg);
  animation: rotate 20s linear infinite;
  z-index: 0;
}
.cta-card > * { position: relative; z-index: 1; }
@keyframes rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }

.cta-card h2 { font-size: clamp(36px, 5vw, 64px); }
.cta-card .lead { margin: 24px auto 36px; }
.cta-card .hero-cta { justify-content: center; }

@media (max-width: 740px) { .cta-card { padding: 56px 28px; } }

/* ============================================================
   Sigil band (between CTA and footer)
   ============================================================ */
.sigil-band {
  /* CTA section above has 120px bottom padding; footer below has 60px top.
     80 + 120 = 200 above; 140 + 60 = 200 below → vertically centered. */
  padding: 80px 0 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sigil-band .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  position: relative;
}
.sigil-mark {
  height: 110px;
  width: auto;
  position: relative;
  z-index: 2;
  transform-origin: center;
  animation: sigil-float 6s ease-in-out infinite;
  will-change: transform, filter;
  overflow: visible;
}
.sigil-stroke {
  fill-opacity: 1;
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
}
/* Pre-animation state, applied as soon as JS marks the element */
.sigil-mark.armed .sigil-stroke {
  fill-opacity: 0;
  stroke-dashoffset: 100;
}
/* When in view, run the draw animation */
.sigil-mark.draw .sigil-stroke {
  animation: sigil-draw 2.6s cubic-bezier(.65,0,.2,1) 0.15s forwards;
}
@keyframes sigil-draw {
  0% {
    stroke-dashoffset: 100;
    fill-opacity: 0;
  }
  65% {
    stroke-dashoffset: 0;
    fill-opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}

/* Wrapper around the SVG — gives the halo/ring a precise center point */
.sigil-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* soft glow halo behind sigil */
.sigil-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--accent-glow), transparent 70%);
  filter: blur(12px);
  z-index: 0;
  animation: sigil-halo 6s ease-in-out infinite;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* expanding rings */
.sigil-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(197, 240, 44, 0.35);
  z-index: 0;
  animation: sigil-ring 3.5s ease-out infinite;
  transform: translate(-50%, -50%) scale(0.6);
  pointer-events: none;
}

@keyframes sigil-ring {
  0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

@keyframes sigil-float {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 8px 18px rgba(197,240,44,0.25));
  }
  50% {
    transform: translateY(-8px) scale(1.03);
    filter: drop-shadow(0 16px 28px rgba(197,240,44,0.45));
  }
}
@keyframes sigil-halo {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.85; transform: translate(-50%, -50%) scale(1.08); }
}

@media (max-width: 560px) {
  .sigil-mark { height: 80px; }
  /* mobile: CTA section bottom = 80px (from .section padding), footer top = 60px
     → 50 + 80 = 130 above; 70 + 60 = 130 below. */
  .sigil-band { padding: 50px 0 70px; }
  .sigil-wrap::before { width: 240px; height: 240px; }
  .sigil-wrap::after { width: 130px; height: 130px; }
}

/* CTA button below sigil — revealed after the draw animation finishes */
.sigil-cta {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.8,.2,1);
}
.sigil-band:has(.sigil-mark.draw) .sigil-cta {
  /* animation runs 2.6s + 0.15s delay → reveal at ~2.75s */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 2.75s;
}

/* (halo + ring are positioned via .sigil-wrap so they stay locked to the SVG
   even though the container now also holds the CTA button below.) */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 180ms ease;
}
.footer ul a:hover { color: var(--accent); }

.footer-brand p {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 14px;
  max-width: 36ch;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom .ver { font-family: var(--font-mono); font-size: 11px; }

/* ============================================================
   Background photos (real vehicles, low-opacity)
   ============================================================ */
.bg-photo {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  border-radius: 0;
}
.bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.85) brightness(0.45) contrast(1.1);
  opacity: 0.4;
}
.bg-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 25%, transparent 75%, var(--bg) 100%);
  z-index: 2;
  pointer-events: none;
}
.bg-photo.tint-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side, var(--accent-glow), transparent 70%);
  opacity: 0.18;
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
}

/* ensure section children sit above bg */
.container, .hero-grid, .features, .preview-frame, .stats-grid,
.steps, .community, .cta-card, .section-head, .footer-grid {
  position: relative;
  z-index: 1;
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1);
}
.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }

/* ============================================================
   Native form controls — dark-theme tuning (applies globally)
   ============================================================ */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(255,255,255,0.025);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 17px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 44px !important;
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
}
select::-ms-expand { display: none; }

/* Native option list — limited stylability, but most browsers honor these */
select option,
select optgroup {
  background-color: #14171c;
  color: var(--text);
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
}
select option:checked {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}
select option:disabled,
select option[value=""] {
  color: var(--text-muted);
}

/* If nothing chosen yet, dim the visible label too */
select:invalid {
  color: var(--text-muted);
}

select:hover {
  background-color: rgba(255,255,255,0.04);
}

/* ============================================================
   Professional refinements
   ============================================================ */

html { scroll-padding-top: 76px; }

/* Richer three-point ambient background */
body {
  background:
    radial-gradient(1200px 700px at 78% -12%, rgba(197,240,44,0.11), transparent 60%),
    radial-gradient(900px 600px at -12% 28%, rgba(197,240,44,0.055), transparent 60%),
    radial-gradient(700px 500px at 50% 96%, rgba(197,240,44,0.04), transparent 60%),
    var(--bg);
}

/* Stronger nav backdrop when scrolled */
.nav.scrolled {
  background: rgba(10,11,13,0.9);
  box-shadow: 0 8px 40px -8px rgba(0,0,0,0.45);
}

/* Eyebrow: slightly stronger accent glow */
.eyebrow {
  border-color: rgba(197,240,44,0.3);
  box-shadow: 0 0 20px -8px rgba(197,240,44,0.18);
}

/* Primary button: gradient + brighter glow + inset highlight */
.btn-primary {
  background: linear-gradient(145deg, #d8ff48, var(--accent) 65%);
  box-shadow:
    0 8px 28px -10px rgba(197,240,44,0.55),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -2px 0 rgba(0,0,0,0.14);
}
.btn-primary:hover {
  background: linear-gradient(145deg, #e8ff60, var(--accent-hot) 65%);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -10px rgba(197,240,44,0.65);
}

/* Feature cards: top accent line revealed on hover */
.feature::after {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(197,240,44,0.65), transparent);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}
.feature:hover {
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.35), 0 0 0 1px rgba(197,240,44,0.1) inset;
}
.feature:hover::after { opacity: 1; }

/* Feature icons: gradient fill + glow ring */
.feature-icon {
  background: linear-gradient(135deg, rgba(197,240,44,0.16) 0%, rgba(197,240,44,0.05) 100%);
  box-shadow: 0 0 0 1px rgba(197,240,44,0.2), 0 4px 14px -4px rgba(197,240,44,0.15);
  border-color: rgba(197,240,44,0.22);
}

/* Feature footer: subtle separator line */
.feature .feature-foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Active step: accent border + background wash + glow */
.step.active {
  border-color: rgba(197,240,44,0.25);
  background: linear-gradient(180deg, rgba(197,240,44,0.04) 0%, transparent 100%);
  box-shadow:
    0 0 0 1px rgba(197,240,44,0.08) inset,
    0 20px 50px -20px rgba(197,240,44,0.15);
}

/* App stage: stronger accent glow in shadow */
.app-stage {
  box-shadow:
    0 60px 120px -60px rgba(0,0,0,0.6),
    0 0 120px -50px rgba(197,240,44,0.22),
    0 1px 0 rgba(255,255,255,0.04) inset;
}

/* Stats grid: gradient depth + subtle inset */
.stats-grid {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 30px 60px -30px rgba(0,0,0,0.3);
}

/* CTA card: outer glow */
.cta-card {
  box-shadow:
    0 0 100px -50px rgba(197,240,44,0.22),
    0 50px 100px -50px rgba(0,0,0,0.4);
}

/* Footer: gradient top border replacing the flat 1px line */
.footer {
  position: relative;
  border-top: 0;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 5%,
    var(--border) 30%,
    rgba(197,240,44,0.22) 50%,
    var(--border) 70%,
    transparent 95%
  );
}

/* Community mock: inset highlight */
.community-mock {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 40px 80px -40px rgba(0,0,0,0.5);
}

/* Hero mockup orb: more ambient glow */
.mockup-orb {
  background: radial-gradient(closest-side at 60% 45%, rgba(197,240,44,0.26), transparent 70%);
}

/* Background photos: slightly more contrast and presence */
.bg-photo img {
  filter: grayscale(0.80) brightness(0.50) contrast(1.15);
  opacity: 0.42;
}

