/* ============================================================
   VELOUR — STYLESHEET
   Design: Dark Theme | Crypto / Fintech Aesthetic
   Spec: documents/VELOUR_DESIGN_SPEC.md
   Fonts: Outfit + Inter + JetBrains Mono
   ============================================================ */

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

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Background layers */
  --bg-base:       #0a0a0f;
  --bg-elevated:   #13131a;
  --bg-elevated-2: #1a1a24;
  --bg-elevated-3: #21212e;

  /* Brand accents */
  --primary:        #00d9ff;
  --primary-purple: #8b5cf6;
  --accent-pink:    #ec4899;
  --accent-green:   #10b981;
  --accent-yellow:  #fbbf24;
  --accent-red:     #f43f5e;

  /* Text */
  --text-primary:    #ffffff;
  --text-secondary:  #e5e5e7;
  --text-tertiary:   #d8d8e2;
  --text-quaternary: #b4b4c2;

  /* Borders */
  --border-subtle: rgba(255,255,255,.06);
  --border-medium: rgba(255,255,255,.10);
  --border-strong: rgba(255,255,255,.16);

  /* Glass */
  --glass-bg:     rgba(19,19,26,.70);
  --glass-border: rgba(255,255,255,.08);

  /* Gradients */
  --gradient-brand:  linear-gradient(135deg, #00d9ff 0%, #8b5cf6 100%);
  --gradient-hero:   linear-gradient(135deg, #00d9ff 0%, #8b5cf6 50%, #ec4899 100%);
  --gradient-btn:    linear-gradient(135deg, #00d9ff 0%, #0ea5e9 100%);
  --gradient-card:   linear-gradient(135deg, rgba(0,217,255,.06) 0%, rgba(139,92,246,.06) 100%);

  /* Glows */
  --glow-cyan:   0 0 30px rgba(0,217,255,.25);
  --glow-purple: 0 0 30px rgba(139,92,246,.25);

  /* Fonts */
  --font:      'Outfit', -apple-system, system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.5), 0 4px 12px rgba(0,0,0,.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,.5), 0 16px 40px rgba(0,0,0,.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.7);

  /* Radii */
  --radius-sm: 8px;
  --radius:    10px;
  --radius-lg: 14px;
  --radius-xl: 18px;

  /* ── Legacy colour aliases — keep calculator JS/HTML intact ── */
  --primary-light: rgba(0,217,255,.10);
  --success:       #10b981;
  --success-bg:    rgba(16,185,129,.12);
  --warning:       #fbbf24;
  --warning-bg:    rgba(251,191,36,.12);
  --error:         #f43f5e;
  --error-bg:      rgba(244,63,94,.12);
  --white:         #ffffff;
  --gray-900: var(--bg-base);
  --gray-800: var(--bg-elevated);
  --gray-700: var(--text-tertiary);
  --gray-600: var(--text-quaternary);
  --gray-500: #52525b;
  --gray-400: #3f3f46;
  --gray-300: var(--border-medium);
  --gray-200: var(--border-subtle);
  --gray-100: var(--bg-elevated);
}

/* ── BASE ────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: #08080f;
  background-image:
    radial-gradient(ellipse 110% 55% at 8% 0%,  rgba(0,217,255,.08)  0%, transparent 55%),
    radial-gradient(ellipse 80%  65% at 92% 25%, rgba(139,92,246,.08) 0%, transparent 55%),
    radial-gradient(ellipse 70%  55% at 50% 90%, rgba(236,72,153,.06) 0%, transparent 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* Background overlay — reserved */
body::before { content: none; }
/* All content sits above the grid */
.nav, section, footer, .modal-backdrop { position: relative; z-index: 1; }
a { color: inherit; text-decoration: none; }

/* ── UTILITY ─────────────────────────────────────────────── */
.hidden { display: none !important; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.stagger-item.visible { opacity: 1; transform: translateY(0); }
.stagger-item.visible:nth-child(1) { transition-delay: .10s; }
.stagger-item.visible:nth-child(2) { transition-delay: .20s; }
.stagger-item.visible:nth-child(3) { transition-delay: .30s; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  border-bottom: none;
  transition: background .3s ease, border-color .3s ease;
}
.nav--scrolled {
  background: rgba(8, 8, 13, 0.86);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 3rem;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.logo-link  { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo   { height: 34px; width: auto; display: block; }
.footer-logo { height: 24px; width: auto; display: block; }

.nav-links { display: flex; gap: .125rem; align-items: center; }
.nav-links > a, .nav-dropdown-toggle {
  font-family: var(--font);
  font-size: .9375rem; font-weight: 500; color: #ffffff;
  letter-spacing: -.01em;
  transition: color .15s;
  padding: .5rem .875rem;
  border-radius: 8px;
  display: flex; align-items: center; gap: .35rem;
  background: none; border: none; cursor: pointer;
}
.nav-links > a:hover, .nav-dropdown-toggle:hover,
.nav-dropdown--open > .nav-dropdown-toggle { color: #fff; }

/* Products dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-caret {
  width: 10px; height: 10px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='white' stroke-opacity='.55' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .2s;
}
.nav-dropdown--open .nav-dropdown-caret { transform: rotate(180deg); }

.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px; /* invisible bridge so mouse can travel from toggle to panel */
  min-width: 210px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .15s, transform .15s, visibility .15s;
  /* delay close so mouse can cross the gap */
  transition-delay: 0s;
}
.nav-dropdown--open .nav-dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}
.nav-dropdown-panel-inner {
  background: rgba(8,6,18,.92);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  border-radius: 12px;
  padding: .3rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06);
}

.nav-dd-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: .625rem .875rem;
  border-radius: 8px;
  color: rgba(255,255,255,.78);
  font-family: var(--font); font-size: .875rem; font-weight: 500;
  transition: background .12s, color .12s;
  gap: 1.5rem;
  white-space: nowrap;
}
.nav-dd-item:hover { background: rgba(255,255,255,.07); color: #fff; }

.nav-dd-soon {
  font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(167,139,250,.75);
  white-space: nowrap;
}

.nav-auth { display: flex; gap: .5rem; align-items: center; flex-shrink: 0; }

.nav-login {
  font-family: var(--font);
  font-size: .9375rem; font-weight: 500;
  color: #ffffff;
  padding: .5rem .875rem;
  border-radius: var(--radius-sm);
  transition: color .15s ease;
}
.nav-login:hover { color: #ffffff; }

.nav-signup {
  font-family: var(--font);
  font-size: .875rem; font-weight: 600;
  color: #080810;
  background: rgba(255,255,255,.9);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  letter-spacing: -.01em;
  transition: background .2s ease;
}
.nav-signup:hover { background: #ffffff; }

/* Keep .nav-cta for calculator.html */
.nav-cta {
  font-family: var(--font);
  font-size: .875rem; font-weight: 600;
  color: #080810 !important;
  background: rgba(255,255,255,.9) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: none;
  transition: background .2s ease;
}
.nav-cta:hover { background: #ffffff !important; color: #080810 !important; }
.nav-cta--active { background: #ffffff !important; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 88vh;
  display: flex; flex-direction: column; align-items: stretch;
  background: var(--bg-base);
  margin-top: -64px; /* bleed behind transparent nav */
}

/* Pink center accent orb — third layer of aurora depth */
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  filter: blur(140px);
  background: radial-gradient(circle, rgba(236,72,153,.11) 0%, transparent 70%);
  top: 45%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; z-index: 0;
}

/* Gradient orb blobs — aurora effect */
.blob { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.blob-1 {
  width: 800px; height: 800px; top: -280px; left: -240px;
  background: radial-gradient(circle, rgba(0,217,255,.28) 0%, transparent 65%);
}
.blob-2 {
  width: 700px; height: 700px; bottom: -200px; right: -160px;
  background: radial-gradient(circle, rgba(139,92,246,.28) 0%, transparent 65%);
}

/* ── HERO TEXT ────────────────────────────────────────────── */
.hero-text {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
  padding: 112px 0 3rem;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: .75rem; font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,217,255,.10);
  border: 1px solid rgba(0,217,255,.20);
  padding: 5px 14px; border-radius: 999px; margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font);
  font-size: clamp(2.5rem, 5.5vw, 3.5rem); font-weight: 800;
  line-height: 1.05; letter-spacing: -.03em; margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.hero-headline .grad {
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem; font-weight: 400; color: #ffffff;
  line-height: 1.65; margin-bottom: 2.5rem;
  max-width: 460px; margin-left: auto; margin-right: auto;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.92);
  color: #080810;
  font-family: var(--font); font-size: .9375rem; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius-lg);
  border: none; cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
  letter-spacing: -.01em;
}
.btn-primary:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,0,0,.5);
}
.btn-primary:active { transform: translateY(0); }

/* ── HERO ACTIONS ────────────────────────────────────────── */
.hero-actions {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  justify-content: center;
}

.btn-secondary {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-secondary);
  font-family: var(--font); font-size: .9375rem; font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  letter-spacing: -.01em;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  color: var(--text-primary);
  transform: translateY(-1px);
}

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 6rem 0; border-top: 1px solid var(--border-subtle); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -.02em;
  color: var(--text-primary); margin-bottom: .75rem;
}
.section-header p { font-size: 1.125rem; color: var(--text-secondary); max-width: 520px; margin: 0 auto; }

/* ── FEATURES ────────────────────────────────────────────── */
.features-section { background: transparent; }

/* ── STEPS SLIDER ──────────────────────────────────────────── */

/* Progress bar loader */
.steps-loader {
  position: relative;
  margin: 0 auto 3rem;
  width: 100%;
  max-width: 600px;
}

.steps-loader-track {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  overflow: hidden;
}

.steps-loader-bar {
  height: 100%;
  border-radius: 999px;
  background: var(--primary, #00d9ff);
  animation: stepsLoadingBar 9s linear infinite;
  width: 0%;
}

.steps-loader-checks {
  position: absolute;
  left: 0;
  top: -5px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.steps-loader-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
  opacity: 0;
}

.steps-loader-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  padding: 2px;
  transform: scale(0.75);
  flex-shrink: 0;
}
.steps-loader-check svg { width: 100%; height: 100%; display: block; }

.steps-loader-check--1 { animation: stepsCheck1 9s linear infinite; }
.steps-loader-check--2 { animation: stepsCheck2 9s linear infinite; }
.steps-loader-check--3 { animation: stepsCheck3 9s linear infinite; transform-origin: right; }

@keyframes stepsLoadingBar {
  0%   { width: 0%;   }
  30%  { width: 33%;  }
  60%  { width: 66%;  }
  90%  { width: 100%; }
  100% { width: 100%; }
}

@keyframes stepsCheck1 {
  0%, 28% { transform: scale(0.75); background: rgba(255,255,255,.15); }
  29%, 100% { transform: scale(1);   background: var(--primary, #00d9ff); }
}
@keyframes stepsCheck2 {
  0%, 58% { transform: scale(0.75); background: rgba(255,255,255,.15); }
  59%, 100% { transform: scale(1);   background: var(--primary, #00d9ff); }
}
@keyframes stepsCheck3 {
  0%, 88% { transform: scale(0.75); background: rgba(255,255,255,.15); }
  89%, 100% { transform: scale(1);   background: var(--primary, #00d9ff); transform-origin: right; }
}

/* Sliding content */
.steps-slider-wrap {
  overflow: hidden;
  width: 100%;
}

.steps-slider {
  display: flex;
  width: 400%; /* 3 real + 1 clone */
  transition: transform 0.65s cubic-bezier(0.65, 0, 0.35, 1);
}

.steps-slide {
  width: calc(100% / 4);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  padding: 2rem 0 3rem;
  min-height: 280px;
}

.steps-slide-asset {
  flex-shrink: 0;
  width: 280px;
}
.steps-slide-asset svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 32px rgba(0,217,255,.12));
}

.steps-slide-text {
  flex: 1;
  max-width: 420px;
  text-align: left;
}

.steps-slide-text h4 {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: .875rem;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.steps-slide-text p {
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 400;
  color: var(--text-tertiary);
  line-height: 1.75;
  max-width: 360px;
}

/* stepsSlide driven by JS — no keyframe needed */

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.step {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.step:hover {
  border-color: rgba(255,255,255,.14);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.1);
}

.step-num {
  display: block; font-family: var(--font);
  font-size: .75rem; font-weight: 600; letter-spacing: .06em;
  color: var(--text-quaternary); margin-bottom: 1rem;
}
.step h4 {
  font-family: var(--font); font-size: 1.0625rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: .5rem; position: relative;
}
.step p { font-size: .9375rem; color: var(--text-tertiary); line-height: 1.65; position: relative; }

/* ── COMING SOON — editorial layout ─────────────────────── */
.coming-section { background: var(--bg-base); }

.coming-editorial {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  padding: 1rem 0;
}
.coming-editorial--flip .coming-left { order: 2; }
.coming-editorial--flip .coming-right { order: 1; }

.coming-overline {
  font-family: var(--font);
  font-size: .75rem; font-weight: 600; letter-spacing: .10em; text-transform: uppercase;
  color: var(--text-quaternary);
  margin-bottom: 1.25rem;
}
.coming-overline--purple { color: var(--text-quaternary); }

.coming-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -.025em;
  color: var(--text-primary); margin-bottom: 1.25rem;
}
.grad-purple {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-desc {
  font-family: var(--font-body);
  color: var(--text-tertiary); font-size: 1rem; line-height: 1.75;
  max-width: 400px; margin-bottom: 1.75rem;
}

.coming-launch {
  font-family: var(--font);
  font-size: .875rem; font-weight: 600; letter-spacing: .04em;
  color: var(--text-quaternary);
}

.coming-right { display: flex; flex-direction: column; gap: 1rem; }

.coming-feat {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.025);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .2s ease, border-color .2s ease;
}
.coming-feat:hover { transform: translateX(5px); }
.coming-feat--purple { border-color: rgba(255,255,255,.07); }

.coming-feat-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.coming-feat-body { display: flex; flex-direction: column; gap: 3px; }
.coming-feat-body strong {
  font-family: var(--font); font-size: .9375rem; font-weight: 600;
  color: var(--text-primary); display: block;
}
.coming-feat-body span { font-size: .875rem; color: var(--text-tertiary); }

/* ── FULLY EDITABLE SECTION ──────────────────────────────── */
.editable-section { background: var(--bg-base); }

.editable-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.editable-overline {
  font-family: var(--font);
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-quaternary); margin-bottom: 1.25rem;
}
.editable-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
  color: var(--text-primary); margin-bottom: 1.25rem;
}
.editable-desc {
  font-family: var(--font-body); font-size: 1rem; line-height: 1.75;
  color: #e0e0e0; max-width: 400px; margin-bottom: 2rem;
}
.editable-feats { display: flex; flex-direction: column; gap: .75rem; }
.editable-feat {
  font-family: var(--font); font-size: .9375rem; font-weight: 500;
  color: #e8e8e8;
  display: flex; align-items: center; gap: .75rem;
}
.editable-feat::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}

.editable-visual {
  display: flex; align-items: center; justify-content: center;
}
.editable-svg-wrap {
  width: 100%; max-width: 500px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.editable-svg-wrap svg { width: 100%; height: auto; display: block; }

/* SVG animation overrides */
#svg-cursor {
  overflow: visible;
  transform: translate3d(300px, 0, 0) scale(1);
  transform-origin: center center;
  transform-box: fill-box;
  animation: svg-cursor-anim 5s ease infinite alternate;
}
@keyframes svg-cursor-anim {
  0%   { opacity: 0; transform: translate3d(300px, 0, 0) scale(1); }
  30%  { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  60%  { opacity: 1; transform: translate3d(-200px, -200px, 0) scale(1); }
  65%  { opacity: 1; transform: translate3d(-200px, -200px, 0) scale(0.95); }
  70%  { opacity: 1; transform: translate3d(-200px, -200px, 0) scale(1); }
  100% { opacity: 1; transform: translate3d(-300px, -50px, 0) scale(1); }
}
#svg-box {
  opacity: 0;
  animation: svg-box-anim 5s ease infinite alternate;
}
@keyframes svg-box-anim {
  0%, 60%  { opacity: 0; }
  65%, 100% { opacity: 1; }
}

/* ── CALCULATOR PROMO SECTION ────────────────────────────── */
.calc-promo-section { background: var(--bg-base); }

.calc-promo {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.calc-promo-tag {
  font-family: var(--font);
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 1.25rem;
}

.calc-promo-headline {
  font-family: var(--font);
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
  color: var(--text-primary); margin-bottom: 1.25rem;
}

.calc-promo-desc {
  font-family: var(--font-body);
  font-size: 1rem; line-height: 1.75;
  color: #e0e0e0;
  max-width: 400px; margin-bottom: 2rem;
}

/* Preview card */
.calc-preview-card {
  position: relative; overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 4px 16px rgba(0,0,0,.35);
}

@keyframes card-scan {
  0%   { transform: translateX(-200%); }
  100% { transform: translateX(400%); }
}
.calc-preview-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 30%; height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.035) 50%, transparent 80%);
  animation: card-scan 4s ease-in-out infinite;
  pointer-events: none;
}

.calc-preview-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
}
.calc-preview-label {
  font-family: var(--font);
  font-size: .6875rem; font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
  color: var(--text-quaternary);
}

@keyframes verdict-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.35); }
  50%       { box-shadow: 0 0 0 7px rgba(16,185,129,.0); }
}
.calc-preview-verdict {
  font-family: var(--font);
  font-size: .8125rem; font-weight: 700;
  color: var(--accent-green);
  background: rgba(16,185,129,.12);
  padding: 5px 12px; border-radius: 999px;
  animation: verdict-glow 2.4s ease-in-out infinite;
}

.calc-preview-metrics { display: flex; flex-direction: column; }
.calc-preview-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.calc-preview-row:last-child { border-bottom: none; }

.calc-preview-key {
  font-family: var(--font-body); font-size: .9rem;
  color: #d0d0d0;
}
.calc-preview-val {
  font-family: var(--font);
  font-size: 1.125rem; font-weight: 700;
  color: var(--text-primary);
}
.calc-preview-val--profit {
  font-size: 1.375rem;
  color: var(--accent-green);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  padding: 3rem 0;
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem; text-align: center;
}
.footer-tagline { font-size: .875rem; color: var(--text-quaternary); }

.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: .875rem; font-weight: 500;
  color: var(--text-quaternary);
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--primary); }
.footer-copy { font-size: .75rem; color: #3f3f46; }

/* ── CALCULATOR INPUTS CARD ──────────────────────────────── */
.calculator-section { background: var(--bg-base); }

.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }

.calc-inputs {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}

.calc-results {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}

.panel-title {
  font-family: var(--font);
  font-size: 1.125rem; font-weight: 700; letter-spacing: -.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

/* ── INPUTS ──────────────────────────────────────────────── */
.field { margin-bottom: 1.5rem; }
.field label {
  display: block;
  font-family: var(--font);
  font-size: .875rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: .5rem;
}
.input-wrap {
  display: flex; align-items: center;
  background: var(--bg-elevated-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.input-wrap:focus-within {
  border-color: rgba(255,255,255,.20);
  box-shadow: 0 0 0 3px rgba(255,255,255,.04);
}
.input-prefix {
  padding: 12px 0 12px 16px;
  font-family: var(--font);
  font-size: 1rem; font-weight: 700;
  color: var(--text-tertiary); user-select: none; flex-shrink: 0;
}
.input-wrap input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text-primary);
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  padding: 12px 16px 12px 4px; width: 100%;
}
.input-wrap input::placeholder { color: var(--text-quaternary); }
.input-wrap input::-webkit-outer-spin-button,
.input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.input-wrap input[type=number] { -moz-appearance: textfield; appearance: textfield; }

.field-hint { display: block; font-size: .8125rem; color: var(--text-tertiary); margin-top: 6px; }

.input-error {
  display: flex; align-items: center; gap: .625rem;
  color: #fca5a5; font-size: .875rem; font-weight: 500;
  padding: .5rem 0; margin-top: .5rem;
}
.input-error::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: #f43f5e;
  flex-shrink: 0;
}

/* ── RESULTS ─────────────────────────────────────────────── */
.results-empty {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; padding: 4rem 0;
  color: var(--text-tertiary); text-align: center; font-size: .9375rem;
}

#results-content { animation: fadeIn .25s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.verdict-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 6px 14px; border-radius: 999px;
  font-family: var(--font); font-size: .8125rem; font-weight: 600;
  margin-bottom: 1.75rem; line-height: 1;
}
.verdict-badge.profitable { background: rgba(16,185,129,.12); color: #34d399; }
.verdict-badge.loss       { background: rgba(244,63,94,.10);  color: #fb7185; }
.verdict-badge.breakeven  { background: rgba(251,191,36,.10); color: #fbbf24; }
.verdict-dot {
  width: 6px; height: 6px; border-radius: 50%;
  display: inline-block; flex-shrink: 0;
}
.verdict-badge.profitable .verdict-dot { background: #34d399; }
.verdict-badge.loss       .verdict-dot { background: #fb7185; }
.verdict-badge.breakeven  .verdict-dot { background: #fbbf24; }

.metrics-group { margin-bottom: .5rem; }
.metric {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: .75rem; padding: 9px 0;
}
.metric:last-child { }

.metric-label { font-size: .9375rem; font-weight: 500; color: var(--text-secondary); flex-shrink: 0; }
.metric-value {
  font-family: var(--font);
  font-size: 1.25rem; font-weight: 700; color: var(--text-primary);
  text-align: right;
}
.metric-value.highlight {
  font-size: 1.5rem; font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-value.profit-positive { color: var(--accent-green);  -webkit-text-fill-color: unset; background: none; }
.metric-value.profit-negative { color: var(--accent-red);    -webkit-text-fill-color: unset; background: none; }
.metric-value.profit-zero     { color: var(--accent-yellow); -webkit-text-fill-color: unset; background: none; }

.divider { height: 1.25rem; }

.feedback-list { display: flex; flex-direction: column; gap: .375rem; margin-top: 1.5rem; }
.feedback-item {
  display: flex; align-items: baseline; gap: .625rem;
  font-size: .875rem; font-weight: 400; line-height: 1.6;
  color: var(--text-tertiary);
}
.feedback-item.good { color: var(--text-tertiary); }
.feedback-item.warn { color: var(--text-tertiary); }
.feedback-item.bad  { color: var(--text-tertiary); }
.feedback-icon {
  font-size: .5rem; flex-shrink: 0; margin-top: .35rem;
  width: 5px; height: 5px; border-radius: 50%; display: inline-block;
}
.feedback-item.good .feedback-icon { background: #34d399; font-size: 0; }
.feedback-item.warn .feedback-icon { background: #fbbf24; font-size: 0; }
.feedback-item.bad  .feedback-icon { background: #fb7185; font-size: 0; }

/* ── FLOATING NOTIFICATION CARDS ─────────────────────────── */
.hero-notifs {
  position: absolute;
  right: 5%; top: 42%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex; flex-direction: column; gap: 12px;
  width: 300px;
  pointer-events: none;
}

.notif-card {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(10, 10, 16, 0.62);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 32px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.35);
}

@keyframes notif-enter {
  from { opacity: 0; transform: translateX(32px) scale(.94); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
/* Organic floating — each card has its own gentle path */
@keyframes float-a {
  0%   { transform: translateY(0px)   rotate(0deg)    scale(1); }
  20%  { transform: translateY(-5px)  rotate(.18deg)  scale(1.004); }
  45%  { transform: translateY(-9px)  rotate(-.12deg) scale(1.008); }
  70%  { transform: translateY(-4px)  rotate(.22deg)  scale(1.003); }
  100% { transform: translateY(0px)   rotate(0deg)    scale(1); }
}
@keyframes float-b {
  0%   { transform: translateY(0px)   rotate(0deg)    scale(1); }
  30%  { transform: translateY(-7px)  rotate(-.2deg)  scale(1.006); }
  55%  { transform: translateY(-11px) rotate(.14deg)  scale(1.01); }
  80%  { transform: translateY(-3px)  rotate(-.08deg) scale(1.003); }
  100% { transform: translateY(0px)   rotate(0deg)    scale(1); }
}
@keyframes float-c {
  0%   { transform: translateY(0px)   rotate(0deg)    scale(1); }
  25%  { transform: translateY(-6px)  rotate(.16deg)  scale(1.005); }
  60%  { transform: translateY(-8px)  rotate(-.18deg) scale(1.007); }
  85%  { transform: translateY(-2px)  rotate(.1deg)   scale(1.002); }
  100% { transform: translateY(0px)   rotate(0deg)    scale(1); }
}

.notif-card--1 {
  opacity: 0;
  animation:
    notif-enter .6s   .30s cubic-bezier(.22,.68,0,1.1) forwards,
    float-a     6.2s  .95s ease-in-out infinite;
}
.notif-card--2 {
  opacity: 0;
  animation:
    notif-enter .6s   .70s cubic-bezier(.22,.68,0,1.1) forwards,
    float-b     7.4s 1.35s ease-in-out infinite;
}
.notif-card--3 {
  opacity: 0;
  animation:
    notif-enter .6s  1.10s cubic-bezier(.22,.68,0,1.1) forwards,
    float-c     5.8s 1.75s ease-in-out infinite;
}

.notif-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.notif-card-body { flex: 1; min-width: 0; }
.notif-card-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 4px;
}
.notif-card-app  { font-family: var(--font); font-size: .8125rem; font-weight: 700; color: var(--text-primary); }
.notif-card-time { font-size: .6875rem; color: var(--text-quaternary); }
.notif-card-text { font-size: .8125rem; color: var(--text-tertiary); line-height: 1.45; }

/* ── HERO STORES SHOWCASE ────────────────────────────────── */
.hero-stores-wrap {
  position: relative; z-index: 2;
  padding-bottom: 3rem;
  margin-top: auto;
}

.stores-card {
  position: relative;
  background: rgba(13, 13, 20, 0.88);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 4px 16px rgba(0,0,0,.4);
  overflow: hidden;
}

.stores-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem; position: relative;
}
.stores-card-label { display: flex; align-items: center; gap: 10px; }
.stores-logo { height: 20px; width: auto; display: block; }
.stores-card-tag {
  font-family: var(--font);
  font-size: .6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-quaternary);
}
.stores-card-soon {
  display: inline-block;
  font-family: var(--font);
  font-size: .6875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #d0d0d0;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 5px 12px;
}

.stores-previews {
  display: grid; grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 0.5rem;
  padding: .5rem 0 .25rem;
}

/* 7-card arch — outer cards recede, center card leads */
.stores-previews .theme-mockup:nth-child(1) { transform: translateY(30px) scale(0.80); transform-origin: bottom center; z-index: 1; position: relative; transition: all .45s cubic-bezier(.4,0,.2,1); }
.stores-previews .theme-mockup:nth-child(2) { transform: translateY(18px) scale(0.87); transform-origin: bottom center; z-index: 2; position: relative; transition: all .45s cubic-bezier(.4,0,.2,1); }
.stores-previews .theme-mockup:nth-child(3) { transform: translateY(8px)  scale(0.93); transform-origin: bottom center; z-index: 3; position: relative; transition: all .45s cubic-bezier(.4,0,.2,1); }
.stores-previews .theme-mockup:nth-child(4) { transform: translateY(-8px) scale(1.05); transform-origin: bottom center; z-index: 5; position: relative; transition: all .45s cubic-bezier(.4,0,.2,1); }
.stores-previews .theme-mockup:nth-child(5) { transform: translateY(8px)  scale(0.93); transform-origin: bottom center; z-index: 3; position: relative; transition: all .45s cubic-bezier(.4,0,.2,1); }
.stores-previews .theme-mockup:nth-child(6) { transform: translateY(18px) scale(0.87); transform-origin: bottom center; z-index: 2; position: relative; transition: all .45s cubic-bezier(.4,0,.2,1); }
.stores-previews .theme-mockup:nth-child(7) { transform: translateY(30px) scale(0.80); transform-origin: bottom center; z-index: 1; position: relative; transition: all .45s cubic-bezier(.4,0,.2,1); }

/* Spotlight: hover brings card forward, others recede and blur */
.stores-previews:has(.theme-mockup:hover) .theme-mockup:not(:hover) {
  transform: translateY(32px) scale(0.86) !important;
  opacity: 0.38;
  filter: blur(2px);
}
.stores-previews .theme-mockup:hover {
  transform: scale(1.08) translateY(-10px) !important;
  z-index: 10 !important;
}

/* ── THEME MOCKUP ────────────────────────────────────────── */

/* Colour tokens scoped per variant */
.theme-mockup--dark {
  --tm-bg:          #08080d;
  --tm-chrome-bg:   rgba(255,255,255,.04);
  --tm-chrome-b:    rgba(255,255,255,.07);
  --tm-dot:         rgba(255,255,255,.18);
  --tm-url-bg:      rgba(255,255,255,.05);
  --tm-url-c:       rgba(255,255,255,.28);
  --tm-nav-bg:      rgba(8,8,13,.95);
  --tm-nav-b:       rgba(255,255,255,.06);
  --tm-brand:       rgba(255,255,255,.38);
  --tm-link:        rgba(255,255,255,.16);
  --tm-hero-grad:   rgba(0,217,255,.08);
  --tm-hl:          rgba(255,255,255,.28);
  --tm-body:        rgba(255,255,255,.12);
  --tm-accent:      #00d9ff;
  --tm-accent-glow: rgba(0,217,255,.45);
  --tm-card-bg:     rgba(255,255,255,.04);
  --tm-card-b:      rgba(255,255,255,.06);
  --tm-img:         rgba(255,255,255,.09);
  --tm-name:        rgba(255,255,255,.20);
  --tm-price:       rgba(0,217,255,.65);
  --tm-sect-lbl:    rgba(0,217,255,.50);
  --tm-banner-bg:   rgba(0,217,255,.05);
  --tm-banner-img:  rgba(0,217,255,.18);
  --tm-feat-h:      rgba(255,255,255,.26);
  --tm-feat-p:      rgba(255,255,255,.11);
  --tm-feat-btn:    rgba(0,217,255,.42);
  --tm-strip-bg:    rgba(255,255,255,.025);
  --tm-strip-b:     rgba(255,255,255,.08);
  --tm-strip-val:   rgba(255,255,255,.24);
  --tm-strip-lbl:   rgba(255,255,255,.10);
  --tm-foot-bg:     rgba(0,0,0,.55);
  --tm-foot-c:      rgba(255,255,255,.45);
}
.theme-mockup--light {
  --tm-bg:          #f7f7fc;
  --tm-chrome-bg:   #e5e5ed;
  --tm-chrome-b:    rgba(0,0,0,.09);
  --tm-dot:         #c2c2d0;
  --tm-url-bg:      rgba(0,0,0,.07);
  --tm-url-c:       rgba(0,0,0,.40);
  --tm-nav-bg:      #ffffff;
  --tm-nav-b:       rgba(0,0,0,.08);
  --tm-brand:       rgba(0,0,0,.32);
  --tm-link:        rgba(0,0,0,.16);
  --tm-hero-grad:   rgba(139,92,246,.06);
  --tm-hl:          rgba(0,0,0,.22);
  --tm-body:        rgba(0,0,0,.11);
  --tm-accent:      #8b5cf6;
  --tm-accent-glow: rgba(139,92,246,.45);
  --tm-card-bg:     #ffffff;
  --tm-card-b:      rgba(0,0,0,.07);
  --tm-img:         #e0e0ec;
  --tm-name:        rgba(0,0,0,.18);
  --tm-price:       rgba(139,92,246,.70);
  --tm-sect-lbl:    rgba(139,92,246,.60);
  --tm-banner-bg:   rgba(139,92,246,.05);
  --tm-banner-img:  rgba(139,92,246,.18);
  --tm-feat-h:      rgba(0,0,0,.22);
  --tm-feat-p:      rgba(0,0,0,.10);
  --tm-feat-btn:    rgba(139,92,246,.50);
  --tm-strip-bg:    rgba(0,0,0,.025);
  --tm-strip-b:     rgba(0,0,0,.08);
  --tm-strip-val:   rgba(0,0,0,.20);
  --tm-strip-lbl:   rgba(0,0,0,.10);
  --tm-foot-bg:     #ebebf2;
  --tm-foot-c:      rgba(0,0,0,.38);
}
.theme-mockup--forest {
  --tm-bg:          #0b180c;
  --tm-chrome-bg:   rgba(255,255,255,.03);
  --tm-chrome-b:    rgba(255,255,255,.05);
  --tm-dot:         rgba(255,255,255,.16);
  --tm-url-bg:      rgba(255,255,255,.04);
  --tm-url-c:       rgba(255,255,255,.25);
  --tm-nav-bg:      rgba(11,24,12,.96);
  --tm-nav-b:       rgba(255,255,255,.05);
  --tm-brand:       rgba(255,255,255,.36);
  --tm-link:        rgba(255,255,255,.15);
  --tm-hero-grad:   rgba(16,185,129,.08);
  --tm-hl:          rgba(255,255,255,.26);
  --tm-body:        rgba(255,255,255,.11);
  --tm-accent:      #10b981;
  --tm-accent-glow: rgba(16,185,129,.45);
  --tm-card-bg:     rgba(255,255,255,.03);
  --tm-card-b:      rgba(255,255,255,.05);
  --tm-img:         rgba(16,185,129,.13);
  --tm-name:        rgba(255,255,255,.18);
  --tm-price:       rgba(16,185,129,.70);
  --tm-sect-lbl:    rgba(16,185,129,.55);
  --tm-banner-bg:   rgba(16,185,129,.05);
  --tm-banner-img:  rgba(16,185,129,.18);
  --tm-feat-h:      rgba(255,255,255,.24);
  --tm-feat-p:      rgba(255,255,255,.10);
  --tm-feat-btn:    rgba(16,185,129,.48);
  --tm-strip-bg:    rgba(255,255,255,.02);
  --tm-strip-b:     rgba(255,255,255,.07);
  --tm-strip-val:   rgba(255,255,255,.22);
  --tm-strip-lbl:   rgba(255,255,255,.09);
  --tm-foot-bg:     rgba(0,0,0,.55);
  --tm-foot-c:      rgba(255,255,255,.42);
}
.theme-mockup--rose {
  --tm-bg:          #160b12;
  --tm-chrome-bg:   rgba(255,255,255,.03);
  --tm-chrome-b:    rgba(255,255,255,.06);
  --tm-dot:         rgba(255,255,255,.16);
  --tm-url-bg:      rgba(255,255,255,.04);
  --tm-url-c:       rgba(255,255,255,.25);
  --tm-nav-bg:      rgba(22,11,18,.96);
  --tm-nav-b:       rgba(255,255,255,.05);
  --tm-brand:       rgba(255,255,255,.36);
  --tm-link:        rgba(255,255,255,.15);
  --tm-hero-grad:   rgba(236,72,153,.09);
  --tm-hl:          rgba(255,255,255,.26);
  --tm-body:        rgba(255,255,255,.11);
  --tm-accent:      #ec4899;
  --tm-accent-glow: rgba(236,72,153,.45);
  --tm-card-bg:     rgba(255,255,255,.03);
  --tm-card-b:      rgba(255,255,255,.06);
  --tm-img:         rgba(236,72,153,.13);
  --tm-name:        rgba(255,255,255,.18);
  --tm-price:       rgba(236,72,153,.70);
  --tm-sect-lbl:    rgba(236,72,153,.55);
  --tm-banner-bg:   rgba(236,72,153,.05);
  --tm-banner-img:  rgba(236,72,153,.18);
  --tm-feat-h:      rgba(255,255,255,.24);
  --tm-feat-p:      rgba(255,255,255,.10);
  --tm-feat-btn:    rgba(236,72,153,.45);
  --tm-strip-bg:    rgba(255,255,255,.02);
  --tm-strip-b:     rgba(255,255,255,.07);
  --tm-strip-val:   rgba(255,255,255,.22);
  --tm-strip-lbl:   rgba(255,255,255,.09);
  --tm-foot-bg:     rgba(0,0,0,.55);
  --tm-foot-c:      rgba(255,255,255,.40);
}
.theme-mockup--sand {
  --tm-bg:          #130f06;
  --tm-chrome-bg:   rgba(255,255,255,.03);
  --tm-chrome-b:    rgba(255,255,255,.06);
  --tm-dot:         rgba(255,255,255,.16);
  --tm-url-bg:      rgba(255,255,255,.04);
  --tm-url-c:       rgba(255,255,255,.25);
  --tm-nav-bg:      rgba(19,15,6,.96);
  --tm-nav-b:       rgba(255,255,255,.05);
  --tm-brand:       rgba(255,255,255,.36);
  --tm-link:        rgba(255,255,255,.15);
  --tm-hero-grad:   rgba(245,158,11,.08);
  --tm-hl:          rgba(255,255,255,.26);
  --tm-body:        rgba(255,255,255,.11);
  --tm-accent:      #f59e0b;
  --tm-accent-glow: rgba(245,158,11,.45);
  --tm-card-bg:     rgba(255,255,255,.03);
  --tm-card-b:      rgba(255,255,255,.06);
  --tm-img:         rgba(245,158,11,.12);
  --tm-name:        rgba(255,255,255,.18);
  --tm-price:       rgba(245,158,11,.72);
  --tm-sect-lbl:    rgba(245,158,11,.55);
  --tm-banner-bg:   rgba(245,158,11,.05);
  --tm-banner-img:  rgba(245,158,11,.18);
  --tm-feat-h:      rgba(255,255,255,.24);
  --tm-feat-p:      rgba(255,255,255,.10);
  --tm-feat-btn:    rgba(245,158,11,.45);
  --tm-strip-bg:    rgba(255,255,255,.02);
  --tm-strip-b:     rgba(255,255,255,.07);
  --tm-strip-val:   rgba(255,255,255,.22);
  --tm-strip-lbl:   rgba(255,255,255,.09);
  --tm-foot-bg:     rgba(0,0,0,.55);
  --tm-foot-c:      rgba(255,255,255,.40);
}
.theme-mockup--ocean {
  --tm-bg:          #060e18;
  --tm-chrome-bg:   rgba(255,255,255,.03);
  --tm-chrome-b:    rgba(255,255,255,.06);
  --tm-dot:         rgba(255,255,255,.16);
  --tm-url-bg:      rgba(255,255,255,.04);
  --tm-url-c:       rgba(255,255,255,.25);
  --tm-nav-bg:      rgba(6,14,24,.96);
  --tm-nav-b:       rgba(255,255,255,.05);
  --tm-brand:       rgba(255,255,255,.36);
  --tm-link:        rgba(255,255,255,.15);
  --tm-hero-grad:   rgba(14,165,233,.08);
  --tm-hl:          rgba(255,255,255,.26);
  --tm-body:        rgba(255,255,255,.11);
  --tm-accent:      #0ea5e9;
  --tm-accent-glow: rgba(14,165,233,.45);
  --tm-card-bg:     rgba(255,255,255,.03);
  --tm-card-b:      rgba(255,255,255,.06);
  --tm-img:         rgba(14,165,233,.13);
  --tm-name:        rgba(255,255,255,.18);
  --tm-price:       rgba(14,165,233,.70);
  --tm-sect-lbl:    rgba(14,165,233,.55);
  --tm-banner-bg:   rgba(14,165,233,.05);
  --tm-banner-img:  rgba(14,165,233,.18);
  --tm-feat-h:      rgba(255,255,255,.24);
  --tm-feat-p:      rgba(255,255,255,.10);
  --tm-feat-btn:    rgba(14,165,233,.45);
  --tm-strip-bg:    rgba(255,255,255,.02);
  --tm-strip-b:     rgba(255,255,255,.07);
  --tm-strip-val:   rgba(255,255,255,.22);
  --tm-strip-lbl:   rgba(255,255,255,.09);
  --tm-foot-bg:     rgba(0,0,0,.55);
  --tm-foot-c:      rgba(255,255,255,.40);
}

/* Wrapper */
.theme-mockup {
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  position: relative;
  transition: opacity .45s ease, filter .45s ease, box-shadow .45s ease;
}

/* Featured: animated glow */
.theme-mockup--featured {
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(0,217,255,.42), 0 8px 32px rgba(0,217,255,.18), 0 24px 60px rgba(139,92,246,.12);
}
.theme-mockup--featured::after {
  content: '';
  position: absolute; inset: -3px; border-radius: 14px; z-index: -1;
  background: linear-gradient(135deg, #00d9ff, #8b5cf6, #ec4899);
  filter: blur(14px); opacity: .42;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow { 0%,100% { opacity: .30; } 50% { opacity: .60; } }

/* Browser chrome */
.tm-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 10px; flex-shrink: 0;
  background: var(--tm-chrome-bg);
  border-bottom: 1px solid var(--tm-chrome-b);
}
.tm-dots { display: flex; gap: 3px; }
.tm-dot  { width: 5px; height: 5px; border-radius: 50%; background: var(--tm-dot); }
.tm-url  {
  flex: 1; text-align: center;
  font-family: var(--font-body); font-size: .45rem;
  background: var(--tm-url-bg); color: var(--tm-url-c);
  padding: 2px 8px; border-radius: 999px; margin: 0 6px;
}

/* Viewport — clips to fixed height, page scrolls within */
.tm-viewport { height: 242px; overflow: hidden; }

/* Auto-scrolling page — continuously reveals all sections */
@keyframes page-auto-scroll {
  0%, 12%   { transform: translateY(0); }
  45%, 58%  { transform: translateY(calc(-100% + 242px)); }
  90%, 100% { transform: translateY(0); }
}
.tm-page {
  background: var(--tm-bg);
  animation: page-auto-scroll 20s ease-in-out infinite;
}
/* Stagger phases so all 7 cards show different scroll positions */
.stores-previews .theme-mockup:nth-child(1) .tm-page { animation-delay:   0s; }
.stores-previews .theme-mockup:nth-child(2) .tm-page { animation-delay:  -4s; }
.stores-previews .theme-mockup:nth-child(3) .tm-page { animation-delay:  -8s; }
.stores-previews .theme-mockup:nth-child(4) .tm-page { animation-delay: -12s; }
.stores-previews .theme-mockup:nth-child(5) .tm-page { animation-delay: -16s; }
.stores-previews .theme-mockup:nth-child(6) .tm-page { animation-delay:  -3s; }
.stores-previews .theme-mockup:nth-child(7) .tm-page { animation-delay: -10s; }

/* Nav */
.tm-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 10px;
  background: var(--tm-nav-bg);
  border-bottom: 1px solid var(--tm-nav-b);
}
.tm-nav-brand { display: block; height: 6px; width: 34px; border-radius: 3px; background: var(--tm-brand); }
.tm-nav-links { display: flex; gap: 6px; }
.tm-nav-link  { display: block; width: 20px; height: 4px; border-radius: 2px; background: var(--tm-link); }

/* Hero section */
.tm-hero-sec {
  padding: 18px 14px 16px;
  display: flex; flex-direction: column; gap: 7px;
  background: linear-gradient(180deg, var(--tm-hero-grad) 0%, transparent 100%);
}
.tm-hl        { height: 10px; border-radius: 5px; width: 82%; background: var(--tm-hl); }
.tm-hl--sm    { width: 58%; height: 8px; }
.tm-body-line { height: 5px; border-radius: 3px; width: 68%; background: var(--tm-body); margin-top: 2px; }
.tm-cta {
  height: 20px; width: 68px; border-radius: 7px; margin-top: 5px;
  background: var(--tm-accent);
  box-shadow: 0 2px 10px var(--tm-accent-glow);
}
.tm-cta--sm { height: 15px; width: 52px; }

/* Products section */
.tm-grid-sec { padding: 10px 10px 12px; }
.tm-grid-label { height: 4px; width: 36%; border-radius: 2px; background: var(--tm-sect-lbl); margin-bottom: 10px; }
.tm-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.tm-card {
  border-radius: 7px; overflow: hidden;
  background: var(--tm-card-bg);
  border: 1px solid var(--tm-card-b);
}
.tm-card-img  { aspect-ratio: 1; background: var(--tm-img); }
.tm-card-info { padding: 5px 6px; display: flex; flex-direction: column; gap: 3px; }
.tm-card-name  { height: 4px; border-radius: 2px; width: 78%; background: var(--tm-name); }
.tm-card-price { height: 4px; border-radius: 2px; width: 48%; background: var(--tm-price); }

/* Feature banner */
.tm-banner-sec {
  display: flex; gap: 10px; padding: 12px 10px;
  background: var(--tm-banner-bg);
}
.tm-banner-img { flex-shrink: 0; width: 64px; height: 60px; border-radius: 7px; background: var(--tm-banner-img); }
.tm-banner-text { flex: 1; display: flex; flex-direction: column; gap: 5px; padding: 3px 0; }
.tm-feat-h   { height: 7px; border-radius: 4px; width: 72%; background: var(--tm-feat-h); }
.tm-feat-p   { height: 4px; border-radius: 2px; background: var(--tm-feat-p); }
.tm-feat-p.tm-feat-p--short { width: 78%; }
.tm-feat-btn { height: 14px; width: 50px; border-radius: 5px; margin-top: 2px; background: var(--tm-feat-btn); }

/* Social proof strip (visible on scroll-down) */
.tm-strip-sec {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  background: var(--tm-strip-bg);
  border-top: 1px solid var(--tm-strip-b);
}
.tm-strip-item { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.tm-strip-val  { height: 7px; width: 28px; border-radius: 4px; background: var(--tm-strip-val); }
.tm-strip-lbl  { height: 4px; width: 36px; border-radius: 2px; background: var(--tm-strip-lbl); }
.tm-strip-div  { width: 1px; height: 24px; background: var(--tm-strip-b); }

/* Label at bottom */
.tm-footer {
  padding: 5px 10px;
  font-family: var(--font); font-size: .5625rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--tm-foot-bg);
  color: var(--tm-foot-c);
}
.tm-badge {
  font-size: .5rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,217,255,.18);
  padding: 2px 6px; border-radius: 99px;
}

/* ── CALCULATOR PAGE ─────────────────────────────────────── */
.page-header {
  padding: 3rem 0 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid rgba(0,217,255,.15);
}
.page-title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700;
  letter-spacing: -.02em; color: var(--text-primary); margin-bottom: .75rem;
}
.page-subtitle { font-size: 1.0625rem; color: var(--text-tertiary); max-width: 560px; line-height: 1.65; }

.calculator-page { border-top: none; background: var(--bg-base); }

.formula-note {
  margin-top: 1.5rem; padding: 14px 16px;
  background: var(--bg-elevated-2);
  border: 1px solid rgba(0,217,255,.10);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .75rem; color: var(--text-tertiary); line-height: 2;
}
.formula-title {
  font-family: var(--font);
  font-weight: 600; color: var(--text-secondary); margin-bottom: .25rem;
}

/* ── SECTION BADGE / EYEBROW TEXT — hidden site-wide ─────── */
.section-badge, .section-badge--purple,
.compare-col-tag, .compare-col-tag--bad, .compare-col-tag--good { display: none; }

/* ── STEP ICON (Why Velour checkmarks) ───────────────────── */
.step-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); color: #ffffff;
  font-size: 1.1rem; font-weight: 700; margin-bottom: .75rem;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.1);
}

/* ── THEME CARDS ─────────────────────────────────────────── */
.themes-section { background: transparent; }
.theme-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin: 3rem 0 2rem;
}
.theme-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.theme-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.1);
}
.theme-card-preview {
  position: relative; height: 220px; overflow: hidden;
}
.theme-card-preview--beauty {
  background: linear-gradient(145deg, #1a0533 0%, #3d1254 40%, #6b21a8 70%, #c026d3 100%);
}
.theme-card-preview--fashion {
  background: linear-gradient(145deg, #0c1a2e 0%, #1e3a5f 40%, #2563eb 70%, #60a5fa 100%);
}
.theme-card-preview--supplement {
  background: linear-gradient(145deg, #052e16 0%, #14532d 40%, #16a34a 70%, #4ade80 100%);
}
.theme-card-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-start; justify-content: flex-end;
  padding: 12px;
}
.theme-card-cs {
  font-family: var(--font); font-size: .625rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--primary); color: #080810;
  padding: 4px 10px; border-radius: 99px;
}
.theme-card-body {
  padding: 1rem 1.25rem 1.25rem;
}
.theme-card-name {
  font-family: var(--font); font-size: 1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: .25rem;
}
.theme-card-tag {
  font-size: .8125rem; color: var(--text-tertiary); margin-bottom: .75rem;
}
.theme-card-link {
  font-size: .8125rem; font-weight: 600;
  color: #9090a0;
  pointer-events: none;
}
.themes-feats {
  display: flex; flex-wrap: wrap; gap: .625rem;
  justify-content: center; margin-bottom: 2rem;
}
.themes-feat-item {
  font-size: .8125rem; color: var(--text-tertiary);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 5px 14px; border-radius: 99px;
}
.themes-cta { text-align: center; }

/* ── CUSTOM STORE CARD ───────────────────────────────────── */
.stores-section { background: transparent; }
.custom-store-card {
  max-width: 720px; margin: 3rem auto 0;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  text-align: center;
}
.custom-store-badge {
  display: inline-block;
  font-family: var(--font); font-size: .6875rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-quaternary);
  margin-bottom: 1.5rem;
}
.custom-store-visual {
  margin: 0 auto 1.5rem;
  max-width: 480px;
}
.custom-store-visual svg { width: 100%; height: auto; }
.custom-store-title {
  font-family: var(--font); font-size: 1.375rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 1.25rem;
}
.custom-store-feats {
  display: flex; flex-wrap: wrap; gap: .625rem;
  justify-content: center; margin-bottom: 2rem;
}
.custom-store-feat {
  font-size: .8125rem; font-weight: 600;
  background: linear-gradient(135deg, rgba(139,92,246,.12) 0%, rgba(0,217,255,.07) 100%);
  color: #c4b5fd;
  padding: 6px 16px; border-radius: 99px;
}

/* ── FOOTER (new structure) ──────────────────────────────── */
.footer-top {
  display: grid; grid-template-columns: 220px 1fr; gap: 4rem;
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-tagline {
  font-size: .875rem; color: var(--text-tertiary); margin-top: .75rem; line-height: 1.5;
}
.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.footer-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-col-title {
  font-family: var(--font); font-size: .8125rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: .25rem;
}
.footer-link {
  font-size: .875rem; color: var(--text-tertiary);
  transition: color .15s; display: flex; align-items: center; gap: .5rem;
}
.footer-link:hover { color: var(--text-secondary); }
.footer-soon {
  font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #a0a0b0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 2px 7px; border-radius: 5px;
}
.footer-new {
  font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(167,139,250,.85);
  background: rgba(109,40,217,.14);
  border: 1px solid rgba(139,92,246,.28);
  padding: 2px 7px; border-radius: 5px;
  box-shadow: 0 0 8px rgba(139,92,246,.12);
}
.footer-bottom {
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: center;
}
.footer-copy { font-size: .8125rem; color: var(--text-quaternary); }

/* ── MODALS ──────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.modal-backdrop.modal-open {
  opacity: 1; pointer-events: auto;
}
.modal-card {
  position: relative;
  width: 100%; max-width: 440px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  transform: translateY(16px);
  transition: transform .25s ease;
}
.modal-backdrop.modal-open .modal-card { transform: translateY(0); }
.modal-card--lg { max-width: 560px; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: var(--text-tertiary); border-radius: 8px;
  width: 32px; height: 32px; cursor: pointer;
  font-size: .875rem; display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.modal-close:hover { background: rgba(255,255,255,.12); }
.modal-title {
  font-family: var(--font); font-size: 1.375rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: .5rem;
}
.modal-desc { font-size: .9375rem; color: var(--text-tertiary); margin-bottom: 1.75rem; line-height: 1.55; }
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.modal-form .field { margin-bottom: 0; }
.input-wrap textarea {
  flex: 1; padding: 12px 16px; width: 100%;
  background: transparent; border: none; outline: none;
  color: var(--text-primary);
  font-family: var(--font-body); font-size: 1rem;
  resize: vertical; min-height: 80px; line-height: 1.55;
}
.modal-note { font-size: .75rem; color: var(--text-quaternary); text-align: center; }
.btn-full { width: 100%; justify-content: center; }
.modal-success {
  text-align: center; padding: 2rem 0;
  font-size: 1rem; color: var(--accent-green); font-weight: 600;
}
.input-wrap--select select {
  width: 100%; background: transparent; border: none; outline: none;
  font-family: var(--font-body); font-size: .9375rem; color: var(--text-primary);
  appearance: none; cursor: pointer;
}
.input-wrap--select {
  position: relative;
}
.input-wrap--select::after {
  content: '▾'; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--text-tertiary); pointer-events: none;
}
textarea {
  width: 100%; background: transparent; border: none; outline: none;
  font-family: var(--font-body); font-size: .9375rem; color: var(--text-primary);
  resize: vertical; min-height: 80px; line-height: 1.55;
}

/* ── HERO BADGE ──────────────────────────────────────────── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: .8125rem; font-weight: 500;
  color: #e0e0e0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 6px 14px; border-radius: 99px;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 6px var(--accent-green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

/* ── LOGO BAR ────────────────────────────────────────────── */
.logo-bar {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  background: rgba(255,255,255,.015);
  overflow: hidden;
}
.logo-bar-label {
  text-align: center; margin-bottom: 1.25rem;
  font-family: var(--font); font-size: .75rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-quaternary);
}
.logo-track-wrap {
  position: relative; overflow: hidden;
}
.logo-track-wrap::before,
.logo-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.logo-track-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-base), transparent); }
.logo-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg-base), transparent); }
.logo-track {
  display: flex; align-items: center; gap: 3rem;
  width: max-content;
  animation: logo-scroll 28s linear infinite;
}
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-item {
  height: 24px; width: 80px; flex-shrink: 0;
  opacity: .35; color: var(--text-primary);
  transition: opacity .2s;
}
.logo-item:hover { opacity: .65; }
.logo-item svg { width: 100%; height: 100%; }

/* ── BEFORE / AFTER COMPARE ─────────────────────────────── */
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.compare-col {
  border-radius: var(--radius-xl); padding: 2rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}
.compare-col--after {
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
}
.compare-col-header { margin-bottom: 1.5rem; }
.compare-col-tag {
  display: inline-block; margin-bottom: .75rem;
  font-family: var(--font); font-size: .6875rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px;
}
.compare-col-tag--bad  { color: rgba(255,255,255,.45); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.compare-col-tag--good { color: rgba(255,255,255,.75); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.compare-col-title {
  font-family: var(--font); font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary); line-height: 1.35;
}
/* Abstract store mockups */
.compare-mock {
  border-radius: 10px; overflow: hidden; margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,.06); height: 160px;
}
.compare-mock-bar { height: 22px; background: rgba(255,255,255,.06); display: flex; align-items: center; padding: 0 8px; gap: 5px; }
.compare-mock-bar::before,.compare-mock-bar::after { content:''; width:6px;height:6px;border-radius:50%; }
.compare-mock-bar::before { background: rgba(255,80,80,.4); }
.compare-mock-bar::after  { background: rgba(255,200,0,.3); }
.compare-mock-bar--velour::before { background: rgba(0,217,255,.4); }
.compare-mock-hero { height: 80px; display: flex; flex-direction: column; justify-content: center; padding: 0 12px; gap: 4px; }
.compare-mock-hero--generic { background: rgba(255,255,255,.04); }
.compare-mock-hero--velour  { background: linear-gradient(135deg, rgba(0,217,255,.08) 0%, rgba(139,92,246,.08) 100%); }
.cmp-hl { height: 8px; border-radius: 4px; width: 70%; }
.cmp-hl--sm { width: 50%; }
.cmp-hl--generic { background: rgba(255,255,255,.1); }
.cmp-hl--velour  { background: rgba(0,217,255,.25); }
.cmp-btn { height: 16px; width: 60px; border-radius: 4px; margin-top: 6px; }
.cmp-btn--generic { background: rgba(255,255,255,.12); }
.cmp-btn--velour  { background: rgba(0,217,255,.35); }
.compare-mock-products { display: flex; gap: 6px; padding: 6px 8px; }
.cmp-card { flex: 1; border-radius: 6px; overflow: hidden; }
.cmp-card--generic { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); }
.cmp-card--velour  { background: rgba(0,217,255,.04); border: 1px solid rgba(0,217,255,.1); }
.cmp-card-img { height: 24px; }
.cmp-card-img--velour { background: linear-gradient(135deg, rgba(0,217,255,.15), rgba(139,92,246,.15)); }
.cmp-card-name { height: 5px; margin: 4px 4px 4px; border-radius: 3px; background: rgba(255,255,255,.08); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.compare-list li { display: flex; align-items: flex-start; gap: .625rem; font-size: .9rem; color: var(--text-secondary); }
/* ── GRADIENT CHECKMARK ──────────────────────────────────── */
.v-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: linear-gradient(144deg, #af40ff, #5b42f3 50%, #00ddeb);
  flex-shrink: 0;
  position: relative;
  font-size: 0 !important;
}
.v-check::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.compare-icon { font-weight: 700; font-size: .9rem; flex-shrink: 0; }
.compare-icon--x     { color: rgba(255,80,80,.85); }
.compare-icon--check { font-size: 0; color: transparent; }


/* ====================================================
   CALCULATOR BANNER — CB2
   ==================================================== */
.cb2-section {
  padding: 3.5rem 0;
}

/* Outer dark-purple card */
.cb2-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(140deg, #160b2e 0%, #1d1040 50%, #0f0820 100%);
  box-shadow:
    0 0 0 1px rgba(139,92,246,.2),
    0 48px 96px rgba(0,0,0,.55),
    inset 0 0 80px rgba(139,92,246,.05);
}

/* Ambient glows inside the card */
.cb2-glow-a {
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.35) 0%, transparent 60%);
  pointer-events: none;
}
.cb2-glow-b {
  position: absolute;
  bottom: -100px; left: 20%;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,217,255,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cb2-glow-c {
  position: absolute;
  top: 40%; left: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167,139,250,.18) 0%, transparent 65%);
  pointer-events: none;
}

/* Inner layout */
.cb2-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 3rem 3.5rem;
  position: relative;
  z-index: 1;
}

/* Left: copy */
.cb2-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.cb2-badge {
  display: inline-flex;
  align-items: center;
  padding: .25rem .75rem;
  background: linear-gradient(135deg, #00d9ff, #8b5cf6);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: #fff;
  text-transform: uppercase;
}

.cb2-headline {
  font-family: var(--font);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1.12;
  margin: 0;
}

.cb2-grad {
  background: linear-gradient(120deg, #00d9ff 15%, #a78bfa 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cb2-sub {
  font-size: .9375rem;
  color: #fff;
  line-height: 1.6;
  max-width: 340px;
  margin: 0;
}

.cb2-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.625rem;
  background: #fff;
  border-radius: 999px;
  color: #08080f;
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}
.cb2-cta:hover {
  box-shadow: 0 0 40px rgba(255,255,255,.22);
  transform: translateY(-1px);
}

/* Right: asset panel */
.cb2-asset {
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 16px 48px rgba(0,0,0,.35);
  padding: 1.5rem;
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

/* Profit hero */
.cb2-profit-wrap {
  position: relative;
  text-align: center;
  padding: .75rem 0 .25rem;
}
.cb2-profit-label {
  font-size: .7rem;
  color: #c8c8c8;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 .25rem;
}
.cb2-profit-val {
  font-family: var(--font);
  font-size: 2.375rem;
  font-weight: 800;
  color: #34d399;
  letter-spacing: -.04em;
  line-height: 1;
  margin: 0;
}

/* ROAS progress bar */
.cb2-roas-row {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.cb2-roas-track {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,.08);
  border-radius: 3px;
  overflow: hidden;
}
.cb2-roas-fill {
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, #00d9ff, #34d399);
  border-radius: 3px;
  animation: cb2-fill-in 1.4s cubic-bezier(.4,0,.2,1) both;
  animation-delay: .4s;
}
@keyframes cb2-fill-in {
  from { width: 0; opacity: 0; }
  to   { width: 68%; opacity: 1; }
}
.cb2-roas-label {
  font-size: .75rem;
  font-weight: 700;
  color: #34d399;
  white-space: nowrap;
  font-family: var(--font);
}

/* Metric tiles */
.cb2-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}
.cb2-tile {
  background: rgba(255,255,255,.055);
  border-radius: 10px;
  padding: .625rem .5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
.cb2-tile-val {
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.cb2-tile-key {
  font-size: .6875rem;
  color: #b8b8b8;
  font-weight: 500;
}

/* Pulsing live status */
.cb2-live {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: #c8c8c8;
  font-weight: 600;
}
.cb2-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52,211,153,.6);
  flex-shrink: 0;
  animation: cb2-pulse 2s ease-in-out infinite;
}
@keyframes cb2-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(52,211,153,.55); }
  50%       { box-shadow: 0 0 18px rgba(52,211,153,.9), 0 0 28px rgba(52,211,153,.25); }
}

@media (max-width: 760px) {
  .cb2-inner  { flex-direction: column; padding: 2rem 1.5rem; }
  .cb2-asset  { width: 100%; }
}

/* ── FEATURES SHOWCASE ───────────────────────────────────── */
.feat-showcase-section { padding-bottom: 0; }
.feat-showcase-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; padding: 5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.feat-showcase-row:last-child { border-bottom: none; }
.feat-showcase-row--flip .feat-showcase-visual { order: 2; }
.feat-showcase-row--flip .feat-showcase-text { order: 1; }
.feat-showcase-num {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-family: var(--font); font-size: .6875rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}
.feat-showcase-num::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: linear-gradient(90deg, #a78bfa, #67e8f9);
  border-radius: 1px;
  flex-shrink: 0;
}
.feat-showcase-text h3 {
  font-family: var(--font); font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 800; letter-spacing: -.02em; color: var(--text-primary);
  margin-bottom: 1rem; line-height: 1.25;
}
.feat-showcase-text p {
  font-size: 1rem; color: var(--text-tertiary); line-height: 1.75; margin-bottom: 1.5rem;
}
.feat-bullets {
  list-style: none; display: flex; flex-direction: column; gap: .5rem;
}
.feat-bullets li {
  font-size: .9375rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: .625rem;
}
.feat-bullets li::before {
  content: '→'; color: var(--primary); font-weight: 700; flex-shrink: 0;
}
/* Feature visuals */
.feat-visual {
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  padding: 2rem; height: 280px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.feat-visual--blocks { gap: 8px; flex-wrap: wrap; align-content: center; padding: 1.5rem; }
.fv-block { border-radius: 8px; }
.fv-block--a { width: 100%; height: 36px; background: linear-gradient(90deg, rgba(0,217,255,.25), rgba(0,217,255,.08)); }
.fv-block--b { width: 48%; height: 60px; background: rgba(139,92,246,.15); border: 1px solid rgba(139,92,246,.2); }
.fv-block--c { width: 48%; height: 60px; background: rgba(0,217,255,.08); border: 1px solid rgba(0,217,255,.15); }
.fv-block--d { width: 32%; height: 44px; background: rgba(255,255,255,.06); }
.fv-block--e { width: 32%; height: 44px; background: rgba(255,255,255,.04); }
.fv-block--f { width: 32%; height: 44px; background: rgba(255,255,255,.04); }

.feat-visual--cart { flex-direction: column; gap: .75rem; padding: 1.5rem; align-items: stretch; }
.fv-cart-bar { height: 8px; background: rgba(255,255,255,.07); border-radius: 4px; overflow: hidden; }
.fv-cart-fill { height: 100%; width: 68%; background: linear-gradient(90deg, var(--primary), rgba(0,217,255,.4)); border-radius: 4px; }
.fv-cart-items { display: flex; flex-direction: column; gap: .5rem; }
.fv-cart-item { display: flex; gap: .75rem; align-items: center; }
.fv-cart-img { width: 40px; height: 40px; border-radius: 6px; background: rgba(255,255,255,.07); flex-shrink: 0; }
.fv-cart-info { flex: 1; }
.fv-ci-name { height: 7px; border-radius: 4px; background: rgba(255,255,255,.12); margin-bottom: 5px; width: 70%; }
.fv-ci-price { height: 7px; border-radius: 4px; background: rgba(0,217,255,.2); width: 40%; }
.fv-cart-upsell { height: 36px; border-radius: 8px; background: rgba(139,92,246,.15); border: 1px solid rgba(139,92,246,.2); }
.fv-cart-cta { height: 36px; border-radius: 8px; background: rgba(255,255,255,.88); }

.feat-visual--lander { flex-direction: column; align-items: stretch; gap: 1rem; padding: 1.5rem; }
.fv-lander-hero { height: 80px; border-radius: 8px; background: linear-gradient(135deg, rgba(0,217,255,.15) 0%, rgba(139,92,246,.15) 100%); }
.fv-lander-bullets { display: flex; flex-direction: column; gap: .5rem; }
.fv-bullet { height: 8px; border-radius: 4px; background: rgba(255,255,255,.08); }
.fv-bullet:nth-child(1) { width: 85%; }
.fv-bullet:nth-child(2) { width: 70%; }
.fv-bullet:nth-child(3) { width: 60%; }
.fv-lander-cta { height: 32px; border-radius: 8px; width: 120px; background: rgba(0,217,255,.3); }

.feat-visual--palette { flex-direction: column; align-items: center; gap: 1rem; }
.fv-swatches { display: flex; gap: .75rem; }
.fv-swatch { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,.15); }
.fv-swatch--1 { background: linear-gradient(135deg, #00d9ff, #7c3aed); }
.fv-swatch--2 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.fv-swatch--3 { background: linear-gradient(135deg, #10b981, #3b82f6); }
.fv-swatch--4 { background: linear-gradient(135deg, #f8fafc, #94a3b8); }
.fv-palette-preview { width: 100%; height: 100px; border-radius: 12px; background: linear-gradient(135deg, rgba(0,217,255,.12) 0%, rgba(139,92,246,.12) 100%); border: 1px solid rgba(0,217,255,.15); }

/* ── STATS ───────────────────────────────────────────────── */
.stats-section {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-xl); overflow: hidden;
  backdrop-filter: blur(20px);
}
.stat-card {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .5rem; padding: 3rem 1.5rem;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background .25s, box-shadow .25s;
}
.stat-card:hover {
  background: rgba(255,255,255,.03);
}
.stat-num {
  font-family: var(--font); font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -.03em; line-height: 1;
}
.stat-label {
  font-family: var(--font); font-size: .875rem; font-weight: 500;
  color: var(--text-tertiary); text-align: center;
}

/* ── COMPARISON TABLE ────────────────────────────────────── */
.compare-table-scroll { overflow-x: auto; }
.compare-table-wrap {
  border-radius: 22px;
  background: linear-gradient(155deg, #110f22 0%, #0c0a1a 55%, #08060f 100%);
  box-shadow:
    0 0 0 1px rgba(139,92,246,.2),
    0 48px 96px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
}
/* Top edge gradient line */
.compare-table-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 10%;
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,.6), rgba(0,217,255,.4), transparent);
  pointer-events: none;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}
.compare-table th, .compare-table td {
  padding: 1.125rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.045);
  font-family: var(--font-body); font-size: .9375rem;
  color: #e4e4e4;
}
.compare-table thead th {
  font-family: var(--font); font-size: .875rem; font-weight: 700;
  color: #ffffff;
  padding: 1.625rem 1.5rem 1.375rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: transparent; }
.ct-feature {
  text-align: left !important;
  color: #e0e0e0 !important;
  font-weight: 500;
}
/* Velour column — gradient highlight */
.ct-velour {
  background: linear-gradient(180deg, rgba(139,92,246,.1) 0%, rgba(0,217,255,.05) 100%) !important;
  border-left: 1px solid rgba(139,92,246,.25) !important;
  border-right: 1px solid rgba(139,92,246,.25) !important;
}
thead .ct-velour { border-top: 1px solid rgba(139,92,246,.3) !important; }
tbody tr:last-child .ct-velour { border-bottom: 1px solid rgba(139,92,246,.25) !important; }
/* Velour column header text gradient */
thead .ct-velour {
  background: linear-gradient(135deg, #a78bfa, #67e8f9) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: .9375rem !important;
  font-weight: 800 !important;
  -webkit-text-fill-color: transparent;
}
.ct-best {
  display: inline-block; margin-left: .375rem;
  font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: linear-gradient(135deg, #a78bfa, #67e8f9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  padding: 2px 0; vertical-align: middle;
}
.ct-check {
  background: linear-gradient(135deg, #a78bfa, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.ct-x { color: #9898b2; font-weight: 400; }

/* ── EXAMPLE STORES GALLERY ──────────────────────────────── */
.store-filters {
  display: flex; gap: .5rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 2.5rem;
}
.store-filter {
  font-family: var(--font); font-size: .875rem; font-weight: 500;
  color: var(--text-tertiary);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 7px 18px; border-radius: 99px; cursor: pointer;
  transition: all .15s;
}
.store-filter:hover { border-color: rgba(255,255,255,.18); color: var(--text-secondary); }
.store-filter.active {
  background: rgba(0,217,255,.12); border-color: rgba(0,217,255,.3);
  color: var(--primary);
}
.stores-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.store-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.store-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 20px 50px rgba(0,0,0,.45), 0 0 24px rgba(255,255,255,.04);
}
.store-card.hidden-card { opacity: 0; pointer-events: none; display: none; }
/* iPhone-style phone frame */
.store-phone {
  padding: 1rem; background: rgba(255,255,255,.02);
}
.store-phone-screen {
  border-radius: 16px; overflow: hidden; aspect-ratio: 9/16;
  display: flex; flex-direction: column;
}
.sp-nav { height: 18px; background: rgba(255,255,255,.08); flex-shrink: 0; }
.sp-hero { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: .75rem; gap: 4px; }
.sp-hl { height: 8px; border-radius: 4px; width: 75%; }
.sp-hl--sm { width: 55%; }
.sp-cta { height: 16px; width: 80px; border-radius: 4px; margin-top: 4px; }
.sp-products { display: flex; gap: 6px; padding: .5rem; }
.sp-card { flex: 1; aspect-ratio: 1; border-radius: 6px; background: rgba(255,255,255,.05); }
/* Screen themes */
.store-screen--beauty     { background: linear-gradient(180deg, #1a0533 0%, #3d1254 60%, #0d0011 100%); }
.store-screen--supplements{ background: linear-gradient(180deg, #0f172a 0%, #1e3a5f 60%, #0a0a18 100%); }
.store-screen--fashion    { background: linear-gradient(180deg, #0c0c0c 0%, #1a1a2e 60%, #080810 100%); }
.store-screen--lifestyle  { background: linear-gradient(180deg, #0a1a0a 0%, #14532d 60%, #020c04 100%); }
.store-screen--fitness    { background: linear-gradient(180deg, #0d0f1a 0%, #1a1f3d 60%, #07080e 100%); }
.store-screen--skincare   { background: linear-gradient(180deg, #1c0a0a 0%, #4a1010 60%, #0c0000 100%); }
.store-screen--streetwear { background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 60%, #000000 100%); }
.store-screen--food       { background: linear-gradient(180deg, #0f0a00 0%, #3d2c00 60%, #0a0800 100%); }
/* Hero screen colors per theme */
.sp-hero--beauty     { background: rgba(139,92,246,.15); }
.sp-hero--supplements{ background: rgba(59,130,246,.15); }
.sp-hero--fashion    { background: rgba(255,255,255,.04); }
.sp-hero--lifestyle  { background: rgba(16,185,129,.12); }
.sp-hero--fitness    { background: rgba(99,102,241,.15); }
.sp-hero--skincare   { background: rgba(239,68,68,.12); }
.sp-hero--streetwear { background: rgba(255,255,255,.04); }
.sp-hero--food       { background: rgba(245,158,11,.12); }
.sp-hl { background: rgba(255,255,255,.25); }
.sp-cta { background: rgba(255,255,255,.4); }
.store-card-body { padding: 1rem 1.25rem 1.25rem; }
.store-cat-badge {
  font-family: var(--font); font-size: .625rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(0,217,255,.12); color: var(--primary);
  border: 1px solid rgba(0,217,255,.2);
  padding: 3px 10px; border-radius: 99px;
}
.store-cat-badge--supps    { background: rgba(59,130,246,.12); color: #60a5fa; border-color: rgba(59,130,246,.2); }
.store-cat-badge--fashion  { background: rgba(255,255,255,.07); color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.12); }
.store-cat-badge--lifestyle{ background: rgba(16,185,129,.12); color: #34d399; border-color: rgba(16,185,129,.2); }
.store-card-name {
  font-family: var(--font); font-size: 1rem; font-weight: 700;
  color: var(--text-primary); margin: .5rem 0 .5rem;
}
.store-card-demo {
  font-size: .8125rem; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: .25rem;
  transition: gap .15s;
}
.store-card-demo:hover { gap: .5rem; }
.store-card-demo::after { content: '→'; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 1rem;
}
.testimonial-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 16px 40px rgba(0,0,0,.35), 0 0 20px rgba(255,255,255,.03);
}
.testi-quote {
  font-size: .9375rem; line-height: 1.7; color: var(--text-secondary);
  font-style: italic; flex: 1;
}
.testi-author { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
}
.testi-avatar--1 { background: linear-gradient(135deg, #a78bfa, #ec4899); }
.testi-avatar--2 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.testi-avatar--3 { background: linear-gradient(135deg, #00d9ff, #6366f1); }
.testi-avatar--4 { background: linear-gradient(135deg, #10b981, #3b82f6); }
.testi-avatar--5 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.testi-avatar--6 { background: linear-gradient(135deg, #84cc16, #0ea5e9); }
.testi-name { font-family: var(--font); font-size: .875rem; font-weight: 700; color: var(--text-primary); }
.testi-role { font-size: .75rem; color: var(--text-quaternary); }
.testi-badge {
  margin-left: auto; font-size: .625rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(0,217,255,.1); color: var(--primary);
  border: 1px solid rgba(0,217,255,.15);
  padding: 3px 8px; border-radius: 99px;
}
.testi-badge--fashion  { background: rgba(255,255,255,.06); color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.1); }
.testi-badge--supps    { background: rgba(59,130,246,.1); color: #60a5fa; border-color: rgba(59,130,246,.15); }
.testi-badge--lifestyle{ background: rgba(16,185,129,.1); color: #34d399; border-color: rgba(16,185,129,.15); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgba(255,255,255,.06); border-radius: var(--radius-xl);
  overflow: hidden; border: 1px solid rgba(255,255,255,.07);
}
.faq-item {
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.375rem 1.5rem;
  font-family: var(--font); font-size: .9375rem; font-weight: 600;
  color: var(--text-primary); transition: color .15s;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  background: rgba(255,255,255,.06); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 400; color: var(--text-tertiary);
  transition: transform .2s, background .15s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg); background: rgba(0,217,255,.12); color: var(--primary);
}
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-answer p {
  padding: 0 1.5rem 1.375rem;
  font-size: .9rem; color: var(--text-tertiary); line-height: 1.75;
}

/* ── FINAL CTA ───────────────────────────────────────────── */
.final-cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #1a0a38 0%, #200f4a 40%, #130930 70%, #0a0618 100%);
  padding: 8rem 0;
}
/* Ambient corner glows */
.final-cta-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
.final-cta-glow--tl {
  width: 680px; height: 680px;
  top: -280px; left: -200px;
  background: radial-gradient(circle, rgba(139,92,246,.22) 0%, transparent 60%);
}
.final-cta-glow--tr {
  width: 500px; height: 500px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(91,42,243,.18) 0%, transparent 60%);
}
.final-cta-glow--br {
  width: 560px; height: 560px;
  bottom: -240px; right: -160px;
  background: radial-gradient(circle, rgba(0,217,255,.14) 0%, transparent 60%);
}
.final-cta-glow--bl {
  width: 400px; height: 400px;
  bottom: -160px; left: -100px;
  background: radial-gradient(circle, rgba(167,139,250,.1) 0%, transparent 60%);
}
/* Floating orbs — purely decorative */
.final-cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.final-cta-orb--a {
  width: 180px; height: 180px;
  top: 18%; right: 12%;
  background: radial-gradient(circle at 40% 35%, rgba(139,92,246,.35) 0%, rgba(91,42,243,.15) 45%, transparent 70%);
  filter: blur(2px);
  animation: orb-float 8s ease-in-out infinite;
}
.final-cta-orb--b {
  width: 120px; height: 120px;
  bottom: 22%; left: 10%;
  background: radial-gradient(circle at 55% 45%, rgba(0,217,255,.28) 0%, rgba(0,180,220,.1) 50%, transparent 70%);
  filter: blur(1px);
  animation: orb-float 10s ease-in-out infinite reverse;
}
.final-cta-orb--c {
  width: 80px; height: 80px;
  top: 30%; left: 18%;
  background: radial-gradient(circle, rgba(167,139,250,.3) 0%, transparent 65%);
  filter: blur(1px);
  animation: orb-float 12s ease-in-out infinite 3s;
}
@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-18px) scale(1.06); }
}
/* Scattered star-dots */
.final-cta-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.final-cta-stars::before,
.final-cta-stars::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: #fff;
}
.final-cta-stars::before {
  width: 2px; height: 2px;
  top: 22%; left: 28%;
  opacity: .45;
  box-shadow:
    80px -30px 0 1px rgba(255,255,255,.3),
    -50px 60px 0 0px rgba(255,255,255,.2),
    160px 40px 0 1px rgba(255,255,255,.25),
    230px -10px 0 0px rgba(255,255,255,.3),
    -120px -50px 0 1px rgba(200,180,255,.4),
    300px 80px 0 0px rgba(255,255,255,.2),
    -200px 100px 0 1px rgba(255,255,255,.15),
    120px 120px 0 0px rgba(200,230,255,.3),
    400px -60px 0 1px rgba(255,255,255,.2),
    -300px -80px 0 0px rgba(255,255,255,.25);
}
.final-cta-stars::after {
  width: 2px; height: 2px;
  bottom: 30%; right: 22%;
  opacity: .35;
  box-shadow:
    -60px -40px 0 1px rgba(255,255,255,.3),
    100px 30px 0 0px rgba(255,255,255,.2),
    -150px 50px 0 1px rgba(200,180,255,.35),
    200px -70px 0 0px rgba(255,255,255,.25),
    -80px 90px 0 1px rgba(255,255,255,.2),
    280px 60px 0 0px rgba(255,255,255,.15),
    -220px -30px 0 1px rgba(200,230,255,.3),
    50px 110px 0 0px rgba(255,255,255,.2);
}
.final-cta { position: relative; z-index: 1; text-align: center; max-width: 660px; margin: 0 auto; }
.final-cta-title {
  font-family: var(--font); font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900; letter-spacing: -.03em; color: #ffffff;
  margin-bottom: 1.125rem; line-height: 1.06;
}
.final-cta-desc {
  font-size: 1.0625rem; color: #e8e8e8; line-height: 1.75;
  margin-bottom: 2.25rem; max-width: 520px; margin-left: auto; margin-right: auto;
}
.final-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER UPDATES ──────────────────────────────────────── */
.footer-socials { display: flex; gap: .625rem; margin-top: 1rem; }
.footer-social {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-tertiary); transition: all .15s;
}
.footer-social:hover { background: rgba(255,255,255,.1); color: var(--text-secondary); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  padding: 1.5rem 0;
}
.footer-made { font-size: .8125rem; color: var(--text-quaternary); }

/* ── ANIMATED SOCIAL ICON BUTTONS ────────────────────────── */
.footer-social-list {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  gap: 0;
}

.footer-social-list .soc-icon {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  z-index: 0;
  border-radius: 50%;
  margin-right: 8px;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  color: var(--text-tertiary);
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-social-list .soc-icon::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: transparent;
  z-index: -1;
  border-radius: 50%;
  top: 100%;
}

.footer-social-list .soc-icon:hover::after {
  animation: soc-bg-pos 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1 both;
}

.footer-social-list .soc-icon:hover {
  color: #fff;
  overflow: unset;
  border-color: transparent;
  transition: color 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: soc-overflow-toggle 0.7s;
}

.footer-social-list .soc-tooltip {
  position: absolute;
  top: 0;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  background: rgba(20,20,28,.95);
  color: #fff;
  padding: 4px 8px;
  border-radius: 5px;
  box-shadow: 0 6px 16px rgba(0,0,0,.4);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: all 0.3s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-social-list .soc-tooltip::before {
  position: absolute;
  content: "";
  height: 7px;
  width: 7px;
  background: rgba(20,20,28,.95);
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-social-list .soc-icon:hover .soc-tooltip {
  top: -38px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.footer-social-list .soc-facebook::after  { background-color: #1877f2; }
.footer-social-list .soc-twitter::after   { background-color: #000000; }
.footer-social-list .soc-instagram::after { background-color: #e4405f; }
.footer-social-list .soc-discord::after   { background-color: #5865f2; }
.footer-social-list .soc-whop::after      { background-color: #fa4616; }

.footer-social-list .soc-facebook:hover .soc-tooltip,
.footer-social-list .soc-facebook:hover .soc-tooltip::before  { background: #1877f2; }

.footer-social-list .soc-twitter:hover .soc-tooltip,
.footer-social-list .soc-twitter:hover .soc-tooltip::before   { background: #000000; }

.footer-social-list .soc-instagram:hover .soc-tooltip,
.footer-social-list .soc-instagram:hover .soc-tooltip::before { background: #e4405f; }

.footer-social-list .soc-discord:hover .soc-tooltip,
.footer-social-list .soc-discord:hover .soc-tooltip::before   { background: #5865f2; }

.footer-social-list .soc-whop:hover .soc-tooltip,
.footer-social-list .soc-whop:hover .soc-tooltip::before      { background: #fa4616; }

@keyframes soc-bg-pos {
  0%   { top: 100%; }
  100% { top: 0; }
}

@keyframes soc-overflow-toggle {
  0%   { overflow: hidden; }
  100% { overflow: visible; }
}
.footer-cols { grid-template-columns: repeat(3, 1fr); }

/* ── TRUSTPILOT BADGE ────────────────────────────────────── */
.hero-trust {
  display: inline-flex; align-items: center; gap: .625rem;
  margin-bottom: 2rem;
}
.hero-trust-stars { display: flex; gap: 3px; }
.hero-trust-star {
  width: 20px; height: 20px; border-radius: 3px;
  background: #00b67a;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff; font-weight: 900;
}
.hero-trust-score {
  font-family: var(--font); font-size: .875rem; font-weight: 700;
  color: var(--text-primary);
}
.hero-trust-excellent {
  font-family: var(--font); font-size: .875rem; font-weight: 500;
  color: var(--text-tertiary);
}

/* ── SLIDE-IN ANIMATIONS ─────────────────────────────────── */
.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}
.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}
.slide-left.visible, .slide-right.visible { opacity: 1; transform: translateX(0); }

/* ── EXAMPLE STORES GRID ─────────────────────────────────── */
.examples-section { padding: 7rem 0; }
.ex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

/* Card shell */
.ex-card {
  border-radius: 20px;
  overflow: hidden;
  background: #0f0f17;
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .3s cubic-bezier(.22,.68,0,1.2), box-shadow .3s, border-color .3s;
  cursor: default;
}
.ex-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,.35);
  box-shadow: 0 24px 56px rgba(0,0,0,.55), 0 0 0 1px rgba(139,92,246,.18);
}

/* Screen mockup area */
.ex-card-screen {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Tiny browser chrome bar */
.ex-screen-nav {
  height: 22px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
}
.ex-screen-nav::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  box-shadow: 9px 0 0 rgba(255,255,255,.18), 18px 0 0 rgba(255,255,255,.18);
}

/* Hero area — per-niche gradients */
.ex-screen-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 16px 14px;
  gap: 8px;
  position: relative;
}
.ex-screen-hero--beauty     { background: linear-gradient(160deg, #1a0533 0%, #3d1254 60%, #0d0011 100%); }
.ex-screen-hero--supplements{ background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 60%, #0a0a18 100%); }
.ex-screen-hero--fashion    { background: linear-gradient(160deg, #0c0c0c 0%, #1a1a2e 60%, #080810 100%); }
.ex-screen-hero--lifestyle  { background: linear-gradient(160deg, #0a1a0a 0%, #14532d 60%, #020c04 100%); }
.ex-screen-hero--fitness    { background: linear-gradient(160deg, #0d0f1a 0%, #1f1f4a 60%, #07080e 100%); }
.ex-screen-hero--food       { background: linear-gradient(160deg, #0f0a00 0%, #3d2c00 60%, #0a0800 100%); }

/* Simulated headline bars */
.ex-screen-hl {
  height: 9px;
  width: 72%;
  border-radius: 4px;
  background: rgba(255,255,255,.22);
}
.ex-screen-hl--sm {
  width: 48%;
  background: rgba(255,255,255,.13);
}

/* CTA button stub */
.ex-screen-btn {
  margin-top: 6px;
  width: 72px; height: 22px;
  border-radius: 5px;
  background: rgba(255,255,255,.18);
}

/* Mini product card row */
.ex-screen-products {
  height: 52px;
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  background: #0f0f17;
  flex-shrink: 0;
}
.ex-screen-card {
  flex: 1;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
}

/* Card footer row */
.ex-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ex-card-name {
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 700;
  color: #f0f0f0;
  line-height: 1.2;
}
.ex-card-niche {
  font-size: .75rem;
  color: #9898b2;
  margin-top: 2px;
}
.ex-card-metric {
  font-size: .8125rem;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.2);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* CTA row below grid */
.ex-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
.ex-cta-note {
  font-size: .875rem;
  color: #9898b2;
  text-align: center;
}


/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .steps-grid            { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .steps-slide           { gap: 2rem; }
  .steps-slide-asset     { width: 160px; }
  .steps-loader          { max-width: 340px; }
  .hero-notifs           { right: 2%; width: 268px; }
  .theme-cards-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-top            { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-cols           { grid-template-columns: repeat(3, 1fr); }
  .compare-grid          { grid-template-columns: 1fr; gap: 1rem; }
  .testimonials-grid     { grid-template-columns: repeat(2, 1fr); }
  .feat-showcase-row     { grid-template-columns: 1fr; gap: 2.5rem; }
  .feat-showcase-row--flip .feat-showcase-visual { order: unset; }
  .feat-showcase-row--flip .feat-showcase-text   { order: unset; }
  .stats-grid            { grid-template-columns: repeat(2, 1fr); }
  .calc-banner           { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-grid              { grid-template-columns: 1fr; }
  .ex-grid               { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links        { display: none; }
  .nav-auth         { display: none; }
  .hero-notifs      { display: none; }
  .hero-stores-wrap { display: none; }
  .hero-text        { padding: 80px 0 3rem; }
  .theme-cards-grid { grid-template-columns: 1fr; }
  .stores-gallery   { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .footer-cols      { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .final-cta-actions{ flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stores-gallery        { grid-template-columns: 1fr; }
  .stats-grid            { grid-template-columns: repeat(2, 1fr); }
  .footer-cols           { grid-template-columns: 1fr; }
  .modal-card            { padding: 2rem 1.25rem; }
  .compare-table-wrap    { font-size: .8rem; }
  .stores-previews       { grid-template-columns: repeat(3, 1fr); }
  .stores-previews .theme-mockup:nth-child(n+4) { display: none; }
}

/* ── NEON THEME VARIANT ───────────────────────────────────── */
.theme-mockup--neon {
  --tm-bg:          #07041a;
  --tm-chrome-bg:   rgba(168,85,247,.05);
  --tm-chrome-b:    rgba(168,85,247,.12);
  --tm-dot:         rgba(255,255,255,.18);
  --tm-url-bg:      rgba(255,255,255,.04);
  --tm-url-c:       rgba(255,255,255,.25);
  --tm-nav-bg:      rgba(7,4,26,.96);
  --tm-nav-b:       rgba(168,85,247,.1);
  --tm-brand:       rgba(255,255,255,.38);
  --tm-link:        rgba(255,255,255,.15);
  --tm-hero-grad:   rgba(168,85,247,.12);
  --tm-hl:          rgba(255,255,255,.28);
  --tm-body:        rgba(255,255,255,.12);
  --tm-accent:      #a855f7;
  --tm-accent-glow: rgba(168,85,247,.5);
  --tm-card-bg:     rgba(168,85,247,.06);
  --tm-card-b:      rgba(168,85,247,.12);
  --tm-img:         rgba(168,85,247,.18);
  --tm-name:        rgba(255,255,255,.20);
  --tm-price:       rgba(168,85,247,.75);
  --tm-sect-lbl:    rgba(168,85,247,.60);
  --tm-banner-bg:   rgba(168,85,247,.06);
  --tm-banner-img:  rgba(168,85,247,.22);
  --tm-feat-h:      rgba(255,255,255,.26);
  --tm-feat-p:      rgba(255,255,255,.11);
  --tm-feat-btn:    rgba(168,85,247,.48);
  --tm-strip-bg:    rgba(255,255,255,.02);
  --tm-strip-b:     rgba(255,255,255,.08);
  --tm-strip-val:   rgba(255,255,255,.24);
  --tm-strip-lbl:   rgba(255,255,255,.10);
  --tm-foot-bg:     rgba(0,0,0,.6);
  --tm-foot-c:      rgba(255,255,255,.42);
}

/* ── COMPARE SECTION: UPDATED COLORS ─────────────────────── */
.compare-col--before {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.06);
}
.compare-col--after {
  background: rgba(0,217,255,.04);
  border-color: rgba(0,217,255,.12);
}
.cmp-hl--velour { background: rgba(0,217,255,.55); }
.compare-mock-hero--velour { background: linear-gradient(135deg, rgba(0,217,255,.10) 0%, rgba(139,92,246,.08) 100%); }
.cmp-btn--velour { background: rgba(0,217,255,.45); box-shadow: 0 2px 12px rgba(0,217,255,.25); }
.cmp-card--velour { background: rgba(0,217,255,.04); border-color: rgba(0,217,255,.12); }
.cmp-card-img--velour { background: linear-gradient(135deg, rgba(0,217,255,.15), rgba(139,92,246,.15)); }
.compare-icon--check { font-size: 0; color: transparent; }
.compare-icon--x { color: rgba(255,80,80,.6); }

/* ── SALES STAT CARD ─────────────────────────────────────── */
.sales-card-wrap {
  margin-top: 1.75rem;
  display: flex;
  justify-content: flex-start;
}
.sales-card {
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,.1);
  max-width: 300px; width: 100%;
  border-radius: 20px;
  transform: translateY(20px); opacity: 0;
  animation: sales-fade-up .8s cubic-bezier(.25,1,.5,1) forwards;
  animation-play-state: paused;
}
.sales-card.is-visible {
  animation-play-state: running;
}
.sales-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  border-color: rgba(0,217,255,.2);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.sales-card-title {
  display: flex; align-items: center; gap: .625rem;
  margin-bottom: 1.1rem;
}
.sales-card-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #34d399, #10b981);
  box-shadow: 0 3px 8px rgba(16,185,129,.35);
  display: flex; align-items: center; justify-content: center;
  animation: sales-pulse 2.4s ease-in-out infinite;
}
.sales-card-icon svg { width: 14px; height: 14px; color: #fff; }
.sales-card-label {
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  color: var(--text-primary);
}
.sales-card-pct {
  margin-left: auto;
  display: flex; align-items: center; gap: 2px;
  color: #34d399; font-size: .875rem; font-weight: 600;
}
.sales-card-pct svg { width: 16px; height: 16px; }
.sales-card-num {
  font-family: var(--font); font-size: 2.2rem; font-weight: 800;
  color: var(--text-primary); letter-spacing: -.03em; line-height: 1;
  margin-bottom: 1rem;
  opacity: 0;
  animation: sales-num-in .8s ease forwards .3s;
  animation-play-state: paused;
}
.sales-card.is-visible .sales-card-num { animation-play-state: running; }
.sales-card-bar {
  height: 6px; border-radius: 999px;
  background: rgba(255,255,255,.1); overflow: hidden;
}
.sales-card-fill {
  height: 100%; border-radius: inherit;
  background: linear-gradient(90deg, #34d399, #10b981);
  width: 0%;
  animation: sales-bar-fill 1.6s ease forwards .5s, sales-bar-pulse 4s ease-in-out infinite 2.2s;
  animation-play-state: paused, paused;
}
.sales-card.is-visible .sales-card-fill { animation-play-state: running, running; }

@keyframes sales-fade-up  { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes sales-num-in   { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sales-bar-fill { from { width: 0%; } to { width: 76%; } }
@keyframes sales-bar-pulse { 0%,100% { filter: brightness(1); } 50% { filter: brightness(1.2); } }
@keyframes sales-pulse    { 0%,100% { transform: scale(1); box-shadow: 0 3px 8px rgba(16,185,129,.35); } 50% { transform: scale(1.08); box-shadow: 0 6px 14px rgba(16,185,129,.45); } }

/* ── BORDER GLOW (full mesh-gradient implementation) ─────── */

.border-glow-card {
  --edge-proximity: 0;
  --cursor-angle: 45deg;
  --edge-sensitivity: 55;
  --color-sensitivity: 72;
  --glow-padding: 28px;
  --cone-spread: 18;
  --fill-opacity: 0.18;
  --card-bg: transparent;

  --glow-color:    hsl(280deg 70% 72% / 55%);
  --glow-color-60: hsl(280deg 70% 72% / 35%);
  --glow-color-50: hsl(280deg 70% 72% / 28%);
  --glow-color-40: hsl(280deg 70% 72% / 20%);
  --glow-color-30: hsl(280deg 70% 72% / 14%);
  --glow-color-20: hsl(280deg 70% 72% / 8%);
  --glow-color-10: hsl(280deg 70% 72% / 4%);

  --gradient-one:   radial-gradient(at 80% 55%, #c084fc 0px, transparent 50%);
  --gradient-two:   radial-gradient(at 69% 34%, #f472b6 0px, transparent 50%);
  --gradient-three: radial-gradient(at  8%  6%, #38bdf8 0px, transparent 50%);
  --gradient-four:  radial-gradient(at 41% 38%, #c084fc 0px, transparent 50%);
  --gradient-five:  radial-gradient(at 86% 85%, #f472b6 0px, transparent 50%);
  --gradient-six:   radial-gradient(at 82% 18%, #38bdf8 0px, transparent 50%);
  --gradient-seven: radial-gradient(at 51%  4%, #f472b6 0px, transparent 50%);
  --gradient-base:  linear-gradient(#c084fc 0 100%);

  position: relative;
  isolation: isolate;
  transform: translate3d(0, 0, 0.01px);
}

/* Layer 1: mesh-gradient colored border, cone-masked */
.border-glow-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card-bg, transparent) 0 100%) padding-box,
    linear-gradient(rgb(255 255 255 / 0%) 0% 100%) border-box,
    var(--gradient-one)   border-box,
    var(--gradient-two)   border-box,
    var(--gradient-three) border-box,
    var(--gradient-four)  border-box,
    var(--gradient-five)  border-box,
    var(--gradient-six)   border-box,
    var(--gradient-seven) border-box,
    var(--gradient-base)  border-box;
  mask-image: conic-gradient(
    from var(--cursor-angle) at center,
    black calc(var(--cone-spread) * 1%),
    transparent calc((var(--cone-spread) + 15) * 1%),
    transparent calc((100 - var(--cone-spread) - 15) * 1%),
    black calc((100 - var(--cone-spread)) * 1%)
  );
  opacity: 0;
  transition: opacity .25s ease-out;
  pointer-events: none;
  z-index: 2;
}

/* Layer 2: soft mesh fill near edges */
.border-glow-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background:
    var(--gradient-one)   padding-box,
    var(--gradient-two)   padding-box,
    var(--gradient-three) padding-box,
    var(--gradient-four)  padding-box,
    var(--gradient-five)  padding-box,
    var(--gradient-six)   padding-box,
    var(--gradient-seven) padding-box,
    var(--gradient-base)  padding-box;
  mask-image:
    linear-gradient(to bottom, black, black),
    radial-gradient(ellipse at 50% 50%, black 40%, transparent 65%),
    radial-gradient(ellipse at 66% 66%, black 5%, transparent 40%),
    radial-gradient(ellipse at 33% 33%, black 5%, transparent 40%),
    radial-gradient(ellipse at 66% 33%, black 5%, transparent 40%),
    radial-gradient(ellipse at 33% 66%, black 5%, transparent 40%),
    conic-gradient(from var(--cursor-angle) at center, transparent 5%, black 15%, black 85%, transparent 95%);
  mask-composite: subtract, add, add, add, add, add;
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity .25s ease-out;
  pointer-events: none;
  z-index: 1;
}

/* Layer 3: outer edge-light glow */
.border-glow-card > .edge-light {
  position: absolute;
  inset: calc(var(--glow-padding) * -1);
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
  mask-image: conic-gradient(
    from var(--cursor-angle) at center,
    black 2.5%, transparent 10%, transparent 90%, black 97.5%
  );
  opacity: 0;
  mix-blend-mode: plus-lighter;
  transition: opacity .25s ease-out;
}
.border-glow-card > .edge-light::before {
  content: '';
  position: absolute;
  inset: var(--glow-padding);
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px var(--glow-color),
    inset 0 0 1px 0 var(--glow-color-60),
    inset 0 0 3px 0 var(--glow-color-50),
    inset 0 0 6px 0 var(--glow-color-40),
    inset 0 0 15px 0 var(--glow-color-30),
    inset 0 0 25px 2px var(--glow-color-20),
    inset 0 0 50px 2px var(--glow-color-10),
    0 0 1px 0 var(--glow-color-60),
    0 0 3px 0 var(--glow-color-50),
    0 0 6px 0 var(--glow-color-40),
    0 0 15px 0 var(--glow-color-30),
    0 0 25px 2px var(--glow-color-20),
    0 0 50px 2px var(--glow-color-10);
}

/* Reveal all layers on hover */
.border-glow-card:hover::before {
  opacity: calc((var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
}
.border-glow-card:hover::after {
  opacity: calc(var(--fill-opacity) * (var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
}
.border-glow-card:hover > .edge-light {
  opacity: calc((var(--edge-proximity) - var(--edge-sensitivity)) / (100 - var(--edge-sensitivity)));
}
/* Fade out when leaving */
.border-glow-card:not(:hover)::before,
.border-glow-card:not(:hover)::after,
.border-glow-card:not(:hover) > .edge-light {
  opacity: 0;
  transition: opacity .75s ease-in-out;
}

/* ── CLEANUP PASS: borders, dividers, pills ──────────────── */

/* 1. Hero stores — remove the glass box */
.stores-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible !important;
  border-radius: 0 !important;
}
.stores-card-header { display: none !important; }

/* Taller viewports so cards feel bigger */
.tm-viewport { height: 300px; }
@keyframes page-auto-scroll {
  0%, 12%   { transform: translateY(0); }
  45%, 58%  { transform: translateY(calc(-100% + 300px)); }
  90%, 100% { transform: translateY(0); }
}

/* 2. Section dividers — removed */
.section { border-top: none !important; }
.stats-section { border-top: none !important; border-bottom: none !important; }
/* final-cta-section uses pseudo-element lines, not borders */
.feat-showcase-row { border-bottom: none !important; }
.footer-top { border-bottom: none !important; }
.footer { border-top: none !important; }

/* 3. Card borders — all removed, replaced with elevation */
.step {
  border: none !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.35) !important;
}
.step:hover {
  border: none !important;
  box-shadow: 0 12px 40px rgba(0,0,0,.5) !important;
}
.theme-card {
  border: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.35) !important;
}
.theme-card:hover {
  border: none !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.55) !important;
}
.testimonial-card {
  border: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.3) !important;
}
.testimonial-card:hover {
  border: none !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.45) !important;
}
.compare-col {
  border: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.3) !important;
}
.compare-col--after {
  border: none !important;
  box-shadow: 0 4px 24px rgba(0,217,255,.08) !important;
}
.custom-store-card {
  border: none !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.45) !important;
}
.calc-banner {
  border: none !important;
  box-shadow: 0 8px 40px rgba(0,0,0,.4) !important;
}
.sales-card {
  border: none !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.4) !important;
}
.sales-card:hover {
  border: none !important;
  box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 24px rgba(0,217,255,.08) !important;
}
.store-card {
  border: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.35) !important;
}
.store-card:hover {
  border: none !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.5) !important;
}
.modal-card { border: none !important; }
.modal-close { border: none !important; }

/* Stats grid and FAQ grid — swap gap-trick for real gap */
.stats-grid {
  gap: 1rem !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.faq-grid {
  gap: 0.5rem !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}
.faq-item {
  border-radius: var(--radius-lg) !important;
}

/* 4. All remaining eyebrow pills — hidden */
.hero-eyebrow,
.hero-badge,
.stores-card-soon,
.stores-card-header,
.custom-store-badge,
.store-cat-badge,
.store-cat-badge--supps,
.store-cat-badge--fashion,
.store-cat-badge--lifestyle,
.testi-badge,
.testi-badge--fashion,
.testi-badge--supps,
.testi-badge--lifestyle,
.calc-promo-tag,
.theme-card-tag,
.coming-overline,
.coming-overline--purple { display: none !important; }

/* ── HERO CARDS: remove theme name footer label ──────────── */
.tm-footer { display: none !important; }

/* ── FEATURES CARDS: remove step-icon eyebrow, fix hover ─── */
.step-icon { display: none !important; }

.step:hover {
  border: none !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,.55) !important;
}

/* ── COMPARE TAGS: force hidden (override color block) ─────── */
.compare-col-tag,
.compare-col-tag--bad,
.compare-col-tag--good { display: none !important; }

/* ── COMPARE CARDS: hover + fix second card shadow ─────────── */
.compare-col {
  border: none !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.35) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
  cursor: default;
}
.compare-col--after {
  border: none !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.35), 0 0 0 1px rgba(0,217,255,.12) !important;
}
.compare-col:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,.55) !important;
}
.compare-col--after:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(0,217,255,.2) !important;
}

/* ── COMPARE CARDS: match right card shadow to left ─────────── */
.compare-col--after {
  box-shadow: 0 2px 12px rgba(0,0,0,.35) !important;
}
.compare-col--after:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.55) !important;
}

/* ── NO COLORFUL BORDERS on cards ─────────────────────────── */
.why-card { box-shadow: 0 4px 20px rgba(0,0,0,.3) !important; }
.included-item { box-shadow: 0 4px 16px rgba(0,0,0,.25) !important; }
.process-step-num { box-shadow: 0 2px 8px rgba(0,0,0,.3) !important; }

/* ── RESPONSIVE FIXES ────────────────────────────────────── */

/* Prevent blobs and absolute elements from causing horizontal scroll */
html, body { overflow-x: hidden; }

/* ── 1280px — nav padding tighter, notifs closer ──────────── */
@media (max-width: 1280px) {
  .nav-inner { padding: 0 2rem; }
  .hero-notifs { right: 1.5%; width: 270px; }
}

/* ── 1200px — hide notifs, stores show 5 cards ────────────── */
@media (max-width: 1200px) {
  .hero-notifs { display: none; }
  .stores-previews { grid-template-columns: repeat(5, 1fr); }
  .stores-previews .theme-mockup:nth-child(1) { display: none; }
  .stores-previews .theme-mockup:nth-child(7) { display: none; }
}

/* ── 1024px — stores show 3 cards, stacked sections ──────── */
@media (max-width: 1024px) {
  .stores-previews { grid-template-columns: repeat(3, 1fr); }
  .stores-previews .theme-mockup:nth-child(2) { display: none; }
  .stores-previews .theme-mockup:nth-child(6) { display: none; }
  /* Reset nth-child transforms for 3-card layout */
  .stores-previews .theme-mockup:nth-child(3) { transform: translateY(18px) scale(0.87); z-index: 2; }
  .stores-previews .theme-mockup:nth-child(4) { transform: translateY(-8px) scale(1.05); z-index: 5; }
  .stores-previews .theme-mockup:nth-child(5) { transform: translateY(18px) scale(0.87); z-index: 2; }

  .coming-editorial  { grid-template-columns: 1fr; gap: 3rem; }
  .editable-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .calc-promo        { grid-template-columns: 1fr; gap: 3rem; }
  .steps-grid        { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .steps-slide       { flex-direction: column; text-align: center; }
  .steps-slide-asset { width: 160px; }
  .steps-slide-text  { text-align: center; }
  .steps-slide-text p { margin: 0 auto; }
}

/* ── 768px — full mobile ──────────────────────────────────── */
@media (max-width: 768px) {
  .hero-stores-wrap { display: none; }
  .nav-inner { padding: 0 1.25rem; }
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .hero-text { padding: 96px 0 3rem; max-width: 100%; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-sub { font-size: 1rem; }
  .steps-grid { grid-template-columns: 1fr; max-width: 100%; }
  .steps-slide { flex-direction: column; text-align: center; }
  .steps-slide-asset { width: 140px; }
  .steps-slide-text { text-align: center; }
  .steps-loader { max-width: 260px; }
  .compare-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stores-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .theme-cards-grid { grid-template-columns: 1fr; }
  .coming-editorial--flip .coming-left { order: unset; }
  .coming-editorial--flip .coming-right { order: unset; }
  .ex-grid { grid-template-columns: 1fr; }
}

/* ── 480px — small mobile ─────────────────────────────────── */
@media (max-width: 480px) {
  .hero-text { padding: 80px 0 2.5rem; }
  .stores-gallery { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr; }
  .modal-card { padding: 2rem 1.25rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* ── VELOUR ACADEMY — BENTO GRID ─────────────────────────── */

.academy-section { background: transparent; }

.academy-header {
  text-align: center; margin-bottom: 3rem;
}
.academy-header h2 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700;
  letter-spacing: -.02em; color: var(--text-primary); margin-bottom: .75rem;
}
.academy-header p {
  font-size: 1.125rem; color: var(--text-secondary);
  max-width: 520px; margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  position: relative;
  user-select: none;
}

.bento-card {
  position: relative;
  min-height: 200px;
  padding: 1.75rem;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  overflow: hidden;
  cursor: pointer;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);

  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 220px;
}

/* Featured 2×2 card */
.bento-grid .bento-card:nth-child(3) {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 420px;
}
/* Wide 2-col card */
.bento-grid .bento-card:nth-child(4) {
  grid-column: 1 / span 2;
  grid-row: 2 / span 2;
}
/* Last card slot */
.bento-grid .bento-card:nth-child(6) {
  grid-column: 4;
  grid-row: 3;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}

/* Border glow — radial gradient follows cursor */
.bento-card::after {
  content: '';
  position: absolute; inset: 0;
  padding: 1px;
  background: radial-gradient(
    var(--glow-radius) circle at var(--glow-x) var(--glow-y),
    rgba(132,0,255, calc(var(--glow-intensity) * 0.9)) 0%,
    rgba(132,0,255, calc(var(--glow-intensity) * 0.45)) 30%,
    transparent 65%
  );
  border-radius: inherit;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.bento-card-label {
  font-family: var(--font);
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #ffffff;
}

.bento-card-bottom {
  display: flex; flex-direction: column; gap: .5rem;
}

.bento-card-title {
  font-family: var(--font);
  font-size: 1.0625rem; font-weight: 700;
  color: var(--text-primary); line-height: 1.3;
}

.bento-grid .bento-card:nth-child(3) .bento-card-title {
  font-size: 1.625rem;
}

.bento-card-desc {
  font-size: .875rem; color: var(--text-tertiary); line-height: 1.65;
}

/* Particles */
.bento-particle {
  position: absolute;
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(132,0,255,1);
  box-shadow: 0 0 6px rgba(132,0,255,.7);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  animation: bento-particle-float var(--dur, 3s) ease-in-out var(--delay, 0s) infinite;
}
@keyframes bento-particle-float {
  0%        { transform: translate(0,0) scale(0); opacity: 0; }
  15%       { transform: translate(0,0) scale(1); opacity: .8; }
  50%       { transform: translate(var(--tx,20px), var(--ty,-30px)) scale(.9); opacity: .5; }
  85%       { transform: translate(var(--tx2,-15px), var(--ty2,-50px)) scale(.7); opacity: .2; }
  100%      { transform: translate(var(--tx2,-15px), var(--ty2,-55px)) scale(0); opacity: 0; }
}

/* Global spotlight */
.bento-spotlight {
  position: fixed;
  width: 700px; height: 700px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle,
    rgba(132,0,255,.14) 0%,
    rgba(132,0,255,.07) 20%,
    rgba(132,0,255,.03) 40%,
    transparent 70%
  );
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  will-change: left, top, opacity;
  transition: opacity .3s ease;
}

/* Click ripple */
.bento-ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(132,0,255,.35) 0%,
    rgba(132,0,255,.15) 35%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 10;
  transform: scale(0);
  animation: bento-ripple-expand .75s cubic-bezier(.25,1,.5,1) forwards;
}
@keyframes bento-ripple-expand {
  to { transform: scale(1); opacity: 0; }
}

/* Responsive */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid .bento-card:nth-child(3) { grid-column: span 1; grid-row: span 1; min-height: 200px; }
  .bento-grid .bento-card:nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .bento-grid .bento-card:nth-child(6) { grid-column: auto; grid-row: auto; }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
}

/* ── ANNOUNCEMENT BAR ────────────────────────────────────── */
.announcement-bar {
  position: relative;
  z-index: 101;
  display: flex; align-items: center; justify-content: center;
  gap: .75rem;
  padding: 10px 3rem;
  background: linear-gradient(90deg, rgba(139,92,246,.18) 0%, rgba(0,217,255,.14) 50%, rgba(139,92,246,.18) 100%);
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-align: center;
}
.announcement-bar__text {
  font-family: var(--font);
  font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.8);
}
.announcement-bar__link {
  color: #ffffff; font-weight: 700;
  text-decoration: none;
  transition: opacity .15s;
}
.announcement-bar__link:hover { opacity: .75; }
.announcement-bar__close {
  position: absolute; right: 1rem;
  background: none; border: none; cursor: pointer;
  font-size: .75rem; color: #b4b4b4;
  line-height: 1; padding: 4px;
  transition: color .15s;
}
.announcement-bar__close:hover { color: rgba(255,255,255,.8); }
@media (max-width: 480px) {
  .announcement-bar { padding: 9px 2.5rem; font-size: .8rem; }
}

/* ── ANNOUNCEMENT BAR — DISCORD ICON ─────────────────────── */
.announcement-bar__discord {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(225deg, #ff3cac 0%, #784ba0 50%, #2b86c5 100%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.announcement-bar__discord:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(120,75,160,.5);
}

/* ── EXAMPLES SECTION ENHANCEMENTS ──────────────────────── */

/* Category list rows with inline metric */
.examples-cat-row {
  display: flex; align-items: center; justify-content: space-between;
  flex: 1; gap: .75rem;
}
.examples-cat-name {
  font-size: .9rem; color: var(--text-tertiary);
}
.examples-cat-metric {
  font-family: var(--font); font-size: .75rem; font-weight: 700;
  color: var(--accent-green);
  background: rgba(16,185,129,.1);
  padding: 2px 8px; border-radius: 99px;
  flex-shrink: 0;
  opacity: 0; transition: opacity .3s ease;
}
/* Show metric on the active category */
.examples-cat-item:has(.examples-cat-dot--active) .examples-cat-metric { opacity: 1; }

.examples-cta { margin-top: 2rem; }

/* Floating metric badges */
.ex-badge {
  position: absolute;
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem;
  border-radius: 16px;
  background: rgba(10,10,16,.7);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 2px 8px rgba(0,0,0,.3);
  pointer-events: none;
  z-index: 20;
  white-space: nowrap;
}

.ex-badge--1 {
  bottom: 10%; right: 6%;
  animation: ex-float-a 6s ease-in-out infinite;
}

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

.ex-badge-icon {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
}
.ex-badge-icon--green  { background: rgba(16,185,129,.18); color: #34d399; }
.ex-badge-icon--cyan   { background: rgba(0,217,255,.15);  color: #00d9ff; }
.ex-badge-icon--purple { background: rgba(139,92,246,.18); color: #a78bfa; }

.ex-badge-body {
  display: flex; flex-direction: column; gap: 1px;
}
.ex-badge-val {
  font-family: var(--font); font-size: .9375rem; font-weight: 800;
  color: var(--text-primary); line-height: 1;
}
.ex-badge-icon--green  ~ .ex-badge-body .ex-badge-val { color: #34d399; }
.ex-badge-icon--cyan   ~ .ex-badge-body .ex-badge-val { color: #00d9ff; }
.ex-badge-icon--purple ~ .ex-badge-body .ex-badge-val { color: #a78bfa; }
.ex-badge-lbl {
  font-size: .6875rem; color: var(--text-quaternary); font-weight: 500;
}

@media (max-width: 1024px) {
  .ex-badge { display: none; }
}

/* ── CALCULATOR PAGE: spacing fixes ─────────────────────── */
.page-header {
  padding: 5rem 0 3rem;
  border-bottom: none;
}
.calculator-section.calculator-page {
  padding: 3rem 0 6rem;
}

/* ── CALC HERO ───────────────────────────────────────────── */
.calc-hero {
  position: relative;
  overflow: visible; /* let blobs spill into page below */
  padding: 4rem 0 5rem;
  margin-top: -68px; /* bleed behind transparent nav */
  padding-top: calc(5rem + 68px);
}

/* Subtle ambient blobs — blend into the page, not a standalone hero */
.calc-hero .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: .6;
}
.calc-hero .blob-1 {
  width: 800px; height: 800px;
  top: -300px; left: -180px;
  background: radial-gradient(circle, rgba(139,92,246,.38) 0%, transparent 65%);
}
.calc-hero .blob-2 {
  width: 700px; height: 700px;
  top: -240px; right: -200px;
  background: radial-gradient(circle, rgba(0,100,255,.22) 0%, transparent 65%);
}

.calc-hero .container { position: relative; z-index: 1; }

/* Two-column layout: copy left, Meta badge right */
.calc-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}

.calc-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calc-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin: 0;
}
.calc-hero-title .grad {
  background: linear-gradient(135deg, #00d9ff 0%, #a855f7 55%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calc-hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 480px;
  margin: 0;
}

/* White checklist */
.calc-checklist {
  list-style: none;
  padding: 0; margin: .25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.calc-checklist li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 500;
  color: #fff;
}


/* Meta platform badge */
.calc-meta-badge {
  flex-shrink: 0;
}
.calc-meta-badge-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.07);
  min-width: 260px;
}

/* ── Badge header: overlapping icons + live pill ── */
.cmb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cmb-icons {
  display: flex;
  align-items: center;
}

.cmb-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,.06);
}
.cmb-icon svg { width: 1.125rem; height: 1.125rem; }

.cmb-icon--fb {
  background: #316FF6;
  z-index: 2;
}
.cmb-icon--ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 30%, #dc2743 60%, #bc1888 100%);
  margin-left: -10px;
  z-index: 1;
}

/* Live indicator pill */
.cmb-live {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .625rem;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: 999px;
  font-size: .6875rem;
  font-weight: 600;
  color: var(--accent-green);
  letter-spacing: .03em;
}
.cmb-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: cmb-pulse 2s ease-in-out infinite;
}
@keyframes cmb-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

/* ── Badge body: title + platforms ── */
.cmb-body { display: flex; flex-direction: column; gap: .1rem; }
.cmb-title {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.cmb-platforms {
  font-size: .75rem;
  color: var(--text-quaternary);
  font-weight: 500;
}

/* ── Benchmark stats row ── */
.cmb-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
}
.cmb-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  padding: .625rem .5rem;
}
.cmb-stat-val {
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.cmb-stat-key {
  font-size: .625rem;
  font-weight: 500;
  color: var(--text-quaternary);
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.cmb-stat-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.07);
  flex-shrink: 0;
}

/* ── Footnote ── */
.cmb-footnote {
  font-size: .7rem;
  color: var(--text-quaternary);
  margin: 0;
}

/* Calculator section spacing on dedicated page */
.calculator-section.calculator-page {
  padding: 2rem 0 6rem;
}

/* Responsive */
@media (max-width: 900px) {
  .calc-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .calc-meta-badge-inner { min-width: 0; }
  .calc-meta-stats { justify-content: flex-start; }
}
@media (max-width: 768px) {
  .calc-hero { padding: calc(3rem + 68px) 0 1.5rem; }
}
@media (max-width: 480px) {
  .calc-meta-badge { display: none; }
}

/* ── AUTH MODALS ────────────────────────────────────────────── */

.auth-backdrop {
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(8px);
}

.auth-modal-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(160deg, #0f0c20 0%, #0a0817 55%, #070610 100%);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 32px 72px rgba(0,0,0,.65),
    0 0 80px rgba(139,92,246,.1);
  transform: translateY(20px) scale(.98);
  transition: transform .32s cubic-bezier(.22,1,.36,1), opacity .32s ease;
  opacity: 0;
}
.modal-backdrop.modal-open .auth-modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Ambient glow — interior, not at edge so it doesn't look like a border */
.auth-modal-card::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%; transform: translateX(-50%);
  width: 480px; height: 320px;
  background: radial-gradient(ellipse at 50% 30%, rgba(139,92,246,.18) 0%, rgba(0,217,255,.05) 50%, transparent 72%);
  pointer-events: none;
  z-index: 0;
  filter: blur(28px);
}

.auth-modal-inner {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2.25rem 2.25rem;
}

.auth-modal-close {
  position: absolute;
  top: 1.125rem; right: 1.125rem;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.07);
  transition: background .15s, color .15s, border-color .15s;
  z-index: 10;
}
.auth-modal-close:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.14);
}

.auth-modal-logo { margin-bottom: 1.75rem; }
.auth-modal-logo img { height: 20px; display: block; }

.auth-modal-title {
  font-family: var(--font);
  font-size: 1.625rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: .4rem;
}

.auth-modal-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

/* Google button */
.auth-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  width: 100%;
  padding: .8125rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  margin-bottom: 1.25rem;
}
.auth-google-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
}

/* "or" divider */
.auth-or {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,.25);
  font-size: .8125rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.auth-or::before,
.auth-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.07);
}

/* Auth form fields */
.auth-field { margin-bottom: .875rem; }
.auth-field label {
  display: block;
  font-size: .6875rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  margin-bottom: .4rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.auth-field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .4rem;
}
.auth-field-row label { margin-bottom: 0; }
.auth-field input {
  width: 100%;
  padding: .8125rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: .9375rem;
  outline: none;
  transition: background .15s, border-color .15s, box-shadow .15s;
}
.auth-field input::placeholder { color: rgba(255,255,255,.25); }
.auth-field input:focus {
  background: rgba(139,92,246,.06);
  border-color: rgba(139,92,246,.4);
  box-shadow: 0 0 0 3px rgba(139,92,246,.1);
}

/* Submit button */
.auth-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: .75rem;
  padding: .875rem 1rem;
  background: linear-gradient(135deg, #7c6acd 0%, #4fa8c5 100%);
  border: none;
  border-radius: 12px;
  color: #09090f;
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: -.01em;
  transition: opacity .15s, transform .15s;
}
.auth-submit-btn:hover {
  opacity: .85;
  transform: translateY(-1px);
}
.auth-submit-btn:disabled { opacity: .35; cursor: not-allowed; }

/* Error message */
.auth-error {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  color: #fb7185;
  margin: .25rem 0 .5rem;
  padding: .5rem .75rem;
  background: rgba(244,63,94,.07);
  border: 1px solid rgba(244,63,94,.15);
  border-radius: 8px;
}
.auth-error::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* Forgot password link */
.auth-forgot-link {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
}
.auth-forgot-link:hover { color: #a78bfa; }

/* Forgot password success */
.auth-forgot-success {
  display: flex;
  align-items: center;
  gap: .625rem;
  background: rgba(16,185,129,.07);
  border: 1px solid rgba(16,185,129,.15);
  border-radius: 10px;
  padding: .875rem 1rem;
  font-size: .875rem;
  color: #34d399;
  margin-bottom: 1rem;
}

/* Switch link */
.auth-switch {
  text-align: center;
  margin-top: 1.375rem;
  font-size: .875rem;
  color: rgba(255,255,255,.3);
}
.auth-switch a {
  color: rgba(255,255,255,.75);
  font-weight: 600;
  text-decoration: none;
  transition: color .15s;
}
.auth-switch a:hover { color: #fff; }

/* ── Logged-in nav area ──────────────────────────────────── */
.nav-user-area {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-user-name {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-secondary);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gradient-brand);
  border: none;
  color: #fff;
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}
.nav-signout-btn {
  background: transparent;
  border: none;
  color: #a0a0b0;
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 500;
  padding: .3125rem .75rem;
  cursor: pointer;
  transition: color .15s;
}
.nav-signout-btn:hover { color: var(--text-primary); }


/* ── STORE PREVIEW MODAL ─────────────────────────────────── */
.store-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.store-modal-backdrop.modal-open {
  display: flex;
}

.store-modal {
  background: #0e0e16;
  border-radius: 20px;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07),
    0 24px 80px rgba(0,0,0,.8),
    0 4px 24px rgba(0,0,0,.5);
  animation: storeModalIn .3s cubic-bezier(0.34,1.4,0.64,1) both;
}

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

.store-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  flex-shrink: 0;
  gap: 1rem;
}

.store-modal-meta {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.store-modal-cat { display: none; }

.store-modal-name {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.store-modal-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.store-modal-cta {
  font-size: .875rem;
  padding: 8px 18px;
}

.store-modal-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-tertiary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.store-modal-close:hover {
  background: rgba(255,255,255,.1);
  color: #ffffff;
}

.store-modal-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar inside modal */
.store-modal-body::-webkit-scrollbar { width: 6px; }
.store-modal-body::-webkit-scrollbar-track { background: transparent; }
.store-modal-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 3px; }

.store-modal-screen {
  min-height: 100%;
}

/* ── Scrollable store layout per theme ─────────────────── */
.sm-store {
  font-family: var(--font);
}

/* Nav */
.sm-nav {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  flex-shrink: 0;
}
.sm-nav-logo {
  width: 70px; height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,.2);
}
.sm-nav-links {
  display: flex;
  gap: 1.5rem;
}
.sm-nav-link {
  width: 36px; height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,.1);
}
.sm-nav-btn {
  width: 80px; height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,.15);
}

/* Hero */
.sm-hero {
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 2.5rem;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.sm-hero-hl {
  width: 260px; height: 18px;
  border-radius: 9px;
  background: rgba(255,255,255,.25);
}
.sm-hero-hl--sm {
  width: 180px; height: 12px;
  background: rgba(255,255,255,.14);
}
.sm-hero-sub {
  width: 300px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.1);
  margin-bottom: .25rem;
}
.sm-hero-cta {
  width: 120px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.35);
  margin-top: .25rem;
}

/* Products */
.sm-products {
  padding: 2rem 2rem;
}
.sm-products-title {
  width: 140px; height: 12px;
  border-radius: 6px;
  background: rgba(255,255,255,.15);
  margin-bottom: 1.25rem;
}
.sm-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.sm-product-card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
.sm-product-img {
  height: 160px;
}
.sm-product-info {
  padding: .875rem;
}
.sm-product-name {
  height: 9px; border-radius: 4px;
  background: rgba(255,255,255,.18);
  margin-bottom: .5rem;
  width: 75%;
}
.sm-product-price {
  height: 8px; border-radius: 4px;
  background: rgba(255,255,255,.1);
  width: 45%;
}

/* Feature strip */
.sm-strip {
  display: flex;
  padding: 1.5rem 2rem;
  gap: 1.5rem;
  background: rgba(255,255,255,.015);
  overflow: hidden;
}
.sm-strip-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  flex-shrink: 0;
}
.sm-strip-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
.sm-strip-text {
  width: 80px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.1);
}

/* Testimonials */
.sm-testimonials {
  padding: 2rem;
}
.sm-testimonials-title {
  width: 160px; height: 12px;
  border-radius: 6px;
  background: rgba(255,255,255,.15);
  margin-bottom: 1.25rem;
}
.sm-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.sm-testi {
  background: rgba(255,255,255,.03);
  border-radius: 10px;
  padding: 1rem;
}
.sm-testi-stars {
  display: flex; gap: 3px; margin-bottom: .625rem;
}
.sm-testi-star {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,200,0,.5);
}
.sm-testi-text {
  height: 7px; border-radius: 3px;
  background: rgba(255,255,255,.12);
  margin-bottom: .4rem;
  width: 90%;
}
.sm-testi-text--sm {
  width: 65%;
  background: rgba(255,255,255,.07);
}
.sm-testi-author {
  display: flex; align-items: center; gap: .5rem; margin-top: .75rem;
}
.sm-testi-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
.sm-testi-name {
  width: 60px; height: 7px; border-radius: 3px;
  background: rgba(255,255,255,.15);
}

/* Footer */
.sm-footer {
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,.015);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sm-footer-logo {
  width: 60px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,.15);
}
.sm-footer-links {
  display: flex; gap: 1rem;
}
.sm-footer-link {
  width: 40px; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,.08);
}

/* Theme color accents per store */
.sm-store--beauty   .sm-hero { background: linear-gradient(135deg, #1a0533 0%, #3d1254 100%); }
.sm-store--beauty   .sm-hero-cta { background: #e879a0; }
.sm-store--beauty   .sm-product-img { background: linear-gradient(160deg, #2d0a3e, #4a1060); }

.sm-store--supplements .sm-hero { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%); }
.sm-store--supplements .sm-hero-cta { background: #2563eb; }
.sm-store--supplements .sm-product-img { background: linear-gradient(160deg, #0f2040, #1e3a70); }

.sm-store--fashion  .sm-hero { background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%); }
.sm-store--fashion  .sm-hero-cta { background: rgba(255,255,255,.35); }
.sm-store--fashion  .sm-product-img { background: linear-gradient(160deg, #111, #1e1e1e); }

.sm-store--lifestyle .sm-hero { background: linear-gradient(135deg, #0a1a0a 0%, #14532d 100%); }
.sm-store--lifestyle .sm-hero-cta { background: #16a34a; }
.sm-store--lifestyle .sm-product-img { background: linear-gradient(160deg, #0a1a0a, #14532d); }

.sm-store--fitness  .sm-hero { background: linear-gradient(135deg, #0d0f1a 0%, #1a1f3d 100%); }
.sm-store--fitness  .sm-hero-cta { background: #4f46e5; }
.sm-store--fitness  .sm-product-img { background: linear-gradient(160deg, #0d0f1a, #1a1f3d); }

.sm-store--food     .sm-hero { background: linear-gradient(135deg, #0f0a00 0%, #3d2c00 100%); }
.sm-store--food     .sm-hero-cta { background: #d97706; }
.sm-store--food     .sm-product-img { background: linear-gradient(160deg, #1a1200, #3d2c00); }
