/* ═══════════════════════════════════════════════════════════
   Chartlyzer — PREMIUM LAYER
   Futuristic AI aesthetic: aurora mesh, film grain, gradient
   borders, cursor spotlight, shimmer, marquee.
   Loaded after style.css — overrides + enhances.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Brand stays green-led, with cyan + indigo for the AI feel */
  --accent:        #00C896;
  --accent-2:      #18e0c8;
  --accent-3:      #4f8cff;
  --accent-4:      #8b5cf6;

  --grad-brand: linear-gradient(120deg, #00C896 0%, #18e0c8 38%, #4f8cff 72%, #8b5cf6 100%);
  --grad-soft:  linear-gradient(135deg, rgba(0,200,150,0.16), rgba(79,140,255,0.10));

  --font-display: 'Space Grotesk', 'DM Sans', -apple-system, sans-serif;

  --r:    18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --ring:  rgba(255,255,255,0.08);
  --ring-2:rgba(255,255,255,0.05);
}

/* ── Typography refinement ── */
body {
  background: #050507;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5,
.hero__headline, .section-title, .download__title,
.fcard__title, .how-step__title, .nav__logo-text {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.hero__headline { line-height: 1.02; font-weight: 600; }
.section-title  { font-weight: 600; }

/* Animated, sheen gradient text */
.gradient-text {
  background: var(--grad-brand);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textFlow 9s ease-in-out infinite;
}
@keyframes textFlow {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

::selection { background: rgba(0,200,150,0.28); color: #fff; }

/* Custom scrollbar */
* { scrollbar-width: thin; scrollbar-color: rgba(0,200,150,0.35) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0,200,150,0.45), rgba(79,140,255,0.35));
  border-radius: 999px;
  border: 2px solid #050507;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0,200,150,0.7); }


/* ═══════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  z-index: 500;
  background: var(--grad-brand);
  background-size: 200% 100%;
  box-shadow: 0 0 12px rgba(0,200,150,0.6);
  transition: width 0.1s linear;
}


/* ═══════════════════════════════════════════════════════════
   ATMOSPHERE — aurora mesh + film grain
   ═══════════════════════════════════════════════════════════ */
.bg-orbs { opacity: 1; }
.orb { filter: blur(110px); opacity: 0.32; mix-blend-mode: screen; }
.orb--1 { background: radial-gradient(circle, rgba(0,200,150,0.55) 0%, transparent 70%); }
.orb--2 { background: radial-gradient(circle, rgba(79,140,255,0.42) 0%, transparent 70%); }
.orb--3 { background: radial-gradient(circle, rgba(139,92,246,0.30) 0%, transparent 70%); }

/* Keep fixed overlays out of flow — beats `body > *:not(.bg-orbs)` (0,1,1) */
body > .aurora        { position: fixed; z-index: 0; }
body > .grain         { position: fixed; z-index: 400; }
body > .scroll-progress { position: fixed; z-index: 500; }
body > .nav           { position: fixed; z-index: 200; }   /* restore intended sticky nav */

/* Aurora sweep behind everything */
.aurora {
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 90vh;
  z-index: 0;
  pointer-events: none;
  background:
    conic-gradient(from 180deg at 50% 50%,
      rgba(0,200,150,0.10),
      rgba(79,140,255,0.08),
      rgba(139,92,246,0.07),
      rgba(0,200,150,0.10));
  filter: blur(80px);
  opacity: 0.7;
  animation: auroraSpin 28s linear infinite;
}
@keyframes auroraSpin {
  0%   { transform: rotate(0deg)   scale(1.1); }
  100% { transform: rotate(360deg) scale(1.1); }
}

/* Film grain */
.grain {
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Subtle top vignette so nav text always reads */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 220px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent);
}


/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.nav {
  background: rgba(8,8,14,0.35);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,14,0.7);
  border-bottom-color: var(--ring-2);
  box-shadow: 0 1px 0 rgba(255,255,255,0.03), 0 18px 50px -20px rgba(0,0,0,0.8);
}
.nav__logo-text { font-weight: 600; }
.nav__link { letter-spacing: -0.01em; }


/* ═══════════════════════════════════════════════════════════
   BUTTONS — gradient + shimmer sweep
   ═══════════════════════════════════════════════════════════ */
.btn--primary {
  position: relative;
  background: var(--grad-brand);
  background-size: 200% 200%;
  color: #04130e;
  font-weight: 700;
  overflow: hidden;
  animation: btnFlow 6s ease infinite;
  box-shadow: 0 8px 30px -8px rgba(0,200,150,0.6), inset 0 1px 0 rgba(255,255,255,0.4);
}
@keyframes btnFlow { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}
.btn--primary:hover::after { left: 140%; }
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px -8px rgba(0,200,150,0.7), inset 0 1px 0 rgba(255,255,255,0.5);
}

/* Ghost / secondary button */
.btn--ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--t1, #fff);
  backdrop-filter: blur(12px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0,200,150,0.4);
  transform: translateY(-2px);
}

/* Store buttons — glassy */
.store-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ring);
  position: relative;
  overflow: hidden;
}
.store-btn::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,200,150,0.5), transparent 40%, transparent 60%, rgba(79,140,255,0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}
.store-btn:hover::after { opacity: 1; }
.store-btn:hover { background: rgba(255,255,255,0.07); transform: translateY(-2px); }


/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS / TAGS
   ═══════════════════════════════════════════════════════════ */
.section-tag {
  background: var(--grad-soft);
  border: 1px solid rgba(0,200,150,0.22);
  color: #aef7e3;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero__badge {
  background: var(--grad-soft);
  border: 1px solid rgba(0,200,150,0.22);
  color: #c8fff0;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 8px 30px -12px rgba(0,200,150,0.5);
}

/* Glow line divider helper */
.section-header { position: relative; }


/* ═══════════════════════════════════════════════════════════
   GRADIENT-BORDER GLASS CARDS + CURSOR SPOTLIGHT
   Applies to: fcard, how-step__card, ai-cap, profile-card,
   result-card, contact-card, faq-item, analysis-card
   ═══════════════════════════════════════════════════════════ */
.fcard, .how-step__card, .profile-card, .result-card,
.contact-card, .faq-item, .ai-cap {
  background:
    linear-gradient(180deg, rgba(22,22,32,0.72), rgba(13,13,20,0.72));
  border: 1px solid var(--ring-2);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

/* Gradient ring (1px) on these cards */
.fcard::before, .profile-card::before, .how-step__card::before,
.result-card::before, .contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg,
    rgba(255,255,255,0.14), rgba(255,255,255,0.02) 30%,
    rgba(255,255,255,0.02) 70%, rgba(0,200,150,0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.35s;
  z-index: 1;
}

/* Cursor spotlight glow (driven by --mx/--my from JS) */
.spotlight { position: relative; }
.spotlight::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%),
    rgba(0,200,150,0.16), transparent 60%);
}
.spotlight:hover::after { opacity: 1; }

.fcard { border-radius: 24px; }
.fcard:hover {
  transform: translateY(-6px);
  border-color: rgba(0,200,150,0.30);
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.9),
    0 0 0 1px rgba(0,200,150,0.10),
    0 20px 60px -30px rgba(0,200,150,0.35);
}
.fcard__icon {
  background: var(--grad-soft) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 24px -10px rgba(0,200,150,0.5) !important;
}
.fcard__icon--yellow { box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 24px -10px rgba(255,184,0,0.5) !important; }
.fcard__icon--red    { box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 24px -10px rgba(255,77,77,0.5) !important; }
.fcard__num { font-family: var(--font-display); font-size: 12px; opacity: 0.7; }
.fcard__title { font-weight: 600; }

.profile-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,200,150,0.28);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.9), 0 16px 50px -30px rgba(0,200,150,0.4);
}
.profile-card__icon-wrap {
  background: var(--grad-soft);
  border: 1px solid rgba(0,200,150,0.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.ai-cap {
  border-radius: 16px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.ai-cap:hover {
  transform: translateX(4px);
  border-color: rgba(0,200,150,0.3);
  box-shadow: -6px 0 30px -20px rgba(0,200,150,0.6);
}
.ai-cap__icon { box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); }

.how-step__card:hover {
  border-color: rgba(0,200,150,0.28);
  box-shadow: 0 24px 70px -34px rgba(0,200,150,0.5);
}
.how-step__num {
  background: var(--grad-soft);
  border: 1px solid rgba(0,200,150,0.3);
  font-family: var(--font-display);
  box-shadow: 0 0 24px -6px rgba(0,200,150,0.5);
}
.how-step__icon { box-shadow: inset 0 1px 0 rgba(255,255,255,0.08); }


/* ═══════════════════════════════════════════════════════════
   HERO — analysis card depth
   ═══════════════════════════════════════════════════════════ */
.analysis-card {
  background: linear-gradient(180deg, rgba(14,14,24,0.92), rgba(8,8,16,0.95));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 50px 120px -40px rgba(0,0,0,0.95),
    0 0 90px -30px rgba(0,200,150,0.35);
}
.analysis-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(0,200,150,0.5), transparent 35%, transparent 65%, rgba(79,140,255,0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.float-card {
  background: rgba(14,14,24,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 18px 50px -20px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.08);
}
.analysis-glow { background: radial-gradient(ellipse, rgba(0,200,150,0.4) 0%, rgba(79,140,255,0.18) 40%, transparent 70%); }


/* ═══════════════════════════════════════════════════════════
   COMPAT — infinite marquee
   ═══════════════════════════════════════════════════════════ */
.compat-strip {
  background: rgba(255,255,255,0.012);
  border-top: 1px solid var(--ring-2);
  border-bottom: 1px solid var(--ring-2);
  overflow: hidden;
}
.compat-strip .container {
  flex-direction: column;
  gap: 22px;
}
.compat-strip__label { opacity: 0.7; }
.compat-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.compat-marquee__track {
  display: flex;
  width: max-content;
  gap: 56px;
  animation: marquee 26s linear infinite;
}
.compat-marquee:hover .compat-marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.compat-logo { opacity: 0.5; }
.compat-logo:hover { opacity: 1; }
.compat-logo__icon {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ring-2);
  padding: 6px;
}


/* ═══════════════════════════════════════════════════════════
   DOWNLOAD — premium CTA
   ═══════════════════════════════════════════════════════════ */
.download__card {
  border: 1px solid rgba(0,200,150,0.2);
  background:
    radial-gradient(120% 120% at 50% -10%, rgba(0,200,150,0.16), transparent 55%),
    radial-gradient(100% 100% at 80% 120%, rgba(79,140,255,0.12), transparent 60%),
    linear-gradient(180deg, rgba(12,14,20,0.9), rgba(8,8,14,0.95));
  box-shadow: 0 40px 120px -50px rgba(0,200,150,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}
.download__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,200,150,0.6), transparent 40%, transparent 60%, rgba(79,140,255,0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.download__title { font-weight: 600; }


/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-item { border-radius: 18px; }
.faq-item.open { border-color: rgba(0,200,150,0.3); box-shadow: 0 20px 60px -34px rgba(0,200,150,0.5); }
.faq-item__chevron { background: rgba(255,255,255,0.04); border: 1px solid var(--ring-2); }


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer { background: linear-gradient(180deg, #060609, #030305); }
.footer__brand-name, .footer__col h5 { font-family: var(--font-display); }


/* ═══════════════════════════════════════════════════════════
   REVEAL — refined easing + blur-in
   ═══════════════════════════════════════════════════════════ */
.reveal {
  transform: translateY(26px);
  filter: blur(6px);
  transition:
    opacity 0.8s cubic-bezier(0.16,1,0.3,1),
    transform 0.8s cubic-bezier(0.16,1,0.3,1),
    filter 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { filter: blur(0); }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .aurora { height: 60vh; }
  .compat-marquee__track { gap: 36px; animation-duration: 20s; }
}

@media (prefers-reduced-motion: reduce) {
  .aurora, .orb, .compat-marquee__track,
  .gradient-text, .btn--primary { animation: none !important; }
  .reveal { filter: none; }
}


/* ═══════════════════════════════════════════════════════════
   STORE BUTTON — "coming soon" variant
   ═══════════════════════════════════════════════════════════ */
.store-btn--soon { position: relative; }
/* Inline pill pushed to the right edge — never clipped by the button's overflow:hidden */
.soon-badge {
  margin-left: auto;
  align-self: center;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #04130f;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--grad-brand);
  box-shadow: 0 4px 12px -5px rgba(0,200,150,0.7);
  white-space: nowrap;
  pointer-events: none;
}

/* Colored Google Play logo — keep brand colors instead of currentColor */
.gplay-logo path { stroke: none; }


/* ═══════════════════════════════════════════════════════════
   SHOWCASE — iPhone device mockups
   ═══════════════════════════════════════════════════════════ */
.showcase { position: relative; padding: 130px 0; overflow: hidden; }
.showcase::before {
  content: '';
  position: absolute;
  left: 50%; top: 58%;
  transform: translate(-50%, -50%);
  width: min(920px, 92%);
  height: 540px;
  background: radial-gradient(ellipse at center,
    rgba(0,200,150,0.18) 0%,
    rgba(79,140,255,0.10) 42%,
    transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}
.showcase__grid {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  margin-top: 80px;
  perspective: 1600px;
}
.showcase__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.6s ease;
  will-change: transform;
}
/* fanned / staggered arrangement */
.showcase__item:nth-child(1) { transform: translateY(48px) rotate(-6deg); filter: brightness(0.86); }
.showcase__item:nth-child(2) { transform: translateY(-18px) scale(1.08); z-index: 3; }
.showcase__item:nth-child(3) { transform: translateY(48px) rotate(6deg); filter: brightness(0.86); }
.showcase__item:hover {
  transform: translateY(-14px) rotate(0) scale(1.1);
  filter: brightness(1);
  z-index: 5;
}
.showcase__label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.01em;
}

/* iPhone frame */
.phone {
  position: relative;
  width: 248px;
  aspect-ratio: 9 / 19.5;
  border-radius: 42px;
  padding: 11px;
  background:
    linear-gradient(160deg, #2a2d36, #0c0d12 55%, #1a1c22);
  box-shadow:
    0 50px 120px -40px rgba(0,0,0,0.9),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 1px rgba(255,255,255,0.18),
    inset 0 -2px 4px rgba(0,0,0,0.6);
  animation: phoneFloat 7s ease-in-out infinite;
  will-change: transform;
}
.showcase__item:nth-child(2) .phone { animation-delay: -2.3s; }
.showcase__item:nth-child(3) .phone { animation-delay: -4.6s; }
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
.phone::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(0,200,150,0.5), transparent 35%, transparent 65%, rgba(79,140,255,0.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.phone__notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 24px;
  background: #05060a;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(0,200,150,0.18), transparent 55%),
    linear-gradient(180deg, #0e1016, #06070b);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* moving sheen across the screen */
.phone__screen::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.12) 48%, transparent 62%);
  background-size: 250% 250%;
  animation: phoneSheen 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes phoneSheen {
  0%, 100% { background-position: 130% 0; }
  50%      { background-position: -30% 0; }
}
.phone__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.phone__placeholder {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

@media (prefers-reduced-motion: reduce) {
  .phone, .phone__screen::before { animation: none; }
}

@media (max-width: 900px) {
  .showcase__grid { gap: 24px; }
  .showcase__item:nth-child(1) { transform: translateY(32px) rotate(-5deg); }
  .showcase__item:nth-child(2) { transform: translateY(-12px) scale(1.05); }
  .showcase__item:nth-child(3) { transform: translateY(32px) rotate(5deg); }
  .phone { width: 200px; }
}
@media (max-width: 560px) {
  .showcase { padding: 84px 0; }
  .showcase__grid { flex-direction: column; align-items: center; gap: 48px; margin-top: 56px; }
  .showcase__item:nth-child(1),
  .showcase__item:nth-child(2),
  .showcase__item:nth-child(3) { transform: none; filter: none; }
  .phone { width: 230px; }
}


/* ═══════════════════════════════════════════════════════════
   STANDALONE STORE PAGES — android.html / ios.html
   ═══════════════════════════════════════════════════════════ */
.storepage {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h, 72px) + 56px) 0 96px;
  position: relative;
}
.storepage__inner { max-width: 720px; margin: 0 auto; }
.storepage__icon {
  width: 96px; height: 96px; margin: 0 auto 30px;
  display: grid; place-items: center; border-radius: 26px;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(0,200,150,0.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px -40px rgba(0,200,150,0.6);
}
.storepage__icon svg { width: 50px; height: 50px; }
.storepage__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; margin-bottom: 26px;
  background: rgba(0,200,150,0.08); border: 1px solid rgba(0,200,150,0.25);
  color: var(--accent); border-radius: 999px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase;
}
.storepage__badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #00C896;
  animation: soonPulse 2s infinite;
}
@keyframes soonPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,200,150,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(0,200,150,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,200,150,0); }
}
.storepage__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px); font-weight: 700;
  line-height: 1.04; letter-spacing: -1.5px; margin-bottom: 22px;
}
.storepage__sub {
  font-size: clamp(16px, 2vw, 19px); color: var(--t2);
  line-height: 1.7; max-width: 560px; margin: 0 auto 40px;
}
.storepage__actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px;
}
.store-btn--disabled { cursor: default; opacity: 0.9; }
.store-btn--disabled:hover { transform: none; }
.storepage__note { font-size: 14px; color: var(--t3); margin-bottom: 36px; }
.storepage__note a { color: var(--accent); font-weight: 600; }
.storepage__back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--t2); font-weight: 600; font-size: 15px;
  transition: color 0.2s, transform 0.2s;
}
.storepage__back:hover { color: #fff; transform: translateX(-3px); }
.storepage__back svg { width: 16px; height: 16px; }

/* ─── ANDROID "COMING SOON" BIG TEXT ─── */
.storepage__comingsoon {
  margin: 8px 0 34px;
}
.storepage__comingsoon-text {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 9vw, 110px);
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
}

/* ─── DOWNLOAD PLATFORM CHOICE ─── */
.dlchoose {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 640px;
  margin: 8px auto 40px;
}
.dlcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 28px 32px;
  border-radius: 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.35s, box-shadow 0.35s, background 0.35s;
}
.dlcard:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(0,200,150,0.4);
  box-shadow: 0 28px 70px -30px rgba(0,200,150,0.55);
}
.dlcard__icon {
  width: 76px; height: 76px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 4px;
}
.dlcard__icon svg { width: 42px; height: 42px; }
.dlcard__platform {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.dlcard__name { font-size: 0.95rem; color: var(--t2); margin-top: -6px; }
.dlcard__status {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.dlcard__status--live { color: #04130f; background: var(--grad-brand); }
.dlcard__status--soon {
  color: var(--accent);
  background: rgba(0,200,150,0.1);
  border: 1px solid rgba(0,200,150,0.25);
}
.dlcard__status--soon .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: soonPulse 2s infinite;
}
.dlcard__cta {
  margin-top: auto;
  padding-top: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
}
.dlcard__cta--ghost { color: var(--t2); }
.dlcard:hover .dlcard__cta { color: #fff; }

@media (max-width: 560px) {
  .dlchoose { grid-template-columns: 1fr; max-width: 360px; }
}

/* ─── HERO TRUST MICROCOPY ─── */
.hero__trust {
  margin: 18px 0 0;
  font-size: 0.9rem;
  color: var(--t2);
  letter-spacing: 0.01em;
}

/* ─── STICKY MOBILE CTA ─── */
.mobile-cta {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 190;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #04130f;
  background: var(--grad-brand);
  box-shadow: 0 12px 36px -12px rgba(0,200,150,0.7);
  transform: translateY(140%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta__icon { width: 20px; height: 20px; flex-shrink: 0; }

@media (max-width: 768px) {
  .mobile-cta { display: flex; }
}

/* ─── UNIFIED BACKGROUND (remove section banding) ─── */
.how, .personalized, .faq, .footer {
  background: transparent !important;
}
.footer { border-top: 1px solid rgba(255,255,255,0.06); }
