/* ============================================
   Content Spark — Landing Page Styles
   Dark theme (#111113)
   ============================================ */

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background: var(--bg-overlay);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-3) 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-logo span {
  font-family: var(--font-brand);
  font-size: 20px;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

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

.nav-login {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-login:hover { color: var(--text-primary); }

.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
  cursor: pointer;
}
.theme-toggle:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.05);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--space-6) var(--space-20);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 167, 38, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(255, 64, 129, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(66, 165, 245, 0.04) 0%, transparent 50%);
  animation: heroGlow 15s ease-in-out infinite alternate;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-overline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: var(--space-5);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-10);
  line-height: 1.6;
}

.hero-tagline {
  height: 32px;
  overflow: hidden;
  margin-bottom: var(--space-10);
}

.hero-tagline-inner {
  display: flex;
  flex-direction: column;
  animation: taglineRotate 12s ease-in-out infinite;
}

.hero-tagline span {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

@keyframes taglineRotate {
  0%, 20%   { transform: translateY(0); }
  25%, 45%  { transform: translateY(-32px); }
  50%, 70%  { transform: translateY(-64px); }
  75%, 95%  { transform: translateY(-96px); }
  100%      { transform: translateY(0); }
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-cta .btn-lg {
  min-width: 180px;
}

/* ========== HERO MOCKUP ========== */
.hero-mockup {
  margin-top: var(--space-16);
  perspective: 1200px;
}

.mockup-window {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: rotateX(8deg) rotateY(-2deg);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(21, 101, 192, 0.1);
  transition: transform 0.6s ease;
}

.mockup-window:hover {
  transform: rotateX(4deg) rotateY(0deg);
}

.mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(17, 17, 19, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red { background: #FF5F57; }
.mockup-dot.yellow { background: #FFBD2E; }
.mockup-dot.green { background: #28C840; }

.mockup-url {
  margin-left: 12px;
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  flex: 1;
  max-width: 260px;
}

.mockup-content {
  display: flex;
  min-height: 280px;
}

.mockup-sidebar {
  width: 48px;
  background: rgba(17, 17, 19, 0.6);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-nav-item {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.mockup-nav-item.active {
  background: rgba(21, 101, 192, 0.3);
  border: 1px solid rgba(21, 101, 192, 0.4);
}

.mockup-main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mockup-stat-card {
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-stat-filled {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 4px;
}

.mockup-stat-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.mockup-stat-label {
  font-size: 7px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.mockup-stat-card:first-child {
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.2), rgba(21, 101, 192, 0.05));
  border-color: rgba(21, 101, 192, 0.2);
}

.mockup-stat-card:first-child .mockup-stat-value {
  color: #42A5F5;
}

.mockup-chart {
  flex: 1;
  min-height: 100px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.mockup-chart-bars {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 12px 16px 8px;
}

.mockup-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(21, 101, 192, 0.3), rgba(21, 101, 192, 0.12));
  transition: height 1s ease;
}

.mockup-bar-active {
  background: linear-gradient(to top, rgba(255, 64, 129, 0.5), rgba(255, 167, 38, 0.3));
}

.mockup-table {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mockup-row {
  height: 22px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
}

.mockup-row span {
  font-size: 7px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-row span:first-child {
  flex: 1;
}

.mockup-row span:nth-child(2) {
  width: 32px;
  text-align: right;
  font-weight: 600;
  color: var(--text-secondary);
}

.mockup-row-header {
  background: rgba(255, 255, 255, 0.06);
}

.mockup-row-header span {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.mockup-badge-ok {
  font-size: 6px !important;
  background: rgba(102, 187, 106, 0.2);
  color: #66BB6A !important;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 600;
  width: auto !important;
  text-align: center !important;
}

.mockup-badge-wip {
  font-size: 6px !important;
  background: rgba(255, 167, 38, 0.2);
  color: #FFA726 !important;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 600;
  width: auto !important;
  text-align: center !important;
}

/* ========== SOCIAL PROOF ========== */
.social-proof {
  padding: var(--space-16) 0;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--border-hover), transparent) 1;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  text-align: center;
  margin-bottom: var(--space-12);
}

.proof-stat-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: var(--space-1);
}

.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
  opacity: 0.4;
}

.proof-logos span {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

/* ========== DATA POWER ========== */
.data-power {
  padding: clamp(56px, 8vh, 84px) 0;
  position: relative;
  overflow: hidden;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.data-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.data-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.data-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(21, 101, 192, 0.08);
}

.data-card:hover::before {
  opacity: 1;
}

.data-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(21, 101, 192, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  color: var(--brand-blue-text);
}

.data-card:nth-child(2) .data-icon { background: rgba(255, 64, 129, 0.15); color: #FF4081; }
.data-card:nth-child(3) .data-icon { background: rgba(255, 167, 38, 0.15); color: var(--brand-orange); }
.data-card:nth-child(4) .data-icon { background: rgba(102, 187, 106, 0.15); color: #66BB6A; }

.data-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2);
}

.data-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.data-sublabel {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========== PHONE MOCKUPS ========== */
.phones {
  padding: clamp(56px, 8vh, 84px) 0;
  overflow: hidden;
}

.phones-header {
  text-align: center;
  margin-bottom: clamp(30px, 4.5vh, 52px);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

.phones-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  perspective: 1200px;
}

.phone {
  width: 240px;
  height: 480px;
  background: #000;
  border-radius: 32px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 12px;
  z-index: 10;
}

.phone:nth-child(1) { transform: rotateY(8deg) scale(0.9); }
.phone:nth-child(2) { transform: scale(1.05); z-index: 2; }
.phone:nth-child(3) { transform: rotateY(-8deg) scale(0.9); }

.phone-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  animation: phoneScroll 20s linear infinite;
}

@keyframes phoneScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.phone-card {
  width: 100%;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-4);
  position: relative;
  flex-shrink: 0;
}

.phone-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
}

.phone-card-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.card-bg-1 { background: linear-gradient(135deg, #FF6B6B, #ee5a24); }
.card-bg-2 { background: linear-gradient(135deg, #4834d4, #686de0); }
.card-bg-3 { background: linear-gradient(135deg, #22a6b3, #7ed6df); }
.card-bg-4 { background: linear-gradient(135deg, #e056b0, #8854d0); }
.card-bg-5 { background: linear-gradient(135deg, #f9ca24, #f0932b); }
.card-bg-6 { background: linear-gradient(135deg, #6ab04c, #27ae60); }

.phone-card-text {
  position: relative;
  z-index: 1;
}

.phone-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-1);
}

.phone-card-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.phone-card-views {
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-sidebar {
  position: absolute;
  right: 12px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  z-index: 2;
}

.phone-sidebar-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  text-align: center;
}

/* ========== FEATURES ========== */
.features {
  padding: clamp(56px, 8vh, 84px) 0;
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 167, 38, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 167, 38, 0.15);
  color: #ffa726;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card:nth-child(2) .feature-icon { background: rgba(255, 64, 129, 0.15); color: #ff4081; }
.feature-card:nth-child(3) .feature-icon { background: rgba(66, 165, 245, 0.15); color: #42a5f5; }
.feature-card:nth-child(4) .feature-icon { background: rgba(171, 71, 188, 0.15); color: #ab47bc; }
.feature-card:nth-child(5) .feature-icon { background: rgba(102, 187, 106, 0.15); color: #66bb6a; }
.feature-card:nth-child(6) .feature-icon { background: rgba(255, 235, 59, 0.15); color: #fdd835; }

.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== PROCESS ========== */
.process {
  padding: clamp(56px, 8vh, 84px) 0;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--border-hover), transparent) 1;
  position: relative;
  overflow: hidden;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-color);
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  border-color: var(--brand-orange);
  background: rgba(255, 167, 38, 0.1);
}

.five-steps .step-number {
  color: var(--brand-blue-text);
}

.five-steps .step-number svg {
  stroke: currentColor;
}

.five-steps .process-step:nth-child(1) .step-number { color: var(--brand-blue-text); }
.five-steps .process-step:nth-child(2) .step-number { color: #66BB6A; }
.five-steps .process-step:nth-child(3) .step-number { color: var(--brand-orange); }
.five-steps .process-step:nth-child(4) .step-number { color: #FF4081; }
.five-steps .process-step:nth-child(5) .step-number { color: #AB47BC; }

.step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== VIDEO SHOWCASE ========== */
.showcase {
  padding: clamp(56px, 8vh, 84px) 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.showcase-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 64, 129, 0.08);
}

.showcase-thumb {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 320px;
  position: relative;
  overflow: hidden;
}

.showcase-thumb-bg {
  width: 100%;
  height: 100%;
}

.bg-showcase-1 { background: linear-gradient(135deg, #1a1a2e, #FF4081); }
.bg-showcase-2 { background: linear-gradient(135deg, #1a1a2e, #42A5F5); }
.bg-showcase-3 { background: linear-gradient(135deg, #1a1a2e, #FFA726); }

.showcase-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.showcase-play::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}

.showcase-card:hover .showcase-play {
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%) scale(1.1);
}

.showcase-info {
  padding: var(--space-5);
}

.showcase-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.showcase-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: 12px;
  color: var(--text-muted);
}

.showcase-stat {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: clamp(56px, 8vh, 84px) 0;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--border-hover), transparent) 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.testimonial-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
  color: var(--brand-orange);
  font-size: 16px;
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========== PRICING ========== */
.pricing {
  padding: clamp(56px, 8vh, 84px) 0;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin: var(--space-8) 0 var(--space-12);
}

.pricing-toggle span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-toggle span.active {
  color: var(--text-primary);
}

.toggle-switch {
  width: 44px;
  height: 24px;
  background: var(--neutral-700);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}

.toggle-switch.active {
  background: var(--brand-blue-text);
}

.toggle-switch::after {
  content: '';
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
}

.toggle-switch.active::after {
  transform: translateX(20px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: transparent;
  background: var(--bg-elevated);
  box-shadow: 0 0 0 2px transparent;
  background-image: linear-gradient(var(--bg-elevated), var(--bg-elevated)), var(--gradient-primary);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-plan {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.pricing-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.pricing-price {
  margin-bottom: var(--space-6);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-currency {
  font-size: 20px;
  font-weight: 600;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-8);
}

.pricing-features li {
  padding: var(--space-2) 0;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.pricing-features li::before {
  content: '✓';
  color: var(--semantic-success);
  font-weight: 700;
  flex-shrink: 0;
}

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

/* ========== FAQ ========== */
.faq {
  padding: clamp(56px, 8vh, 84px) 0;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--border-hover), transparent) 1;
}

.faq-list {
  max-width: 720px;
  margin: var(--space-12) auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--brand-orange); }

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: var(--space-5);
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: clamp(56px, 8vh, 84px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0.08;
  border-radius: var(--radius-xl);
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.final-cta-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FOOTER ========== */
.footer {
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--border-hover), transparent) 1;
}

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

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: var(--space-4);
  max-width: 260px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: var(--space-2);
}

.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-color);
  font-size: 12px;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: var(--space-4);
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}

.footer-socials a:hover {
  background: var(--brand-blue-text);
  color: #fff;
}

/* ========== PAGE WRAPPER ========== */
body {
  position: relative;
}

/* ========== BACKGROUND DECORATIONS ========== */
.bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Stars — small glowing dots */
.bg-star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.3);
  animation: starFloat 6s ease-in-out infinite alternate;
  will-change: transform;
}

.bg-star-1  { top: 8%;  left: 10%;  animation-delay: 0s;    animation-duration: 7s;  }
.bg-star-2  { top: 25%; right: 15%; animation-delay: -2s;   animation-duration: 5s;  }
.bg-star-3  { top: 45%; left: 25%;  animation-delay: -4s;   animation-duration: 8s;  }
.bg-star-4  { top: 12%; right: 30%; animation-delay: -1s;   animation-duration: 6s;  }
.bg-star-5  { top: 55%; left: 8%;   animation-delay: -3s;   animation-duration: 9s;  }
.bg-star-6  { top: 35%; right: 8%;  animation-delay: -5s;   animation-duration: 7s;  }
.bg-star-7  { top: 68%; right: 22%; animation-delay: -1.5s; animation-duration: 6.5s; }
.bg-star-8  { top: 82%; left: 15%;  animation-delay: -3.5s; animation-duration: 5.5s; }
.bg-star-9  { top: 18%; left: 45%;  animation-delay: -2.5s; animation-duration: 8.5s; }
.bg-star-10 { top: 60%; left: 55%;  animation-delay: -4.5s; animation-duration: 7.5s; }
.bg-star-11 { top: 90%; right: 35%; animation-delay: -0.5s; animation-duration: 6s;  }
.bg-star-12 { top: 40%; left: 70%;  animation-delay: -3s;   animation-duration: 9s;  }

@keyframes starFloat {
  0% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { opacity: 0.8; }
  100% { transform: translateY(-30px) scale(1.2); opacity: 0.3; }
}

/* Glow Orbs — large blurred color circles */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.06;
  will-change: transform;
}

.bg-glow-orange {
  width: 400px;
  height: 400px;
  background: var(--brand-orange);
  top: 5%;
  left: -5%;
  animation: glowDrift 20s ease-in-out infinite alternate;
}

.bg-glow-pink {
  width: 350px;
  height: 350px;
  background: var(--brand-pink);
  top: 40%;
  right: -8%;
  animation: glowDrift 25s ease-in-out infinite alternate-reverse;
}

.bg-glow-blue {
  width: 300px;
  height: 300px;
  background: var(--brand-blue);
  top: 70%;
  left: 10%;
  animation: glowDrift 18s ease-in-out infinite alternate;
  animation-delay: -5s;
}

@keyframes glowDrift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
  100% { transform: translate(10px, -10px) scale(1.02); }
}

/* Lines — vertical gradient lines */
.bg-line {
  position: absolute;
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.06), transparent);
  animation: linePulse 4s ease-in-out infinite;
  will-change: opacity;
}

.bg-line-1 { left: 20%; top: 30%; animation-delay: 0s; }
.bg-line-2 { right: 25%; top: 55%; animation-delay: -2s; height: 160px; }
.bg-line-3 { left: 65%; top: 15%; animation-delay: -3s; height: 180px; }

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

/* Section Glows — colored radials behind sections */
.section-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 0;
}

.section-glow.visible {
  opacity: 1;
}

.section-glow-blue {
  background: rgba(66, 165, 245, 0.05);
  top: -100px;
  right: -200px;
}

.section-glow-orange {
  background: rgba(255, 167, 38, 0.04);
  top: -100px;
  left: -200px;
}

.section-glow-pink {
  background: rgba(255, 64, 129, 0.04);
  top: -50px;
  right: -150px;
}

/* Light Mode: vivid brand-colored background decorations */
[data-theme="light"] .bg-star {
  width: 4px;
  height: 4px;
  background: var(--brand-pink);
  box-shadow: 0 0 12px 4px rgba(255, 64, 129, 0.3);
  opacity: 0.7;
}
[data-theme="light"] .bg-star-2,
[data-theme="light"] .bg-star-4,
[data-theme="light"] .bg-star-9 {
  background: var(--brand-orange);
  box-shadow: 0 0 12px 4px rgba(255, 167, 38, 0.35);
}
[data-theme="light"] .bg-star-3,
[data-theme="light"] .bg-star-7,
[data-theme="light"] .bg-star-10 {
  background: var(--brand-blue);
  box-shadow: 0 0 12px 4px rgba(66, 165, 245, 0.3);
}
[data-theme="light"] .bg-star-5,
[data-theme="light"] .bg-star-11 {
  width: 5px;
  height: 5px;
  background: var(--brand-orange);
  box-shadow: 0 0 16px 5px rgba(255, 167, 38, 0.4);
  opacity: 0.8;
}
[data-theme="light"] .bg-star-6,
[data-theme="light"] .bg-star-12 {
  width: 5px;
  height: 5px;
  background: var(--brand-pink);
  box-shadow: 0 0 16px 5px rgba(255, 64, 129, 0.35);
  opacity: 0.8;
}
[data-theme="light"] .bg-star-8 {
  width: 6px;
  height: 6px;
  background: #AB47BC;
  box-shadow: 0 0 18px 6px rgba(171, 71, 188, 0.3);
  opacity: 0.7;
}

[data-theme="light"] .bg-glow { opacity: 0.12; }
[data-theme="light"] .bg-glow-orange { opacity: 0.15; }
[data-theme="light"] .bg-glow-pink { opacity: 0.12; }
[data-theme="light"] .bg-glow-blue { opacity: 0.10; }

[data-theme="light"] .bg-line {
  background: linear-gradient(to bottom, transparent, rgba(255, 64, 129, 0.12), transparent);
}
[data-theme="light"] .bg-line-2 {
  background: linear-gradient(to bottom, transparent, rgba(255, 167, 38, 0.12), transparent);
}
[data-theme="light"] .bg-line-3 {
  background: linear-gradient(to bottom, transparent, rgba(66, 165, 245, 0.10), transparent);
}

[data-theme="light"] .section-glow-blue { background: rgba(66, 165, 245, 0.08); }
[data-theme="light"] .section-glow-orange { background: rgba(255, 167, 38, 0.07); }
[data-theme="light"] .section-glow-pink { background: rgba(255, 64, 129, 0.07); }

/* ========== LIGHT MODE OVERRIDES ========== */
[data-theme="light"] .nav-logo span {
  color: var(--text-primary);
}

[data-theme="light"] .hero-bg::before {
  background: radial-gradient(circle at 20% 30%, rgba(255, 167, 38, 0.12) 0%, transparent 45%),
              radial-gradient(circle at 75% 25%, rgba(255, 64, 129, 0.10) 0%, transparent 45%),
              radial-gradient(circle at 50% 70%, rgba(66, 165, 245, 0.08) 0%, transparent 45%),
              radial-gradient(circle at 85% 75%, rgba(171, 71, 188, 0.06) 0%, transparent 40%);
}

[data-theme="light"] .mockup-window {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--border-color);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12), 0 0 60px rgba(21, 101, 192, 0.05);
}

[data-theme="light"] .mockup-toolbar {
  background: var(--bg-surface);
  border-bottom-color: var(--border-color);
}

[data-theme="light"] .mockup-url {
  background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .mockup-nav-item {
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .mockup-sidebar {
  background: var(--bg-surface);
  border-right-color: var(--border-color);
}

[data-theme="light"] .mockup-stat-card {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--border-color);
}

[data-theme="light"] .mockup-chart {
  background: rgba(0, 0, 0, 0.02);
  border-color: var(--border-color);
}

[data-theme="light"] .mockup-row {
  background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .mockup-row-header {
  background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mockup-bar {
  background: linear-gradient(to top, rgba(21, 101, 192, 0.25), rgba(21, 101, 192, 0.08));
}

[data-theme="light"] .mockup-bar-active {
  background: linear-gradient(to top, rgba(255, 64, 129, 0.4), rgba(255, 167, 38, 0.2));
}

[data-theme="light"] .data-card,
[data-theme="light"] .feature-card,
[data-theme="light"] .showcase-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .pricing-card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .data-card:hover,
[data-theme="light"] .feature-card:hover,
[data-theme="light"] .showcase-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .theme-toggle {
  border-color: var(--border-color);
}
[data-theme="light"] .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .phone {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .footer-socials a {
  background: var(--bg-surface);
}

[data-theme="light"] .feature-card:hover {
  border-top-color: var(--brand-orange);
}
[data-theme="light"] .data-card:hover {
  border-top-color: var(--brand-blue);
}

/* ========== ANIMATIONS ========== */

/* Initial hidden state for scroll-animated elements.
   Scoped to .gsap-ready (added by landing.js only in the full-motion path),
   so content stays VISIBLE if JS fails or under reduced-motion. */
.gsap-ready .data-card,
.gsap-ready .feature-card,
.gsap-ready .showcase-card,
.gsap-ready .testimonial-card,
.gsap-ready .pricing-card,
.gsap-ready .process-step,
.gsap-ready .phone,
.gsap-ready .problem-item,
.gsap-ready .flywheel-callout,
.gsap-ready .guarantee-card,
.gsap-ready .cohort-reason,
.gsap-ready .faq-item,
.gsap-ready .credibility-stat,
.gsap-ready .section-overline,
.gsap-ready .section-title,
.gsap-ready .section-subtitle {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
/* Revealed by IntersectionObserver (landing.js). .reveal-all is the 4s JS-failure safety net. */
.gsap-ready .is-revealed,
.reveal-all .data-card,
.reveal-all .feature-card,
.reveal-all .process-step,
.reveal-all .problem-item,
.reveal-all .flywheel-callout,
.reveal-all .guarantee-card,
.reveal-all .cohort-reason,
.reveal-all .faq-item,
.reveal-all .credibility-stat,
.reveal-all .section-overline,
.reveal-all .section-title,
.reveal-all .section-subtitle {
  opacity: 1 !important;
  transform: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

.reveal-stagger > * {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== MOBILE NAV OPEN ========== */
@media (max-width: 768px) {
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-overlay);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-6);
    gap: var(--space-4);
  }

  .nav-links.mobile-open a {
    font-size: 16px;
    padding: var(--space-2) 0;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .features-grid,
  .showcase-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .data-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
  .process-steps::before { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-login { display: none; }

  .hero { padding: 100px var(--space-4) var(--space-12); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-lg { width: 100%; }

  .proof-stats { grid-template-columns: 1fr; gap: var(--space-4); }

  .phones-row { gap: var(--space-4); }
  .phone { width: 160px; height: 320px; border-radius: 24px; }
  .phone::before { width: 54px; height: 18px; top: 8px; }
  .phone-card { height: 320px; }

  .features-grid,
  .showcase-grid,
  .testimonials-grid,
  .pricing-grid { grid-template-columns: 1fr; }

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

  .pricing-card:last-child { grid-column: span 1; max-width: none; }

  .process-steps { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
}

@media (max-width: 480px) {
  .hero-mockup { display: none; }
  .data-grid { grid-template-columns: 1fr; }
  .phones-row { gap: var(--space-2); }
  .phone { width: 120px; height: 240px; border-radius: 18px; }
  .phone::before { width: 40px; height: 14px; top: 6px; }
  .phone-card { height: 240px; padding: var(--space-2); }
  .phone-card-title { font-size: 11px; }
  .phone-card-meta { font-size: 9px; }
}

/* ============================================================
   REDESIGN 2026-05-29 — "Dark Editorial Luxury, Engineered"
   Bilingual (DE/EN) · Founding-Cohort · honest content · star/brain motif
   ============================================================ */

/* ---------- Editorial type discipline ---------- */
.section-overline,
.hero-overline {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.18em;
}
.hero-overline { color: var(--text-muted); }
.section-overline { color: var(--text-muted); }

.section-title { letter-spacing: -0.015em; font-weight: 600; }

/* Gradient is a guest, not the wallpaper — reserve it. */
.grad,
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Data numbers: solid mono (gradient reserved for hero/credibility creation-moments) */
.data-number {
  font-family: var(--font-mono);
  -webkit-text-fill-color: currentColor;
  background: none;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* ---------- Language toggle (mirrors .theme-toggle) ---------- */
.lang-toggle {
  min-width: 36px;
  height: 36px;
  padding: 0 var(--space-3);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.lang-toggle:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.05);
}
[data-theme="light"] .lang-toggle { border-color: var(--border-color); }
[data-theme="light"] .lang-toggle:hover { background: rgba(0, 0, 0, 0.05); }

/* ---------- Pulsing primary CTA (glenn-style attention) ---------- */
.btn-pulse { position: relative; }
.btn-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255, 64, 129, 0.45);
  animation: ctaPulse 2.8s ease-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 64, 129, 0.40); }
  70%  { box-shadow: 0 0 0 14px rgba(255, 64, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 64, 129, 0); }
}
.nav-cta { padding-top: var(--space-2); padding-bottom: var(--space-2); }

/* ---------- Hero: editorial headline + real reel wall ---------- */
.hero {
  min-height: 100vh;
  text-align: left;
  padding-top: 128px;
  padding-bottom: var(--space-16);
  align-items: center;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: var(--space-12);
  align-items: center;
  width: 100%;
  perspective: 1600px;
}
.hero-content { z-index: 2; max-width: 600px; text-align: left; }
.hero-title {
  font-size: clamp(38px, 5.2vw, 74px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}
.hero-subtitle {
  margin: 0 0 var(--space-8);
  max-width: 520px;
  font-size: clamp(16px, 1.4vw, 19px);
}
.hero-cta { justify-content: flex-start; }
.hero-trust {
  margin-top: var(--space-6);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

/* Reel wall — straight (no tilt), columns loop infinitely (JS marquee), masked top/bottom.
   Uniform --reel-gap everywhere (incl. frame margin-bottom) makes the loop seamless. */
.hero-reels {
  --reel-gap: clamp(10px, 1vw, 15px);
  display: flex;
  justify-content: center;
  gap: var(--reel-gap);
  height: clamp(440px, 74vh, 680px);
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent, #000 11%, #000 89%, transparent),
    linear-gradient(to right,  transparent, #000 8%,  #000 92%, transparent);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent, #000 11%, #000 89%, transparent),
    linear-gradient(to right,  transparent, #000 8%,  #000 92%, transparent);
  mask-composite: intersect;
  will-change: transform;
  cursor: grab;            /* drag-to-scrub affordance (visible when star cursor is off) */
  touch-action: none;
  user-select: none;
}
.hero-reels.is-dragging { cursor: grabbing; }
/* tactile feedback while flinging the wall */
.hero-reels.is-dragging .reel-frame { outline: 1px solid rgba(66, 165, 245, 0.30); }
.reel-col { display: flex; flex-direction: column; will-change: transform; }
.reel-set { display: flex; flex-direction: column; }
.reel-frame {
  position: relative;
  width: clamp(120px, 11.5vw, 176px);
  aspect-ratio: 9 / 16;
  margin-bottom: var(--reel-gap);
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55), 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: outline-color 0.25s ease;
  outline: 0 solid transparent;
}
.reel-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Hovered column lifts subtly (paired with JS pause-on-hover) */
.reel-col:hover .reel-frame { outline: 1px solid rgba(255, 64, 129, 0.35); }
[data-theme="light"] .reel-frame {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 22px 48px rgba(20, 20, 40, 0.18), 0 2px 6px rgba(20, 20, 40, 0.10);
}

/* Hero intro — CSS-driven (reliable, completes even when rAF throttles).
   Elements are visible by default; the animation only plays them in. */
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
.hero-overline { animation: heroIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.10s both; }
.hero-title    { animation: heroIn 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.24s both; }
.hero-subtitle { animation: heroIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.40s both; }
.hero-cta      { animation: heroIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.54s both; }
.hero-trust    { animation: heroIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.66s both; }
.hero-reels    { animation: heroFade 1.2s ease-out 0.18s both; }

/* Living aurora hero background (premium, cursor-reactive via landing.js) */
.hero-aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; will-change: transform; }
.aurora-blob { position: absolute; border-radius: 50%; filter: blur(90px); will-change: transform; }
.aurora-1 { width: 46vw; height: 46vw; background: radial-gradient(circle, var(--brand-orange), transparent 68%); top: -12%; left: -6%; opacity: 0.20; animation: auroraA 24s ease-in-out infinite; }
.aurora-2 { width: 40vw; height: 40vw; background: radial-gradient(circle, var(--brand-pink), transparent 68%); top: 2%; right: -8%; opacity: 0.22; animation: auroraB 28s ease-in-out infinite; }
.aurora-3 { width: 44vw; height: 44vw; background: radial-gradient(circle, var(--brand-blue), transparent 68%); bottom: -20%; left: 28%; opacity: 0.18; animation: auroraC 26s ease-in-out infinite; }
@keyframes auroraA { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(5%, 7%); } }
@keyframes auroraB { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-6%, 5%); } }
@keyframes auroraC { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(4%, -6%); } }
.aurora-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 42%, #000 0%, transparent 66%);
  mask-image: radial-gradient(ellipse at 50% 42%, #000 0%, transparent 66%);
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute; left: 50%; bottom: var(--space-8);
  transform: translateX(-50%);
  width: 26px; height: 42px; border-radius: 14px;
  border: 2px solid var(--border-hover);
  display: flex; justify-content: center; padding-top: 7px;
  z-index: 2;
}
.hero-scroll-dot { width: 4px; height: 8px; border-radius: 2px; background: var(--text-secondary); animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-3px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(8px); } }

/* Light-theme aurora tuning */
[data-theme="light"] .aurora-1 { opacity: 0.34; }
[data-theme="light"] .aurora-2 { opacity: 0.36; }
[data-theme="light"] .aurora-3 { opacity: 0.28; }
[data-theme="light"] .aurora-grid {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

/* ---------- Credibility strip ---------- */
.credibility {
  padding: var(--space-12) 0;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--border-hover), transparent) 1;
}
.credibility-line {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.credibility-stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-16);
  flex-wrap: wrap;
}
.credibility-stat { text-align: center; }
.credibility-num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.credibility-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: var(--space-1);
}

/* ---------- Clean gradient check bullet (replaces scattered dots) ---------- */
.star-bullet {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: var(--gradient-primary);
  -webkit-mask: var(--check-mask) center/contain no-repeat;
  mask: var(--check-mask) center/contain no-repeat;
  --check-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: var(--gradient-primary);
  z-index: 200;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
}

/* ---------- Star cursor (brand motif) ----------
   The pointer becomes a star; moving it leaves a short sparkle trail (built in landing.js).
   Desktop only (pointer:fine); disabled under reduced-motion.
   Home-only: the other public pages use the shared css/cursor.css (same look). */
.cursor-star, .cursor-spark {
  position: fixed; top: 0; left: 0;
  width: 22px; height: 22px;
  pointer-events: none;
  z-index: 300;
  color: var(--brand-pink);
}
.cursor-star { opacity: 0; transition: opacity 0.25s ease, scale 0.18s ease; }
body.star-cursor-on .cursor-star { opacity: 1; }
.cursor-star.is-hovering { scale: 1.45; color: var(--brand-blue); }
.cursor-star svg, .cursor-spark svg {
  width: 100%; height: 100%; display: block;
  filter: drop-shadow(0 0 5px rgba(255, 64, 129, 0.55));
}
.cursor-spark {
  width: 13px; height: 13px;
  transform: translate(-50%, -50%) scale(var(--s, 0.6));
  animation: sparkFade 0.72s ease-out forwards;
}
@keyframes sparkFade {
  0%   { opacity: 0.95; transform: translate(-50%, -50%) scale(var(--s, 0.6)) rotate(0deg); }
  100% { opacity: 0;    transform: translate(-50%, calc(-50% - 16px)) scale(0) rotate(40deg); }
}
/* Star is the cursor everywhere on the landing page — beats any element-level
   cursor:grab/pointer (reels, showcase, toggles) via the universal selector. */
body.star-cursor-on,
body.star-cursor-on * { cursor: none !important; }
[data-theme="light"] .cursor-star svg, [data-theme="light"] .cursor-spark svg {
  filter: drop-shadow(0 0 5px rgba(194, 24, 91, 0.5));
}
@media (prefers-reduced-motion: reduce) {
  .cursor-star, .cursor-spark { display: none; }
  /* Star hidden → return the native cursor; must also be !important to beat the rule above. */
  body.star-cursor-on,
  body.star-cursor-on * { cursor: auto !important; }
}

/* ---------- Problem / Why ---------- */
.problem {
  padding: clamp(56px, 8vh, 84px) 0;
  position: relative;
  overflow: hidden;
}
.problem-list {
  list-style: none;
  max-width: 940px;
  margin: var(--space-10) auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (max-width: 768px) { .problem-list { grid-template-columns: 1fr; } }
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: var(--space-4) var(--space-5);
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.problem-item:hover { border-color: var(--border-hover); transform: translateX(4px); }

/* ---------- Flywheel teaser + callout ---------- */
.data-flywheel-teaser {
  text-align: center;
  margin-top: var(--space-10);
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
}
.four-steps {
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
/* Neutral connector line behind the opaque step circles (z-index:1). It stays grey
   — no rainbow. The motion is a single highlight that WALKS through the four nodes
   as the row scrolls through the viewport (driven by landing.js → .is-current). */
.four-steps::before {
  content: '';
  position: absolute;
  top: 36px;            /* vertical centre of the 72px circles */
  left: 12.5%;          /* centre of column 1 of 4 */
  right: 12.5%;         /* centre of column 4 of 4 */
  height: 2px;
  background: var(--border-color);
  border-radius: 2px;
  pointer-events: none;
}

/* Circles: opaque in EVERY state, so the connector can never bleed through (the old
   hover bug). The active node lifts + gets one subtle accent (orange), then hands
   off to the next as you scroll. */
.four-steps .step-number {
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.45s ease,
              box-shadow 0.45s ease, color 0.45s ease, background 0.45s ease;
}
.four-steps .process-step.is-current .step-number {
  transform: scale(1.1);
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: color-mix(in srgb, var(--brand-orange) 12%, var(--bg-surface));
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--brand-orange) 11%, transparent),
              0 10px 30px color-mix(in srgb, var(--brand-orange) 22%, transparent);
}
.four-steps .process-step.is-current .step-title { color: var(--text-primary); }

/* Hover keeps the circle opaque + lifts; never the transparent fill that bled. */
.four-steps .process-step:hover .step-number {
  border-color: color-mix(in srgb, var(--brand-orange) 65%, transparent);
  background: color-mix(in srgb, var(--brand-orange) 9%, var(--bg-surface));
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .four-steps .step-number { transition: none; }
}
.flywheel-callout {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  max-width: 820px;
  margin: var(--space-12) auto 0;
  padding: var(--space-6) var(--space-8);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 167, 38, 0.06), rgba(255, 64, 129, 0.06), rgba(66, 165, 245, 0.06));
  border: 1px solid var(--border-color);
}
.flywheel-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 64, 129, 0.12);
  color: var(--brand-pink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.flywheel-icon svg { width: 24px; height: 24px; }
.flywheel-callout p {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.6;
}

/* ---------- Pillars (reuses .features-grid / .feature-card) ---------- */
/* No icon square — the big figure (€-range, bar chart, 10×) IS the visual. The
   numbered index ("01") is the only mark, so the card reads like a lever, not an
   AI-template card with a glyph. */
.pillars-grid .feature-icon { display: none; }

/* Bolder pillar cards with a big "lever" figure each */
.pillar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-8) var(--space-7, 28px) var(--space-8);
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.1s;
}
.pillar-card.is-revealed::before { transform: scaleX(1); }
.reveal-all .pillar-card::before { transform: scaleX(1); }
.pillar-index {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  opacity: 0.7;
}
.pillar-figure {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 78px;
  justify-content: flex-end;
  margin: var(--space-5) 0 var(--space-4);
}
.pillar-stat {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.pillar-cap {
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}
.pillar-figure-chart { gap: 12px; }
.pillar-bars { width: 132px; height: 56px; display: block; }
.pillar-bars .bar { transform-box: fill-box; transform-origin: bottom; }
.gsap-ready .pillar-figure-chart .bar { transform: scaleY(0.02); }
.gsap-ready .pillar-card.is-revealed .pillar-figure-chart .bar { animation: barGrow 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.gsap-ready .pillar-card.is-revealed .pillar-figure-chart .bar:nth-child(1) { animation-delay: 0.05s; }
.gsap-ready .pillar-card.is-revealed .pillar-figure-chart .bar:nth-child(2) { animation-delay: 0.16s; }
.gsap-ready .pillar-card.is-revealed .pillar-figure-chart .bar:nth-child(3) { animation-delay: 0.27s; }
.gsap-ready .pillar-card.is-revealed .pillar-figure-chart .bar:nth-child(4) { animation-delay: 0.38s; }
.reveal-all .pillar-figure-chart .bar { transform: none !important; }
@keyframes barGrow { from { transform: scaleY(0.02); } to { transform: scaleY(1); } }

/* ---------- Differentiator: animation not avatar ---------- */
.differentiator {
  padding: clamp(56px, 8vh, 84px) 0;
  position: relative;
  overflow: hidden;
}
.differentiator-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-16);
  align-items: center;
}
.differentiator-text .section-overline,
.differentiator-text .section-title { opacity: 1; transform: none; }
.differentiator-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: var(--space-4) 0 var(--space-4);
}
.differentiator-note {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  color: var(--text-muted);
}
.diff-vs { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.diff-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: var(--bg-elevated);
  padding: var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.diff-card-us { border-color: transparent; background-image: linear-gradient(var(--bg-elevated), var(--bg-elevated)), var(--gradient-primary); background-origin: border-box; background-clip: padding-box, border-box; }
.diff-card-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.diff-card-us .diff-card-label { color: var(--text-primary); }
.diff-face { width: 88px; height: 88px; border-radius: 50%; position: relative; overflow: hidden; }
.diff-face-flat { background: linear-gradient(135deg, #3D3D42, #56565D); filter: grayscale(1); display: flex; align-items: flex-end; justify-content: center; }
.diff-face-flat svg { width: 78%; height: 78%; color: rgba(255, 255, 255, 0.20); }
.diff-face-flat::after { content: ''; position: absolute; inset: 0; border-radius: 50%; box-shadow: inset 0 0 0 6px rgba(255,255,255,0.04); }
.diff-face-brand { background: var(--gradient-extended); box-shadow: 0 8px 28px rgba(255, 64, 129, 0.3); }
.diff-face-brand::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #fff;
  opacity: 0.92;
  -webkit-mask: var(--star-mask) center/40% no-repeat;
  mask: var(--star-mask) center/40% no-repeat;
  --star-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cg transform='translate(128,128) rotate(15)'%3E%3Cpolygon points='0,-105 16.5,-28.6 90.9,-52.5 33,0 90.9,52.5 16.5,28.6 0,105 -16.5,28.6 -90.9,52.5 -33,0 -90.9,-52.5 -16.5,-28.6'/%3E%3C/g%3E%3C/svg%3E");
}
.diff-reel {
  width: 132px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-primary);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 32px rgba(255, 64, 129, 0.18);
}
.diff-reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.diff-card-them .diff-face-flat { margin: 22px 0; }
.diff-card-tag { font-size: 13px; color: var(--text-secondary); }

/* ---------- Showcase marquee (full-bleed, real productions) ---------- */
.showcase {
  position: relative;
  padding: clamp(64px, 9vh, 116px) 0 clamp(56px, 8vh, 104px);
  overflow: hidden;
}
.showcase-header { text-align: center; margin-bottom: clamp(34px, 5vh, 56px); }
.showcase-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.showcase-marquee.is-dragging { cursor: grabbing; }
.showcase-track {
  display: flex;
  gap: clamp(12px, 1.4vw, 22px);
  width: max-content;
  will-change: transform;
  padding: 6px 0;        /* room for the hover lift's shadow */
}
.showcase-frame {
  position: relative;
  flex-shrink: 0;
  width: clamp(150px, 15vw, 232px);
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease;
}
.showcase-frame video { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.showcase-marquee:not(.is-dragging) .showcase-frame:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 34px rgba(255, 64, 129, 0.22);
}
.showcase-hint {
  display: block;
  text-align: center;
  margin-top: clamp(26px, 4vh, 44px);
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-tertiary, var(--text-secondary));
  opacity: 0.7;
}
[data-theme="light"] .showcase-frame {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 22px 48px rgba(20, 20, 40, 0.18), 0 2px 6px rgba(20, 20, 40, 0.10);
}
@media (max-width: 768px) {
  .showcase-frame { width: 132px; border-radius: 14px; }
  .showcase-marquee { -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent); mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent); }
}

/* ---------- WYMB Guarantee ---------- */
.guarantee { padding: clamp(56px, 8vh, 84px) 0; }
.guarantee-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-16) var(--space-12);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  background-image: linear-gradient(var(--bg-elevated), var(--bg-elevated)), var(--gradient-primary);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 60px rgba(255, 64, 129, 0.08);
}
.guarantee-badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-5);
  box-shadow: 0 8px 24px rgba(255, 64, 129, 0.35);
}
.guarantee-badge svg { width: 30px; height: 30px; }
.guarantee-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  letter-spacing: -0.015em;
}
.guarantee-desc { font-size: 17px; color: var(--text-secondary); line-height: 1.7; max-width: 580px; margin: 0 auto var(--space-5); }
.guarantee-conditions { font-size: 13px; color: var(--text-muted); font-family: var(--font-mono); letter-spacing: 0.02em; }

/* ---------- Founding Cohort / Application ---------- */
.cohort { padding: clamp(56px, 8vh, 84px) 0; position: relative; overflow: hidden; }
.cohort-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(66, 165, 245, 0.08), transparent 60%);
  pointer-events: none;
}
.cohort-reason {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.cohort-reason p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.cohort-cta { display: flex; justify-content: center; margin-top: var(--space-10); }

/* ---------- New-component light-theme handling ---------- */
[data-theme="light"] .problem-item { box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
[data-theme="light"] .diff-card,
[data-theme="light"] .guarantee-card { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
[data-theme="light"] .flywheel-callout p { color: var(--text-primary); }
[data-theme="light"] .hero-brain-glow {
  background: radial-gradient(circle, rgba(255, 64, 129, 0.18), rgba(66, 165, 245, 0.10) 45%, transparent 70%);
}

/* ---------- Reduced-motion: force scroll-reveal targets visible ---------- */
@media (prefers-reduced-motion: reduce) {
  .data-card, .feature-card, .showcase-card, .testimonial-card, .pricing-card,
  .process-step, .phone, .section-overline, .section-title, .section-subtitle,
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-canvas { display: none; }
}

/* ---------- Responsive (new components) ---------- */
@media (max-width: 1024px) {
  .four-steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
  /* Connector only makes sense in a single row of 4 — hide it once it wraps. */
  .four-steps::before { display: none; }
  .differentiator-inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .credibility-stats { gap: var(--space-10); }
  .hero { text-align: center; padding-top: 112px; }
  /* Stack the hero into one centered column and interleave the order:
     overline → headline → REEL WALL → subtitle → CTA → trust. display:contents on
     .hero-content lets its children be ordered around .hero-reels (a sibling). */
  .hero-grid {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: var(--space-7); perspective: none;
  }
  .hero-content { display: contents; }
  .hero-overline { order: 1; }
  .hero-title    { order: 2; max-width: 640px; }
  .hero-reels    { order: 3; }
  .hero-subtitle { order: 4; max-width: 600px; margin-left: auto; margin-right: auto; }
  .hero-cta      { order: 5; justify-content: center; }
  .hero-trust    { order: 6; }
  .hero-scroll-cue { display: none; }   /* hint overlapped the reels on phones */
  /* Same vertical scrolling reel wall as desktop, scaled to phone width (3 narrow
     columns). touch-action:pan-y so a vertical swipe still scrolls the page while
     the marquee auto-loops; no drag-to-scrub on touch. */
  .hero-reels {
    --reel-gap: 8px;
    width: 100%;
    height: clamp(360px, 52vh, 460px);
    gap: 8px;
    justify-content: center;
    touch-action: pan-y;
    cursor: default;
  }
  .reel-col { display: flex; flex-direction: column; }
  .reel-set { display: flex; flex-direction: column; }
  .reel-frame { width: clamp(92px, 28vw, 128px); margin-bottom: 8px; border-radius: 14px; }
}
@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .four-steps { grid-template-columns: 1fr 1fr; }
  .flywheel-callout { flex-direction: column; text-align: center; }
  .diff-vs { grid-template-columns: 1fr; }
  .guarantee-card { padding: var(--space-10) var(--space-5); }
  .credibility-stats { gap: var(--space-6); }
}

/* ============================================================================
   Phone breakpoints — 2026-06-03 mobile pass, reel wall reworked 2026-06-04.
   Builds on the <=1024 collapse (hero stacks to 1 column; reel wall stays the
   same vertical scrolling marquee as desktop, just 3 narrow columns). Adds the
   small-phone sizing so Test-Home is readable + tap-friendly down to 320px.
   Reel-frame width is a clamp in the <=1024 block — no fixed widths here (a fixed
   width would overflow 3 columns on a 320px screen). ========================== */
@media (max-width: 480px) {
  /* safety net against any rogue horizontal overflow (clip, not hidden, so the
     fixed nav + any sticky bits are unaffected) */
  body { overflow-x: clip; }

  .hero { padding-top: 96px; padding-bottom: var(--space-12); }
  .hero-grid { gap: var(--space-8); }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: clamp(28px, 8.5vw, 40px); line-height: 1.08; }
  .hero-subtitle { max-width: 100%; width: 100%; font-size: 15px; margin-bottom: var(--space-6); }
  .hero-cta { flex-direction: column; width: 100%; gap: var(--space-3); }
  .hero-cta .btn-lg, .hero-cta .btn { width: 100%; min-width: 0; }
  .hero-trust { font-size: 11px; }

  .section-title { font-size: clamp(24px, 7vw, 34px); }
  .section-subtitle { font-size: 15px; }
  .credibility-stats { gap: var(--space-6) var(--space-8); }
  .guarantee-card { padding: var(--space-8) var(--space-4); }

  /* declutter the nav on phones — CTA stays reachable in hero/cohort/footer */
  .nav-cta { display: none; }

  /* WCAG tap targets (>=44px) */
  .mobile-toggle { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .theme-toggle, .lang-toggle { min-width: 44px; min-height: 44px; }
  .faq-question { min-height: 44px; }
}

@media (max-width: 375px) {
  .hero { padding-top: 88px; }
  .hero-title { font-size: clamp(25px, 8vw, 32px); }
  .section-title { font-size: clamp(22px, 7vw, 30px); }
  .guarantee-card { padding: var(--space-6) var(--space-3); }
  .container { padding-left: var(--space-3); padding-right: var(--space-3); }
}
