/* ============================================================================
   BatchIt — style.css
   Palette matched to Flutter app: forest green × amber (AppColors)
   ============================================================================ */

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

/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  /* Backgrounds — forest-green-tinted dark (app darkPageGradient: #0D1713 → #16241F) */
  --bg:         #0B100D;
  --bg2:        #0F1813;
  --surface:    #172219;
  --surface2:   #1E2E24;

  /* Borders — green-tinted */
  --border:     rgba(56,164,122,0.13);
  --border2:    rgba(56,164,122,0.25);

  /* Text */
  --text:       #E3F1EA;
  --muted:      #8BAD9C;
  --muted2:     #AECBBA;

  /* Primary: forest green — app seed #0B8A62 */
  --green:      #1DC88A;   /* bright for CTAs/labels */
  --green2:     #16A872;   /* hover */
  --green3:     #0B8A62;   /* app exact seed — darker fills */
  --green-glow: rgba(29,200,138,0.22);
  --green-subtle: rgba(29,200,138,0.08);

  /* Accent: warm amber — app accent #FFB347 */
  --amber:      #FFB347;
  --amber2:     #DD9728;
  --amber-glow: rgba(255,179,71,0.2);

  /* Supporting — toned down vs old neon */
  --blue:       #3D7EAA;
  --blue2:      #5BA3CC;
  --pink:       #C86070;
}

html { scroll-behavior: smooth; }

/* ── Body & base ───────────────────────────────────────────────────────────── */
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Subtle dot grid */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(29,200,138,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Noise texture overlay */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── Orbs ──────────────────────────────────────────────────────────────────── */
.orb { position: fixed; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(11,138,98,0.18), transparent 70%);
  top: -220px; right: -180px;
  animation: orb-float 20s ease-in-out infinite;
}
.orb-2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(29,200,138,0.12), transparent 70%);
  bottom: 8%; left: -160px;
  animation: orb-float 26s ease-in-out infinite reverse;
}
.orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,179,71,0.1), transparent 70%);
  top: 38%; right: 4%;
  animation: orb-float 18s ease-in-out infinite 4s;
}
.orb-4 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(11,138,98,0.09), transparent 70%);
  bottom: 25%; right: 35%;
  animation: orb-float 22s ease-in-out infinite 9s reverse;
}

@keyframes orb-float {
  0%,100% { transform: translate(0,0) scale(1); }
  25%      { transform: translate(25px,-18px) scale(1.04); }
  50%      { transform: translate(-15px,22px) scale(0.96); }
  75%      { transform: translate(18px,8px) scale(1.02); }
}

/* Particle canvas (JS-driven) */
#particle-canvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.5;
}

/* ── Shell ─────────────────────────────────────────────────────────────────── */
.shell { width: min(1140px, calc(100% - 3rem)); margin-inline: auto; position: relative; z-index: 1; }

/* ── Navigation ────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.9rem 0;
  background: rgba(11,16,13,0.65);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s, box-shadow 0.35s;
}
nav.scrolled {
  background: rgba(11,16,13,0.9);
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--text); }
.nav-logo {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green3));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: #07100D;
  flex-shrink: 0;
  box-shadow: 0 0 16px var(--green-glow);
}
.nav-brand span { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.15rem; }
.nav-links { display: flex; gap: 0.2rem; }
.nav-links a {
  text-decoration: none; color: var(--muted); font-size: 0.88rem; padding: 0.45rem 0.85rem;
  border-radius: 8px; transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; border-radius: 2px;
  background: var(--green);
  transition: left 0.25s, right 0.25s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { left: 20%; right: 20%; }
.nav-links a.active { color: var(--text); }
.nav-dl {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(135deg, var(--green), var(--green3));
  color: #07100D; font-weight: 700; font-size: 0.88rem;
  padding: 0.5rem 1.1rem; border-radius: 10px; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px var(--green-glow);
  position: relative; overflow: hidden;
}
.nav-dl::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.45s;
}
.nav-dl:hover { transform: translateY(-1px); box-shadow: 0 6px 24px var(--green-glow); }
.nav-dl:hover::after { transform: translateX(100%); }
.nav-dl svg { width: 15px; height: 15px; }

/* ── Scroll progress bar ───────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--green3), var(--green), var(--amber));
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--green-glow);
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 8rem 0 5rem;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem; border-radius: 999px;
  border: 1px solid rgba(29,200,138,0.35);
  background: rgba(29,200,138,0.07);
  color: var(--green); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 1.5rem; width: fit-content;
  animation: fade-in-down 0.6s ease both;
}
.hero-eyebrow span {
  width: 7px; height: 7px; background: var(--green); border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 6px var(--green);
}
@keyframes fade-in-down {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.5; transform:scale(0.8); }
}

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
h1 .accent  { color: var(--green); text-shadow: 0 0 40px var(--green-glow); }
h1 .accent2 { color: var(--amber); text-shadow: 0 0 40px var(--amber-glow); }

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem); color: var(--muted2);
  max-width: 52ch; line-height: 1.7; margin-bottom: 2.5rem; font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; }

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.95rem; padding: 0.85rem 1.8rem;
  border-radius: 14px; text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green3));
  color: #07100D;
  box-shadow: 0 4px 20px var(--green-glow);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--green-glow); }
.btn-primary:hover::before { transform: translateX(100%); }

.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--border2);
}
.btn-secondary:hover {
  border-color: rgba(29,200,138,0.4); background: var(--green-subtle);
  transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-primary svg, .btn-secondary svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Hero grid & phone */
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }

.phone-frame {
  width: 260px; height: 520px; border-radius: 40px;
  background: var(--surface);
  border: 1px solid var(--border2);
  position: relative; overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(29,200,138,0.12),
    0 0 60px rgba(11,138,98,0.12);
  animation: phone-glow 4s ease-in-out infinite;
}
@keyframes phone-glow {
  0%,100% { box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(29,200,138,0.12), 0 0 60px rgba(11,138,98,0.12); }
  50%     { box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(29,200,138,0.28), 0 0 90px rgba(11,138,98,0.25); }
}

.phone-screen {
  position: absolute; inset: 8px; border-radius: 32px;
  background: linear-gradient(160deg, #0D2419 0%, #091610 100%);
  overflow: hidden; display: flex; flex-direction: column;
}
.phone-status {
  height: 28px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 14px;
  font-size: 9px; color: rgba(255,255,255,0.45);
}
.phone-notch { width: 70px; height: 16px; background: #060D0A; border-radius: 0 0 12px 12px; margin: 0 auto; }
.phone-content { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.phone-header { display: flex; align-items: center; justify-content: space-between; }
.phone-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: #E3F1EA; }
.phone-loc { font-size: 9px; color: rgba(227,241,234,0.45); display: flex; align-items: center; gap: 3px; }
.batch-card {
  background: rgba(255,255,255,0.04); border-radius: 14px;
  border: 1px solid rgba(29,200,138,0.1); padding: 11px;
  display: flex; flex-direction: column; gap: 7px;
}
.batch-card-top { display: flex; align-items: center; justify-content: space-between; }
.batch-name { font-size: 11px; font-weight: 600; color: #D8EDE3; }
.batch-badge {
  font-size: 8px; padding: 2px 7px; border-radius: 99px;
  background: rgba(29,200,138,0.15); color: var(--green); font-weight: 600;
}
.batch-badge.warm { background: rgba(255,179,71,0.15); color: var(--amber); }
.progress-track { height: 5px; background: rgba(255,255,255,0.07); border-radius: 99px; overflow: hidden; }
.progress-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--green3), var(--green));
  animation: bar-grow 1.5s ease both;
}
@keyframes bar-grow { from { width: 0 !important; } }
.batch-meta { display: flex; justify-content: space-between; font-size: 8px; color: rgba(227,241,234,0.4); }
.phone-map {
  flex: 1; border-radius: 12px; background: #0B1E15; overflow: hidden;
  position: relative; min-height: 70px;
}
.map-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2.5s infinite;
}
.map-dot::after { content:''; position:absolute; inset:-4px; border-radius:50%; border:1px solid rgba(29,200,138,0.3); }
.map-dot-b { background: var(--amber); box-shadow: 0 0 8px var(--amber); top:35%; left:55%; animation-delay:0.8s; }
.map-dot-b::after { border-color: rgba(255,179,71,0.3); }
.map-dot-c { background: var(--blue2); box-shadow: 0 0 8px var(--blue2); top:65%; left:25%; animation-delay:1.6s; }
.map-dot-c::after { border-color: rgba(91,163,200,0.3); }
.map-grid-line { position: absolute; background: rgba(255,255,255,0.04); }
@keyframes pulse-dot {
  0%,100% { transform:scale(1); opacity:1; }
  50%     { transform:scale(1.4); opacity:0.7; }
}
.phone-bottom {
  display: flex; justify-content: space-around; padding: 8px 0;
  border-top: 1px solid rgba(29,200,138,0.08);
}
.tab-icon { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.tab-icon svg { width: 16px; height: 16px; opacity: 0.35; }
.tab-icon.active svg { opacity: 1; color: var(--green); }
.tab-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--green); }

/* Hero float badges */
.hero-float {
  position: absolute;
  background: rgba(23,34,25,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border2);
  border-radius: 16px; padding: 10px 14px; font-size: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(29,200,138,0.1);
}
.hero-float-1 {
  top: 30px; right: -30px; display: flex; align-items: center; gap: 8px;
  animation: float-badge 4s ease-in-out infinite;
}
.hero-float-2 {
  bottom: 60px; left: -40px; display: flex; align-items: center; gap: 8px;
  animation: float-badge 4s ease-in-out infinite 2s;
}
.float-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.float-label { font-size: 10px; color: var(--muted); line-height: 1.3; }
.float-val { font-size: 13px; font-weight: 600; color: var(--text); }
@keyframes float-badge {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-9px); }
}

/* Hero stats */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1px;
  background: var(--border); border-radius: 20px;
  overflow: hidden; border: 1px solid var(--border);
}
.hero-stat {
  flex: 1; min-width: 130px; background: var(--bg2); padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 0.9rem;
  transition: background 0.25s;
}
.hero-stat:hover { background: var(--surface); }
.hero-stat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-stat-icon.g { background: var(--green-subtle); color: var(--green); }
.hero-stat-icon.b { background: rgba(61,126,170,0.1); color: var(--blue2); }
.hero-stat-icon.a { background: rgba(255,179,71,0.1); color: var(--amber); }
.hero-stat-icon.p { background: rgba(29,200,138,0.08); color: var(--green3); }
.hero-stat-icon svg { width: 20px; height: 20px; }
.hero-stat-num { font-family: 'Syne', sans-serif; font-size: 1.35rem; font-weight: 700; line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

/* ── Sections ──────────────────────────────────────────────────────────────── */
section { padding: 6rem 0; }
.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 0.9rem;
  padding: 0.25rem 0.75rem; border-radius: 6px;
  background: var(--green-subtle); border: 1px solid rgba(29,200,138,0.2);
}
.section-title {
  font-family: 'Syne', sans-serif; font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--muted2); max-width: 52ch;
  line-height: 1.7; font-weight: 300;
}
.section-head { margin-bottom: 3.5rem; }
.section-head.centered { text-align: center; }
.section-head.centered .section-sub { margin: 0 auto; }

/* ── How it works ──────────────────────────────────────────────────────────── */
#how { background: var(--bg2); position: relative; overflow: hidden; }
#how::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(11,138,98,0.07), transparent);
  pointer-events: none;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px; background: var(--border);
  border-radius: 24px; overflow: hidden; border: 1px solid var(--border);
}
.step-card {
  background: var(--bg2); padding: 2.2rem 1.8rem;
  position: relative; overflow: hidden;
  transition: background 0.25s;
}
.step-card::after {
  content: ''; position: absolute; inset: 0; top: auto;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--amber));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.step-card:hover { background: var(--surface); }
.step-card:hover::after { transform: scaleX(1); }
.step-number {
  font-family: 'Syne', sans-serif; font-size: 5rem; font-weight: 800;
  color: rgba(29,200,138,0.05); line-height: 1;
  position: absolute; top: 0.5rem; right: 1rem; user-select: none;
}
.step-icon {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s;
}
.step-card:hover .step-icon { transform: scale(1.1) rotate(-3deg); }
.step-icon svg { width: 24px; height: 24px; }
.step-card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.step-card p { font-size: 0.9rem; color: var(--muted2); line-height: 1.65; }

/* ── Features ──────────────────────────────────────────────────────────────── */
#features { position: relative; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; }
.feat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 22px; padding: 1.8rem;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(29,200,138,0.06), transparent 60%);
  pointer-events: none;
}
.feat-card:hover {
  border-color: rgba(29,200,138,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(29,200,138,0.15), 0 0 30px rgba(11,138,98,0.08);
}
.feat-card.blue::before  { background: radial-gradient(circle at top left, rgba(61,126,170,0.07), transparent 60%); }
.feat-card.blue:hover    { border-color: rgba(91,163,200,0.35); box-shadow: 0 16px 40px rgba(0,0,0,0.25), 0 0 30px rgba(61,126,170,0.08); }
.feat-card.amber::before { background: radial-gradient(circle at top left, rgba(255,179,71,0.07), transparent 60%); }
.feat-card.amber:hover   { border-color: rgba(255,179,71,0.35); box-shadow: 0 16px 40px rgba(0,0,0,0.25), 0 0 30px rgba(255,179,71,0.1); }
.feat-card.pink::before  { background: radial-gradient(circle at top left, rgba(200,96,112,0.07), transparent 60%); }
.feat-card.pink:hover    { border-color: rgba(200,96,112,0.35); box-shadow: 0 16px 40px rgba(0,0,0,0.25), 0 0 30px rgba(200,96,112,0.08); }
.feat-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  transition: transform 0.25s;
}
.feat-card:hover .feat-icon { transform: scale(1.12) rotate(-4deg); }
.feat-icon svg { width: 22px; height: 22px; }
.feat-card h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.feat-card p { font-size: 0.9rem; color: var(--muted2); line-height: 1.65; }

/* ── Screenshots ───────────────────────────────────────────────────────────── */
#screenshots { background: var(--bg2); overflow: hidden; position: relative; }
#screenshots::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 120px; z-index: 2;
  background: linear-gradient(90deg, var(--bg2), transparent);
  pointer-events: none;
}
#screenshots::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 120px; z-index: 2;
  background: linear-gradient(-90deg, var(--bg2), transparent);
  pointer-events: none;
}
.screens-row {
  display: flex; gap: 1.25rem; padding: 1rem 0 2rem;
  animation: scroll-screens 52s linear infinite;
  width: max-content;
}
.screens-row:hover { animation-play-state: paused; }
@keyframes scroll-screens {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mock-screen {
  width: 220px; height: 420px; border-radius: 32px; flex-shrink: 0;
  background: var(--surface); border: 1px solid var(--border2);
  overflow: hidden; position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
.mock-screen:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(29,200,138,0.2);
}

/* legacy mock-screen internal styles kept for any remaining fallback */
.mock-screen-inner { position: absolute; inset: 6px; border-radius: 26px; background: #091610; overflow: hidden; }
.mock-topbar { height: 22px; display: flex; align-items: center; justify-content: center; }
.mock-notch { width: 60px; height: 14px; background: #060D0A; border-radius: 0 0 10px 10px; }
.mock-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.mock-title-row { display: flex; justify-content: space-between; align-items: center; }
.mock-page-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: #E3F1EA; }
.mock-avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--green3)); }
.mock-search { height: 30px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06); }
.mock-item { border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(29,200,138,0.08); padding: 9px; }
.mock-item-top { display: flex; gap: 8px; align-items: center; margin-bottom: 6px; }
.mock-emoji { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.mock-item-info { flex: 1; }
.mock-item-name { font-size: 10px; font-weight: 600; color: #D4EBD9; margin-bottom: 2px; }
.mock-item-sub { font-size: 8px; color: rgba(255,255,255,0.32); }
.mock-bar { height: 4px; border-radius: 99px; background: rgba(255,255,255,0.07); overflow: hidden; }
.mock-fill { height: 100%; border-radius: 99px; }
.mock-bottom-nav {
  position: absolute; bottom: 0; left: 0; right: 0; height: 42px;
  background: rgba(9,22,16,0.95);
  border-top: 1px solid rgba(29,200,138,0.07);
  display: flex; justify-content: space-around; align-items: center; padding: 0 10px;
}
.mock-tab { width: 28px; height: 24px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.mock-tab.active { background: rgba(29,200,138,0.12); }
.mock-tab svg { width: 14px; height: 14px; opacity: 0.35; }
.mock-tab.active svg { opacity: 1; color: var(--green); }
.mock-profile-header { display: flex; flex-direction: column; align-items: center; padding: 10px; gap: 6px; }
.mock-big-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg,var(--green),var(--green3)); border: 2px solid rgba(29,200,138,0.4); }
.mock-user-name { font-size: 12px; font-weight: 700; color: #E3F1EA; font-family: 'Syne', sans-serif; }
.mock-user-loc { font-size: 8px; color: rgba(255,255,255,0.38); }
.mock-stat-row { display: flex; gap: 6px; width: 100%; }
.mock-stat-box { flex: 1; background: rgba(29,200,138,0.05); border-radius: 8px; padding: 6px; text-align: center; }
.mock-stat-num { font-size: 13px; font-weight: 700; color: var(--green); font-family:'Syne',sans-serif; }
.mock-stat-lbl { font-size: 7px; color: rgba(255,255,255,0.32); }
.mock-history-label { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.06em; }
.mock-hist-item { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.04); border-radius: 9px; padding: 7px; }
.mock-hist-icon { width: 22px; height: 22px; border-radius: 7px; font-size: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mock-hist-info { flex: 1; }
.mock-hist-name { font-size: 9px; font-weight: 600; color: #D4EBD9; }
.mock-hist-date { font-size: 7px; color: rgba(255,255,255,0.28); }
.mock-hist-save { font-size: 9px; font-weight: 600; color: var(--green); }
.mock-map-bg { height: 140px; background: #0B1E15; position: relative; overflow: hidden; border-radius: 12px; margin-bottom: 8px; }
.mock-map-road { position: absolute; background: rgba(255,255,255,0.06); border-radius: 2px; }
.mock-map-pin { position: absolute; width: 10px; height: 10px; border-radius: 50%; }
.mock-map-pin::after { content:''; position:absolute; inset:-4px; border-radius:50%; border:1px solid currentColor; opacity:0.4; }
.mock-nearby { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }

/* ── Team ──────────────────────────────────────────────────────────────────── */
#team { background: var(--bg2); position: relative; }
#team::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 40% at 50% 100%, rgba(11,138,98,0.06), transparent);
  pointer-events: none;
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.team-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 24px;
  padding: 2rem 1.8rem; text-align: center;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(29,200,138,0.05), transparent 60%);
  pointer-events: none;
}
.team-card:hover {
  border-color: rgba(29,200,138,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(29,200,138,0.15);
}
.team-avatar-wrap { position: relative; display: inline-block; margin-bottom: 1.2rem; }
.team-avatar { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; background: var(--surface2); border: 2px solid var(--border2); }
.team-avatar-placeholder {
  width: 90px; height: 90px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(29,200,138,0.3);
  box-shadow: 0 0 20px rgba(11,138,98,0.2);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.team-card:hover .team-avatar-placeholder {
  border-color: rgba(29,200,138,0.5);
  box-shadow: 0 0 30px rgba(11,138,98,0.3);
}
.team-avatar-placeholder img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-badge {
  position: absolute; bottom: 2px; right: 2px;
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
  border: 2px solid var(--surface);
}
.team-name { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-role { font-size: 0.82rem; color: var(--muted); margin-bottom: 1rem; }
.team-skills { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
.team-skill {
  font-size: 0.72rem; padding: 0.22rem 0.7rem; border-radius: 999px;
  border: 1px solid var(--border2); color: var(--muted2); background: var(--bg2);
  transition: border-color 0.2s, color 0.2s;
}
.team-card:hover .team-skill { border-color: rgba(29,200,138,0.3); color: var(--text); }

/* ── Download ──────────────────────────────────────────────────────────────── */
#download { background: var(--bg2); position: relative; }
.dl-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 28px; padding: 2.5rem; display: grid;
  grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
  position: relative; overflow: hidden;
}
.dl-card::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,200,138,0.1), transparent 70%);
  pointer-events: none;
  animation: dl-glow 5s ease-in-out infinite;
}
.dl-card::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,179,71,0.07), transparent 70%);
  pointer-events: none;
}
@keyframes dl-glow {
  0%,100% { opacity: 0.7; transform: scale(1); }
  50%     { opacity: 1; transform: scale(1.1); }
}
.dl-main-title { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 0.5rem; }
.dl-sub { color: var(--muted2); margin-bottom: 1.5rem; font-size: 0.95rem; }
.dl-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.5rem; }
.dl-meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); }
.dl-meta-item svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.dl-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.qr-block { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.qr-box {
  width: 120px; height: 120px; border-radius: 16px;
  background: #fff; display: flex; align-items: center; justify-content: center;
  padding: 10px; border: 2px solid rgba(29,200,138,0.2);
}
.qr-box svg { width: 100%; height: 100%; }
.qr-label { font-size: 0.75rem; color: var(--muted); text-align: center; }

/* Build status */
.build-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 1.8rem; margin-top: 1.5rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem;
}
.build-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.3rem; }
.build-val { font-size: 1rem; font-weight: 600; }
.status-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); margin-right: 6px;
  animation: pulse 2s infinite;
  box-shadow: 0 0 6px var(--green);
}

/* ── Install ───────────────────────────────────────────────────────────────── */
#install { background: var(--bg); }
.install-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.install-step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  position: relative; transition: border-color 0.25s, transform 0.2s;
}
.install-step:hover { border-color: var(--border2); transform: translateY(-2px); }
.install-num {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--green-subtle); border: 1px solid rgba(29,200,138,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--green);
}
.install-step h4 { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; }
.install-step p { font-size: 0.85rem; color: var(--muted2); line-height: 1.6; }
.install-tip {
  background: rgba(255,179,71,0.06); border: 1px solid rgba(255,179,71,0.2);
  border-radius: 14px; padding: 1rem 1.2rem; display: flex; gap: 0.75rem;
  align-items: flex-start; margin-top: 1.5rem;
}
.install-tip svg { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.install-tip p { font-size: 0.88rem; color: #DBC99A; line-height: 1.6; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border); padding: 3rem 0;
  background: var(--bg2);
}
.footer-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.footer-brand span { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-copy { font-size: 0.82rem; color: var(--muted); }
.footer-auto { font-size: 0.78rem; color: var(--muted); opacity: 0.55; margin-top: 0.3rem; }

/* ── Scroll animations ─────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.22s; }
.fade-up-delay-3 { transition-delay: 0.34s; }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .dl-card { grid-template-columns: 1fr; }
  .qr-block { display: none; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .hero-stat-label { display: none; }
  .hero-stat { padding: 1rem; }
  section { padding: 4rem 0; }
  h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
}
