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

:root {
  --bg-dark: #0c0c0e;
  --bg-mid: #111114;
  --text-light: #f0ede8;
  --text-muted: #888;
  --accent: #1a56db;
  --accent-dim: rgba(26,86,219,0.12);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: auto;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  touch-action: pan-y;
  height: 100%;
  background: #050d1a; /* matches last section so any overscroll gap is invisible */
}
body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  touch-action: pan-y;
  min-height: 100%;
}

/* ── Loader ── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #ffffff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-brand { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; letter-spacing: 0.3em; color: #1a56db; }
.loader-bar-wrap { width: 220px; height: 1px; background: rgba(0,0,0,0.1); }
#loader-bar { height: 100%; width: 0%; background: #1a56db; transition: width 0.1s linear; }
#loader-percent { font-size: 0.75rem; letter-spacing: 0.15em; color: #aaa; }

/* ── Header ── */
@keyframes navAmbientPulse {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 1;    }
}
@keyframes logoGlow {
  0%, 100% { text-shadow: 0 0 8px rgba(26,86,219,0.18), 0 0 20px rgba(26,86,219,0.08); }
  50%       { text-shadow: 0 0 18px rgba(26,86,219,0.55), 0 0 40px rgba(26,86,219,0.28); }
}
@keyframes logoGlowDark {
  0%, 100% { text-shadow: 0 0 8px rgba(147,197,253,0.25); }
  50%       { text-shadow: 0 0 20px rgba(147,197,253,0.65), 0 0 44px rgba(147,197,253,0.3); }
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 6px rgba(26,86,219,0.22), inset 0 0 6px rgba(26,86,219,0.06); }
  50%       { box-shadow: 0 0 20px rgba(26,86,219,0.52), inset 0 0 14px rgba(26,86,219,0.14); }
}
@keyframes ctaGlowDark {
  0%, 100% { box-shadow: 0 0 6px rgba(147,197,253,0.25), inset 0 0 6px rgba(147,197,253,0.06); }
  50%       { box-shadow: 0 0 22px rgba(147,197,253,0.55), inset 0 0 14px rgba(147,197,253,0.14); }
}
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 14px 5vw;
  background: #d8e0ec;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  overflow: hidden;
}
/* Ambient inner glow — radial pulse behind content */
.site-header::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 70% 120% at 50% 50%, rgba(26,86,219,0.13) 0%, transparent 70%);
  animation: navAmbientPulse 2.8s ease-in-out infinite;
}
nav { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  letter-spacing: 0.2em; color: #111; transition: color 0.4s;
  text-decoration: none;
}
.nav-logo-img {
  width: 60px; height: 60px; object-fit: contain; flex-shrink: 0;
}
.nav-links { list-style: none; display: flex; gap: 32px; align-items: center; }
.nav-links a { color: rgba(10,10,10,0.75); text-decoration: none; font-size: 0.9rem; letter-spacing: 0.03em; transition: color 0.3s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s; font-weight: 600; display: inline-block; }
.nav-links a:hover { color: #111; }
.nav-cta {
  padding: 9px 26px; border: 2px solid #1a56db; border-radius: 100px;
  color: #1a56db !important; font-weight: 700;
  animation: ctaGlow 2.8s ease-in-out infinite;
}
.nav-cta:hover { background: rgba(26,86,219,0.08); border-color: #1a56db !important; }
.nav-logo span { animation: logoGlow 2.8s ease-in-out infinite; }
/* Nav goes dark when over the dark About/Features section */
.site-header.dark-mode {
  background: #1e1e1e;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.site-header.dark-mode::before {
  background: radial-gradient(ellipse 70% 120% at 50% 50%, rgba(26,86,219,0.22) 0%, transparent 70%);
}
.site-header.dark-mode .nav-logo { color: rgba(255,255,255,0.9); text-decoration: none; }
.site-header.dark-mode .nav-logo span { animation: logoGlowDark 2.8s ease-in-out infinite; }
.site-header.dark-mode .nav-links a { color: rgba(255,255,255,0.5); }
.site-header.dark-mode .nav-links a:hover { color: #fff; }
.site-header.dark-mode .nav-cta { border-color: rgba(147,197,253,0.6) !important; color: #93c5fd !important; animation: ctaGlowDark 2.8s ease-in-out infinite; }

/* ── Hero ── */
.hero-standalone {
  position: relative; height: 100vh; width: 100%;
  z-index: 15;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(145deg, #f0f6ff 0%, #ffffff 45%, #f5f8ff 100%);
  padding-top: 92px;
  box-sizing: border-box;
  will-change: opacity;
}

/* Dot-grid texture */
.hero-standalone::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(26,86,219,0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Bottom fade into the grey scroll area */
.hero-standalone::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 140px; z-index: 3;
  background: linear-gradient(to bottom, transparent, rgba(240,246,255,0.85));
  pointer-events: none;
}

/* Gradient orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(88px); pointer-events: none; z-index: 0;
  will-change: transform;
  transform: translateZ(0);
}
.hero-orb-1 {
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(26,86,219,0.18) 0%, rgba(59,130,246,0.08) 55%, transparent 72%);
  top: -160px; right: -80px;
  animation: heroOrb1 13s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(147,197,253,0.22) 0%, rgba(96,165,250,0.08) 55%, transparent 72%);
  bottom: -80px; right: 22%;
  animation: heroOrb2 9s ease-in-out infinite alternate;
}
.hero-orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(99,102,241,0.13) 0%, rgba(129,140,248,0.06) 55%, transparent 72%);
  top: 38%; left: 38%;
  animation: heroOrb3 16s ease-in-out infinite alternate;
}
@keyframes heroOrb1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-35px, 28px) scale(1.06); }
}
@keyframes heroOrb2 {
  from { transform: translate(0, 0); }
  to   { transform: translate(28px, -35px) scale(1.04); }
}
@keyframes heroOrb3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-18px, -24px) scale(1.08); }
}
#particle-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 4;
  max-width: 700px; width: 90%;
  text-align: center;
}
@media (min-width: 769px) {
  .hero-content {
    text-align: left;
    margin-left: 6vw;
    margin-right: auto;
  }
  .hero-tagline { margin: 0; }
}
.section-label {
  display: block; font-size: 0.7rem; letter-spacing: 0.2em;
  color: #1a56db; text-transform: uppercase; margin-bottom: 20px; font-weight: 600;
  text-shadow: 0 0 18px rgba(26,86,219,0.35);
}
.hero-heading {
  font-family: var(--font-display); font-size: clamp(5rem, 10vw, 12rem);
  font-weight: 900; line-height: 0.95; color: #0a0a0a;
  margin-bottom: 32px;
}
.hero-heading .word { display: inline-block; margin-right: 0.12em; }
.hero-heading .accent {
  color: #1a56db;
  text-shadow:
    0 0 30px rgba(26,86,219,0.55),
    0 0 70px rgba(26,86,219,0.38),
    0 0 130px rgba(26,86,219,0.22),
    0 0 220px rgba(26,86,219,0.12);
}
.hero-tagline { font-size: clamp(1rem, 1.4vw, 1.2rem); color: #555; font-weight: 400; line-height: 1.7; max-width: 360px; margin: 0 auto; }
.scroll-indicator {
  position: absolute; top: 68%; left: 82vw; z-index: 4;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  color: #555; font-size: 0.95rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700;
}
.scroll-arrow {
  position: relative;
  width: 2px; height: 70px;
  background: linear-gradient(to bottom, #1a56db, #1a56db);
  box-shadow: 0 0 12px rgba(26,86,219,0.7), 0 0 24px rgba(26,86,219,0.35);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-arrow::after {
  content: '';
  position: absolute; bottom: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px;
  border-right: 2px solid #1a56db;
  border-bottom: 2px solid #1a56db;
  box-shadow: 2px 2px 6px rgba(26,86,219,0.5);
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.2); } }

/* ── Wipe transition background ── */
#wipe-bg {
  position: fixed; inset: 0; z-index: 9;
  background:
    radial-gradient(ellipse 35% 35% at 50% 50%, rgba(147,197,253,0.55) 0%, transparent 100%),
    radial-gradient(ellipse 80% 80% at 50% 50%, #dbeafe 0%, #eff6ff 55%, #ffffff 100%);
  opacity: 0; pointer-events: none;
}

/* ── Product Canvas ── */
.canvas-wrap {
  position: fixed; inset: 0; z-index: 10;
  background: var(--bg-dark);
  pointer-events: none;
  transition: filter 0.35s ease;
  will-change: transform;
  transform: translateZ(0);
}
#canvas { width: 100%; height: 100%; display: block; }

/* ── Dark Overlay ── */
#dark-overlay {
  position: fixed; inset: 0; z-index: 11;
  background: rgba(12,12,14,0.9);
  opacity: 0; pointer-events: none;
  transition: opacity 0.05s linear;
  will-change: opacity;
}

/* ── Marquee ── */
.marquee-wrap {
  position: fixed; bottom: 60px; left: 0; right: 0; z-index: 20;
  overflow: hidden; opacity: 0; pointer-events: none;
  white-space: nowrap; display: none;
}
.marquee-text {
  display: inline-block;
  font-family: var(--font-display); font-size: 12vw; font-weight: 900;
  color: rgba(100,80,40,0.07); letter-spacing: 0.02em;
  text-transform: uppercase; white-space: nowrap;
}

/* ── Scroll Container ── */
#scroll-container {
  position: relative; height: 2600vh; width: 100%;
  background: var(--bg-dark);
}

/* ── Content Sections ── */
.scroll-section {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: flex-start;
  padding-top: 13vh;
  height: 100vh; pointer-events: none;
  z-index: 30; opacity: 0;
  will-change: opacity, transform;
}
.section-inner { max-width: 40vw; }

.align-left { padding-left: 5vw; padding-right: 55vw; }
.align-right { padding-left: 55vw; padding-right: 5vw; }
.align-left .section-inner,
.align-right .section-inner { max-width: 38vw; }

.section-content .section-inner {
  background: rgba(235, 244, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  padding: 36px 40px;
  border: 1.5px solid rgba(26, 86, 219, 0.22);
  border-left: 4px solid #1a56db;
  box-shadow:
    0 8px 48px rgba(26, 86, 219, 0.18),
    0 2px 16px rgba(26, 86, 219, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.section-heading {
  font-family: var(--font-display); font-size: clamp(2.5rem, 4.5vw, 5.5rem);
  font-weight: 700; line-height: 1.1; color: #0a1a3a;
  margin-bottom: 20px;
}
.section-body { font-size: clamp(0.9rem, 1.1vw, 1.05rem); line-height: 1.7; color: #334155; max-width: 340px; }
.section-content .section-label { color: #1a56db; }

/* ── Stats Section ── */
.section-stats {
  justify-content: center; align-items: center;
  padding-top: 0; z-index: 35;
}
.stats-grid {
  display: flex; gap: 80px; align-items: flex-start;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-number {
  font-family: var(--font-display); font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 900; color: var(--text-light); line-height: 1;
}
.stat-suffix { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 4rem); color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.75rem; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; text-align: center; margin-top: 8px; }
.stat { position: relative; }
.stat::after {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 100%; background: rgba(26,86,219,0.15);
  display: none;
}

/* ── Responsive content variants (mobile / desktop text swaps) ── */
.m-only { display: none; }  /* hidden on desktop, shown by mobile media query */
.d-only { display: inline; } /* shown on desktop, hidden by mobile media query */
.m-hide { display: block; }  /* shown on desktop, hidden by mobile media query */

.cta-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
}
.cta-page-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 6rem);
  font-weight: 900; line-height: 1.0;
  color: #111; margin-bottom: 14px;
}
.cta-page-sub {
  font-size: clamp(0.85rem, 1.1vw, 1rem); color: #555;
  font-weight: 300; line-height: 1.6; max-width: 420px; margin-bottom: 32px;
}
.cta-appstore-btn {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 22px 52px;
  background: #111; color: #fff;
  border-radius: 22px; text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18);
}
.cta-appstore-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 60px rgba(0,0,0,0.26); }
.apple-icon { width: 42px; height: 42px; flex-shrink: 0; }
.btn-text { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.btn-sub { font-size: 0.78rem; letter-spacing: 0.04em; opacity: 0.7; font-weight: 400; }
.btn-main { font-family: var(--font-display); font-size: 2rem; line-height: 1; letter-spacing: 0.01em; }
.cta-fine { font-size: 0.72rem; color: #999; margin-top: 24px; letter-spacing: 0.1em; }

/* ── Shared page-section wrapper ── */
.page-section {
  position: relative; z-index: 50;
  width: 100%; padding: 0;
  height: 100vh; overflow: hidden;
}
.page-section-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 90px 6vw 16px;
  height: 100%; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.page-section-header { margin-bottom: 10px; }
.page-eyebrow {
  display: block; font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 4px;
}
.page-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 900; line-height: 1.08; color: #111;
}

/* ── Features section ── */
@keyframes featOrbD1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-50px, 40px) scale(1.14); }
}
@keyframes featOrbD2 {
  from { transform: translate(0,0); }
  to   { transform: translate(55px,-45px) scale(1.1); }
}
@keyframes featOrbD3 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-25px,-40px) scale(1.12); }
}
.features-section {
  background: #070c1a;
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: '';
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(26,86,219,0.22) 0%, rgba(59,130,246,0.08) 45%, transparent 65%);
  filter: blur(80px);
  top: -260px; left: -200px;
  animation: featOrbD1 14s ease-in-out infinite alternate;
}
.features-section::after {
  content: '';
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  width: 660px; height: 660px;
  background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, rgba(167,139,250,0.06) 50%, transparent 68%);
  filter: blur(80px);
  bottom: -180px; right: -140px;
  animation: featOrbD2 11s ease-in-out infinite alternate;
}
.features-section .page-section-inner { position: relative; z-index: 1; }
#features .page-eyebrow {
  color: #60a5fa;
  letter-spacing: 0.24em;
  text-shadow: 0 0 16px rgba(96,165,250,0.5);
}
#features .page-heading {
  color: #f0f6ff;
  text-shadow: 0 0 60px rgba(26,86,219,0.18);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1.5px solid rgba(147,197,253,0.18);
  border-radius: 20px;
  overflow: hidden;
  align-self: start;
  background: rgba(96,165,250,0.09);
  box-shadow: 0 0 50px rgba(26,86,219,0.14), 0 0 100px rgba(26,86,219,0.06);
}
.feature-card {
  padding: 44px 36px;
  background: linear-gradient(145deg, #0b1432 0%, #080f28 100%);
  border: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 0% 0%, rgba(26,86,219,0.12) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.35s ease;
  will-change: opacity;
}
@media (hover: hover) {
  .feature-card:hover { transform: translateY(-3px); }
  .feature-card:hover::after { opacity: 1; }
  .feature-card:hover .feature-icon {
    filter: drop-shadow(0 0 14px rgba(96,165,250,0.85));
    transform: scale(1.08);
  }
}
.feature-icon {
  width: 44px; height: 44px;
  color: #60a5fa;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 7px rgba(96,165,250,0.55));
  transition: filter 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-title {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700;
  color: #e8f0ff; margin-bottom: 12px; line-height: 1.2;
}
.feature-body { font-size: 0.92rem; color: rgba(200,220,255,0.68); line-height: 1.7; }

/* ── About section ── */
@keyframes aboutOrbD1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-50px,60px) scale(1.18); }
}
@keyframes aboutOrbD2 {
  from { transform: translate(0,0); }
  to   { transform: translate(60px,-50px) scale(1.14); }
}
@keyframes aboutOrbD3 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-30px,-40px) scale(1.1); }
}
.about-section {
  background: #07080f;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(26,86,219,0.28) 0%, rgba(59,130,246,0.08) 45%, transparent 65%);
  filter: blur(80px);
  top: -220px; left: -200px;
  animation: aboutOrbD1 13s ease-in-out infinite alternate;
}
.about-section::after {
  content: '';
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.22) 0%, rgba(147,197,253,0.06) 50%, transparent 68%);
  filter: blur(80px);
  bottom: -160px; right: -140px;
  animation: aboutOrbD2 10s ease-in-out infinite alternate;
}
.about-eyebrow {
  color: #60a5fa;
  letter-spacing: 0.28em;
  text-shadow: 0 0 16px rgba(96,165,250,0.5);
}
.about-heading {
  background: linear-gradient(110deg, #ffffff 30%, #93c5fd 52%, #ffffff 72%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: headingShimmer 5s ease-in-out infinite;
}
#about .page-section-inner {
  justify-content: center;
  gap: 24px;
  padding-bottom: 0;
  overflow: visible;
  position: relative; z-index: 1;
}

/* Compact founder squares */
.founders-compact { margin-bottom: 0; }
.founder-card-compact {
  padding: 20px 18px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.founder-card-compact .founder-bio { display: none; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(147,197,253,0.12);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
@media (hover: hover) {
  .review-card:hover {
    border-color: rgba(147,197,253,0.28);
    background: rgba(26,86,219,0.06);
    box-shadow: 0 12px 40px rgba(26,86,219,0.14);
  }
}
.review-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; }
.review-text {
  font-size: 0.82rem; color: rgba(240,237,232,0.72);
  line-height: 1.65; font-style: italic; flex: 1;
}
.review-author {
  font-size: 0.7rem; letter-spacing: 0.06em;
  color: rgba(147,197,253,0.65); font-weight: 500;
}
.about-intro {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  color: rgba(240,237,232,0.6); line-height: 1.6;
  max-width: 580px; margin-bottom: 24px;
}
.founders-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 24px;
}
.founder-card {
  background: rgba(10,18,40,0.9);
  border: 1px solid rgba(26,86,219,0.28);
  border-radius: 18px; padding: 24px 28px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
@media (hover: hover) {
  .founder-card:hover {
    border-color: rgba(96,165,250,0.5);
    background: rgba(14,26,60,0.95);
    box-shadow: 0 16px 50px rgba(26,86,219,0.2);
  }
}
@keyframes avatarPulseD {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.08); }
}
.founder-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(26,86,219,0.22), rgba(26,86,219,0.06));
  border: 1px solid rgba(26,86,219,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: #93c5fd; margin-bottom: 14px;
  position: relative;
}
.founder-avatar::before {
  content: '';
  position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid rgba(26,86,219,0.5);
  animation: avatarPulseD 3s ease-in-out infinite;
  will-change: opacity, transform;
}
.founder-name {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 700; color: var(--text-light); margin-bottom: 4px;
}
.founder-role {
  display: block; font-size: 0.65rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.founder-bio { font-size: 0.8rem; color: rgba(240,237,232,0.55); line-height: 1.6; }
.mission-block {
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 24px;
}
.mission-quote {
  font-family: var(--font-display); font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  font-weight: 400; font-style: italic;
  color: var(--text-light); line-height: 1.5; margin-bottom: 10px;
}
.mission-attr { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--text-muted); }

/* ── Download / CTA section ── */
.cta-page {
  background: #050d1a;
  display: flex; align-items: center; justify-content: center;
  height: 100vh;
  position: relative; overflow: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* Dot-grid texture */
.cta-page::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(26,86,219,0.18) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

/* Animated gradient orbs */
.cta-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 0;
}
.cta-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,86,219,0.45) 0%, rgba(59,130,246,0.18) 50%, transparent 72%);
  top: -220px; left: -180px;
  animation: ctaOrb1 13s ease-in-out infinite alternate;
}
.cta-orb-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(99,102,241,0.35) 0%, rgba(147,197,253,0.12) 55%, transparent 72%);
  bottom: -160px; right: -120px;
  animation: ctaOrb2 9s ease-in-out infinite alternate;
}
.cta-orb-3 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(59,130,246,0.28) 0%, transparent 70%);
  top: 35%; left: 42%;
  animation: ctaOrb3 16s ease-in-out infinite alternate;
}

@keyframes ctaOrb1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.1); }
}
@keyframes ctaOrb2 {
  from { transform: translate(0, 0); }
  to   { transform: translate(-40px, -60px) scale(1.08); }
}
@keyframes ctaOrb3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-28px, 22px) scale(1.14); }
}

.cta-page-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 80px 40px;
  position: relative; z-index: 1;
}

/* Override text colours for dark bg */
.cta-eyebrow { color: #93c5fd; }

.cta-page-heading {
  background: linear-gradient(110deg, #ffffff 30%, #93c5fd 50%, #ffffff 70%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: headingShimmer 5s ease-in-out infinite;
}
@keyframes headingShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.cta-page-sub { color: rgba(255,255,255,0.55); }

.cta-appstore-btn {
  background: none;
  box-shadow: none;
  padding: 0;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s;
}
.appstore-badge-img {
  display: block;
  width: 240px;
  height: auto;
  border-radius: 12px;
}
@media (hover: hover) {
  .cta-appstore-btn:hover {
    transform: translateY(-3px) scale(1.04);
    opacity: 0.92;
  }
}
@media (max-width: 768px) {
  .appstore-badge-img { width: 210px; }
}

.cta-fine { color: rgba(255,255,255,0.3); }

/* ── Button & link interactions ── */

@keyframes btnClick {
  0%   { transform: scale(1); }
  28%  { transform: scale(0.91); }
  65%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}
@keyframes btnClickY {
  0%   { transform: translateY(0) scale(1); }
  28%  { transform: translateY(2px) scale(0.91); }
  65%  { transform: translateY(-5px) scale(1.05); }
  100% { transform: translateY(-4px) scale(1.02); }
}
.btn-clicking { animation: btnClick 0.3s cubic-bezier(0.36,0.07,0.19,0.97) both !important; }
.cta-appstore-btn.btn-clicking { animation: btnClickY 0.3s cubic-bezier(0.36,0.07,0.19,0.97) both !important; }

/* Hover: desktop pointer devices only */
@media (hover: hover) {
  .nav-links a:not(.nav-cta):hover {
    transform: scale(1.08);
    color: #1a56db;
  }
  .nav-cta:hover {
    transform: scale(1.09) !important;
    box-shadow: 0 0 24px rgba(26,86,219,0.32), 0 4px 14px rgba(26,86,219,0.2);
    background: rgba(26,86,219,0.1) !important;
  }
  .site-header.dark-mode .nav-links a:not(.nav-cta):hover {
    color: #93c5fd;
    text-shadow: 0 0 14px rgba(147,197,253,0.4);
  }
  .site-header.dark-mode .nav-cta:hover {
    box-shadow: 0 0 24px rgba(147,197,253,0.3) !important;
  }
  .cta-appstore-btn:hover { transform: translateY(-4px) scale(1.05) !important; }
  .nav-logo:hover { opacity: 0.85; transform: scale(1.03); }
}
.nav-logo { transition: opacity 0.2s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1); }

/* ── Mobile ── */
@media (max-width: 768px) {
  /* Flip content variants for mobile */
  .m-only { display: inline; }
  .d-only { display: none; }
  .m-hide { display: none !important; }

  /* Bug 1 fix: use dvh so height tracks the visual viewport (toolbar in/out) */
  .hero-standalone { height: 100dvh; }

  /* Hide loader entirely on mobile */
  #loader { display: none !important; }

  /* Video canvas fits full width on mobile */
  .canvas-wrap { width: 100vw !important; left: 0 !important; right: 0 !important; }

  /* Hero */
  .hero-heading { font-size: clamp(2.8rem, 11vw, 4.5rem); text-align: center; }
  .hero-content { position: relative; top: auto; left: auto; transform: none; width: 100%; max-width: none; padding: 0 6vw; box-sizing: border-box; text-align: center; }
  .hero-tagline { font-size: 1rem; text-align: center; margin: 0 auto; }
  .hero-content .section-label { display: none; }

  .scroll-indicator {
    display: flex !important;
    top: auto;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    font-size: 0.6rem;
    gap: 8px;
  }
  .scroll-arrow { height: 40px; }

  /* Hide scrollbar on mobile */
  body::-webkit-scrollbar { display: none; }
  body { -ms-overflow-style: none; scrollbar-width: none; }

  /* Hide marquee only — keep particle canvas for hero bg */
  .marquee-wrap { display: none; }
  #particle-canvas { display: block !important; }

  /* Shorter scroll distance on mobile */
  #scroll-container { height: 700vh; }

  /* Scroll sections — pin to bottom so video shows above */
  .scroll-section {
    top: auto !important;
    bottom: 0 !important;
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 4vh !important;
  }
  .align-left  { padding-left: 5vw !important; padding-right: 5vw !important; }
  .align-right { padding-left: 5vw !important; padding-right: 5vw !important; }
  .align-left .section-inner,
  .align-right .section-inner { max-width: 100%; }
  .section-heading { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .section-body    { font-size: 0.9rem; }
  .section-content .section-inner { padding: 22px 20px; }

  /* Stats — center vertically in the viewport */
  .section-stats {
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    padding-bottom: 0 !important;
    justify-content: center !important;
  }
  .stats-grid { flex-direction: column; gap: 28px; align-items: center; text-align: center; }
  .stat-number { font-size: clamp(3rem, 14vw, 5rem); }

  /* Nav */
  .nav-logo span { font-size: 0.85rem; letter-spacing: 0.08em; }
  .nav-logo-img  { width: 42px; height: 42px; }
  .nav-links { gap: 12px; }
  .nav-links li { display: list-item; }
  .nav-links a { font-size: 0.7rem; }
  .nav-cta { padding: 5px 10px !important; font-size: 0.7rem !important; }

  /* Page sections — exact visual viewport height */
  .page-section {
    height: 100dvh !important;
    min-height: unset !important;
    max-height: 100dvh !important;
    overflow: hidden !important;
  }
  .page-section-inner { padding: 80px 4vw 16px; overflow: hidden; }
  .founders-grid      { grid-template-columns: 1fr; }
  .page-heading       { font-size: clamp(1.4rem, 5.5vw, 2rem); margin-bottom: 6px; }
  .page-eyebrow       { margin-bottom: 2px; }
  .page-section-header { margin-bottom: 6px; }

  /* Features — dark premium, fills one screen */
  @keyframes featOrb1 {
    from { transform: translate(0,0) scale(1); opacity: 0.7; }
    to   { transform: translate(-40px,55px) scale(1.22); opacity: 1; }
  }
  @keyframes featOrb2 {
    from { transform: translate(0,0) scale(1); opacity: 0.6; }
    to   { transform: translate(50px,-38px) scale(1.16); opacity: 0.95; }
  }
  @keyframes featOrb3 {
    from { transform: translate(0,0); opacity: 0.5; }
    to   { transform: translate(-28px,-45px) scale(1.12); opacity: 0.9; }
  }

  #features.page-section {
    height: calc(var(--vh, 1vh) * 100);
    min-height: unset;
    background: #070d20;
    overflow: hidden;
    position: relative;
  }
  /* Animated orbs */
  #features.page-section::before {
    content: '';
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(26,86,219,0.32) 0%, transparent 65%);
    filter: blur(48px);
    top: -110px; right: -80px;
    animation: featOrb1 10s ease-in-out infinite alternate;
  }
  #features.page-section::after {
    content: '';
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(79,70,229,0.26) 0%, transparent 65%);
    filter: blur(52px);
    bottom: -70px; left: -50px;
    animation: featOrb2 13s ease-in-out infinite alternate;
  }

  #features .page-section-inner {
    padding: 70px 4vw 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    position: relative; z-index: 1;
  }
  #features .page-eyebrow {
    color: #60a5fa;
    letter-spacing: 0.26em;
    text-shadow: 0 0 14px rgba(96,165,250,0.4);
  }
  #features .page-heading {
    color: #f0f6ff;
    font-size: clamp(1.55rem, 6.2vw, 2.1rem);
    line-height: 1.12;
    text-shadow: 0 0 40px rgba(26,86,219,0.2);
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    flex: unset;
    align-content: start;
    margin-top: 0;
    margin-bottom: 0;
    border: 1.5px solid rgba(147,197,253,0.30);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(96,165,250,0.10); /* gap colour */
    box-shadow: 0 0 32px rgba(26,86,219,0.18), inset 0 0 0 0 transparent;
  }
  .feature-card {
    padding: 14px 10px 15px;
    background: linear-gradient(145deg, rgba(10,18,45,0.95) 0%, rgba(8,14,35,0.98) 100%);
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    transition: none;
  }
  .feature-icon {
    width: 22px; height: 22px;
    margin-bottom: 9px;
    color: #60a5fa;
    filter: drop-shadow(0 0 7px rgba(96,165,250,0.6));
  }
  .feature-title { font-size: 0.76rem; margin-bottom: 5px; color: #e8f0ff; line-height: 1.25; font-weight: 700; }
  .feature-body  { font-size: 0.66rem; line-height: 1.5;  color: rgba(200,220,255,0.68); }

  /* ── About — premium dark ── */
  @keyframes aboutOrb1 {
    from { transform: translate(0,0) scale(1); opacity: 0.65; }
    to   { transform: translate(-45px,65px) scale(1.22); opacity: 1; }
  }
  @keyframes aboutOrb2 {
    from { transform: translate(0,0); opacity: 0.55; }
    to   { transform: translate(55px,-45px) scale(1.18); opacity: 0.9; }
  }
  @keyframes avatarPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(26,86,219,0.4), inset 0 0 8px rgba(26,86,219,0.15); }
    50%       { box-shadow: 0 0 28px rgba(26,86,219,0.7), inset 0 0 16px rgba(26,86,219,0.25); }
  }

  #about.page-section {
    background: #07080f;
    position: relative;
    overflow: hidden;
  }
  #about.page-section::before {
    content: ''; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(26,86,219,0.30) 0%, transparent 65%);
    filter: blur(52px);
    top: -80px; left: -70px;
    animation: aboutOrb1 11s ease-in-out infinite alternate;
  }
  #about.page-section::after {
    content: ''; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(99,102,241,0.24) 0%, transparent 65%);
    filter: blur(58px);
    bottom: -60px; right: -60px;
    animation: aboutOrb2 14s ease-in-out infinite alternate;
  }
  #about.page-section {
    height: calc(var(--vh, 1vh) * 100);
    min-height: unset;
    overflow: hidden;
  }
  #about .page-section-inner {
    position: relative; z-index: 1;
    height: 100%;
    padding: 90px 5vw 0;
  }
  #about .about-eyebrow {
    color: #60a5fa;
    letter-spacing: 0.28em;
    text-shadow: 0 0 16px rgba(96,165,250,0.5);
  }
  #about .about-heading {
    background: linear-gradient(110deg, #ffffff 30%, #93c5fd 52%, #ffffff 72%);
    background-size: 220% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: headingShimmer 5s ease-in-out infinite;
    font-size: clamp(1.65rem, 6.5vw, 2.2rem);
    line-height: 1.1;
    margin-bottom: 14px;
  }
  #about .about-intro {
    font-size: 0.92rem;
    color: rgba(200,215,255,0.72);
    line-height: 1.65;
    margin-bottom: 20px;
  }
  #about .founders-grid { gap: 10px; margin-bottom: 0; grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; gap: 10px; }
  .review-card { padding: 16px 14px; }
  #about .founder-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.055) 0%, rgba(26,86,219,0.07) 100%);
    border: 1px solid rgba(96,165,250,0.18);
    border-top: 2px solid rgba(96,165,250,0.42);
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 0 30px rgba(26,86,219,0.15), inset 0 1px 0 rgba(147,197,253,0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  #about .founder-avatar {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(26,86,219,0.35) 0%, rgba(99,102,241,0.35) 100%);
    border: 2px solid rgba(96,165,250,0.5);
    border-radius: 50%;
    font-size: 1.25rem;
    color: #93c5fd;
    animation: avatarPulse 3s ease-in-out infinite;
    margin-bottom: 16px;
  }
  #about .founder-name {
    font-size: 1.15rem;
    color: #f0f6ff;
    margin-bottom: 5px;
  }
  #about .founder-role {
    color: #60a5fa;
    text-shadow: 0 0 10px rgba(96,165,250,0.4);
    margin-bottom: 12px;
  }
  #about .founder-bio {
    font-size: 0.85rem;
    color: rgba(200,220,255,0.65);
    line-height: 1.62;
  }
  #about .mission-block {
    border-left: 2px solid #1a56db;
    box-shadow: -5px 0 20px rgba(26,86,219,0.25);
    padding: 6px 0 6px 20px;
    margin-top: 4px;
  }
  #about .mission-quote {
    font-size: 0.95rem;
    color: rgba(240,245,255,0.88);
    line-height: 1.6;
    margin-bottom: 8px;
  }
  #about .mission-attr { color: rgba(147,197,253,0.55); }

  /* CTA */
  .cta-page {
    height: 100dvh !important;
    min-height: unset !important;
    max-height: 100dvh !important;
  }
  .cta-page-inner { padding: 60px 6vw; }
  .cta-page-heading { font-size: clamp(2.5rem, 10vw, 4rem); }

  /* Scroll-snap for the three end sections (proximity = won't trap upward scroll) */
  body {
    scroll-snap-type: y proximity;
    /* overscroll-behavior-y intentionally NOT set here — falls through to the
       global "none" rule above, which prevents rubber-band without trapping */
  }
  #features,
  #about,
  #download {
    scroll-snap-align: start;
    scroll-snap-stop: normal; /* never 'always' */
  }

  /* ── Mobile CTA: dramatic redesign ──────────────────────────────────── */

  /* Deep-space background — intense central bottom glow */
  #download.page-section {
    background:
      radial-gradient(ellipse 160% 70% at 50% 120%, rgba(26,86,219,0.85) 0%, rgba(26,86,219,0.3) 38%, transparent 60%),
      radial-gradient(ellipse 80% 55% at 85% 0%,   rgba(99,102,241,0.4)  0%, transparent 52%),
      radial-gradient(ellipse 60% 45% at 10% 25%,  rgba(59,130,246,0.18) 0%, transparent 55%),
      #020b1a;
  }

  /* Star-field dot grid */
  #download.page-section::before {
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 100%);
  }

  /* Override existing orbs for more dramatic mobile placement */
  #download .cta-orb-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(26,86,219,0.55) 0%, rgba(59,130,246,0.15) 45%, transparent 68%);
    bottom: -200px; left: 50%; top: auto; right: auto;
    transform: translateX(-50%);
    filter: blur(55px);
    animation: ctaOrb1 13s ease-in-out infinite alternate;
  }
  #download .cta-orb-2 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(99,102,241,0.55) 0%, transparent 65%);
    top: -40px; right: -60px; bottom: auto; left: auto;
    filter: blur(48px);
    animation: ctaOrb2 9s ease-in-out infinite alternate;
  }
  #download .cta-orb-3 {
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(139,92,246,0.4) 0%, transparent 65%);
    top: 30%; left: -40px; right: auto;
    filter: blur(44px);
    animation: ctaOrb3 16s ease-in-out infinite alternate;
  }

  /* Large atmospheric glow ring behind heading */
  .cta-glow-ring {
    position: absolute;
    width: 380px; height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(147,197,253,0.1);
    top: 50%; left: 50%;
    transform: translate(-50%, -52%);
    background: radial-gradient(circle, rgba(26,86,219,0.12) 0%, transparent 70%);
    box-shadow: 0 0 80px rgba(26,86,219,0.2), inset 0 0 60px rgba(26,86,219,0.08);
    pointer-events: none; z-index: 0;
    animation: ctaOrb3 14s ease-in-out infinite alternate;
  }

  /* Inner section layout */
  #download .cta-page-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 16px;
    padding: 48px 7vw 36px;
    position: relative; z-index: 1;
    height: 100%;
  }

  /* App icon + halo */
  .cta-icon-wrap {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 4px;
  }
  .cta-icon-halo {
    position: absolute;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,86,219,0.45) 0%, transparent 70%);
    filter: blur(16px);
    animation: ctaOrb3 4s ease-in-out infinite alternate;
  }
  .cta-icon-img {
    width: 64px; height: 64px;
    object-fit: contain;
    border-radius: 16px;
    position: relative; z-index: 1;
    filter: drop-shadow(0 4px 20px rgba(26,86,219,0.6));
  }

  /* Eyebrow pill */
  #download .cta-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: rgba(147,197,253,0.95);
    background: rgba(26,86,219,0.14);
    border: 1px solid rgba(147,197,253,0.22);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 0;
  }

  /* Heading — large and dramatic */
  #download .cta-page-heading {
    font-size: clamp(3rem, 13.5vw, 4.2rem);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 0;
    text-shadow: 0 0 80px rgba(59,130,246,0.45);
  }

  /* Subtitle */
  #download .cta-page-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.52);
    max-width: 270px;
    line-height: 1.55;
    margin-bottom: 0;
  }

  /* Glass stats row */
  .cta-stats {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 300px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(147,197,253,0.14);
    border-radius: 16px;
    padding: 14px 0;
    backdrop-filter: blur(14px);
  }
  .cta-stat {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; gap: 3px;
  }
  .cta-stat-val {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 700;
    color: #fff; line-height: 1;
  }
  .cta-stat-lbl {
    font-size: 0.58rem; letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(147,197,253,0.6);
  }
  .cta-stat-sep {
    width: 1px; height: 30px;
    background: rgba(147,197,253,0.15);
    flex-shrink: 0;
  }

  /* Badge — larger + pulsing glow */
  #download .cta-appstore-btn {
    position: relative;
  }
  #download .cta-appstore-btn::before {
    content: '';
    position: absolute; inset: -12px;
    border-radius: 22px;
    background: radial-gradient(ellipse, rgba(26,86,219,0.45) 0%, transparent 70%);
    filter: blur(10px);
    z-index: -1;
    animation: btnPulse 2.8s ease-in-out infinite;
  }
  #download .appstore-badge-img {
    width: 196px;
  }

  /* Fine print */
  #download .cta-fine {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.22);
    letter-spacing: 0.08em;
  }
}

/* ── Desktop About — Premium Redesign ─────────────────────────────── */
@keyframes avatarPulseDesktop {
  0%,100% { box-shadow: 0 0 18px rgba(26,86,219,0.55), inset 0 0 10px rgba(147,197,253,0.14); }
  50%      { box-shadow: 0 0 40px rgba(26,86,219,0.9),  inset 0 0 22px rgba(147,197,253,0.28); }
}

@media (min-width: 769px) {

  /* Vivid gradient background */
  .about-section {
    background:
      radial-gradient(ellipse 70% 55% at 90% 15%, rgba(26,86,219,0.38) 0%, transparent 55%),
      radial-gradient(ellipse 60% 50% at 8%  88%, rgba(99,102,241,0.30) 0%, transparent 55%),
      radial-gradient(ellipse 45% 40% at 50% 55%, rgba(59,130,246,0.14) 0%, transparent 58%),
      #07080f;
  }

  /* 2-column layout — heading left, cards right */
  #about .page-section-inner {
    display: grid !important;
    grid-template-columns: 40% 1fr;
    grid-template-areas:
      "header founders"
      "header reviews";
    column-gap: 64px;
    row-gap: 32px;
    align-items: start;
    align-content: center;
    padding-top: 100px;
    padding-bottom: 0;
  }

  #about .page-section-header {
    grid-area: header;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  #about .founders-compact {
    grid-area: founders;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    align-items: start;
    gap: 16px;
    margin-bottom: 0;
  }

  #about .founders-compact .founder-card-compact:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin-top: 0 !important;
  }

  #about .founders-compact .founder-card-compact:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin-top: 0 !important;
  }

  #about .reviews-grid {
    grid-area: reviews;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  /* Glowing accent bar above eyebrow */
  #about .page-section-header::before {
    content: '';
    display: block;
    width: 52px; height: 3px;
    background: linear-gradient(90deg, #1a56db, #93c5fd);
    border-radius: 2px;
    margin-bottom: 22px;
    box-shadow: 0 0 16px rgba(26,86,219,0.8), 0 0 32px rgba(26,86,219,0.4);
  }

  /* Eyebrow glow */
  #about .about-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: #60a5fa;
    text-shadow: 0 0 22px rgba(96,165,250,0.7);
    margin-bottom: 10px;
  }

  /* Heading — solid white */
  #about .about-heading {
    font-size: clamp(2.6rem, 3.8vw, 4.2rem);
    line-height: 1.06;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    background: none;
    animation: none;
    margin-bottom: 0;
  }

  /* Founder cards */
  .founder-card-compact {
    background: linear-gradient(135deg, rgba(26,86,219,0.18) 0%, rgba(99,102,241,0.08) 100%);
    border: 1px solid rgba(96,165,250,0.25);
    border-top: 2px solid rgba(96,165,250,0.65);
    box-shadow: 0 8px 48px rgba(26,86,219,0.25), inset 0 1px 0 rgba(147,197,253,0.1);
    padding: 30px 26px;
    gap: 14px;
    cursor: default;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  }
  .founder-card-compact:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(26,86,219,0.4), inset 0 1px 0 rgba(147,197,253,0.18);
  }
  .founder-card-compact .founder-avatar {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(26,86,219,0.55), rgba(99,102,241,0.55));
    border: 2px solid rgba(96,165,250,0.75);
    color: #93c5fd;
    font-size: 1.35rem;
    animation: avatarPulseDesktop 3s ease-in-out infinite;
  }
  .founder-card-compact .founder-name { font-size: 1.2rem; color: #f0f6ff; font-weight: 700; }
  .founder-card-compact .founder-role { font-size: 0.68rem; color: #60a5fa; letter-spacing: 0.16em; text-shadow: 0 0 12px rgba(96,165,250,0.5); }

  /* Review cards */
  .review-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(26,86,219,0.1) 100%);
    border: 1px solid rgba(96,165,250,0.18);
    border-left: 3px solid #1a56db;
    box-shadow: 0 8px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(147,197,253,0.08);
    padding: 28px 24px;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    cursor: default;
  }
  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 56px rgba(26,86,219,0.28), inset 0 1px 0 rgba(147,197,253,0.12);
  }
  .review-card::before {
    content: '\201C';
    position: absolute;
    top: -8px; right: 16px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(26,86,219,0.14);
    line-height: 1;
    pointer-events: none;
  }
  .review-stars { font-size: 1rem; letter-spacing: 2px; text-shadow: 0 0 14px rgba(245,158,11,0.8); }
  .review-text  { font-size: 0.92rem; color: rgba(240,237,232,0.92); line-height: 1.7; font-style: italic; }
  .review-author { font-size: 0.76rem; color: rgba(147,197,253,0.85); font-weight: 600; letter-spacing: 0.1em; }
}
