/* =========================================================
   REVERSE EFFICIENT FRONTIER — Marketing Site
   Aesthetic: Editorial/Financial Times meets dark fintech
   ========================================================= */

:root {
  /* Core palette */
  --bg-deep: #07090F;
  --bg-card: #0F1320;
  --bg-card-2: #131829;
  --bg-elev: #1A2038;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Text */
  --text-1: #F5F4EE;   /* slightly warm white — editorial */
  --text-2: #B8BCC9;
  --text-3: #757A8E;
  --text-faint: #4A4F62;

  /* Accents */
  --accent: #D9F462;    /* signature acid-lime — financial differentiation */
  --accent-2: #6FE7DD;  /* mint cyan */
  --green: #4ADE80;
  --red: #FB7185;
  --blue: #60A5FA;
  --gold: #F5C56B;

  /* Typography */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --container: 1200px;
  --container-narrow: 760px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-1);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-feature-settings: 'ss01', 'cv11';
}

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

/* ============== BACKGROUND ============== */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(217, 244, 98, 0.08), transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(111, 231, 221, 0.06), transparent 60%),
    radial-gradient(ellipse 60% 60% at 50% 90%, rgba(96, 165, 250, 0.05), transparent 60%),
    var(--bg-deep);
  animation: meshDrift 20s ease-in-out infinite alternate;
}

@keyframes meshDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-2%, -1%) scale(1.05); }
}

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

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: rgba(7, 9, 15, 0.7);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 4px;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.nav-brand-tag {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s;
  font-weight: 500;
}

.nav-link:hover { color: var(--text-1); }

.nav-cta {
  background: var(--accent);
  color: #0A0F1C;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(217, 244, 98, 0.25);
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 80px 24px 60px;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  animation: fadeUp 1s cubic-bezier(0.2, 0.6, 0.2, 1) both;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.hero-accent {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.55;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Store badges */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text-1);
  color: #0A0F1C;
  padding: 12px 22px;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 180px;
}

.store-badge.apple { background: #0A0F1C; color: var(--text-1); border: 1px solid var(--border-strong); }
.store-badge.google { background: #0A0F1C; color: var(--text-1); border: 1px solid var(--border-strong); }

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.store-badge svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.store-badge small {
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.store-badge strong {
  font-size: 16px;
  font-weight: 600;
}

/* ============== HERO VISUAL — Phone mockup ============== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  animation: fadeUp 1.2s cubic-bezier(0.2, 0.6, 0.2, 1) 0.2s both;
}

.phone-frame {
  position: relative;
  width: 320px;
  height: 640px;
  background: #0A0F1C;
  border-radius: 44px;
  padding: 12px;
  border: 1px solid var(--border-strong);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 60px 120px -30px rgba(0, 0, 0, 0.8),
    0 30px 60px -15px rgba(217, 244, 98, 0.08);
  z-index: 2;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
}

.phone-screen-real {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.phone-screen-real img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.phone-screen-real img.active {
  opacity: 1;
}

/* Carousel dots */
.phone-dots {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.phone-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.phone-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(217, 244, 98, 0.5);
}

.phone-label {
  position: absolute;
  bottom: -72px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

/* Floating cards beside the phone */
.float-card {
  position: absolute;
  background: rgba(19, 24, 41, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  z-index: 3;
  animation: floatBob 4s ease-in-out infinite;
}

.float-1 {
  top: 14%;
  left: -10px;
  min-width: 180px;
  animation-delay: 0s;
}

.float-2 {
  bottom: 18%;
  right: -10px;
  min-width: 140px;
  animation-delay: 1.5s;
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.float-card-label {
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.float-card-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
}

.float-card-bar {
  margin-top: 8px;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.float-card-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}

.hero-scroll-hint {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(4px); opacity: 1; }
}

/* ============== GENERIC SECTION ============== */
.section {
  padding: 100px 24px;
  position: relative;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

.container.narrow {
  max-width: var(--container-narrow);
}

.section-eyebrow {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 800px;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.section-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 620px;
  margin-bottom: 60px;
  line-height: 1.55;
}

/* ============== HOW IT WORKS ============== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.step {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 244, 98, 0.04), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.step:hover::before { opacity: 1; }

.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ============== FEATURES GRID ============== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card.span-2 {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-2));
}

.feature-card.accent {
  background: linear-gradient(135deg, rgba(217, 244, 98, 0.1), rgba(111, 231, 221, 0.04));
  border-color: rgba(217, 244, 98, 0.25);
}

.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-block;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 244, 98, 0.1);
  border-radius: 12px;
  font-family: var(--font-mono);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

/* ============== PRICING ============== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(217, 244, 98, 0.08), rgba(15, 19, 32, 1) 60%);
  border-color: rgba(217, 244, 98, 0.35);
  transform: scale(1.02);
}

.price-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0A0F1C;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
}

.price-tier {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.price-amount small {
  font-size: 18px;
  color: var(--text-3);
  font-weight: 400;
}

.price-period {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 28px;
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
}

.price-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 22px;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.price-features li strong {
  color: var(--text-1);
}

.price-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}

.price-cta.primary {
  background: var(--accent);
  color: #0A0F1C;
}

.price-cta.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(217, 244, 98, 0.25);
}

.price-cta.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-1);
  border: 1px solid var(--border-strong);
}

.price-cta.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ============== FAQ ============== */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.01em;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 14px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
}

.faq-item em {
  color: var(--text-1);
  font-style: italic;
  font-family: var(--font-display);
}

/* ============== FINAL CTA ============== */
.final-cta {
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(217, 244, 98, 0.04));
  padding: 120px 24px;
}

.final-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.final-title em {
  font-style: italic;
  color: var(--accent);
}

.final-sub {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 40px;
}

.final-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============== FOOTER ============== */
.footer {
  background: #050709;
  border-top: 1px solid var(--border);
  padding: 60px 24px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 5px;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.footer-by {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-3);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text-1); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.6;
  max-width: 800px;
}

.footer-disclaimer strong {
  color: var(--text-3);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-faint);
}

/* ============== STORE POPUP ============== */
.store-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(7, 9, 15, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  animation: popupFade 0.3s ease;
}

.store-popup[hidden] { display: none; }

@keyframes popupFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.store-popup-card {
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 32px 28px 24px;
  width: 100%;
  max-width: 440px;
  text-align: center;
  position: relative;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.6);
  animation: popupSlide 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.store-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-2);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.store-popup-close:hover { background: rgba(255, 255, 255, 0.12); }

.store-popup-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 6px;
  margin: 0 auto 16px;
}

.store-popup-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.store-popup-sub {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 24px;
  line-height: 1.5;
}

.store-popup-cta {
  display: block;
  background: var(--accent);
  color: #0A0F1C;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.store-popup-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(217, 244, 98, 0.25);
}

.store-popup-dismiss {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--text-3);
  font-size: 13px;
  padding: 8px;
  transition: color 0.2s;
}

.store-popup-dismiss:hover { color: var(--text-1); }

/* ============== SHOWCASE ============== */
.showcase {
  padding: 100px 24px;
  position: relative;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.showcase-row:last-child {
  margin-bottom: 0;
}

.showcase-row.reverse .showcase-copy {
  order: 2;
}

.showcase-row.reverse .showcase-shot {
  order: 1;
}

.showcase-step {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.showcase-h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.showcase-h3 em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.showcase-copy > p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 24px;
}

.showcase-points {
  list-style: none;
  padding: 0;
}

.showcase-points li {
  font-size: 15px;
  color: var(--text-2);
  padding: 8px 0 8px 24px;
  position: relative;
}

.showcase-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.showcase-shot {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Decorative glow behind shots */
.showcase-shot::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 60%;
  top: 20%;
  left: 10%;
  background: radial-gradient(ellipse at center, rgba(217, 244, 98, 0.15), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* Smaller phone frame variant for showcase */
.phone-frame.small {
  width: 280px;
  height: 560px;
  position: relative;
  z-index: 1;
}

.phone-frame.small .phone-notch {
  width: 90px;
  height: 24px;
  top: 10px;
}

.phone-frame.small .phone-screen-real {
  border-radius: 28px;
}

.phone-frame.small .phone-screen-real img {
  opacity: 1;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-content { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }

  .steps,
  .feature-grid,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card.span-2 { grid-column: span 2; }

  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }

  .showcase-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .showcase-row.reverse .showcase-copy { order: 1; }
  .showcase-row.reverse .showcase-shot { order: 2; }
  .showcase-copy { text-align: center; }
  .showcase-points {
    display: inline-block;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-inner { padding: 14px 18px; }

  .hero { padding: 50px 18px 40px; }
  .hero-title { font-size: 44px; }
  .hero-sub { font-size: 16px; }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .stat-num { font-size: 26px; }

  .section { padding: 70px 18px; }
  .section-title { font-size: 32px; }
  .section-sub { font-size: 16px; }

  .steps,
  .feature-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.span-2 { grid-column: span 1; }

  .price-card.featured { transform: none; }

  .phone-frame {
    width: 260px;
    height: 530px;
  }
  .phone-frame.small {
    width: 240px;
    height: 480px;
  }

  .showcase-row { margin-bottom: 60px; }
  .showcase-h3 { font-size: 28px; }

  .float-card { display: none; }

  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer { padding: 40px 18px 24px; }

  .final-cta { padding: 80px 18px; }
  .final-title { font-size: 44px; }

  .store-badge { min-width: 0; flex: 1; padding: 10px 16px; }
  .store-badge strong { font-size: 14px; }
}

@media (max-width: 420px) {
  .footer-cols { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .stat { flex: 1; min-width: 90px; }
}

/* ============== REDUCED MOTION ============== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .bg-mesh { animation: none; }
}
