/* ===== Gyme — App Brand (מפת מאמנים) ===== */
:root {
  /* כחול שמיים — CTA ראשי */
  --blue: #60c5f1;
  --blue-bright: #8bd8f7;
  --blue-dark: #3ba8d9;
  --blue-glow: rgba(96, 197, 241, 0.45);
  --blue-pale: #e8f7fd;
  --blue-mesh: #b8e8fa;

  /* סגול רך — שמות ודגשים */
  --purple: #a855f7;
  --purple-light: #c4b5fd;
  --purple-dark: #7c3aed;
  --purple-deep: #5b21b6;
  --purple-glow: rgba(168, 85, 247, 0.4);

  --accent-hot: #a855f7;
  --accent-hot-glow: rgba(168, 85, 247, 0.38);
  --orange: #f7b081;
  --orange-deep: #f59e6b;

  --navy: #0f172a;
  --navy-soft: #1e293b;
  --navy-card: #334155;

  --surface: #f8fbff;
  --bg-soft: #eef6fc;
  --surface-card: #ffffff;
  --glass: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.65);
  --white: #ffffff;
  --text: #0f172a;
  --text-title: #7c3aed;
  --text-muted: #64748b;
  --text-on-dark: #ffffff;
  --text-muted-on-dark: rgba(255, 255, 255, 0.82);
  --border: rgba(96, 197, 241, 0.22);
  --border-on-dark: rgba(255, 255, 255, 0.14);

  --cyan: #60c5f1;
  --pink: #a855f7;
  --green: #34d399;
  --green-dark: #10b981;
  --gold: #f7b081;

  --trainee: #60c5f1;
  --trainee-glow: rgba(96, 197, 241, 0.5);
  --trainer: #a855f7;
  --trainer-glow: rgba(168, 85, 247, 0.45);
  --trainer-deep: #7c3aed;

  --gradient-app: linear-gradient(180deg, #60c5f1 0%, #8b9cf7 48%, #a855f7 100%);
  --gradient-app-vertical: linear-gradient(180deg, #e8f7fd 0%, #ede9fe 52%, #f8fbff 100%);
  --gradient-hero: linear-gradient(155deg, #0c4a6e 0%, #3b82f6 22%, #8b5cf6 52%, #c026d3 78%, #0f172a 100%);
  --gradient-hero-mesh: radial-gradient(ellipse 90% 70% at 20% 20%, rgba(96, 197, 241, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 85% 75%, rgba(192, 38, 211, 0.28) 0%, transparent 50%);
  --gradient-search: linear-gradient(90deg, #60c5f1 0%, #a855f7 100%);
  --gradient-dark: linear-gradient(168deg, #0f172a 0%, #1e293b 42%, #312e81 100%);
  --gradient-footer: linear-gradient(148deg, #0f172a 0%, #5b21b6 48%, #60c5f1 100%);
  --gradient-cta: linear-gradient(135deg, #60c5f1 0%, #a855f7 55%, #7c3aed 100%);

  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 24px rgba(96, 197, 241, 0.12);
  --shadow-md: 0 18px 50px rgba(168, 85, 247, 0.18);
  --shadow-lg: 0 28px 70px rgba(91, 33, 182, 0.22);
  --font: 'Heebo', system-ui, sans-serif;
  --font-brand: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-h: 72px;
  --promo-h: 36px;
}

/* OKLCH only when supported — keep hex fallbacks as primary */

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
  }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: calc(var(--header-h) + var(--promo-h) + 12px);
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  z-index: 10001;
  background: var(--gradient-app);
  transform-origin: right;
  transform: scaleX(0);
  pointer-events: none;
}

/* Ambient page background */
.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 55% at 92% 6%, rgba(96, 197, 241, 0.12) 0%, transparent 52%),
    radial-gradient(ellipse 65% 48% at 6% 94%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 45% 38% at 48% 42%, rgba(247, 176, 129, 0.06) 0%, transparent 58%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.visually-hidden,
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Grain overlay */
.page-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Typography utilities — always readable fallback */
.gradient-text,
.accent-text {
  color: var(--purple-dark);
  font-weight: inherit;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .gradient-text {
    background-image: var(--gradient-app);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.section--dark .gradient-text {
  color: var(--blue-bright);
}

.audiences-intro .gradient-text {
  color: var(--purple-dark);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .section--dark .gradient-text {
    background-image: linear-gradient(135deg, var(--blue-bright) 0%, var(--purple-light) 48%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  .audiences-intro .gradient-text {
    background-image: linear-gradient(135deg, #6d28d9 0%, #0ea5e9 52%, #7c3aed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.section-header {
  margin-bottom: 3rem;
  max-width: 560px;
}

.section-header--center {
  text-align: center;
  margin-inline: auto;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section--dark .section-header h2 {
  color: var(--text-on-dark);
}

.section--dark .section-desc {
  color: var(--text-muted-on-dark);
}

.section--dark .eyebrow {
  color: var(--purple-light);
}

.section-desc {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== Promo bar ===== */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  padding: 0.5rem 1rem;
  padding-inline-start: 2.5rem;
  background: var(--gradient-app);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 4px 24px rgba(109, 40, 217, 0.28);
  transition: transform 0.4s var(--ease-out);
}

.promo-bar p {
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.promo-bar-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}

.promo-bar-cta {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.9rem;
  background: var(--white);
  color: var(--purple-dark);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: transform 0.25s var(--ease-spring);
}

.promo-bar-cta:hover {
  transform: scale(1.05);
}

.promo-bar-dismiss {
  position: absolute;
  left: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.promo-bar-dismiss:hover {
  background: rgba(255, 255, 255, 0.28);
}

.promo-bar--hidden,
.promo-bar.is-dismissed {
  transform: translateY(-100%);
  pointer-events: none;
}

body.promo-dismissed {
  --promo-h: 0px;
}

body.promo-dismissed .header {
  top: 0;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: var(--promo-h);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  transition: top 0.4s var(--ease-out), padding 0.35s var(--ease-out);
}

.header.promo-hidden {
  top: 0;
}

.header.scrolled {
  padding: 0.5rem 0;
}

.header:not(.scrolled) .nav-links a {
  color: var(--text-on-dark);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.header:not(.scrolled) .nav-links a:hover,
.header:not(.scrolled) .nav-links a.active {
  color: var(--white);
}

.header:not(.scrolled) .nav-logo {
  color: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.header:not(.scrolled) .nav-toggle span {
  background: var(--white);
}

.header:not(.scrolled) .nav {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
}

.header:not(.scrolled) .nav-download {
  display: inline-flex;
  box-shadow: 0 4px 24px rgba(14, 165, 233, 0.45);
}

.nav-download--pulse {
  animation: navCtaPulse 2.5s ease-in-out infinite;
}

@keyframes navCtaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4); transform: scale(1); }
  50% { box-shadow: 0 6px 28px rgba(14, 165, 233, 0.55); transform: scale(1.03); }
}

.header.scrolled .nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.25rem;
}

.header.scrolled .nav-links a {
  color: var(--text-muted);
  text-shadow: none;
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
  color: var(--text);
}

.header.scrolled .nav-logo {
  color: var(--purple-dark);
  filter: none;
}

.header.scrolled .nav-toggle span {
  background: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 2;
  transition: all 0.35s var(--ease-out);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--purple-dark);
  z-index: 1001;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

/* שם המותג באנגלית — Plus Jakarta Sans */
.brand-en,
.logo-text {
  font-family: var(--font-brand);
  font-weight: 800;
  letter-spacing: 0.03em;
  font-feature-settings: 'ss01' 1;
}

.logo-text {
  font-size: 1.12rem;
  line-height: 1;
}

.promo-bar-tag.brand-en {
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.hero-badge .brand-en {
  font-size: 0.92em;
  letter-spacing: 0.02em;
}

.header:not(.scrolled) .logo-img {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

/* Mobile drawer — hidden on desktop */
.nav-mobile-only {
  display: none;
}

.nav-link-icon {
  display: none;
}

@media (min-width: 769px) {
  .nav-links {
    position: static;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 1.1rem;
    box-shadow: none;
    border: none;
    transform: none;
    overflow: visible;
    pointer-events: auto;
    z-index: auto;
  }

  .nav-links::before {
    display: none;
  }

  .nav-links > li {
    width: auto;
  }

  .header:not(.scrolled) .nav-links a,
  .header.scrolled .nav-links a {
    display: inline-flex;
    align-items: center;
    width: auto;
    padding: 0.25rem 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0.88rem;
    font-weight: 500;
    min-height: 44px;
    transform: none;
  }

  .header:not(.scrolled) .nav-links a:hover,
  .header.scrolled .nav-links a:hover {
    transform: none;
  }
}

.seo-hub-more {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: -0.5rem;
}

.seo-hub-more a {
  color: var(--purple-dark);
  font-weight: 600;
}

.seo-hub-more a:hover {
  color: var(--blue-dark);
}

.nav-download {
  display: none;
  padding: 0.5rem 1.1rem;
  background: var(--gradient-app);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px var(--purple-glow);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 1001;
}

.nav-download:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--blue-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  direction: ltr;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb--1 {
  width: 400px; height: 400px;
  background: var(--purple-light);
  top: 10%; left: 5%;
  animation-delay: 0s;
}

.orb--2 {
  width: 300px; height: 300px;
  background: var(--blue-bright);
  bottom: 20%; right: 30%;
  animation-delay: -4s;
}

.orb--3 {
  width: 250px; height: 250px;
  background: var(--orange);
  top: 50%; left: 40%;
  opacity: 0.35;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-sparkles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-sparkles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  animation: sparkleFloat 6s ease-in-out infinite;
}

.hero-sparkles span:nth-child(1) { top: 18%; right: 22%; animation-delay: 0s; }
.hero-sparkles span:nth-child(2) { top: 42%; right: 8%; animation-delay: -1.2s; width: 4px; height: 4px; }
.hero-sparkles span:nth-child(3) { top: 65%; right: 35%; animation-delay: -2.5s; }
.hero-sparkles span:nth-child(4) { top: 28%; left: 15%; animation-delay: -0.8s; width: 5px; height: 5px; }
.hero-sparkles span:nth-child(5) { top: 55%; left: 28%; animation-delay: -3.2s; }
.hero-sparkles span:nth-child(6) { top: 78%; right: 18%; animation-delay: -4s; width: 4px; height: 4px; }

@keyframes sparkleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(12px, -20px) scale(1.4); opacity: 1; }
}

.hero-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: calc(var(--header-h) + var(--promo-h));
  box-sizing: border-box;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(196, 181, 253, 0.32) 0%, transparent 50%, rgba(14, 165, 233, 0.22) 100%);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
  transition: transform 8s var(--ease-out);
}

.hero:hover .hero-image {
  transform: scale(1.06);
}

.hero-panel {
  position: relative;
  z-index: 2;
  background: var(--gradient-hero);
  background-size: 200% 200%;
  animation: heroGradientShift 12s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + var(--promo-h) + 2rem) 3rem 4rem;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

@keyframes heroGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0H0v60' fill='none' stroke='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 480px;
  color: var(--white);
  direction: rtl;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.7s var(--ease-out) both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.7s var(--ease-out) 0.1s both;
}

.hero-logo-icon { width: 44px; height: 44px; flex-shrink: 0; }

.hero-logo-text {
  display: block;
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
}

.hero-tagline-en {
  font-size: 0.8rem;
  font-weight: 300;
  opacity: 0.88;
  letter-spacing: 0.04em;
}

.hero-headline {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1rem;
  text-wrap: balance;
  letter-spacing: -0.04em;
  overflow: hidden;
}

.hero-tagline-line {
  display: block;
  font-size: inherit;
  font-weight: 900;
  letter-spacing: -0.04em;
  transform: translateY(110%);
  animation: headlineReveal 0.9s var(--ease-out) forwards;
}

.hero-tagline-accent {
  display: block;
  margin-top: 0.14em;
  font-size: 0.9em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.02em;
  min-height: 1.45em;
  animation: headlineReveal 0.9s var(--ease-out) 0.12s forwards;
  transform: translateY(110%);
}

.hero-tagline-rotate {
  display: inline-block;
  transition: opacity 0.36s var(--ease-out), transform 0.36s var(--ease-out), filter 0.36s var(--ease-out);
}

.hero-tagline-rotate.is-out {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(4px);
}

.hero-tagline-rotate.is-in {
  animation: taglineValueIn 0.58s var(--ease-out) both;
}

@keyframes taglineValueIn {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.headline-line {
  display: block;
  transform: translateY(110%);
  animation: headlineReveal 0.9s var(--ease-out) forwards;
}

.headline-line--accent {
  animation-delay: 0.12s;
  margin: 0.1em 0;
}

.headline-line--punch {
  animation-delay: 0.24s;
}

@keyframes headlineReveal {
  to { transform: translateY(0); }
}

.headline-line--accent {
  color: var(--white);
}

.headline-rotate {
  display: inline-block;
  min-width: 5.5ch;
  text-align: center;
  background: linear-gradient(90deg, #fff 0%, var(--blue-pale) 40%, #fff 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerText 3s linear infinite;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

.headline-rotate.is-out {
  opacity: 0;
  transform: translateY(12px);
}

@keyframes shimmerText {
  to { background-position: 200% center; }
}

.headline-highlight {
  position: relative;
  display: inline-block;
  color: #fff;
  text-shadow: 0 0 40px rgba(56, 189, 248, 0.75);
}

.headline-highlight::after {
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0.08em;
  height: 0.35em;
  background: rgba(255, 171, 145, 0.55);
  border-radius: 4px;
  z-index: -1;
  animation: underlineGrow 0.8s var(--ease-out) 0.5s both;
}

@keyframes underlineGrow {
  from { transform: scaleX(0); transform-origin: right; }
  to { transform: scaleX(1); transform-origin: right; }
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 0.45rem;
  padding: 0.45rem 0.55rem 0.45rem 0.45rem;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  animation: fadeUp 0.7s var(--ease-out) 0.32s both;
}

.hero-rating-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.35rem 0.6rem;
  min-width: 3.25rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  line-height: 1.1;
  flex-shrink: 0;
}

.hero-rating-pill-num {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffd54f;
  line-height: 1;
}

.hero-rating-pill-stars {
  font-size: 0.5rem;
  letter-spacing: 0.5px;
  color: #fbbf24;
  line-height: 1;
}

.hero-rating-pill-label {
  font-size: 0.58rem;
  font-weight: 600;
  opacity: 0.85;
}

.hero-proof-meta {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.88;
  padding-inline-start: 0.35rem;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.2);
  padding-inline-end: 0.15rem;
  white-space: nowrap;
}

.hero-store-label {
  font-size: 0.72rem;
  opacity: 0.75;
  margin: 0.5rem 0 0.4rem;
  animation: fadeUp 0.7s var(--ease-out) 0.42s both;
}

.hero-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-inline-start: -10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-avatars img:first-child {
  margin-inline-start: 0;
}

.hero-avatars-more {
  margin-inline-start: -8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--purple-dark);
  border: 2px solid var(--white);
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--white);
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 340px;
  padding: 1.05rem 1.5rem;
  margin-bottom: 1rem;
  background: var(--white);
  color: var(--purple-dark);
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 255, 255, 0.4);
  animation: fadeUp 0.7s var(--ease-out) 0.38s both, ctaPulse 2.5s ease-in-out 1.2s infinite;
  transition: transform 0.3s var(--ease-spring);
}

.hero-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
}

.hero-cta-primary svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 255, 255, 0.35); }
  50% { box-shadow: 0 16px 48px rgba(14, 165, 233, 0.35), 0 0 0 8px rgba(255, 255, 255, 0); }
}

/* Hero phone mockup */
.hero-phone {
  position: absolute;
  z-index: 5;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(220px, 42vw);
  pointer-events: none;
  animation: heroPhoneFloat 6s ease-in-out infinite;
}

@keyframes heroPhoneFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-2deg); }
  50% { transform: translateX(-50%) translateY(-14px) rotate(2deg); }
}

.hero-phone-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.5) 0%, transparent 65%);
  filter: blur(20px);
  animation: glowPulse 4s ease-in-out infinite;
}

.hero-phone-device {
  position: relative;
  background: #1a1a2e;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 22px;
  background: #1a1a2e;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.hero-phone-screen {
  border-radius: 24px;
  overflow: hidden;
  background: #f8fafc;
}

.hero-phone-app.app-ui {
  padding: 1.85rem 0.65rem 0.5rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(6, 11, 20, 0.4) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, transparent 1px, transparent 60px);
  z-index: 2;
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.5);
  font-size: 0.8rem;
  color: var(--text);
  animation: floatCard 5s ease-in-out infinite;
  bottom: 18%;
  left: 8%;
}

.hero-float-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
}

.hero-float-card span:not(.float-stars) {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.hero-float-card--2 {
  top: 22%;
  right: 8%;
  left: auto;
  bottom: auto; /* override .hero-float-card bottom — otherwise card stretches full height */
  width: fit-content;
  height: auto;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  white-space: nowrap;
  animation-delay: -2.5s;
}

.float-rating-num {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--purple-dark);
  line-height: 1;
}

.float-rating-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.2;
}

.float-rating-meta > span:last-child {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.float-card-icon { font-size: 1.5rem; }

.float-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-sub {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0.65rem;
  line-height: 1.75;
  animation: fadeUp 0.7s var(--ease-out) 0.3s both;
}

.hero-sales-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin: 0 0 0.85rem;
  padding: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.32s both;
}

.hero-sales-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.hero-sales-points li span:first-child {
  font-size: 0.9em;
  line-height: 1;
}

.hero-cat-rotate {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.1rem;
  animation: fadeUp 0.7s var(--ease-out) 0.34s both;
}

.hero-cat-rotate-label {
  color: rgba(255, 255, 255, 0.55);
  margin-inline-end: 0.35rem;
}

.hero-cat-word {
  display: inline-block;
  min-width: 5ch;
  font-weight: 700;
  color: var(--blue-pale);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

.hero-cat-word.is-out {
  opacity: 0;
  transform: translateY(8px);
}

.promo-bar p strong {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* מסלול מהיר */
.quick-path {
  padding: 2.25rem 0;
  background: var(--surface);
  border-block: 1px solid var(--border);
  position: relative;
}

.quick-path-inner {
  text-align: center;
}

.quick-path-tagline {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 0.4rem;
}

.quick-path-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1.35rem;
}

.quick-path-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.quick-path-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-title);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s, border-color 0.25s;
}

.quick-path-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.quick-path-btn--trainee:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.quick-path-btn--trainer:hover {
  border-color: var(--purple);
  color: var(--purple-dark);
}

.quick-path-btn--categories:hover {
  border-color: var(--blue-dark);
  background: var(--blue-pale);
}

.quick-path-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.section-desc--steps {
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}

.features-grid--pillars {
  max-width: 960px;
  margin-inline: auto;
}

.feature-card--pillar {
  text-align: center;
}

.feature-step {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--purple);
  margin-bottom: 0.35rem;
}

.hero-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.7s var(--ease-out) 0.35s both;
}

.hero-categories-label {
  font-size: 0.75rem;
  opacity: 0.8;
  width: 100%;
  margin-bottom: 0.15rem;
}

.hero-cat-pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  text-decoration: none;
  transition: background 0.25s, transform 0.25s var(--ease-spring), box-shadow 0.25s;
  backdrop-filter: blur(8px);
}

.hero-cat-pill:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.hero-cat-pill--all {
  background: rgba(255, 255, 255, 0.95);
  color: var(--purple-dark);
  border-color: transparent;
}

.hero-cat-pill--all:hover {
  background: var(--white);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  animation: fadeUp 0.7s var(--ease-out) 0.4s both;
}

.store-buttons--center { justify-content: center; }

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--white);
  color: var(--purple-dark);
  padding: 0.5rem 1rem;
  border-radius: 14px;
  font-size: 0.78rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.store-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn small { font-size: 0.62rem; opacity: 0.65; }
.store-btn strong { font-size: 0.9rem; font-weight: 700; }

.store-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.store-btn--glow:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 0 24px rgba(255, 255, 255, 0.3);
}

.store-btn--dark {
  background: var(--purple-dark);
  color: var(--white);
}

.hero-availability {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  opacity: 0.85;
  animation: fadeUp 0.7s var(--ease-out) 0.5s both;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 10;
}

.scroll-hint-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: ringPulse 2s ease infinite;
}

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.scroll-hint svg {
  width: 22px;
  height: 22px;
  animation: bounce 2s ease infinite;
  position: relative;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Marquee ===== */
.marquee {
  padding: 1.25rem 0;
  background: var(--gradient-app);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.15);
  direction: ltr;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  padding-inline: 1rem;
}

.marquee-track span:not(:nth-child(even)) {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.marquee-track span:nth-child(even) {
  color: var(--blue-bright);
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* ===== Cities + trust strip ===== */
.cities-strip {
  padding: 1.5rem 0 1.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.cities-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.cities-strip-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-title);
  margin: 0;
}

.cities-strip-label svg {
  color: var(--blue-dark);
  flex-shrink: 0;
}

.cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cities-list li {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--blue-pale);
  color: var(--purple-dark);
  border: 1px solid rgba(14, 165, 233, 0.35);
  transition: transform 0.25s, background 0.25s;
}

.cities-list li:hover {
  background: var(--blue-mesh);
  transform: translateY(-2px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple);
  font-size: 0.7rem;
}

/* ===== Stats ===== */
.stats {
  padding: 4rem 0;
  background: var(--gradient-app-vertical);
  position: relative;
}

.stats .stat-item {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.stats .stat-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.stats .stat-num,
.stats .stat-suffix {
  color: var(--blue-dark);
}

.stats .stat-label {
  color: var(--text-muted);
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, background 0.35s;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
}

.stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== Audiences — Trainees & Trainers ===== */
.audiences {
  padding: clamp(4rem, 8vw, 6rem) 0 0;
  background: var(--surface);
  overflow: hidden;
  position: relative;
}

.audiences::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 100%);
  height: 400px;
  background: radial-gradient(ellipse, rgba(196, 181, 253, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.audiences-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2rem;
  padding-inline: 4vw;
  position: relative;
  z-index: 1;
}

.audiences-intro .section-desc {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.audiences-intro h2 {
  color: var(--text);
}

.audiences-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.audiences-jump-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s, border-color 0.25s;
}

.jump-icon { font-size: 1.15rem; }

.audiences-jump-btn--trainee {
  background: var(--blue-pale);
  border-color: var(--blue);
  color: var(--blue-dark);
}

.audiences-jump-btn--trainee:hover {
  background: var(--blue-bright);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--trainee-glow);
}

.audiences-jump-btn--trainer {
  background: #fff0f6;
  border-color: var(--accent-hot);
  color: var(--purple-deep);
}

.audiences-jump-btn--trainer:hover {
  background: var(--accent-hot);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--trainer-glow);
}

.audiences-jump-btn.is-selected {
  transform: translateY(-2px);
}

.audiences-jump-btn--trainee.is-selected {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 8px 28px var(--trainee-glow);
}

.audiences-jump-btn--trainer.is-selected {
  background: var(--purple-dark);
  color: var(--white);
  box-shadow: 0 8px 28px var(--trainer-glow);
}

/* Mobile tabs */
.audiences-tabs {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 4vw 1.25rem;
  position: relative;
  z-index: 5;
}

.audiences-tab {
  flex: 1;
  max-width: 200px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--white);
  border: 2px solid var(--border);
  transition: all 0.35s var(--ease-spring);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.tab-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.audiences-tab.is-active {
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.audiences-tab[data-tab="trainees"].is-active {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-color: var(--blue-dark);
}

.audiences-tab[data-tab="trainers"].is-active {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  border-color: var(--purple-dark);
}

.audiences-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: auto;
  position: relative;
  align-items: start;
}

.audiences-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: relative;
  width: 64px;
  align-self: center;
}

.audiences-divider span {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--purple-dark);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--purple-dark), 0 12px 40px rgba(139, 92, 246, 0.3);
  animation: dividerPulse 3s ease-in-out infinite;
}

@keyframes dividerPulse {
  0%, 100% { box-shadow: 0 0 0 6px var(--navy), 0 12px 40px rgba(0, 0, 0, 0.4); }
  50% { box-shadow: 0 0 0 6px var(--purple-dark), 0 12px 50px rgba(14, 165, 233, 0.35); }
}

.audience-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 0;
  height: auto;
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.55s var(--ease-out),
    flex 0.55s var(--ease-out),
    filter 0.45s;
  cursor: default;
}

.audience-panel.panel-enter {
  animation: audiencePanelIn 0.55s var(--ease-out);
}

@keyframes audiencePanelIn {
  from {
    opacity: 0.7;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.audience-panel--trainee::before,
.audience-panel--trainer::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 4px;
  pointer-events: none;
}

.audience-panel--trainee::before {
  right: 0;
  background: linear-gradient(180deg, transparent, var(--trainee), transparent);
  opacity: 0.6;
}

.audience-panel--trainer::before {
  left: 0;
  background: linear-gradient(180deg, transparent, var(--trainer), transparent);
  opacity: 0.6;
}

.audience-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.audience-glow--trainee {
  bottom: 10%;
  right: 10%;
  background: var(--trainee);
}

.audience-glow--trainer {
  bottom: 15%;
  left: 10%;
  background: var(--trainer);
}

.audience-panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.audience-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out), transform 10s var(--ease-out);
  will-change: transform;
}

.audience-panel-bg img.loaded {
  opacity: 1;
}

.audience-panel:hover .audience-panel-bg img,
.audience-panel.is-active .audience-panel-bg img {
  transform: scale(1.06);
}

.audience-panel-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 0.5s;
}

.audience-panel-overlay--trainee {
  background: linear-gradient(
    105deg,
    rgba(88, 28, 135, 0.15) 0%,
    rgba(8, 145, 178, 0.5) 45%,
    rgba(0, 229, 255, 0.35) 70%,
    rgba(10, 6, 20, 0.85) 100%
  );
}

.audience-panel-overlay--trainer {
  background: linear-gradient(
    255deg,
    rgba(0, 229, 255, 0.06) 0%,
    rgba(255, 45, 107, 0.45) 38%,
    rgba(147, 51, 234, 0.55) 65%,
    rgba(10, 6, 20, 0.92) 100%
  );
}

.audience-quote {
  position: relative;
  z-index: 4;
  flex-shrink: 0;
  align-self: flex-start;
  order: -2;
  margin: clamp(1rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 2rem) 0;
  max-width: min(280px, 88%);
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.audience-quote cite {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  font-style: normal;
  color: var(--text-muted-on-dark);
}

.audience-panel-content {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  max-width: 520px;
  width: 100%;
  color: var(--text-on-dark);
  margin-inline-start: auto;
  background: linear-gradient(
    165deg,
    rgba(15, 23, 42, 0.42) 0%,
    rgba(15, 23, 42, 0.62) 100%
  );
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  isolation: isolate;
}

.audience-panel--trainer .audience-panel-content {
  margin-inline-start: 0;
  margin-inline-end: auto;
}

.audience-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(10px);
}

.audience-tag svg { width: 18px; height: 18px; }

.audience-panel--trainee .audience-tag {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--blue-pale);
}

.audience-panel--trainer .audience-tag {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #f3e5f5;
}

.audience-panel h3 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
  text-wrap: balance;
  color: var(--white);
}

.audience-panel h3 em {
  font-style: normal;
  display: inline-block;
  color: var(--blue-bright);
  text-shadow: 0 0 40px var(--trainee-glow);
}

.audience-panel--trainer h3 em {
  color: var(--accent-hot);
  text-shadow: 0 0 40px var(--trainer-glow);
}

.audience-lead {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  line-height: 1.8;
  color: #c5d4e0;
  margin-bottom: 1.25rem;
}

.audience-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
}

.audience-highlights li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  padding: 0.55rem 0.35rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease-spring);
}

.audience-panel:hover .audience-highlights li,
.audience-panel.is-active .audience-highlights li {
  transform: translateY(-2px);
}

.highlight-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.audience-highlights strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.audience-highlights small {
  font-size: 0.58rem;
  color: #a8b8c4;
  line-height: 1.2;
}

.audience-highlights--trainer li {
  background: rgba(74, 20, 140, 0.35);
  border-color: rgba(196, 181, 253, 0.25);
}

.audience-goals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.audience-goals-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #b0bec5;
}

.audience-goal-pill {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--blue-pale);
}

.audience-metric {
  margin-bottom: 1rem;
  padding: 0.9rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.audience-metric--trainee {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(2, 132, 199, 0.18);
}

.audience-metric--trainer {
  border-color: rgba(196, 181, 253, 0.35);
  background: rgba(109, 40, 217, 0.2);
}

.audience-metric-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.25rem;
}

.audience-metric-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.audience-metric-value span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-light);
}

.audience-metric--trainee .audience-metric-value span {
  color: var(--blue-bright);
}

.audience-metric-note {
  margin-top: 0.4rem;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

/* גישת «בלי הפלטפורמה» — בלי הבטחות */
.audience-reality {
  margin-bottom: 1rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.audience-reality--trainer {
  border-color: rgba(255, 45, 107, 0.45);
  background: linear-gradient(145deg, rgba(255, 45, 107, 0.12) 0%, rgba(0, 0, 0, 0.45) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.audience-reality--trainee {
  border-color: rgba(0, 229, 255, 0.35);
  background: linear-gradient(145deg, rgba(0, 229, 255, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.audience-reality-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin-bottom: 0.65rem;
}

.audience-reality--trainee .audience-reality-kicker {
  color: var(--blue-bright);
}

.audience-reality-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.audience-reality-list li {
  position: relative;
  padding-inline-start: 1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.audience-reality-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-hot);
  box-shadow: 0 0 8px var(--accent-hot-glow);
}

.audience-reality--trainee .audience-reality-list li::before {
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue-glow);
}

.audience-reality-list strong {
  color: var(--white);
  font-weight: 800;
}

/* סטטיסטיקות ללא מספרים מובטחים */
.stat-item--pillar .stat-icon {
  display: block;
  font-size: 1.65rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item--pillar .stat-word {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--purple-dark);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.stats .stat-item--pillar {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 45, 107, 0.12);
}

.stats .stat-item--pillar:hover {
  border-color: rgba(192, 38, 211, 0.35);
  box-shadow: 0 12px 32px rgba(255, 45, 107, 0.12);
}

.audience-verify-strip,
.audience-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
}

.audience-verify-strip li,
.audience-trust-strip li {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--purple-light);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.audience-trust-strip li::before {
  content: '✓';
  color: var(--blue-bright);
  font-weight: 800;
}

.audience-trust-strip {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.audience-trust-strip li::before {
  content: none;
}

.audience-trust-strip li {
  color: #b3e5fc;
}

.audience-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.audience-chip {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform 0.25s var(--ease-spring), background 0.25s;
}

.audience-panel--trainee .audience-chip:not(.audience-chip--static) {
  background: rgba(14, 165, 233, 0.25);
  border: 1px solid rgba(129, 212, 250, 0.5);
  color: var(--blue-pale);
}

.audience-panel--trainee .audience-chip:hover {
  background: rgba(14, 165, 233, 0.45);
  transform: translateY(-2px);
}

.audience-panel--trainee .audience-chip--more {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.audience-panel--trainer .audience-chip--static {
  background: rgba(139, 92, 246, 0.35);
  border: 1px solid rgba(196, 181, 253, 0.45);
  color: #f3e5f5;
}

.audience-journey {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.audience-journey li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: #dce8f0;
}

.journey-num {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

.audience-panel--trainee .journey-num {
  background: var(--trainee);
  color: var(--white);
  box-shadow: 0 4px 12px var(--trainee-glow);
}

.audience-panel--trainer .journey-num {
  background: var(--purple-light);
  color: var(--purple-dark);
  box-shadow: 0 4px 12px var(--trainer-glow);
}

.audience-journey strong {
  color: var(--white);
}

.audience-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
}

.audience-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #e8f0f5;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.audience-panel.benefits-visible .audience-benefits li,
.audience-panel:hover .audience-benefits li {
  opacity: 1;
  transform: translateX(0);
}

.audience-benefits li:nth-child(1) { transition-delay: 0.05s; }
.audience-benefits li:nth-child(2) { transition-delay: 0.12s; }
.audience-benefits li:nth-child(3) { transition-delay: 0.19s; }
.audience-benefits li:nth-child(4) { transition-delay: 0.26s; }
.audience-benefits li:nth-child(5) { transition-delay: 0.33s; }

.audience-benefits strong {
  color: var(--white);
  font-weight: 700;
}

.benefit-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1rem;
  line-height: 1;
}

.audience-panel--trainee .benefit-icon {
  background: rgba(14, 165, 233, 0.2);
  border: 1px solid rgba(129, 212, 250, 0.35);
}

.audience-panel--trainer .benefit-icon {
  background: rgba(139, 92, 246, 0.3);
  border: 1px solid rgba(196, 181, 253, 0.4);
}

.audience-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.audience-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  width: 100%;
}

.audience-cta-secondary {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  transition: background 0.25s, transform 0.25s;
}

.audience-cta-secondary--trainee {
  background: rgba(255, 255, 255, 0.1);
}

.audience-cta-secondary--trainee:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.audience-cta-secondary--trainer {
  background: rgba(139, 92, 246, 0.35);
  border-color: rgba(196, 181, 253, 0.5);
  color: #f3e5f5;
}

.audience-cta-secondary--trainer:hover {
  background: rgba(139, 92, 246, 0.55);
  transform: translateY(-1px);
}

.audience-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.05rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 1.02rem;
  font-weight: 800;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.audience-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease-out);
}

.audience-cta:hover {
  transform: translateY(-4px) scale(1.03);
}

.audience-cta:hover svg { transform: translateX(-5px); }

.audience-cta--trainee {
  background: var(--white);
  color: var(--trainee);
  box-shadow: 0 10px 36px var(--trainee-glow);
}

.audience-cta--trainer {
  background: var(--white);
  color: var(--purple-dark);
  box-shadow: 0 10px 36px var(--trainer-glow);
}

.audience-cta-note {
  font-size: 0.75rem;
  color: var(--text-muted-on-dark);
}

.audience-stats-float {
  position: relative;
  z-index: 4;
  flex-shrink: 0;
  order: -3;
  align-self: flex-end;
  margin: clamp(1rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 2rem) 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
  max-width: min(240px, 92%);
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  padding: 0.4rem 0.55rem;
  min-width: 3.5rem;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  text-align: center;
  transition: transform 0.3s var(--ease-spring);
}

.audience-panel:hover .stat-pill,
.audience-panel.is-active .stat-pill {
  transform: scale(1.04);
}

.stat-pill-num {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.stat-pill-label {
  font-size: 0.58rem;
  color: #b8c8d4;
  line-height: 1.1;
  white-space: nowrap;
}

.stat-pill--rating .stat-pill-num {
  color: #ffd54f;
}

.stat-pill--rating .stat-pill-label {
  color: #fbbf24;
}

.stat-pill--accent .stat-pill-num {
  color: var(--purple-light);
}

.stat-pill--hot .stat-pill-num {
  color: var(--orange);
}

.stat-pill--hot .stat-pill-label {
  color: #ffccbc;
}

.audience-badge {
  position: static;
  display: block;
  width: fit-content;
  margin: 0.85rem auto 0;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
}

.audience-badge--trainee {
  background: rgba(255, 255, 255, 0.2);
  color: var(--blue-pale);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.audience-badge--trainer {
  background: rgba(255, 255, 255, 0.2);
  color: #f3e5f5;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Desktop — split panels */
@media (min-width: 1025px) {
  .audiences-tabs { display: none !important; }

  .audiences-split {
    align-items: stretch;
    min-height: min(68vh, 680px);
    padding: 0 clamp(1.25rem, 3vw, 3rem) clamp(3rem, 5vw, 4.5rem);
    transition: grid-template-columns 0.55s var(--ease-out);
  }

  .audiences-split:has(.audience-panel--trainee:hover) {
    grid-template-columns: 1.12fr 72px 0.88fr;
  }

  .audiences-split:has(.audience-panel--trainer:hover) {
    grid-template-columns: 0.88fr 72px 1.12fr;
  }

  .audiences-split:hover .audience-panel:not(:hover) {
    opacity: 0.72;
    filter: saturate(0.82) brightness(0.94);
  }

  .audiences-split .audience-panel {
    min-height: 100%;
    justify-content: center;
    border-radius: var(--radius-xl);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.18);
    transition:
      opacity 0.5s var(--ease-out),
      filter 0.45s,
      transform 0.45s var(--ease-out),
      box-shadow 0.45s var(--ease-out);
  }

  .audiences-split .audience-panel:hover {
    opacity: 1;
    filter: saturate(1.06) brightness(1.02);
    z-index: 3;
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(15, 23, 42, 0.28);
  }

  .audience-panel--trainee {
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
  }

  .audience-panel--trainer {
    clip-path: polygon(4% 0, 100% 0, 100% 100%, 0 100%);
  }

  .audience-panel[role="tabpanel"] {
    display: flex !important;
  }

  .audience-panel-content {
    max-width: min(440px, 92%);
    margin-block: clamp(1.5rem, 3vw, 2.5rem);
    padding: 1.65rem 1.75rem 1.85rem;
  }

  .audience-panel--trainee .audience-panel-content {
    margin-block: clamp(1.5rem, 3vw, 2.5rem);
    margin-inline-start: auto;
    margin-inline-end: clamp(2rem, 5vw, 4rem);
  }

  .audience-panel--trainer .audience-panel-content {
    margin-block: clamp(1.5rem, 3vw, 2.5rem);
    margin-inline-start: clamp(2rem, 5vw, 4rem);
    margin-inline-end: auto;
  }

  .audience-panel h3 {
    font-size: clamp(2rem, 3.2vw, 2.85rem);
    margin-bottom: 0.75rem;
  }

  .audience-lead {
    margin-bottom: 1rem;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .audience-goals {
    display: none;
  }

  .audience-highlights {
    gap: 0.55rem;
    margin-bottom: 1rem;
  }

  .audience-highlights li {
    padding: 0.65rem 0.45rem;
  }

  .audience-highlights strong {
    font-size: 0.72rem;
  }

  .audience-panel--trainee .audience-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    margin-bottom: 1rem;
  }

  .audience-panel--trainee .audience-chip {
    text-align: center;
    font-size: 0.65rem;
    padding: 0.32rem 0.4rem;
    justify-content: center;
  }

  .audience-panel--trainer .audience-chips {
    margin-bottom: 1rem;
  }

  .audience-benefits--compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
  }

  .audience-benefits--compact li {
    opacity: 1;
    transform: none;
    padding: 0.55rem 0.65rem;
    font-size: 0.82rem;
  }

  .audience-metric {
    margin-bottom: 0.85rem;
  }

  .audience-cta-wrap {
    margin-top: 0.25rem;
  }

  .audience-cta {
    flex: 1;
    justify-content: center;
    min-width: 0;
  }

  .audience-cta-row {
    flex-wrap: nowrap;
  }

  .audiences-divider {
    width: 72px;
    align-self: stretch;
  }

  .audiences-divider span {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    font-size: 0.82rem;
    box-shadow:
      0 0 0 5px var(--surface),
      0 0 0 7px rgba(139, 92, 246, 0.35),
      0 16px 40px rgba(15, 23, 42, 0.2);
  }

  .audience-panel-bg img {
    object-position: center 30%;
  }

  .audience-glow {
    width: 420px;
    height: 420px;
    opacity: 0.45;
  }
}

/* ===== Features — Bento ===== */
.features {
  padding: 6rem 0;
  background: var(--surface);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(196, 181, 253, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature-card h3 {
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, var(--blue-bright) 100%);
  -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;
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card--wide {
  grid-column: span 2;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-card[data-color="purple"] .feature-icon { background: rgba(139, 92, 246, 0.15); color: var(--purple); }
.feature-card[data-color="orange"] .feature-icon { background: rgba(255, 171, 145, 0.35); color: var(--orange-deep); }
.feature-card[data-color="cyan"] .feature-icon { background: rgba(8, 145, 178, 0.12); color: var(--cyan); }
.feature-card[data-color="blue"] .feature-icon { background: rgba(14, 165, 233, 0.2); color: var(--blue-dark); }
.feature-card[data-color="pink"] .feature-icon { background: rgba(219, 39, 119, 0.12); color: var(--pink); }
.feature-card[data-color="green"] .feature-icon { background: rgba(22, 163, 74, 0.12); color: var(--green); }

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Workout Categories ===== */
.categories {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface) 0%, var(--blue-pale) 45%, var(--surface) 100%);
}

.categories::before {
  content: '';
  position: absolute;
  width:  min(90vw, 720px);
  height: min(90vw, 720px);
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.categories .container {
  position: relative;
  z-index: 1;
}

.categories-search {
  max-width: 520px;
  margin: 0 auto 2rem;
}

.categories-search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.35rem 0.35rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(14, 165, 233, 0.08);
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: box-shadow 0.35s var(--ease-out), border-color 0.35s;
}

.categories-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0.65rem 0;
  font: inherit;
  color: var(--text);
  direction: rtl;
}

.categories-search-input::placeholder {
  color: var(--text-muted);
}

.categories-search-input:focus {
  outline: none;
}

.categories-search-clear {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.categories-search-clear:hover {
  background: rgba(139, 92, 246, 0.12);
  color: var(--purple-dark);
}

.categories-search-status {
  min-height: 1.35rem;
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.categories-search-status.is-empty {
  color: var(--purple-dark);
  font-weight: 600;
}

.category-card.is-filtered-out {
  display: none;
}

.categories-search-bar svg {
  width: 20px;
  flex-shrink: 0;
  color: var(--blue-dark);
}

.categories-search-bar:focus-within {
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: var(--shadow-md);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.15rem 0.75rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font);
  text-align: center;
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s,
    background 0.35s;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-app);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 92, 246, 0.35);
}

.category-card.is-active {
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.25);
  transform: translateY(-2px);
}

.category-card.is-active::after {
  opacity: 0.12;
}

.category-card.is-active .category-name {
  color: var(--text-title);
}

.category-card:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.category-emoji {
  font-size: 1.75rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.category-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.category-count,
.category-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.category-tag {
  color: var(--purple-dark);
  font-weight: 600;
}

/* ===== Organic pull / משיכת קהל ===== */
.organic-pull {
  padding: 4.5rem 0;
  background: linear-gradient(165deg, var(--navy) 0%, #1a2744 45%, var(--purple-deep) 100%);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.organic-pull::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 20% 80%, rgba(96, 197, 241, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(168, 85, 247, 0.15), transparent 55%);
  pointer-events: none;
}

.organic-pull-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.organic-pull .eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue-bright);
}

.organic-pull h2 {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}

.organic-pull-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted-on-dark);
  margin-bottom: 1.5rem;
  max-width: 38rem;
}

.organic-pull-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.organic-pull-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.organic-pull-list strong {
  color: var(--white);
}

.organic-pull-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.organic-pull-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  background: var(--white);
  color: var(--purple-dark);
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.organic-pull-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(96, 197, 241, 0.35);
}

.organic-pull-link {
  color: var(--blue-bright);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.organic-pull-link:hover {
  color: var(--white);
}

.organic-pull-aside {
  padding: 1.5rem 1.35rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.organic-pull-aside-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.organic-pull-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.organic-pull-aside li {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  padding-right: 1.1rem;
  position: relative;
}

.organic-pull-aside li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 768px) {
  .organic-pull-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .organic-pull-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .organic-pull-btn {
    width: 100%;
  }
}

/* ===== Early access / הרשמה מוקדמת ===== */
.early-access {
  padding: 4rem 0;
  background: var(--gradient-app-vertical);
  border-block: 1px solid var(--border);
}

.early-access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.early-access-copy .eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(247, 176, 129, 0.25);
  color: #c2410c;
  font-size: 0.78rem;
  font-weight: 800;
}

.early-access-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.early-access-copy p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 42ch;
}

.early-access-perks {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.early-access-perks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.early-access-form {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.early-access-form h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--purple-dark);
  margin-bottom: 1rem;
}

.early-access-form .form-field {
  margin-bottom: 0.85rem;
}

.early-access-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.early-access-form input,
.early-access-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.early-access-form input:focus,
.early-access-form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.early-access-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem 1.25rem;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(96, 197, 241, 0.45);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
}

.early-access-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(96, 197, 241, 0.55);
}

.early-access-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.early-access-note {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.early-access-success {
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(52, 211, 153, 0.12);
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 900px) {
  .early-access-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

#categories-preview {
  transition: transform 0.35s var(--ease-spring), opacity 0.35s;
}

.categories-preview-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem 1.5rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  margin: 0 auto;
}

.categories-preview-emoji {
  font-size: 2.5rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-app);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
}

.categories-preview-card h3 {
  font-size: 1.2rem;
  color: var(--text-title);
  margin-bottom: 0.35rem;
}

.categories-preview-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.categories-preview-cta {
  grid-column: 1 / -1;
  justify-self: center;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-app);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.categories-preview-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.4);
}

@media (min-width: 640px) {
  .categories-preview-cta {
    grid-column: auto;
    justify-self: auto;
  }
}

@media (max-width: 639px) {
  .categories-preview-card {
    grid-template-columns: auto 1fr;
    text-align: center;
  }

  .categories-preview-emoji {
    grid-row: span 2;
  }
}

.categories-grid .category-card:nth-child(1) { transition-delay: 0.02s; }
.categories-grid .category-card:nth-child(2) { transition-delay: 0.04s; }
.categories-grid .category-card:nth-child(3) { transition-delay: 0.06s; }
.categories-grid .category-card:nth-child(4) { transition-delay: 0.08s; }
.categories-grid .category-card:nth-child(5) { transition-delay: 0.1s; }
.categories-grid .category-card:nth-child(6) { transition-delay: 0.12s; }
.categories-grid .category-card:nth-child(7) { transition-delay: 0.14s; }
.categories-grid .category-card:nth-child(8) { transition-delay: 0.16s; }
.categories-grid .category-card:nth-child(9) { transition-delay: 0.18s; }
.categories-grid .category-card:nth-child(10) { transition-delay: 0.2s; }
.categories-grid .category-card:nth-child(11) { transition-delay: 0.22s; }
.categories-grid .category-card:nth-child(12) { transition-delay: 0.24s; }
.categories-grid .category-card:nth-child(13) { transition-delay: 0.26s; }
.categories-grid .category-card:nth-child(14) { transition-delay: 0.28s; }
.categories-grid .category-card:nth-child(15) { transition-delay: 0.3s; }

/* ===== Steps ===== */
.steps {
  padding: 5rem 0;
  background: var(--white);
  border-block: 1px solid var(--border);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  top: 3.5rem;
  right: 16%;
  left: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-pale), var(--blue), var(--blue-pale));
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 2rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.step-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-pale), var(--white));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue);
}

.step-icon-wrap svg { width: 24px; height: 24px; }

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue);
  opacity: 0.35;
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 0.5rem;
}

.step-card h3 {
  color: var(--text);
}

.step-card p {
  color: var(--text-muted);
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== About ===== */
.about {
  padding: 6rem 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-heading,
.about-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 1rem;
}

.about-quote p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.about-blob {
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 260px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.about-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-blob--left {
  border-radius: 58% 42% 48% 52% / 48% 52% 48% 52%;
}

.about-blob--right {
  border-radius: 42% 58% 52% 48% / 52% 48% 52% 48%;
  opacity: 0.9;
}

/* ===== App Preview ===== */
.app-preview {
  padding: 5rem 0 6rem;
  overflow: hidden;
  background: var(--gradient-dark);
  color: var(--text-on-dark);
}

.app-preview .preview-cta-text {
  color: var(--text-muted-on-dark);
}

.app-preview .section-header h2 {
  color: var(--text-on-dark);
}

.app-preview .section-desc {
  color: var(--text-muted-on-dark);
}

.app-preview .eyebrow {
  color: var(--purple-light);
}

.preview-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 540px;
  padding: 2rem 0 3.5rem;
}

.preview-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.preview-blob {
  position: absolute;
  width: min(680px, 92vw);
  height: min(480px, 65vw);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.28) 0%, rgba(14, 165, 233, 0.12) 100%);
  border-radius: 58% 42% 52% 48% / 48% 55% 45% 52%;
  z-index: 0;
  animation: blobMorph 10s ease-in-out infinite;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 58% 42% 52% 48% / 48% 55% 45% 52%; }
  50% { border-radius: 42% 58% 48% 52% / 55% 45% 55% 45%; }
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: 272px;
  background: linear-gradient(160deg, #4c1d95 0%, #1e1b4b 100%);
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.phone-notch {
  width: 88px;
  height: 24px;
  background: var(--purple-dark);
  border-radius: 0 0 16px 16px;
  margin: 0 auto -6px;
  position: relative;
  z-index: 3;
}

.phone-screen {
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  min-height: 460px;
  position: relative;
}

.carousel-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #f1f5f9;
  z-index: 5;
}

.carousel-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transition: width 0.1s linear;
}

.carousel-track { position: relative; min-height: 460px; }

.carousel-slide {
  position: absolute;
  inset: 0;
  padding: 1.5rem 1.25rem;
  opacity: 0;
  transform: translateX(24px) scale(0.98);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  position: relative;
}

/* App UI */
.app-profile-header {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.app-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.app-profile h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-title);
}

.app-role {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.app-bio {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.app-tags span {
  font-size: 0.68rem;
  padding: 0.25rem 0.55rem;
  background: var(--blue-pale);
  color: var(--blue-dark);
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.app-rating {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.app-rating small {
  color: var(--text-muted);
  font-size: 0.72rem;
  margin-right: 0.35rem;
}

.app-btn--primary {
  width: 100%;
  padding: 0.8rem;
  background: var(--gradient-app);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(96, 197, 241, 0.4);
}

.app-search h3,
.app-progress h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.app-search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.app-search-bar svg { width: 16px; color: var(--blue); flex-shrink: 0; }

.app-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.app-category-chips span {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-pill);
  background: rgba(139, 92, 246, 0.12);
  color: var(--purple-dark);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.app-trainer-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.82rem;
}

.app-trainer-list img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.app-trainer-list small {
  margin-right: auto;
  font-weight: 700;
  color: var(--gold);
}

.app-stat-ring {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 1rem;
}

.app-stat-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: #f1f5f9;
  stroke-width: 8;
}

.ring-fill {
  fill: none;
  stroke: url(#ringGrad);
  stroke: var(--blue);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 66;
}

.app-stat-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.app-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.app-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.app-progress-lead {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0.5rem 0 1rem;
  line-height: 1.55;
}

.app-progress-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.app-progress-list li {
  padding: 0.65rem 1rem;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-dark);
  text-align: center;
}

.app-progress-msg {
  text-align: center;
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
}

.carousel-btn {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.25s, background 0.25s, color 0.25s;
  flex-shrink: 0;
}

.carousel-btn svg { width: 22px; height: 22px; }

.carousel-btn:hover {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.06);
}

.carousel-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.65rem;
  z-index: 2;
  max-width: 100%;
  padding: 0 0.5rem;
}

.carousel-dots button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  min-height: 32px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-out);
}

.carousel-dots button[aria-selected="true"] {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.38);
}

.carousel-dot-label {
  white-space: nowrap;
}

.preview-cta {
  text-align: center;
  margin-top: 2rem;
}

.preview-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.contact-heading,
#contact-title {
  color: var(--text);
}

#faq-title {
  color: var(--text);
}

/* ===== Delete profile (modal) ===== */
.delete-profile-modal {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: min(520px, 94vw);
  max-height: min(90dvh, 720px);
  overflow: hidden;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
  direction: rtl;
}

.delete-profile-modal::backdrop {
  background: rgba(6, 11, 20, 0.55);
  backdrop-filter: blur(4px);
}

.delete-profile-modal-close {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  background: var(--surface);
  transition: background 0.2s, color 0.2s;
}

.delete-profile-modal-close:hover {
  background: var(--blue-pale);
  color: var(--text);
}

.delete-profile-modal-close svg {
  width: 18px;
  height: 18px;
}

.delete-profile-modal-inner {
  padding: 1.5rem 1.35rem 1.35rem;
  overflow-y: auto;
  max-height: min(90dvh, 720px);
}

.delete-profile-modal-head {
  text-align: center;
  margin-bottom: 1.25rem;
}

.delete-profile-modal-head .eyebrow {
  display: block;
  margin-bottom: 0.35rem;
}

.delete-profile-modal-head h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.delete-profile-modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 36ch;
  margin-inline: auto;
}

.delete-profile-modal .delete-profile-form {
  margin-top: 0;
}

.delete-profile-modal .form-grid {
  gap: 0.85rem 1rem;
}

.delete-profile-modal .form-submit--muted {
  margin-top: 0.25rem;
}

.nav-util a {
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
  opacity: 0.85;
}

.header:not(.scrolled) .nav-links .nav-util a,
.header.scrolled .nav-links .nav-util a {
  padding: 0.55rem 0.5rem !important;
  border-bottom: none !important;
  min-height: auto !important;
}

.nav-util a:hover {
  color: var(--purple-dark) !important;
  opacity: 1;
}

.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  direction: rtl;
}

.form-field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

.form-field--checkbox {
  margin-top: 0.25rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted, #64748b);
}

.form-checkbox input {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--purple, #a855f7);
}

.form-submit--muted {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  box-shadow: 0 6px 20px rgba(71, 85, 105, 0.25);
}

.form-submit--muted:hover {
  box-shadow: 0 8px 28px rgba(71, 85, 105, 0.35);
}

/* ===== Contact ===== */
.contact {
  padding: 6rem 0;
  background: var(--white);
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--surface-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field--full { grid-column: 1 / -1; }

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  direction: rtl;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

.form-field input.invalid,
.form-field textarea.invalid {
  border-color: #ef4444;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  margin-top: 1.25rem;
  padding: 1rem;
  background: var(--gradient-app);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px var(--blue-glow);
}

.form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--blue-glow);
}

.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.btn-loader {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.form-honey {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.form-success {
  text-align: center;
  color: var(--green-dark);
  font-weight: 700;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: var(--radius-md);
}

/* ===== Footer ===== */
.footer {
  background: var(--gradient-footer);
  padding: 3rem 0 0;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: 2rem 1.75rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.35rem;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer-tagline {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  opacity: 0.85;
  max-width: 280px;
}

.footer-nav h3,
.footer-connect h3 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  opacity: 0.95;
}

.footer-connect {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.footer-nav a:hover {
  color: var(--white);
  transform: translateX(-4px);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.footer-social svg { width: 18px; height: 18px; }

.footer-cta {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--white);
  color: var(--purple-dark);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 0 2rem;
}

.footer-bottom-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.8rem;
}

.footer-bottom-bar a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-bar a:hover {
  color: var(--white);
}

.footer-copy,
.footer-legal {
  font-size: 0.78rem;
  opacity: 0.55;
  margin: 0;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--white);
}

/* ===== Sticky CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(12, 18, 34, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 480px;
  margin: 0 auto;
  gap: 1rem;
}

.sticky-cta-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.sticky-cta-text {
  flex: 1;
  min-width: 0;
}

.sticky-cta-text strong {
  display: block;
  font-size: 1rem;
  color: var(--purple-dark);
}

.sticky-cta-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.sticky-cta-btn {
  padding: 0.65rem 1.5rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  background: var(--gradient-app);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 16px var(--blue-glow);
  transition: transform 0.2s;
}

.sticky-cta-btn:active {
  transform: scale(0.97);
}

/* ===== Section quick nav ===== */
.section-nav {
  position: fixed;
  top: 50%;
  right: 1rem;
  z-index: 850;
  transform: translateY(-50%);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.section-nav:not(.is-visible) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(12px);
}

.section-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}

.section-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  padding: 4px;
  border-radius: 50%;
  transition: transform 0.2s;
}

.section-nav-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.section-nav-link:hover .section-nav-dot,
.section-nav-link:focus-visible .section-nav-dot {
  background: var(--blue);
  transform: scale(1.15);
}

.section-nav-link.is-active .section-nav-dot {
  background: var(--gradient-app);
  background: var(--purple);
  transform: scale(1.35);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.section-nav-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.section-nav-util-item {
  margin-top: 0.1rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(96, 197, 241, 0.2);
}

.section-nav-link--util .section-nav-dot {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  opacity: 0.5;
}

.section-nav-link--util:hover .section-nav-dot,
.section-nav-link--util:focus-visible .section-nav-dot {
  opacity: 0.9;
  background: var(--text-muted);
  transform: none;
  box-shadow: none;
}

/* ===== Persona banner ===== */
.persona-banner {
  margin: 1.25rem auto 0;
  max-width: 520px;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-md);
  text-align: center;
  animation: fadeUp 0.5s var(--ease-out) both;
}

.persona-banner-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.persona-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.persona-banner-btn {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: transform 0.2s, box-shadow 0.2s;
}

.persona-banner-btn--trainee {
  background: var(--gradient-app);
  color: var(--white);
  box-shadow: 0 4px 16px var(--blue-glow);
}

.persona-banner-btn--trainer {
  background: var(--white);
  color: var(--purple-dark);
  border: 1px solid var(--border);
}

.persona-banner-btn:hover {
  transform: translateY(-1px);
}

.persona-banner-skip {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: underline;
  padding: 0.35rem 0.5rem;
}

.persona-banner-skip:hover {
  color: var(--purple-dark);
}

.field-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.field-meta .field-hint {
  margin-top: 0;
}

.field-counter {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.field-counter.is-warn {
  color: #b45309;
  font-weight: 600;
}

.field-counter.is-limit {
  color: #dc2626;
  font-weight: 700;
}

.form-field input.valid {
  border-color: rgba(22, 163, 74, 0.55);
}

/* ===== UX: Skip, overlay, toast, back-to-top, modal ===== */
.skip-link {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10002;
  padding: 0.75rem 1.25rem;
  background: var(--purple-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 0 var(--radius-sm);
  transform: translateY(-120%);
  transition: transform 0.25s var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
}

body.nav-open {
  overflow: hidden;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(6, 11, 20, 0.5);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-links.open {
  pointer-events: auto;
}

.toast-region {
  position: fixed;
  bottom: calc(5rem + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 10003;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: min(360px, 92vw);
  pointer-events: none;
}

.toast {
  padding: 0.9rem 1.15rem;
  background: var(--purple-dark);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-on-dark);
  animation: toastIn 0.4s var(--ease-out);
  pointer-events: auto;
}

.toast--success {
  border-color: rgba(22, 163, 74, 0.4);
  background: linear-gradient(135deg, #0f2918 0%, var(--navy) 100%);
}

.toast--info {
  border-color: rgba(14, 165, 233, 0.4);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.back-to-top {
  position: fixed;
  bottom: calc(5.5rem + env(safe-area-inset-bottom));
  left: 1.25rem;
  z-index: 899;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue);
  color: var(--white);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

body:has(.sticky-cta.visible) .back-to-top.is-visible {
  bottom: calc(5.5rem + 56px + env(safe-area-inset-bottom));
}

.download-modal {
  position: relative;
  border: none;
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.35rem 1.35rem;
  max-width: min(440px, 94vw);
  background: linear-gradient(165deg, #ffffff 0%, var(--blue-pale) 55%, #f5f3ff 100%);
  color: var(--text);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
  text-align: center;
  direction: rtl;
}

.download-modal::backdrop {
  background: rgba(6, 11, 20, 0.6);
  backdrop-filter: blur(6px);
}

.download-modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}

.download-modal-close:hover {
  background: var(--surface);
  color: var(--text);
}

.download-modal-close svg {
  width: 20px;
  height: 20px;
}

.download-modal-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  margin: 0 auto 0.75rem;
  box-shadow: var(--shadow-md);
}

.download-modal h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.download-modal p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.download-modal p a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}

.download-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.download-modal-btn {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.download-modal-btn--primary {
  background: var(--gradient-app);
  color: var(--white);
}

.download-modal-btn--ghost {
  background: var(--surface);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.label-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8em;
}

.field-error {
  display: block;
  font-size: 0.78rem;
  color: #dc2626;
  margin-top: 0.35rem;
  min-height: 1.1em;
}

.field-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.form-field input.invalid,
.form-field textarea.invalid,
.form-field input[type="tel"].invalid {
  border-color: #dc2626;
  background: #fef2f2;
}

.form-field input.valid,
.form-field textarea.valid,
.form-field input[type="tel"].valid {
  border-color: var(--green);
}

/* Touch targets */
.nav-links a,
.nav-download,
.audience-cta,
.form-submit,
.store-btn {
  min-height: 44px;
}

@media (min-width: 769px) {
  .toast-region {
    bottom: 1.5rem;
  }

  body:has(.sticky-cta.visible) .back-to-top.is-visible {
    bottom: 1.5rem;
  }
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 6rem 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.testimonial-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(139, 92, 246, 0.12);
  color: var(--purple-dark);
  margin-bottom: 0.65rem;
}

.testimonial-card--featured .testimonial-tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.testimonial-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.testimonial-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: var(--shadow-md);
}

.testimonial-card--featured {
  background: var(--gradient-app);
  border-color: transparent;
  color: var(--text-on-dark);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.testimonial-card--featured:hover {
  transform: scale(1.05) translateY(-6px) rotate(0.5deg);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card footer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card footer strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-card footer span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* כרטיס מודגש (רקע כהה) — חייב אחרי הכללים הכלליים */
.testimonial-card--featured p {
  color: rgba(255, 255, 255, 0.92);
}

.testimonial-card--featured footer strong {
  color: var(--white);
}

.testimonial-card--featured footer span {
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-card--featured .testimonial-stars {
  color: #fcd34d;
}

/* ===== FAQ ===== */
.faq {
  padding: 5rem 0;
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item[open] {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 1.15rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.3s var(--ease-spring);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item[open] p {
  animation: faqOpen 0.4s var(--ease-out);
}

@keyframes faqOpen {
  from { opacity: 0.7; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 2rem 0 6rem;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: var(--gradient-app);
  border-radius: var(--radius-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px var(--blue-glow);
}

.cta-banner-inner::after {
  content: '🧘 🥊 🏋️ 🔥';
  position: absolute;
  left: 1.5rem;
  bottom: 0.75rem;
  font-size: 1.1rem;
  opacity: 0.2;
  letter-spacing: 0.5rem;
  pointer-events: none;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-text {
  position: relative;
  z-index: 1;
}

.cta-banner-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.cta-banner-text p {
  opacity: 0.9;
  font-size: 1rem;
}

.cta-banner-btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--purple-dark);
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cta-banner-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* ===== Community / Facebook ===== */
.community-bar {
  padding: 0 0 2rem;
}

.community-bar-inner {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: none;
}

.community-bar-content {
  max-width: 52ch;
}

.community-bar-inner .eyebrow {
  display: block;
  margin-bottom: 0.3rem;
}

.community-bar-inner h2 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.community-bar-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.community-bar-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  margin: 0 0 0.85rem;
  padding: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.community-bar-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.community-bar-points li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.community-bar-meta {
  margin: 0;
}

.community-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: #1877f2;
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.community-bar-link:hover {
  color: #0d65d9;
  gap: 0.55rem;
}

.community-bar-link svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.cta-banner-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.92;
}

.cta-banner-steps span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cta-banner-steps strong {
  font-weight: 800;
}

/* ===== Reveal & playful motion — opacity always 1 for readability ===== */
.reveal {
  opacity: 1;
  transform: translateY(40px) scale(0.96);
  transition: transform 0.85s var(--ease-out);
}

.reveal.visible {
  transform: translateY(0) scale(1);
}

.reveal-pop.visible {
  animation: revealPop 0.75s var(--ease-spring) both;
}

@keyframes revealPop {
  0% { transform: translateY(28px) scale(0.9); }
  65% { transform: translateY(-6px) scale(1.03); }
  100% { transform: translateY(0) scale(1); }
}

/* Stagger groups */
[data-stagger] > .reveal,
[data-stagger] > .feature-card.reveal,
[data-stagger] > .category-card.reveal,
[data-stagger] > .step-card.reveal,
[data-stagger] > .testimonial-card.reveal,
[data-stagger] > .stat-item.reveal {
  transition-delay: calc(var(--stagger-i, 0) * 0.07s);
}

.audience-panel.reveal { transition: transform 0.95s var(--ease-out); }
.audience-panel--trainee.reveal { transition-delay: 0.05s; }
.audience-panel--trainer.reveal { transition-delay: 0.18s; }

/* Cities & trust cascade */
.cities-strip.reveal {
  transform: translateY(24px);
  filter: none;
}

.cities-strip.reveal.visible {
  transform: translateY(0);
}

.cities-strip .cities-list li,
.cities-strip .trust-row li {
  transform: translateY(18px) scale(0.9);
  transition: transform 0.55s var(--ease-spring);
}

.cities-strip.visible .cities-list li,
.cities-strip.visible .trust-row li {
  transform: translateY(0) scale(1);
}

.cities-strip.visible .cities-list li:nth-child(1) { transition-delay: 0.05s; }
.cities-strip.visible .cities-list li:nth-child(2) { transition-delay: 0.1s; }
.cities-strip.visible .cities-list li:nth-child(3) { transition-delay: 0.15s; }
.cities-strip.visible .cities-list li:nth-child(4) { transition-delay: 0.2s; }
.cities-strip.visible .cities-list li:nth-child(5) { transition-delay: 0.25s; }
.cities-strip.visible .cities-list li:nth-child(6) { transition-delay: 0.3s; }
.cities-strip.visible .cities-list li:nth-child(7) { transition-delay: 0.35s; }
.cities-strip.visible .cities-list li:nth-child(8) { transition-delay: 0.4s; }

.cities-strip.visible .trust-row li:nth-child(1) { transition-delay: 0.2s; }
.cities-strip.visible .trust-row li:nth-child(2) { transition-delay: 0.28s; }
.cities-strip.visible .trust-row li:nth-child(3) { transition-delay: 0.36s; }
.cities-strip.visible .trust-row li:nth-child(4) { transition-delay: 0.44s; }

.cities-list li:hover {
  animation: cityWiggle 0.45s var(--ease-spring);
}

@keyframes cityWiggle {
  0%, 100% { transform: translateY(0) scale(1) rotate(0); }
  30% { transform: translateY(-4px) scale(1.05) rotate(-2deg); }
  60% { transform: translateY(-2px) scale(1.03) rotate(2deg); }
}

.trust-icon {
  transition: transform 0.35s var(--ease-spring);
}

.trust-row li:hover .trust-icon {
  transform: scale(1.2) rotate(-8deg);
}

/* Stats pop */
.stat-item.reveal.visible {
  transition: none;
  animation: statPop 0.65s var(--ease-spring) both;
  animation-delay: calc(var(--stagger-i, 0) * 0.08s);
}

@keyframes statPop {
  0% { transform: scale(0.85) translateY(20px); }
  60% { transform: scale(1.04) translateY(-3px); }
  100% { transform: scale(1) translateY(0); }
}

.stat-item.stat-celebrate .stat-num {
  animation: numPulse 0.5s var(--ease-spring);
}

@keyframes numPulse {
  50% { transform: scale(1.12); }
}

/* Category fun */
.category-card.category-bump {
  animation: cardBump 0.5s var(--ease-spring);
}

@keyframes cardBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.08) translateY(-6px); }
  100% { transform: translateY(-2px) scale(1); }
}

.category-card.is-active .category-emoji {
  animation: emojiPop 0.55s var(--ease-spring);
}

@keyframes emojiPop {
  0% { transform: scale(1) rotate(0); }
  45% { transform: scale(1.4) rotate(-12deg); }
  100% { transform: scale(1) rotate(0); }
}

.categories-preview-emoji {
  display: inline-block;
  transition: transform 0.4s var(--ease-spring);
}

#categories-preview.preview-bounce .categories-preview-emoji {
  animation: emojiPop 0.55s var(--ease-spring);
}

/* Feature & testimonial hover play */
.feature-card:hover .feature-icon {
  animation: iconWiggle 0.55s var(--ease-spring);
}

@keyframes iconWiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-8deg) scale(1.08); }
  75% { transform: rotate(8deg) scale(1.08); }
}

/* Buttons & pills */
.store-btn:active,
.cta-banner-btn:active,
.nav-download:active,
.hero-cat-pill:active {
  transform: scale(0.96);
}

.hero-cat-pill {
  transition: transform 0.3s var(--ease-spring), background 0.25s, box-shadow 0.25s;
}

.nav-download {
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.nav-download:hover {
  animation: btnGlow 1.5s ease infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35); }
  50% { box-shadow: 0 6px 28px rgba(14, 165, 233, 0.45); }
}

.section-header.visible .gradient-text {
  animation: gradientShimmer 3.5s ease-in-out infinite;
}

.audiences-intro .gradient-text {
  animation: gradientShimmer 3.5s ease-in-out infinite;
}

@keyframes gradientShimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.12); }
}

@keyframes textGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.cta-banner-inner.reveal.visible {
  animation: ctaEntrance 0.9s var(--ease-out) both;
}

@keyframes ctaEntrance {
  0% { transform: scale(0.96) translateY(20px); opacity: 0.85; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.cta-banner-inner::after {
  animation: emojiDrift 8s ease-in-out infinite;
}

@keyframes emojiDrift {
  0%, 100% { transform: translateX(0); opacity: 0.2; }
  50% { transform: translateX(12px); opacity: 0.35; }
}

/* Step connector pulse when visible */
.steps-list .step-card.reveal.visible .step-icon-wrap {
  animation: stepIconPop 0.6s var(--ease-spring) both;
  animation-delay: calc(0.1s + var(--stagger-i, 0) * 0.08s);
}

@keyframes stepIconPop {
  0% { transform: scale(0.5) rotate(-20deg); opacity: 0.5; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* Marquee dot pulse */
.marquee-track span:not(:nth-child(even)) {
  transition: transform 0.3s;
}

/* Audience benefit checks */
.audience-benefits li {
  transition: transform 0.35s var(--ease-out);
}

.benefits-visible .audience-benefits li:hover {
  transform: translateX(-6px);
}

.benefits-visible .benefit-icon {
  animation: checkPop 0.4s var(--ease-spring) both;
}

.benefits-visible .audience-benefits li:nth-child(1) .benefit-icon { animation-delay: 0.1s; }
.benefits-visible .audience-benefits li:nth-child(2) .benefit-icon { animation-delay: 0.2s; }
.benefits-visible .audience-benefits li:nth-child(3) .benefit-icon { animation-delay: 0.3s; }
.benefits-visible .audience-benefits li:nth-child(4) .benefit-icon { animation-delay: 0.4s; }
.benefits-visible .audience-benefits li:nth-child(5) .benefit-icon { animation-delay: 0.5s; }

@keyframes checkPop {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Confetti celebration */
.confetti-burst {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confetti-burst span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  animation: confettiFly 1.1s var(--ease-out) forwards;
}

@keyframes confettiFly {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) rotate(var(--rot)) scale(0.4);
    opacity: 0;
  }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal,
  .reveal.visible { transform: none; filter: none; animation: none; }
  .headline-line { transform: none; animation: none; }
  .hero-tagline-line,
  .hero-tagline-accent { transform: none; animation: none; }
  .hero-tagline-rotate { transition: none; animation: none; filter: none; }
  .hero-tagline-rotate.is-out { opacity: 1; transform: none; filter: none; }
  .hero-sparkles { display: none; }
  .hero-panel { animation: none; }
  .hero-cta-primary { animation: fadeUp 0.7s var(--ease-out) 0.38s both; }
  .nav-download--pulse { animation: none; }
  .promo-bar-tag { animation: none; }
  .hero-phone { animation: none; }
  .headline-rotate { animation: none; color: var(--blue-pale); background: none; -webkit-text-fill-color: var(--blue-pale); }
  .hero-cat-word { transition: none; }
  .marquee-track { animation: none; }
  .audience-panel.panel-enter { animation: none; }
  .audiences-split:has(.audience-panel--trainee:hover),
  .audiences-split:has(.audience-panel--trainer:hover) {
    grid-template-columns: 1fr 64px 1fr;
  }
}

/* ===== Performance — defer paint below fold ===== */
.stats,
.audiences,
.categories,
.features,
.steps,
.about,
.app-preview,
.testimonials,
.contact,
.faq {
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

/* ===== Responsive ===== */
@media (min-width: 600px) {
  .nav-download { display: inline-flex; }
}

@media (max-width: 599px) {
  .promo-bar {
    font-size: 0.72rem;
    padding: 0.4rem 0.65rem;
  }

  .promo-bar-cta {
    font-size: 0.68rem;
    padding: 0.3rem 0.65rem;
  }

  :root {
    --promo-h: 46px;
  }
}

@media (max-width: 1024px) {
  .section-nav {
    display: none !important;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: min(38dvh, 320px) auto;
    min-height: auto;
  }

  .hero-panel {
    clip-path: none;
    padding: 1.5rem 1.5rem 3.5rem;
  }

  .hero-visual { min-height: 0; }
  .scroll-hint { color: var(--blue); }
  .hero-float-card { display: none; }
  .hero-phone { display: none; }
  .hero-content { max-width: none; }
  .hero-cta-primary { max-width: none; }
  .hero-proof-meta { display: none; }
  .headline-rotate { min-width: 4ch; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--wide { grid-column: span 2; }
  .steps-list { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-blob { max-width: 220px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { transform: none; }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand .footer-desc {
    max-width: none;
    margin-inline: auto;
  }

  .footer-nav ul,
  .footer-connect {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-bar {
    justify-content: center;
  }

  .cities-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq-layout { grid-template-columns: 1fr; }
  .steps-list::before { display: none; }
  .cta-banner-inner { flex-direction: column; text-align: center; padding: 2rem; }

  .audiences-tabs {
    display: flex;
  }

  .audiences-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .audiences-divider {
    display: none;
  }

  .audience-panel {
    display: none;
    min-height: auto;
    clip-path: none !important;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .audience-panel.is-active {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: visible;
  }

  /* פאנל מתאמנים — בלי גלילה פנימית, תוכן קומפקטי יותר */
  .audience-panel--trainee .audience-panel-content {
    padding-bottom: clamp(1.5rem, 4vw, 2.25rem);
  }

  .audience-panel--trainee .audience-benefits {
    gap: 0.4rem;
  }

  .audience-panel--trainee .audience-benefits li {
    padding: 0.5rem 0.65rem;
    font-size: 0.8rem;
  }

  .audience-panel--trainee .audience-journey {
    margin-bottom: 0.85rem;
    padding: 0.65rem 0.85rem;
  }

  .audience-panel-content {
    margin-inline: 0 !important;
    max-width: none;
  }

  .audience-quote {
    margin: 1rem 1rem 0;
    max-width: none;
  }

  .audience-stats-float {
    margin: 0.75rem 1rem 0;
    max-width: none;
  }

  .audience-benefits li {
    opacity: 1;
    transform: none;
  }

  .audience-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .audience-stats-float {
    flex-direction: row;
    max-width: min(280px, 85vw);
  }

  .audience-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .audience-cta-secondary {
    text-align: center;
  }

  .audience-badge {
    font-size: 0.68rem;
    margin-top: 0.75rem;
  }

  .audience-journey {
    margin-bottom: 1rem;
  }

  /* במובייל מסתירים ציטוט — פחות עומס ויזואלי מעל התוכן */
  .audience-quote {
    display: none;
  }

  .audience-metric-value {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-mobile-only {
    display: block;
  }

  .nav-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(96, 197, 241, 0.14) 0%, rgba(168, 85, 247, 0.1) 100%);
  }

  /* backdrop-filter על .nav יוצר containing block — position:fixed נחתך בתוך הפס */
  .header .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--promo-h) + var(--header-h));
    right: 0;
    width: min(300px, 88vw);
    height: calc(100dvh - var(--promo-h) - var(--header-h));
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.15rem;
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    z-index: 3;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-app);
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-drawer-head {
    padding: 1rem 0.15rem 0.85rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .nav-drawer-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
  }

  .nav-drawer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }

  .nav-drawer-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--purple-dark);
    line-height: 1.1;
  }

  .nav-drawer-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
  }

  .header:not(.scrolled) .nav-links a,
  .header.scrolled .nav-links a {
    display: block;
    color: var(--text);
    text-shadow: none;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid rgba(96, 197, 241, 0.12);
    border-radius: 0;
    min-height: auto;
    background: transparent;
    box-shadow: none;
  }

  .header:not(.scrolled) .nav-links a::after,
  .header.scrolled .nav-links a::after {
    display: none;
  }

  .header:not(.scrolled) .nav-links a:hover,
  .header:not(.scrolled) .nav-links a.active,
  .header.scrolled .nav-links a:hover,
  .header.scrolled .nav-links a.active {
    color: var(--purple-dark);
    background: rgba(96, 197, 241, 0.08);
    transform: none;
  }

  .nav-drawer-cta {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
  }

  .nav-drawer-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem 1rem !important;
    background: var(--gradient-app) !important;
    color: var(--white) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: var(--radius-md) !important;
    border: none !important;
    box-shadow: 0 6px 20px var(--blue-glow) !important;
    min-height: 48px !important;
  }

  .nav-links.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-toggle,
  .nav-logo,
  .nav-download {
    position: relative;
    z-index: 4;
  }

  .features-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--wide { grid-column: span 1; }

  .categories-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
  }

  .category-card {
    flex: 0 0 128px;
    scroll-snap-align: start;
  }

  .preview-wrapper {
    flex-direction: column;
    min-height: auto;
    padding-bottom: 3rem;
  }

  .carousel-btn--prev,
  .carousel-btn--next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-btn--prev { right: 0.5rem; }
  .carousel-btn--next { left: 0.5rem; }

  .store-buttons { flex-direction: column; }
  .store-btn { justify-content: center; }

  body:has(.sticky-cta.visible) {
    padding-bottom: 72px;
  }

  .download-modal {
    margin: auto;
    max-height: 90dvh;
    overflow-y: auto;
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.5rem; }
  .phone-frame { width: 248px; }
  .stat-num { font-size: 1.85rem; }
}

/* ===== SEO hub & landing pages ===== */
.seo-hub {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
}

.seo-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.seo-hub-card {
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.seo-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.seo-hub-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.seo-hub-card h3 a {
  color: var(--purple-dark);
}

.seo-hub-card h3 a:hover {
  color: var(--blue-dark);
}

.seo-hub-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.seo-hub-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.seo-keywords-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}

.seo-keywords-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  list-style: none;
}

.seo-keywords-list a {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.seo-keywords-list a:hover {
  border-color: var(--blue);
  color: var(--purple-dark);
  background: rgba(14, 165, 233, 0.08);
}

.cities-list a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(14, 165, 233, 0.45);
}

.cities-list a:hover {
  color: var(--blue-dark);
}

.seo-landing-page {
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
}

.seo-landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.seo-landing-header .nav-logo {
  color: var(--purple-dark);
}

.seo-landing-main {
  padding: 2rem 0 4rem;
  max-width: 720px;
}

.seo-breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.seo-breadcrumb a {
  color: var(--blue-dark);
  font-weight: 600;
}

.seo-landing-main h1 {
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-title);
  margin-bottom: 1rem;
}

.seo-landing-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  color: var(--text);
}

.seo-landing-main h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 1.75rem 0 0.65rem;
  color: var(--purple-dark);
}

.seo-landing-main p,
.seo-landing-list {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.seo-landing-list {
  margin: 0.75rem 0 1rem;
  padding-right: 1.25rem;
}

.seo-landing-steps {
  margin: 0.75rem 0;
  padding-right: 1.35rem;
  line-height: 1.8;
}

.seo-landing-cta {
  margin-top: 2.5rem;
  padding: 1.75rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.seo-landing-btn {
  display: inline-flex;
  margin-top: 1rem;
  max-width: 100%;
}

.seo-related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.seo-related ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.seo-related a {
  font-weight: 600;
  color: var(--blue-dark);
}

.seo-landing-footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.seo-landing-footer a {
  color: var(--purple-dark);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ——— App UI mock (hero + preview + modal) ——— */
.app-ui {
  direction: rtl;
  text-align: right;
  font-family: var(--font);
}

.app-ui-status {
  display: flex;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.app-ui-status--light {
  color: rgba(255, 255, 255, 0.7);
}

.app-ui-top {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
}

.app-ui-logo,
.app-ui-top img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(139, 92, 246, 0.2);
}

.app-ui-brand {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--text-title);
}

.app-ui-search {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.55rem;
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 10px;
  font-size: 0.55rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.app-ui-search svg {
  width: 11px;
  height: 11px;
  color: var(--blue);
  flex-shrink: 0;
}

.app-ui-search-text {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.app-ui-search-text.is-out {
  opacity: 0;
  transform: translateY(4px);
}

.app-ui-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
  flex: 1;
}

.app-ui-card {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.4rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  font-size: 0.55rem;
}

.app-ui-card.is-featured {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.12), 0 4px 12px rgba(37, 99, 235, 0.1);
}

.app-ui-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--purple-light));
}

.app-ui-avatar--2 {
  background: linear-gradient(135deg, #fb923c, var(--purple));
}

.app-ui-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.app-ui-card-body strong {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--text-title);
}

.app-ui-card-body small {
  font-size: 0.5rem;
  color: var(--text-muted);
}

.app-ui-pill {
  font-size: 0.48rem;
  font-weight: 700;
  padding: 0.15rem 0.35rem;
  border-radius: var(--radius-pill);
  background: rgba(16, 185, 129, 0.14);
  color: var(--green-dark);
  flex-shrink: 0;
}

.app-ui-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.4rem;
  margin-bottom: 0.35rem;
  background: var(--gradient-app);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  border-radius: 9px;
  border: none;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.app-ui-nav {
  display: flex;
  justify-content: space-around;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  font-size: 0.48rem;
  color: var(--text-muted);
}

.app-ui-nav-item.is-active {
  color: var(--blue);
  font-weight: 700;
}

.app-ui-screen {
  background: #f8fafc;
  padding: 0.75rem;
  border-radius: 20px;
}

/* Download modal layout */
.download-modal-hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
  text-align: right;
}

.download-modal-phone {
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border-radius: 20px;
  padding: 0.5rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25);
}

.download-modal-phone-inner {
  background: #f8fafc;
  border-radius: 14px;
  padding: 0.65rem 0.55rem;
}

.download-modal-phone-inner .app-ui-cta {
  margin-bottom: 0;
}

.download-modal-copy .download-modal-logo {
  margin: 0 0 0.65rem;
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.download-modal-copy h2 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.download-modal-copy p {
  font-size: 0.82rem;
  margin-bottom: 0;
  line-height: 1.55;
}

.download-modal-stores {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.store-btn--modal {
  width: 100%;
  justify-content: center;
}

.download-modal-btn--ghost {
  width: 100%;
}

/* Compact audience benefits */
.audience-benefits--compact {
  gap: 0.65rem;
}

.audience-benefits--compact li {
  padding: 0.65rem 0.85rem;
}

/* Global UI polish */
.category-card {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.35);
}

.features-grid--pillars .feature-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-soft) 100%);
}

.quick-path {
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
}

/* Hero app teaser (mobile / tablet) */
.hero-app-teaser {
  display: none;
  margin-top: 1.25rem;
}

.hero-app-teaser-device {
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border-radius: 22px;
  padding: 0.45rem;
  max-width: 220px;
  margin-inline: auto;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.28);
}

.hero-app-teaser-screen {
  background: #f8fafc;
  border-radius: 16px;
  padding: 0.55rem 0.5rem 0.45rem;
}

.hero-app-teaser-screen .app-ui-top img {
  width: 18px;
  height: 18px;
}

.hero-app-teaser-screen .app-ui-brand {
  font-size: 0.62rem;
}

.app-ui-list--teaser {
  margin-bottom: 0.3rem;
}

.hero-app-teaser-caption {
  margin-top: 0.65rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.categories-preview-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-soft) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 12px 36px rgba(139, 92, 246, 0.12);
}

.categories-search-bar {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.contact-form {
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.contact .section-desc a {
  color: var(--blue-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1024px) {
  .hero-app-teaser {
    display: block;
  }
}

/* Dark section accents */
.app-preview .carousel-dots button {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
}

.app-preview .carousel-dots button[aria-selected="true"] {
  background: var(--gradient-app);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(14, 165, 233, 0.42);
}

.app-preview .store-btn--dark {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.app-preview .store-btn--dark:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.app-preview .carousel-btn {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.app-preview .carousel-btn:hover {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.06);
}

@media (max-width: 520px) {
  .download-modal-hero {
    grid-template-columns: 1fr;
  }

  .download-modal-phone {
    max-width: 200px;
    margin-inline: auto;
  }

  .carousel-dots button {
    padding: 0.3rem 0.5rem;
    font-size: 0.62rem;
  }

  .audience-goals {
    display: none;
  }
}

/* ===== Site polish (v2) ===== */
main > section {
  scroll-margin-top: calc(var(--header-h) + var(--promo-h) + 12px);
}

body:has(.sticky-cta.visible) {
  padding-bottom: calc(76px + env(safe-area-inset-bottom));
}

.quick-path-btn {
  min-width: min(100%, 168px);
}

@media (max-width: 640px) {
  .quick-path-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  .quick-path-btn {
    width: 100%;
    justify-content: center;
    min-width: 0;
  }

  .quick-path-btn--categories {
    grid-column: 1 / -1;
  }

  .nav-download--pulse {
    animation: none;
  }

  .promo-bar-tag {
    animation: none;
  }

  .hero:hover .hero-image {
    transform: scale(1.02);
  }
}

@media (min-width: 1025px) {
  .header:not(.scrolled) .nav {
    max-width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
  }
}

.footer-bottom-bar a[data-open-delete-profile] {
  opacity: 0.85;
}

.footer-bottom-bar a[data-open-delete-profile]:hover {
  opacity: 1;
  color: var(--white);
}

.contact-form,
.early-access-form {
  border-radius: var(--radius-md);
}

.delete-profile-modal-inner {
  scrollbar-width: thin;
  scrollbar-color: var(--blue) transparent;
}

/* Button tap feedback */
.is-pressed {
  transition: transform 0.2s var(--ease-spring);
}

.quick-path-btn.is-pressed,
.hero-cta-primary.is-pressed,
.audience-cta.is-pressed,
.category-card.is-pressed {
  animation: tapBounce 0.38s var(--ease-spring);
}

@keyframes tapBounce {
  0% { transform: scale(1); }
  35% { transform: scale(0.94); }
  70% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.hero-cat-pill.is-pressed {
  transform: scale(0.95);
}

.carousel-btn.is-pressed {
  transform: scale(0.92);
}

/* Entry motion for stats on load */
.stat-item.reveal.visible .stat-icon {
  animation: iconPop 0.55s var(--ease-spring) both;
  animation-delay: calc(var(--stagger-i, 0) * 0.08s);
}

@keyframes iconPop {
  0% { transform: scale(0.6) rotate(-12deg); opacity: 0.4; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

@media (min-width: 641px) {
  .nav-download--pulse {
    animation: navCtaPulse 2.5s ease-in-out infinite;
  }

  .promo-bar-tag {
    animation: tagPulse 2s ease-in-out infinite;
  }
}

/* ===== 2026 Design Refresh ===== */
.gyme-2026 {
  --font-display: 'Outfit', 'Heebo', system-ui, sans-serif;
  --glass-2026: rgba(255, 255, 255, 0.08);
  --glass-border-2026: rgba(255, 255, 255, 0.18);
  --glow-blue: 0 0 80px rgba(96, 197, 241, 0.35);
  --glow-purple: 0 0 80px rgba(168, 85, 247, 0.32);
}

.gyme-2026 .ambient-bg {
  background:
    radial-gradient(ellipse 90% 60% at 88% 4%, rgba(96, 197, 241, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 4% 96%, rgba(192, 38, 211, 0.12) 0%, transparent 52%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
  animation: ambientDrift 18s ease-in-out infinite alternate;
}

@keyframes ambientDrift {
  0% { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(12deg) brightness(1.04); }
}

.gyme-2026 .scroll-progress {
  height: 4px;
  box-shadow: 0 0 20px rgba(96, 197, 241, 0.6), 0 0 40px rgba(168, 85, 247, 0.35);
}

.gyme-2026 .page-grain {
  opacity: 0.028;
}

/* Hero — bento split */
.gyme-2026 .hero {
  background: #0a0f1a;
}

.gyme-2026 .hero-aurora {
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(from 200deg at 50% 50%, rgba(96, 197, 241, 0.22), rgba(139, 92, 246, 0.18), rgba(236, 72, 153, 0.12), rgba(96, 197, 241, 0.22));
  filter: blur(60px);
  opacity: 0.7;
  animation: auroraSpin 20s linear infinite;
}

@keyframes auroraSpin {
  to { transform: rotate(360deg); }
}

@media (min-width: 1025px) {
  .gyme-2026 .hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
    padding: calc(var(--header-h) + var(--promo-h) + 0.85rem) 1rem 1rem;
    min-height: 100dvh;
    align-items: stretch;
  }

  .gyme-2026 .hero-visual {
    border-radius: 28px 0 0 28px;
    margin-top: 0;
    padding-top: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .gyme-2026 .hero-panel {
    clip-path: none;
    border-radius: 0 28px 28px 0;
    padding: 3rem 2.75rem 3.5rem;
    box-shadow:
      inset 1px 0 0 rgba(255, 255, 255, 0.12),
      -24px 0 60px rgba(0, 0, 0, 0.25);
  }

  .gyme-2026 .hero-visual::after {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.15) 0%, transparent 45%, rgba(96, 197, 241, 0.18) 100%);
  }
}

.gyme-2026 .hero-panel {
  background: var(--gradient-hero);
  background-image: var(--gradient-hero-mesh), var(--gradient-hero);
  background-size: 200% 200%, 200% 200%;
  animation: heroGradientShift 14s ease infinite;
}

.gyme-2026 .hero-panel::before {
  background:
    radial-gradient(ellipse 90% 70% at 30% 15%, rgba(255, 255, 255, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(96, 197, 241, 0.2) 0%, transparent 50%);
}

.gyme-2026 .hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.8vw, 4rem);
  letter-spacing: -0.045em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
}

.gyme-2026 .hero-tagline-line {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gyme-2026 .headline-highlight {
  text-shadow: 0 0 50px rgba(96, 197, 241, 0.9), 0 0 100px rgba(168, 85, 247, 0.5);
}

.gyme-2026 .hero-badge {
  background: var(--glass-2026);
  border: 1px solid var(--glass-border-2026);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.gyme-2026 .hero-sub {
  font-size: 1.02rem;
  line-height: 1.75;
  opacity: 0.92;
  max-width: 38ch;
}

.gyme-2026 .hero-cta-primary {
  position: relative;
  isolation: isolate;
  max-width: 360px;
  padding: 1.1rem 1.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: var(--navy);
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 48%, #ede9fe 100%);
  border: none;
  border-radius: var(--radius-pill);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.6),
    0 12px 40px rgba(0, 0, 0, 0.22),
    0 0 50px rgba(96, 197, 241, 0.35);
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
}

.gyme-2026 .hero-cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.65) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
}

.gyme-2026 .hero-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.75),
    0 18px 50px rgba(0, 0, 0, 0.28),
    0 0 70px rgba(168, 85, 247, 0.4);
}

.gyme-2026 .hero-cta-primary:hover::before {
  transform: translateX(120%);
}

.gyme-2026 .hero-cat-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 600;
  transition: background 0.25s, border-color 0.25s, transform 0.3s var(--ease-spring);
}

.gyme-2026 .hero-cat-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.gyme-2026 .hero-float-card {
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), var(--glow-blue);
}

.gyme-2026 .scroll-hint {
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: var(--glow-purple);
}

/* Stats — glass bento */
.gyme-2026 .stats {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef2ff 50%, #f5f3ff 100%);
}

.gyme-2026 .stats .stat-item--pillar {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 4px 24px rgba(96, 197, 241, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.gyme-2026 .stats .stat-item--pillar::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-search);
  opacity: 0.85;
}

.gyme-2026 .stats .stat-item--pillar:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(168, 85, 247, 0.15),
    0 0 40px rgba(96, 197, 241, 0.12);
}

.gyme-2026 .stat-item--pillar .stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(96, 197, 241, 0.2) 0%, rgba(168, 85, 247, 0.15) 100%);
  font-size: 1.35rem;
  box-shadow: 0 4px 16px rgba(96, 197, 241, 0.2);
}

.gyme-2026 .stat-item--pillar .stat-word {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-search);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Quick path — dark spotlight */
.gyme-2026 .quick-path {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background: linear-gradient(155deg, #0f172a 0%, #1e1b4b 45%, #312e81 100%);
  overflow: hidden;
}

.gyme-2026 .quick-path::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(96, 197, 241, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 100%, rgba(192, 38, 211, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.gyme-2026 .quick-path-inner {
  position: relative;
  z-index: 1;
}

.gyme-2026 .quick-path-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 0 40px rgba(96, 197, 241, 0.35);
}

.gyme-2026 .quick-path-desc {
  color: rgba(255, 255, 255, 0.72);
}

.gyme-2026 .quick-path-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.85rem 1.35rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.gyme-2026 .quick-path-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), var(--glow-blue);
}

.gyme-2026 .quick-path-btn--trainee:hover {
  border-color: var(--blue);
  box-shadow: 0 16px 48px rgba(96, 197, 241, 0.25);
}

.gyme-2026 .quick-path-btn--trainer:hover {
  border-color: var(--purple-light);
  box-shadow: 0 16px 48px rgba(168, 85, 247, 0.25);
}

/* Early access spotlight */
.gyme-2026 .early-access {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #f8fbff;
  border: none;
  overflow: hidden;
}

.gyme-2026 .early-access::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 120vw);
  height: 80%;
  background: radial-gradient(ellipse, rgba(96, 197, 241, 0.18) 0%, rgba(168, 85, 247, 0.1) 40%, transparent 70%);
  pointer-events: none;
}

.gyme-2026 .early-access-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: -0.035em;
}

.gyme-2026 .early-access-form {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(96, 197, 241, 0.25);
  box-shadow:
    0 24px 60px rgba(168, 85, 247, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.gyme-2026 .early-access-submit,
.gyme-2026 .form-submit {
  font-family: var(--font-display);
  font-weight: 800;
  background: var(--gradient-cta);
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.gyme-2026 .early-access-submit:hover,
.gyme-2026 .form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(168, 85, 247, 0.4);
}

/* Feature & category cards */
.gyme-2026 .feature-card {
  border: 1px solid rgba(96, 197, 241, 0.15);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.gyme-2026 .feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 24px 60px rgba(168, 85, 247, 0.14);
}

.gyme-2026 .category-card {
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
}

.gyme-2026 .category-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 50px rgba(96, 197, 241, 0.2);
}

/* Header glass */
.gyme-2026 .header.scrolled .nav {
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.gyme-2026 .nav-download {
  font-family: var(--font-display);
  font-weight: 800;
  background: var(--gradient-cta);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
}

/* Section titles */
.gyme-2026 .section-title {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}

.gyme-2026 .brand-en {
  font-family: 'Plus Jakarta Sans', var(--font-display);
  letter-spacing: 0.06em;
}

/* Sticky CTA */
.gyme-2026 .sticky-cta {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.3);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .gyme-2026 .hero-aurora,
  .gyme-2026 .ambient-bg,
  .gyme-2026 .hero-panel {
    animation: none;
  }

  .gyme-2026 .hero-cta-primary::before {
    display: none;
  }
}

@media (max-width: 1024px) {
  .gyme-2026 .hero-panel {
    clip-path: none;
  }

  .gyme-2026 .hero-visual {
    min-height: 42vh;
  }
}
