
/* ============================================
   SOCIALMEDIAGAINS — DESIGN SYSTEM V2
   "Vienna Tech Underground"
   ============================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }
button { cursor: pointer; }
a { text-decoration: none; color: inherit; }

/* === DESIGN TOKENS === */
:root {
  /* Backgrounds — clean light */
  --bg-base:     #f8f8fd;
  --bg-surface:  #f1f1f8;
  --bg-elevated: #ffffff;
  --bg-overlay:  #e8e8f2;
  --bg-glass:    rgba(248, 248, 253, 0.88);

  /* Brand */
  --purple:        #7c3aed;
  --purple-light:  #a78bfa;
  --purple-dim:    rgba(124, 58, 237, 0.12);
  --purple-glow:   rgba(124, 58, 237, 0.35);
  --electric:      #38d9ff;
  --electric-dim:  rgba(56, 217, 255, 0.1);
  --gold:          #f59e0b;

  /* Text */
  --text:         #0a0a18;
  --text-soft:    #3c3c58;
  --text-muted:   #6a6a8c;
  --text-faint:   #9898bb;

  /* Borders */
  --border-faint:  rgba(0,0,0,0.05);
  --border-subtle: rgba(0,0,0,0.08);
  --border:        rgba(0,0,0,0.12);
  --border-bright: rgba(0,0,0,0.2);

  /* Status */
  --success:    #22d3a5;
  --success-bg: rgba(34,211,165,0.1);
  --error:      #f87171;
  --trustpilot: #00b67a;

  /* Spacing scale */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px;
  --s5: 20px; --s6: 24px; --s8: 32px; --s10: 40px;
  --s12: 48px; --s16: 64px; --s20: 80px; --s24: 96px;

  /* Section spacing */
  --section: 100px;
  --section-sm: 64px;

  /* Radius */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px; --r-full: 9999px;

  /* Fonts */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.18s var(--ease);
  --t-med:  0.35s var(--ease);
  --t-slow: 0.6s  var(--ease);
}

/* === BASE === */
html {
  scroll-behavior: smooth;
  background: var(--bg-base);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  -webkit-overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* iOS Safari: dark html+body → dark status bar + bottom bar chrome */
html:has(body.page-template-page-landing) {
  background: #110a22 !important;
}
body.page-template-page-landing {
  background: #110a22 !important;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

h1 { font-size: clamp(36px, 7vw, 80px); line-height: 1.0; }
h2 { font-size: clamp(28px, 4.5vw, 52px); letter-spacing: -0.025em; }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(16px, 2.5vw, 20px); font-weight: 600; letter-spacing: -0.01em; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s6);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  transition: var(--t-fast);
  white-space: nowrap;
}

.btn-primary-large {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--r-md);
  background: var(--purple);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.btn-primary-large::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: var(--t-fast);
}

.btn-primary-large:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--purple-glow);
}

.btn-primary-large:hover::before { opacity: 1; }

.btn-primary-small {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: var(--r-sm);
  background: var(--purple);
  color: #fff;
}

.btn-primary-small:hover {
  background: var(--purple-light);
  box-shadow: 0 8px 24px var(--purple-glow);
}

.btn-ghost {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--r-md);
  background: transparent;
  border: 1px solid rgba(124,58,237,0.4);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--border-bright);
  background: rgba(255,255,255,0.04);
}

/* === SCROLL REVEAL === */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* === KEYFRAMES === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 var(--purple-glow); }
  50%       { box-shadow: 0 0 0 16px rgba(124,58,237,0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@-webkit-keyframes marquee {
  from { -webkit-transform: translateX(0); }
  to   { -webkit-transform: translateX(-50%); }
}

@keyframes gradient-border {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@-webkit-keyframes gradient-border {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@property --grad-pos {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: false;
}

@keyframes shift-gradient {
  0%   { --grad-pos: 0%; }
  50%  { --grad-pos: 100%; }
  100% { --grad-pos: 0%; }
}

@keyframes spin-border {
  to { --border-angle: 360deg; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes counter-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================
   S1 — ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: linear-gradient(90deg, #1a0f2e 0%, #110a22 50%, #1a0f2e 100%);
  border-bottom: 1px solid rgba(124,58,237,0.25);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  overflow: hidden;
  position: relative;
}

.announcement-bar::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(124,58,237,0.15), transparent);
  pointer-events: none;
}

.announcement-bar i { color: var(--purple-light); flex-shrink: 0; }

.announcement-bar span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  white-space: nowrap;
}

.announcement-bar a {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-light);
  white-space: nowrap;
  transition: color var(--t-fast);
}

.announcement-bar a:hover { color: var(--electric); }

/* ============================================
   S2 — NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  background: #f8f8fd;
  transition: background var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(248, 248, 253, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s6);
}

.nav-links {
  display: flex;
  gap: var(--s8);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t-fast);
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s4);
}

.nav-login {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.nav-login:hover { color: var(--text); }

/* Mobile nav */
@media (max-width: 900px) {
  .nav-links, .nav-login { display: none; }
  .nav-actions .btn { display: none; }

  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-elevated) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: var(--r-md) !important;
    color: var(--text) !important;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: rgba(248, 248, 253, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--s6);
    gap: var(--s4);
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.mobile-open a {
    font-size: 18px;
    color: var(--text);
    padding: var(--s3) 0;
    border-bottom: 1px solid var(--border-faint);
  }
}

/* ============================================
   S3 — HERO
   ============================================ */
.hero-section {
  background: var(--bg-base);
  padding: var(--s20) 0 var(--s16);
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

/* Dot grid */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(124,58,237,0.25) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 30%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 60% 30%, black 20%, transparent 75%);
  pointer-events: none;
}

/* Glow orbs */
.hero-section::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, rgba(56,217,255,0.06) 40%, transparent 70%);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple-light);
  background: var(--purple-dim);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--s5);
  animation: fadeInUp 0.5s var(--ease) 0.1s both;
}

.hero-h1 {
  margin-bottom: var(--s5);
  animation: fadeInUp 0.6s var(--ease) 0.2s both;
}

/* Accent word in headline */
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--electric) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: var(--s8);
  animation: fadeInUp 0.6s var(--ease) 0.3s both;
  max-width: 520px;
}

.hero-bullets {
  list-style: none;
  margin-bottom: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  animation: fadeInUp 0.6s var(--ease) 0.4s both;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: 15px;
  color: var(--text-soft);
}

.hero-bullets li i {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-bottom: var(--s8);
  animation: fadeInUp 0.6s var(--ease) 0.5s both;
}

.hero-cta-text {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}

.hero-secondary-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.hero-secondary-link:hover { color: var(--text); text-decoration: underline; }

.hero-microcopy {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 13px;
  color: var(--text-soft);
  animation: fadeInUp 0.5s var(--ease) 0.6s both;
}

.hero-trust i { color: var(--gold); width: 14px; height: 14px; }

/* Hero image */
.hero-image-wrapper {
  position: relative;
  animation: fadeInUp 0.8s var(--ease) 0.25s both;
}

.rack-image {
  width: 100%;
  border-radius: var(--r-xl);
  animation: float 7s ease-in-out infinite;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 1px var(--border-subtle),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 120px rgba(124,58,237,0.2);
}

.hero-image-overlay { display: none; }

.hero-image-badge {
  position: absolute;
  bottom: -14px;
  left: 10%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  z-index: 4;
  animation: float 7s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px var(--border-subtle);
  display: flex;
  align-items: center;
  gap: var(--s2);
}

/* Mobile Hero */
@media (max-width: 900px) {
  .hero-section {
    padding: var(--s12) 0 var(--s16);
    min-height: auto;
    align-items: flex-start;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: var(--s8);
  }

  .hero-image-wrapper { order: 2; }
  .hero-image-overlay { display: none; }

  .hero-subtext { max-width: 100%; font-size: 16px; }

  .hero-cta-text { flex-direction: column; align-items: stretch; }
  .hero-cta-text .btn { text-align: center; width: 100%; }
  .hero-secondary-link { text-align: center; }

  .hero-bullets { display: inline-flex; }
  .hero-trust { flex-wrap: wrap; font-size: 12px; }
  .hero-bullets li { justify-content: flex-start; text-align: left; }
}

/* ============================================
   STATS TICKER — below hero on mobile
   ============================================ */
.stats-ticker {
  border-top: 1px solid var(--border-faint);
  border-bottom: 1px solid var(--border-faint);
  background: var(--bg-surface);
  padding: var(--s5) 0;
  overflow: hidden;
}

.stats-ticker-inner {
  display: flex;
  gap: var(--s16);
  animation: marquee 22s linear infinite;
  -webkit-animation: marquee 22s linear infinite;
  width: max-content;
  will-change: transform;
  -webkit-transform: translateZ(0);
}

.stat-tick {
  display: flex;
  align-items: center;
  gap: var(--s3);
  white-space: nowrap;
  flex-shrink: 0;
}

.stat-tick-val {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
}

.stat-tick-lbl {
  font-size: 13px;
  color: var(--text-muted);
}

.stat-tick-sep {
  color: var(--border);
  font-size: 20px;
}

/* ============================================
   S3.5 — VALUE PROPOSITION BRIDGE
   ============================================ */
.bridge-section {
  background: var(--bg-elevated);
  padding: var(--section) 0;
  border-top: 1px solid var(--border-faint);
  border-bottom: 1px solid var(--border-faint);
}

.bridge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}

@media (max-width: 768px) {
  .bridge-grid { grid-template-columns: 1fr; gap: var(--s8); }
}

.bridge-left .diff-eyebrow { margin-bottom: var(--s4); }

.bridge-h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: var(--s5);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.bridge-text {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: var(--s5);
}

.bridge-trust {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--s2);
  letter-spacing: 0.02em;
}

.bridge-right {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.bridge-benefit {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
  padding: var(--s5) var(--s6);
  border-radius: var(--r-md);
  border: 1px solid var(--border-faint);
  background: var(--bg-surface);
  transition: border-color var(--t-med), box-shadow var(--t-med);
}

.bridge-benefit:hover {
  border-color: rgba(124,58,237,0.2);
  box-shadow: 0 4px 20px rgba(124,58,237,0.06);
}

.bridge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple);
}

.bridge-icon i { width: 18px; height: 18px; }

.bridge-benefit-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.bridge-benefit-body {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   S4 — DIFFERENTIATOR
   ============================================ */
.diff-section {
  background: var(--bg-surface);
  padding: var(--section) 0;
  position: relative;
  overflow: hidden;
}

.diff-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--electric), transparent);
  opacity: 0.4;
}

.diff-intro {
  text-align: center;
  max-width: 740px;
  margin: 0 auto var(--s16);
}

.diff-eyebrow, .section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple-light);
  margin-bottom: var(--s4);
}

.diff-subline {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-top: var(--s4);
}

/* Diff cards — glass + numbered editorial */
.diff-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  margin-bottom: var(--s12);
}

@media (max-width: 900px) { .diff-cards { grid-template-columns: 1fr; } }

.diff-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-lg);
  padding: var(--s8);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-med), transform var(--t-med);
}

.diff-card::before {
  content: attr(data-num);
  position: absolute;
  top: -12px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 72px;
  font-weight: 500;
  color: var(--border-faint);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color var(--t-med);
}

.diff-card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-3px);
}

.diff-card:hover::before { color: rgba(124,58,237,0.1); }

.diff-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s3);
  letter-spacing: -0.02em;
}

.diff-card-body {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* Comparison Table */
.diff-table-wrapper {
  overflow-x: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-lg);
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(to right, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
}

@media (max-width: 620px) {
  .diff-table-wrapper {
    overflow-x: visible;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .diff-table { min-width: 0; width: 100%; display: block; }
  .diff-table thead { display: none; }
  .diff-table tbody { display: flex; flex-direction: column; gap: 12px; }

  .diff-table tr {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto auto;
    background: var(--bg-elevated);
    border: 1px solid var(--border-faint);
    border-radius: 10px;
    overflow: hidden;
  }

  .diff-table td { display: block; border-bottom: none; padding: 10px 14px; font-size: 13px; line-height: 1.45; }

  /* Row label: spans only column 1, rows 1-3, vertical center */
  .diff-table td:first-child {
    grid-column: 1;
    grid-row: 1 / span 3;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-right: 1px solid var(--border-faint);
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.02);
  }

  /* Competitors in col 2 */
  .diff-table td:nth-child(2),
  .diff-table td:nth-child(3) {
    grid-column: 2;
    color: var(--text-muted);
    font-size: 12px;
    border-bottom: 1px solid var(--border-faint);
    padding: 8px 14px;
  }

  /* SMG column — highlighted, biggest */
  .diff-table td:nth-child(4) {
    grid-column: 2;
    font-weight: 600;
    color: var(--electric) !important;
    background: rgba(56,217,255,0.05);
    font-size: 13px;
    border-bottom: none;
  }

  .diff-table td.highlight-col { background: rgba(56,217,255,0.05); }
}

.diff-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.diff-table th, .diff-table td {
  padding: var(--s4) var(--s5);
  text-align: left;
  border-bottom: 1px solid var(--border-faint);
  font-size: 14px;
}

.diff-table th { font-weight: 600; color: var(--text-muted); font-size: 13px; }
.diff-table td:first-child { font-weight: 500; color: var(--text-soft); }
.diff-table tr:last-child td { border-bottom: none; }

.diff-table .highlight-col {
  background: rgba(124,58,237,0.06);
}

.diff-table th.highlight-col { color: var(--purple-light); }
.diff-table td.highlight-col { color: var(--text); font-weight: 500; }

.diff-footer {
  text-align: center;
  margin-top: var(--s6);
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
}

/* ============================================
   S5 — TESTIMONIALS
   ============================================ */
.testi-section {
  background: var(--bg-base);
  padding: var(--section) 0;
  position: relative;
}

.testi-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--s12);
}

.testi-intro h2 { margin-bottom: var(--s4); }

/* Stats bar */
.testi-stats {
  display: flex;
  justify-content: center;
  gap: var(--s12);
  margin-top: var(--s8);
  padding-top: var(--s8);
  border-top: 1px solid var(--border-faint);
}

@media (max-width: 600px) {
  .testi-stats { gap: var(--s6); }
}

.stat-item { text-align: center; }

.stat-val {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Trustpilot placeholder area */
.trustpilot-area {
  text-align: center;
  padding: var(--s5) 0 var(--s10);
}

/* Testimonial grid */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}

@media (max-width: 900px) {
  .testi-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: var(--s6);
    padding-bottom: var(--s4);
    gap: var(--s4);
    -webkit-overflow-scrolling: touch;
  }

  .testi-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }
}

.testi-grid.row-2 {
  grid-template-columns: repeat(2, 1fr);
  margin-top: var(--s5);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .testi-grid.row-2 {
    margin-top: var(--s4);
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: var(--s6);
    padding-bottom: var(--s4);
    gap: var(--s4);
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
  .testi-grid.row-2 .testi-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }
}

/* Testimonial card — glass effect */
.testi-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-lg);
  padding: var(--s8);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  color: var(--border-faint);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.25);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(124,58,237,0.1);
}

.testi-header {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s4);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.testi-avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
  font-family: var(--font-display);
}

.testi-name { font-size: 14px; font-weight: 600; color: var(--text); }
.testi-handle { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

.testi-stars {
  color: var(--trustpilot);
  margin-bottom: var(--s3);
  font-size: 13px;
  letter-spacing: 2px;
}

.testi-body {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
  font-style: italic;
}

.testi-footer-bar {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: var(--s12);
  padding-top: var(--s6);
  border-top: 1px solid var(--border-faint);
}

/* ============================================
   S6 — GRÜNDER
   ============================================ */
.founder-section {
  background: var(--bg-surface);
  padding: var(--section) 0;
  position: relative;
  overflow: hidden;
}

/* Bottom glow */
.founder-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.12), transparent 70%);
  pointer-events: none;
}

.founder-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: var(--s12);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s12);
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient on left edge */
.founder-box::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--purple), var(--electric));
  border-radius: var(--r-sm) 0 0 var(--r-sm);
}

@media (max-width: 768px) {
  .founder-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--s8);
    gap: var(--s6);
  }
  .founder-box::before { display: none; }
}

.founder-photo-wrapper { display: flex; justify-content: center; }

.founder-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  background: linear-gradient(var(--bg-elevated), var(--bg-elevated)) padding-box,
              linear-gradient(135deg, var(--purple), var(--electric)) border-box;
  box-shadow: 0 0 40px rgba(124,58,237,0.25);
}

.founder-content h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple-light);
  margin-bottom: var(--s4);
}

.founder-quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: var(--s6);
  letter-spacing: -0.02em;
}

@media (max-width: 768px) { .founder-quote { font-size: 17px; } }

.founder-bio p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.founder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s5);
}

@media (max-width: 768px) { .founder-badges { justify-content: center; } }

.f-badge {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  background: var(--bg-overlay);
  border: 1px solid var(--border-faint);
  padding: 5px 12px;
  border-radius: var(--r-full);
}

.founder-video-card {
  margin-top: var(--s7);
  background: #0d0d1f;
  border-radius: 24px;
  padding: 40px 48px 36px;
  border: 1px solid rgba(124, 58, 237, 0.18);
  text-align: center;
}
.founder-video-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--purple);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.founder-video-frame {
  max-width: 860px;
  margin: 0 auto;
}
.founder-video-inner {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.founder-video-inner iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.founder-video-caption {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .founder-video-card { padding: 28px 20px 24px; }
}

/* ============================================
   S7 — HOW IT WORKS
   ============================================ */
.how-section {
  background: var(--bg-base);
  padding: var(--section) 0;
}

.how-intro {
  text-align: center;
  margin-bottom: var(--s12);
}

.how-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple-light);
  margin-bottom: var(--s4);
}

.how-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
  position: relative;
}

/* Connector line */
.how-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(25% / 2);
  right: calc(25% / 2);
  height: 1px;
  border-top: 1px dashed var(--border-subtle);
  z-index: 0;
}

@media (max-width: 900px) {
  .how-timeline {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }
  .how-timeline::before { display: none; }
}

.how-step {
  position: relative;
  z-index: 1;
  padding: var(--s6);
  background: var(--bg-elevated);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-lg);
  transition: border-color var(--t-med);
}

.how-step:hover { border-color: rgba(124,58,237,0.3); }

.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--purple-light);
  background: var(--purple-dim);
  border: 1px solid rgba(124,58,237,0.25);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s4);
}

.step-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s2);
  letter-spacing: -0.02em;
}

.step-body {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
}

.how-outro {
  text-align: center;
  max-width: 560px;
  margin: var(--s12) auto 0;
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ============================================
   S8 — MID CTA BREAK
   ============================================ */
.cta-break {
  padding: var(--s20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #07071a;
}

.cta-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 120% at 50% 50%, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-break::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.5), var(--electric), rgba(124,58,237,0.5), transparent);
}

.cta-break-h2 {
  font-size: clamp(26px, 4vw, 44px);
  margin-bottom: var(--s4);
  position: relative;
  z-index: 2;
}

.cta-break-sub {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: var(--s8);
  position: relative;
  z-index: 2;
}

.cta-micro {
  margin-top: var(--s3);
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

.cta-break .btn { position: relative; z-index: 2; }

/* ============================================
   S9 — PRICING
   ============================================ */
.pricing-section {
  background: var(--bg-base);
  padding: var(--section) 0;
  position: relative;
}

.pricing-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s12);
}

.pricing-intro h2 { margin-top: var(--s3); margin-bottom: var(--s4); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  max-width: 820px;
  margin: 0 auto var(--s12);
  align-items: start;
}

@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
  }
}

/* Light card */
.pricing-card {
  border-radius: var(--r-xl);
  padding: var(--s10);
  position: relative;
}

.pricing-light {
  background: var(--bg-elevated);
  border: 1px solid var(--border-faint);
}

/* Standard card — animated gradient border */
.pricing-standard {
  position: relative;
  z-index: 1;
  border: 2px solid transparent;
  background:
    linear-gradient(145deg, #160d2e, #0e0e1f) padding-box,
    conic-gradient(from var(--border-angle, 0deg), var(--purple), var(--electric), var(--purple-light), var(--purple)) border-box;
  animation: spin-border 4s linear infinite;
}

.badge-bestseller {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold), #fbbf24);
  color: #07070f;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.p-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--s2);
}

.p-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: var(--s6);
  min-height: 36px;
  line-height: 1.5;
}

.p-price-box {
  margin-bottom: var(--s6);
  position: relative;
}

.p-price {
  font-family: var(--font-mono);
  font-size: 52px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}

.p-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.p-discount {
  font-size: 13px;
  color: var(--success);
  margin-top: var(--s2);
  font-weight: 500;
}

.pricing-tooltip {
  position: absolute;
  top: -28px;
  left: 0;
  background: var(--bg-overlay);
  border: 1px solid var(--border);
  color: var(--text-soft);
  padding: 4px 10px;
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 12px;
  opacity: 0;
  transition: opacity var(--t-fast);
  pointer-events: none;
}

.p-price-box:hover .pricing-tooltip { opacity: 1; }

.p-features {
  list-style: none;
  margin-bottom: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.p-features li {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-soft);
}

.p-features svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

.pricing-card .btn { width: 100%; }

/* ============================================
   S11 — FAQ
   ============================================ */
.faq-section {
  background: var(--bg-surface);
  padding: var(--section) 0;
}

.faq-container {
  max-width: 680px;
  margin: 0 auto;
}

.faq-section h2 { text-align: center; margin-bottom: var(--s12); }

.faq-list {
  border: 1px solid var(--border-faint);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-elevated);
}

.faq-item { border-bottom: 1px solid var(--border-faint); }
.faq-item:last-child { border-bottom: none; }

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--s5) var(--s6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  gap: var(--s4);
  transition: background var(--t-fast);
}

.faq-btn:hover { background: rgba(255,255,255,0.02); }
.faq-item.active .faq-btn { color: var(--purple-light); }

.faq-icon {
  flex-shrink: 0;
  color: var(--purple-light);
  transition: transform 0.3s var(--ease);
  width: 18px;
  height: 18px;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--s6);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
  display: block;
}

.faq-item.active .faq-content {
  max-height: 300px;
  padding: 0 var(--s6) var(--s5);
}

.faq-content strong { color: var(--text-soft); font-weight: 600; }

.faq-outro {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-top: var(--s10);
}

/* ============================================
   S12 — FINAL CTA
   ============================================ */
.final-cta {
  background: #07071a;
  padding: var(--section) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 20% 50%, rgba(124,58,237,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(56,217,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-container {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: clamp(28px, 5vw, 52px);
  margin-bottom: var(--s5);
}

.final-cta-sub {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: var(--s8);
  line-height: 1.6;
}

.final-cta-microcopy {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: var(--s4);
}

.final-cta-btn {
  animation: pulse-glow 2.5s ease-out infinite;
}

.trust-badges-row {
  display: flex;
  justify-content: center;
  gap: var(--s6);
  flex-wrap: wrap;
  margin-top: var(--s10);
  padding-top: var(--s8);
  border-top: 1px solid var(--border-faint);
}

.tb-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 13px;
  color: var(--text-soft);
}

.tb-item i { width: 16px; height: 16px; color: var(--purple-light); }

/* ============================================
   S13 — FOOTER
   ============================================ */
.site-footer {
  background: #07071a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--s12) 0 var(--s8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s8);
  margin-bottom: var(--s10);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col-main { grid-column: span 2; margin-bottom: var(--s4); }
}

.footer-logo {
  height: 22px;
  margin-bottom: var(--s4);
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-tagline { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.footer-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: var(--s2); }

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-faint);
  padding-top: var(--s5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: var(--s3); text-align: center; }
}

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

.footer-social { display: flex; gap: var(--s4); }

.footer-social a {
  color: var(--text-muted);
  transition: color var(--t-fast);
  width: 20px;
  height: 20px;
}

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

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
body.page-template-page-landing .mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: #110a22;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(124,58,237,0.3);
  padding: var(--s3) var(--s5);
  padding-bottom: calc(var(--s3) + env(safe-area-inset-bottom));
  min-height: 76px;
}

@media (max-width: 768px) {
  body.page-template-page-landing .mobile-sticky-cta.visible { display: flex; align-items: center; gap: var(--s3); }
  body.page-template-page-landing.sticky-cta-active { padding-bottom: 92px !important; }
}

.sticky-cta-text {
  flex: 1;
  min-width: 0;
}

.sticky-cta-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-cta-text span {
  font-size: 11px;
  color: var(--text-muted);
}

.sticky-cta-btn {
  flex-shrink: 0;
  padding: 14px 22px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-md);
  background: var(--purple);
  color: #fff;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-fast);
  display: flex;
  align-items: center;
}

.sticky-cta-btn:hover { background: var(--purple-light); }

/* ============================================
   UTILITY
   ============================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--electric) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--bg-overlay); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border); }

/* Selection */
::selection { background: rgba(124,58,237,0.3); color: var(--text); }

/* reduced motion — ticker + gradient-border bleiben aktiv (nicht desorientierend) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .stats-ticker-inner { animation: marquee 22s linear infinite !important; -webkit-animation: marquee 22s linear infinite !important; }
  .pricing-standard,
  .funnel-plan-standard { animation: spin-border 4s linear infinite !important; }
}

/* ============================================
   LIGHT THEME — COMPONENT OVERRIDES
   ============================================ */

/* Announcement bar — hardcoded dark bg, force light text */
.announcement-bar span { color: rgba(215, 212, 238, 0.9); }

/* Nav logo — no filter, show original colors */
.nav-logo img { filter: none !important; }
.nav-links a { color: var(--text-muted); }
.nav-login { color: var(--text-muted); }

/* Eyebrows — use full purple for contrast on light bg */
.diff-eyebrow, .section-eyebrow, .how-eyebrow { color: var(--purple); }
.hero-eyebrow {
  color: var(--purple);
  background: rgba(124,58,237,0.07);
  border-color: rgba(124,58,237,0.2);
}
.founder-content h3 { color: var(--purple); }

/* Hero text — fine as-is (vars → dark), secondary link */
.hero-secondary-link { color: var(--text-muted); }
.hero-secondary-link:hover { color: var(--text); }
.hero-microcopy { color: var(--text-muted); }

/* Hero phone SVG wrapper */
.hero-phone-svg { width: 100%; max-width: 500px; display: block; margin: 0 auto; }
.hero-image-wrapper { display: flex; align-items: center; justify-content: center; }

/* Diff cards — subtle elevation on light bg */
.diff-card {
  box-shadow: 0 1px 12px rgba(0,0,0,0.05), 0 4px 24px rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.06);
}
.diff-card::before { color: rgba(0,0,0,0.04); }
.diff-card:hover { box-shadow: 0 8px 40px rgba(124,58,237,0.1); }

/* Testi cards — white card on light bg */
.testi-card {
  box-shadow: 0 1px 12px rgba(0,0,0,0.05), 0 4px 24px rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.06);
}
.testi-card::before { color: rgba(0,0,0,0.04); }
.testi-card:hover { box-shadow: 0 12px 40px rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.2); }

/* Founder box on light bg */
.founder-box {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.07);
}
.founder-img {
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, var(--purple), var(--electric)) border-box;
}

/* Pricing light card on light bg */
.pricing-light {
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* Pricing standard — stays dark, fix text */
.pricing-standard .p-name,
.pricing-standard .p-price { color: #eeeef5; }
.pricing-standard .p-tagline { color: #9898bb; }
.pricing-standard .p-price span { color: #7878a0; }
.pricing-standard .p-features li { color: #c4c4d8; }
.pricing-standard .badge-bestseller { color: #07070f; }

/* Checkmarks — darker green on light bg */
.p-features svg { color: #16a34a; }

/* btn-ghost on light bg */
.btn-ghost { color: var(--text); }
.btn-ghost:hover { background: rgba(124,58,237,0.04); border-color: rgba(124,58,237,0.4); }

/* FAQ on light bg */
.faq-list {
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.06);
}
.faq-item { border-bottom-color: rgba(0,0,0,0.05); }

/* CTA break — dark band, force light text */
.cta-break-h2 { color: #eeeef5; }
.cta-break-sub { color: #c4c4d8; }
.cta-micro { color: #7878a0; }

/* Final CTA — dark band, force light text */
.final-cta h2 { color: #eeeef5; }
.final-cta-sub { color: #c4c4d8; }
.final-cta-microcopy { color: #7878a0; }
.final-cta .tb-item { color: rgba(238,238,245,0.65); }
.final-cta .trust-badges-row { border-top-color: rgba(255,255,255,0.07); }

/* Footer — dark band, force light text */
.footer-logo { filter: brightness(0) invert(1); opacity: 0.85; }
.footer-tagline { color: #7878a0; }
.footer-title { color: #eeeef5; }
.footer-links a { color: #7878a0; }
.footer-links a:hover { color: #eeeef5; }
.footer-copy { color: #7878a0; }
.footer-social a { color: #7878a0; }
.footer-social a:hover { color: #eeeef5; }
.footer-bottom { border-top-color: rgba(255,255,255,0.07); }

/* Mobile sticky CTA — keeps its dark glass bg, text stays light */
.sticky-cta-text span { color: #7878a0; }

/* Stats ticker on light — keep readable */
.stat-tick-sep { color: rgba(0,0,0,0.15); }

/* Hero section — subtle purple dot grid softened for light */
.hero-section::before { opacity: 0.5; }

/* How section step number circles */
.step-num {
  color: var(--purple);
  background: rgba(124,58,237,0.08);
  border-color: rgba(124,58,237,0.2);
}

/* Scrollbar on light bg */
::-webkit-scrollbar-track { background: var(--bg-surface); }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); }

/* ============================================
   FUNNEL MODAL — 3-Step
   ============================================ */

/* Body lock when modal is open */
body.funnel-open { overflow: hidden; }

/* Overlay / Backdrop */
.funnel-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--s6);
  pointer-events: none;
}

.funnel-overlay.open {
  display: flex;
  pointer-events: all;
}

/* Modal Container */
.funnel-modal {
  background: var(--bg-elevated);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 48px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  transform: scale(0.96);
  transition: transform 0.28s var(--ease);
}

.funnel-overlay.open .funnel-modal {
  transform: scale(1);
}

/* Close Button */
.funnel-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  flex-shrink: 0;
  z-index: 2;
}

.funnel-close i { width: 16px; height: 16px; }

.funnel-close:hover {
  background: var(--bg-overlay);
  color: var(--text);
}

/* ====== PROGRESS INDICATOR ====== */
.funnel-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  padding-right: 44px; /* space for close btn */
}

.fp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.fp-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-overlay);
  border: 1.5px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-med), border-color var(--t-med), color var(--t-med);
}

.fp-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: center;
  transition: color var(--t-med);
  max-width: 80px;
  line-height: 1.3;
  text-align: center;
}

/* Active step */
.fp-step--active .fp-circle {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

.fp-step--active .fp-label { color: var(--purple); }

/* Done step */
.fp-step--done .fp-circle {
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.3);
  color: var(--purple);
}

.fp-step--done .fp-label { color: var(--text-muted); }

/* Connector line */
.fp-line {
  flex: 1;
  height: 2px;
  background: var(--border-faint);
  border-radius: 1px;
  margin: 0 6px;
  margin-bottom: 18px; /* align with circle center */
  overflow: hidden;
  position: relative;
}

.fp-line-fill {
  height: 100%;
  width: 0%;
  background: var(--purple);
  border-radius: 1px;
  transition: width 0.4s var(--ease);
}

.fp-line-fill--active { width: 100%; }

/* ====== STEP CONTAINER ====== */
.funnel-step {
  display: none;
  animation: funnelStepIn 0.3s var(--ease) both;
}

.funnel-step.active { display: block; }

@keyframes funnelStepIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* Step Headlines */
.funnel-step-headline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.funnel-step-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ====== STEP 1 — Q&A BLOCKS ====== */
.funnel-qa-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.funnel-qa {
  background: var(--bg-surface);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-md);
  padding: 18px 20px;
  transition: border-color var(--t-med);
}

.funnel-qa:hover { border-color: rgba(124, 58, 237, 0.2); }

.funnel-q {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.funnel-a {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ====== STEP 2 — MINI TIMELINE ====== */
.funnel-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-md);
  padding: 20px 16px;
}

.funnel-tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  flex: 0 0 auto;
}

.funnel-tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-overlay);
  border: 2px solid var(--border);
  transition: background var(--t-med), border-color var(--t-med);
}

.funnel-tl-dot--active {
  background: var(--purple);
  border-color: var(--purple);
}

.funnel-tl-line {
  flex: 1;
  height: 2px;
  background: var(--border-faint);
  margin: 0 4px;
  margin-top: 5px; /* align with dot center */
  border-radius: 1px;
  align-self: flex-start;
}

.funnel-tl-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.funnel-tl-sub {
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  text-align: center;
}

/* ====== STEP 2 — INFO TILES ====== */
.funnel-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.funnel-tile {
  background: var(--bg-surface);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-md);
  padding: 16px;
  transition: border-color var(--t-med);
}

.funnel-tile:hover { border-color: rgba(124, 58, 237, 0.2); }

.funnel-tile-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--r-md);
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  margin-bottom: 10px;
  flex-shrink: 0;
}

.funnel-tile-icon i { width: 16px; height: 16px; }

.funnel-tile-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  line-height: 1.3;
}

.funnel-tile-body {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ====== BACK LINK ====== */
.funnel-back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--t-fast);
  font-family: var(--font-body);
  width: auto;
}

.funnel-back-link:hover { color: var(--text); }
.funnel-back-link i { flex-shrink: 0; }

/* ====== STEP 3 — PRICING GRID ====== */
.funnel-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
  align-items: start;
}

.funnel-plan {
  border-radius: var(--r-xl);
  padding: 28px 24px;
  position: relative;
}

/* Light plan */
.funnel-plan-light {
  background: var(--bg-elevated);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* Standard plan — mirrors .pricing-standard */
.funnel-plan-standard {
  position: relative;
  z-index: 1;
  border: 2px solid transparent;
  background:
    linear-gradient(145deg, #160d2e, #0e0e1f) padding-box,
    conic-gradient(from var(--border-angle, 0deg), var(--purple), var(--electric), var(--purple-light), var(--purple)) border-box;
  animation: spin-border 4s linear infinite;
}

.funnel-plan-standard .funnel-plan-name { color: #eeeef5; }
.funnel-plan-standard .funnel-plan-tagline { color: #9898bb; }
.funnel-plan-standard .funnel-plan-price { color: #eeeef5; }
.funnel-plan-standard .funnel-plan-price span { color: #7878a0; }
.funnel-plan-standard .funnel-plan-discount { color: var(--success); }
.funnel-plan-standard .funnel-plan-features li { color: #c4c4d8; }
.funnel-plan-standard .funnel-plan-features li i { color: #16a34a; }
.funnel-plan-standard .badge-bestseller { color: #07070f; }

.funnel-plan-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.funnel-plan-tagline {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 16px;
  min-height: 32px;
}

.funnel-plan-price {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.funnel-plan-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.funnel-plan-discount {
  font-size: 12px;
  color: var(--success);
  font-weight: 500;
  margin-bottom: 16px;
}

.funnel-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.funnel-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.45;
}

.funnel-plan-features li i {
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 1px;
  width: 15px;
  height: 15px;
}

.funnel-plan-cta { width: 100%; }

/* Microcopy under plans */
.funnel-microcopy {
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

/* ====== MOBILE MODAL — sheet style ====== */
@media (max-width: 600px) {
  .funnel-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .funnel-modal {
    max-width: 100%;
    width: 100%;
    max-height: 92svh;
    border-radius: 20px 20px 0 0;
    padding: 28px 20px;
    padding-bottom: 28px;
  }

  .funnel-progress { margin-bottom: 28px; }
  .fp-label { display: none; }
  .fp-line { margin-bottom: 0; }

  .funnel-tiles {
    grid-template-columns: 1fr;
  }

  .funnel-pricing-grid {
    grid-template-columns: 1fr;
  }

  .funnel-plan-standard {
    order: -1;
  }

  .funnel-timeline {
    padding: 16px 10px;
    gap: 0;
  }

  .funnel-tl-label { font-size: 10px; }
  .funnel-tl-sub { font-size: 9px; }
}

@media (max-width: 400px) {
  .funnel-modal { padding: 24px 16px; }
  .funnel-step-headline { font-size: 18px; }
}
