/* Landing page — extends shared style.css tokens */

.landing-body {
  overflow-x: hidden;
}

.landing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-lang {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface2);
  overflow: hidden;
}

.landing-lang select {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 28px 8px 12px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.landing-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(6, 182, 212, 0.35);
  background: rgba(6, 182, 212, 0.1);
  color: var(--primary-light);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.landing-hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: flex;
  align-items: flex-end;
  padding: 48px 20px 56px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(6, 182, 212, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(20, 184, 166, 0.12), transparent 50%),
    linear-gradient(180deg, #07080f 0%, #0b1220 55%, #07080f 100%);
}

.landing-hero-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.landing-brand {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-hero h1 {
  font-size: clamp(1.55rem, 4.4vw, 2.45rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 14px;
  color: var(--text);
}

.landing-hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.12rem);
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 22px;
  line-height: 1.55;
}

.landing-sample {
  max-width: 420px;
  margin-bottom: 22px;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.landing-sample-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 0.86rem;
}

.landing-sample-row strong {
  color: var(--text);
  font-weight: 700;
}

.landing-sample-meta {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
}

.badge-ideal {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.landing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  color: #041016;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.25);
}

.landing-cta:hover {
  filter: brightness(1.05);
}

.landing-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 20px;
}

.landing-section h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.landing-lead {
  color: var(--muted);
  max-width: 48rem;
  font-size: 1rem;
  line-height: 1.65;
}

.landing-steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.landing-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.landing-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #041016;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.landing-step h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.landing-step p {
  color: var(--muted);
  font-size: 0.9rem;
}

.landing-diff-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

@media (min-width: 720px) {
  .landing-diff-grid {
    grid-template-columns: 1fr 1fr;
  }
  .landing-steps {
    grid-template-columns: 1fr;
  }
  .landing-nav {
    padding: 18px 24px;
  }
  .landing-hero {
    padding: 72px 24px 80px;
    align-items: center;
  }
}

.landing-diff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
}

.landing-diff-card h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
  color: var(--primary-light);
}

.landing-diff-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.landing-diff-card a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.landing-diff-card a:hover {
  text-decoration: underline;
}

.landing-founder {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.landing-price-card {
  margin-top: 24px;
  max-width: 420px;
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(6, 182, 212, 0.28);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(6, 182, 212, 0.06));
}

.landing-price-card .price {
  font-size: 2rem;
  font-weight: 800;
  margin: 8px 0 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-price-card .price-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.landing-faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 14px 16px;
  margin-top: 10px;
}

.landing-faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.landing-faq details p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.landing-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px 48px;
  color: var(--muted);
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.landing-footer a {
  color: var(--primary-light);
  text-decoration: none;
}

.landing-footer a:hover {
  text-decoration: underline;
}

/* Redesign additions */
.landing-hero-visuals {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .landing-hero-visuals {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
}

.photo-placeholder {
  position: relative;
  background: rgba(255, 255, 255, 0.015);
  border: 2px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 440px;
  transition: all 0.3s ease;
}

.photo-placeholder:hover {
  border-color: var(--primary);
  background: rgba(20, 184, 166, 0.03);
}

.placeholder-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* Hide overlay and solid border when image is present */
.photo-placeholder:has(img[src]:not([src=""])) .placeholder-overlay {
  display: none;
}
.photo-placeholder:has(img[src]:not([src=""])) {
  border-style: solid;
  border-color: var(--border);
}


.placeholder-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 16px;
  z-index: 2;
}

.placeholder-icon {
  font-size: 1.8rem;
}

.placeholder-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.step-placeholder {
  max-width: 100%;
  margin-top: 14px;
}

.landing-stats-strip {
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.05), rgba(6, 182, 212, 0.05));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.92rem;
}

.landing-stats-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.stats-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success);
  animation: stats-glow 2s infinite ease-in-out;
}

@keyframes stats-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.honest-limit-box {
  margin-top: 36px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
}

.honest-limit-inner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.honest-limit-icon {
  font-size: 1.4rem;
}

.honest-limit-box p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.founder-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .founder-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
}

.founder-photo-container {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.founder-photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.founder-photo-overlay {
  position: absolute;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 1px;
}

.founder-details {
  flex: 1;
}

.landing-testimonials-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

@media (min-width: 768px) {
  .landing-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 12px;
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.testimonial-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.testimonial-quote {
  font-size: 0.86rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.5;
  border-left: 2px solid var(--primary);
  padding-left: 10px;
  margin: 0;
}

.blog-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.blog-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.55;
}

.blog-link {
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-link:hover {
  color: var(--accent);
}

/* Bright Theme Redesign & Navbar Updates */
.landing-body {
  background-color: #fcfbfa !important;
  color: #0f172a !important;
  --landing-orange: #ff7d00;
  --landing-orange-hover: #e25b00;
  --landing-navy: #1b2537;
  --landing-border: rgba(15, 23, 42, 0.08);
  --landing-surface: #ffffff;
  --landing-surface-alt: #fdfaf5;
  --landing-text-dark: #0f172a;
  --landing-text-muted: #475569;
  /* Remap shared style.css tokens so FAQ/cards stay bright without dark bleed */
  --surface: #ffffff;
  --surface2: #f8fafc;
  --border: rgba(15, 23, 42, 0.08);
  --text: #0f172a;
  --muted: #475569;
}

.landing-body h1, .landing-body h2, .landing-body h3, .landing-body h4, .landing-body p, .landing-body span, .landing-body select {
  color: var(--landing-text-dark);
}

.landing-lead {
  color: var(--landing-text-muted) !important;
}

/* Header & Navbar Links */
.landing-header {
  background-color: #0b111e !important;
  border-bottom: 1px solid rgba(0, 242, 254, 0.15) !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.landing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  position: relative;
}

.landing-nav-links {
  display: none;
  gap: 22px;
  align-items: center;
}

@media (min-width: 981px) {
  .landing-nav-links {
    display: flex;
  }
}

.landing-nav-links a {
  color: rgba(241, 245, 249, 0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 4px 0;
  position: relative;
}

.landing-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #00f2fe;
  transition: width 0.25s ease;
}

.landing-nav-links a:hover {
  color: #00f2fe;
  text-shadow: 0 0 12px rgba(0, 242, 254, 0.4);
}

.landing-nav-links a:hover::after {
  width: 100%;
}

.landing-nav .logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: #ffffff !important;
  text-decoration: none;
}

.landing-lang {
  border: 1px solid var(--landing-border);
  background: #ffffff;
}

.landing-lang select {
  color: var(--landing-text-muted) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
}

.nav-login-link {
  margin-right: 10px;
  color: var(--landing-text-muted) !important;
}

/* Orange CTA Button Override — base */
.landing-cta, .landing-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  text-decoration: none;
  border-radius: 999px !important;
  transition: transform 0.2s, filter 0.2s;
}

.landing-cta:hover, .landing-nav-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  color: #ffffff !important;
}

.landing-nav-cta,
.landing-cta--nav {
  padding: 10px 18px !important;
  font-size: 0.88rem !important;
  background: linear-gradient(135deg, #0d9488, #0f766e) !important;
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.22) !important;
}

.landing-cta {
  padding: 14px 28px !important;
  font-size: 1rem !important;
  min-height: 48px;
}

.landing-cta--hero {
  background: linear-gradient(135deg, #0284c7, #0369a1) !important;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.22) !important;
}

.landing-cta--price {
  background: linear-gradient(135deg, #ff7d00, #e25b00) !important;
  box-shadow: 0 6px 16px rgba(255, 125, 0, 0.18) !important;
}

.landing-cta--coach {
  background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.25) !important;
}

/* Hero Section */
.landing-hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: flex;
  align-items: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, #e0f2fe 0%, #f0fdf4 50%, #fcfbfa 100%) !important;
}

.landing-brand {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--landing-orange) !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  display: inline-block;
}

.landing-hero h1 {
  color: var(--landing-text-dark) !important;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.landing-hero-sub {
  color: var(--landing-text-muted) !important;
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.landing-sample {
  background: #ffffff !important;
  border: 1px solid var(--landing-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border-radius: var(--radius);
  padding: 20px;
  max-width: 420px;
}

.landing-sample-row strong {
  color: var(--landing-text-dark) !important;
}

.landing-sample-meta {
  color: var(--landing-text-muted) !important;
}

/* How It Works / Steps */
.landing-step {
  background: #ffffff !important;
  border: 1px solid var(--landing-border) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
  padding: 24px !important;
}

.landing-step h3 {
  color: var(--landing-text-dark) !important;
  font-weight: 700;
  font-size: 1.1rem;
}

.landing-step p {
  color: var(--landing-text-muted) !important;
}

.landing-step-num {
  background: var(--landing-orange) !important;
  color: #ffffff !important;
}

/* Problem Side-by-side Layout */
.problem-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .problem-layout {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .problem-details {
    flex: 1.2;
  }
  .problem-visual {
    flex: 0.8;
  }
}

.problem-img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  display: block;
}

/* Pricing Cards */
.landing-price-card {
  background: #ffffff !important;
  border: 1px solid var(--landing-border) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03) !important;
  padding: 28px 24px !important;
  transition: transform 0.2s, box-shadow 0.2s;
}

.landing-price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.05) !important;
}

.landing-price-card .price {
  color: var(--landing-text-dark) !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 12px 0 6px;
}

.landing-price-card .price-note {
  color: var(--landing-text-muted) !important;
}

/* Full-width light section bands (no 100vw left-stuck hack) */
.landing-section {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box;
  padding: 72px clamp(16px, 4vw, 40px) !important;
}

.landing-section > *:not(.landing-section-dark-inner):not(.guide-infographic-container):not(.fit-examples-grid):not(.landing-diff-grid):not(.landing-testimonials-grid):not(.blog-grid):not(.founder-layout):not(.problem-layout):not(.contact-grid):not(.landing-steps) {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.landing-section h2,
.landing-section > .landing-lead,
.landing-section > .guide-note {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.landing-section-dark-inner,
.fit-examples-grid,
.landing-diff-grid,
.landing-testimonials-grid,
.blog-grid,
.founder-layout,
.problem-layout,
.landing-steps,
.guide-infographic-container,
.contact-grid {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Distinct light backgrounds per section */
#problem { background: #f0f9ff !important; }
#how { background: #f8fafc !important; }
#examples { background: #fff7ed !important; }
#guide { background: #f0fdf4 !important; }
#difference { background: #eef2ff !important; }
#founder { background: #ffffff !important; }
#testimonials { background: #fdf4ff !important; }
#pricing { background: #fffbeb !important; }
#blog { background: #ecfeff !important; }
#faq { background: #f1f5f9 !important; }
#contact { background: #f0fdfa !important; }

.landing-stats-strip {
  background: #e0f2fe !important;
  width: 100% !important;
}

.landing-hero {
  width: 100% !important;
  box-sizing: border-box;
}

.landing-hero-inner {
  max-width: 1100px !important;
  margin: 0 auto !important;
  width: 100%;
}

/* Former dark blocks → light cards on tinted bands */
.landing-section-band .landing-diff-card,
.landing-section-band .testimonial-card {
  background: #ffffff !important;
  border: 1px solid var(--landing-border) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

.landing-section-band .landing-diff-card h3 {
  color: #0f766e !important;
}

#difference .landing-diff-card:nth-child(1) h3 { color: #0284c7 !important; }
#difference .landing-diff-card:nth-child(2) h3 { color: #7c3aed !important; }
#difference .landing-diff-card:nth-child(3) h3 { color: #0d9488 !important; }
#difference .landing-diff-card:nth-child(4) h3 { color: #ea580c !important; }

.landing-section-band .landing-diff-card p,
.landing-section-band .landing-diff-card a,
.landing-section-band .testimonial-subtitle {
  color: var(--landing-text-muted) !important;
}

.landing-section-band .testimonial-name,
.landing-section-band h2 {
  color: var(--landing-text-dark) !important;
}

.landing-section-band .testimonial-quote {
  color: var(--landing-text-dark) !important;
  border-left: 3px solid #7c3aed !important;
}

.landing-section-band .testimonial-avatar-placeholder {
  background: #ede9fe !important;
  border: 1px solid #ddd6fe !important;
  color: #5b21b6 !important;
}

.honest-limit-box {
  background: #ffffff !important;
  border: 1px solid var(--landing-border) !important;
  border-radius: var(--radius) !important;
  padding: 18px 20px !important;
  margin-top: 24px !important;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.honest-limit-box p {
  color: var(--landing-text-muted) !important;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 24px;
  margin-top: 28px;
  align-items: stretch;
}
@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: minmax(240px, 360px) 1fr;
  }
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--landing-border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-item:hover {
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: 0 8px 22px rgba(13, 148, 136, 0.08);
}
.contact-item--static {
  cursor: default;
}
.contact-item--static:hover {
  border-color: var(--landing-border);
  box-shadow: none;
}
.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--landing-text-muted) !important;
}
.contact-item strong {
  font-size: 1.05rem;
  color: var(--landing-text-dark) !important;
}
.contact-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--landing-border);
  background: #ffffff;
  min-height: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.contact-map {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.landing-footer {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 36px clamp(16px, 4vw, 40px) !important;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
  align-items: center;
}
.landing-footer > div {
  max-width: 1100px;
}

/* Full-width Dark Contrast Block Styles — replaced by light bands above */
.landing-section-dark {
  /* kept as no-op for legacy class names */
  background-color: transparent;
}

/* Founder Visual updates */
.founder-photo-container {
  background: #ffffff !important;
  border: 1px solid var(--landing-border) !important;
}

.founder-photo-placeholder {
  opacity: 1 !important;
}

.founder-photo-container:has(img[src]:not([src=""])) .founder-photo-overlay {
  display: none !important;
}

/* Blog section overrides */
.blog-card {
  background: #ffffff !important;
  border: 1px solid var(--landing-border) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.blog-card h3 {
  color: var(--landing-text-dark) !important;
}

.blog-desc {
  color: var(--landing-text-muted) !important;
}

.blog-link {
  color: var(--landing-orange) !important;
}

.blog-link:hover {
  color: var(--landing-orange-hover) !important;
}

/* Footer Section */
.landing-footer {
  border-top: 1px solid var(--landing-border) !important;
  background-color: #ffffff !important;
  padding: 36px 20px !important;
}

.landing-footer a, .landing-footer span {
  color: var(--landing-text-muted) !important;
}

.landing-footer a:hover {
  color: var(--landing-orange) !important;
}

/* Fix FAQ Visibility in Light Theme */
.landing-faq details {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.landing-faq summary {
  color: #0f172a !important;
  font-weight: 700 !important;
}
.landing-faq details p {
  color: #475569 !important;
}

/* Language Selector Refinements */
.landing-lang {
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  background: #ffffff !important;
  border-radius: 999px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  overflow: hidden !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
.landing-lang:focus-within {
  border-color: var(--landing-orange) !important;
  box-shadow: 0 0 0 2px rgba(255, 125, 0, 0.15) !important;
}
.landing-lang select {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 8px 32px 8px 12px !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  color: var(--landing-text-muted) !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
}
.landing-lang select:focus,
.landing-lang select:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Style 'My Bikefits' link as secondary navigation text */
.landing-nav-links .nav-login-link {
  margin-right: 16px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--landing-text-muted) !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  padding: 0 !important;
  border-radius: 0 !important;
  min-height: auto !important;
  transition: color 0.2s !important;
}
.landing-nav-links .nav-login-link:hover {
  color: var(--landing-orange) !important;
  transform: none !important;
  filter: none !important;
}

/* Real-life Fit Examples Grid */
.fit-examples-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .fit-examples-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.fit-example-card {
  background: #ffffff !important;
  border: 1px solid var(--landing-border) !important;
  border-radius: var(--radius) !important;
  padding: 24px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
  display: flex;
  flex-direction: column;
}
.fit-example-card h3 {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
  color: var(--landing-text-dark) !important;
}
.fit-example-desc {
  font-size: 0.9rem !important;
  color: var(--landing-text-muted) !important;
  margin-bottom: 16px !important;
  line-height: 1.55 !important;
  flex-grow: 0;
}
.fit-example-media {
  margin-top: auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px !important;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.fit-example-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.guide-infographic-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 32px auto 0;
  border-radius: var(--radius);
  border: 1px solid var(--landing-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  background: #ffffff;
}

.guide-bg-img {
  width: 100% !important;
  height: auto !important;
  display: block;
}

.guide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.guide-svg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.guide-label {
  position: absolute;
  background: rgba(255, 255, 255, 0.98) !important;
  border: 2px solid rgba(15, 23, 42, 0.18) !important;
  padding: 10px 14px !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 22px rgba(0,0,0,0.16) !important;
  pointer-events: auto;
  max-width: 240px;
  font-size: 0.85rem !important;
  line-height: 1.35 !important;
  z-index: 2;
  transition: transform 0.2s;
}

.guide-label:hover {
  transform: scale(1.02);
}

.guide-label strong {
  display: block;
  color: #0f172a !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.guide-label span {
  color: var(--landing-text-muted) !important;
  font-size: 0.72rem !important;
  display: block;
}

.guide-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.88rem !important;
  color: var(--landing-text-muted) !important;
  font-style: italic;
}

@media (max-width: 768px) {
  .guide-label {
    padding: 6px 10px !important;
    max-width: 160px !important;
    font-size: 0.75rem !important;
  }
  .guide-label strong {
    font-size: 0.78rem !important;
  }
  .guide-label span {
    font-size: 0.65rem !important;
  }
}

@media (max-width: 480px) {
  .guide-label {
    padding: 4px 8px !important;
    max-width: 110px !important;
    font-size: 0.62rem !important;
  }
  .guide-label strong {
    font-size: 0.65rem !important;
  }
  .guide-label span {
    font-size: 0.55rem !important;
  }
}





/* ===== BBA-inspired polish (cleaner, full-bleed, cohesive) ===== */
.landing-body {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif !important;
  background: #ffffff !important;
}

.landing-header {
  backdrop-filter: saturate(1.2) blur(10px);
  background: rgba(255, 255, 255, 0.92) !important;
}

.landing-nav {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.landing-nav .logo {
  color: #0f766e !important;
  letter-spacing: -0.02em;
}

.landing-nav-links a:hover,
.landing-nav-links .nav-login-link:hover {
  color: #0f766e !important;
}

/* Soft alternating bands only (no rainbow) */
#problem,
#examples,
#testimonials,
#faq { background: #f5f7f8 !important; }

#how,
#guide,
#founder,
#pricing,
#blog,
#contact,
#benefits { background: #ffffff !important; }

#difference { background: #eef7f4 !important; }

.landing-hero {
  min-height: auto !important;
  padding: 56px clamp(16px, 4vw, 40px) 40px !important;
  background: linear-gradient(180deg, #f3fbf8 0%, #ffffff 70%) !important;
  align-items: stretch !important;
}

.landing-hero-split {
  display: grid;
  gap: 36px;
  align-items: center;
  max-width: 1180px !important;
  margin: 0 auto !important;
}
@media (min-width: 960px) {
  .landing-hero-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }
}

.landing-hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.35rem) !important;
  letter-spacing: -0.035em;
  max-width: 16ch;
}

.landing-hero-sub {
  max-width: 38rem;
  font-size: 1.08rem !important;
  line-height: 1.65 !important;
}

.landing-brand {
  color: #0f766e !important;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 8px 0 18px;
}

.landing-hero-secondary {
  color: #0f766e !important;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 4px;
}
.landing-hero-secondary:hover { text-decoration: underline; }

.landing-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.landing-hero-pills span {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #334155 !important;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.8rem;
  font-weight: 700;
}

.landing-hero-media {
  position: relative;
  min-height: 320px;
}
.landing-hero-media .hero-placeholder {
  border-radius: 24px !important;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.06);
  aspect-ratio: 4 / 3;
  background: #0b1220;
}
.landing-hero-media .hero-placeholder .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.landing-hero-media .landing-sample {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  max-width: min(320px, calc(100% - 32px));
  margin: 0;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.landing-stats-strip {
  background: #0f766e !important;
  color: #ffffff !important;
  padding: 28px clamp(16px, 4vw, 40px) !important;
}
.landing-stats-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .landing-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
  }
}
.landing-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.landing-stat strong {
  font-size: clamp(1.6rem, 3vw, 2.1rem) !important;
  color: #ffffff !important;
  letter-spacing: -0.03em;
  font-weight: 800 !important;
}
.landing-stat span,
.landing-stat--live #stats-counter-text {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.9rem !important;
  font-weight: 600;
}
.landing-stat--live {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.landing-benefits-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 800px) {
  .landing-benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
.landing-benefit-card {
  background: #f8fafc !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  border-radius: 20px !important;
  padding: 24px !important;
}
.landing-benefit-card h3 {
  margin: 10px 0 8px;
  font-size: 1.15rem !important;
}
.landing-benefit-card p {
  color: var(--landing-text-muted) !important;
  line-height: 1.55;
  margin: 0;
}
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #ccfbf1;
  font-size: 1.2rem;
}

/* Primary CTAs lean teal (BBA-like), keep coach distinct */
.landing-nav-cta,
.landing-cta--nav,
.landing-cta--hero,
.landing-cta--price {
  background: linear-gradient(135deg, #14b8a6, #0f766e) !important;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22) !important;
  border-radius: 14px !important;
}
.landing-cta--coach {
  background: linear-gradient(135deg, #1e293b, #0f172a) !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2) !important;
  border-radius: 14px !important;
}

.landing-section h2 {
  letter-spacing: -0.03em;
  max-width: 20ch;
}

.fit-example-card,
.landing-price-card,
.testimonial-card,
.landing-diff-card,
.blog-card,
.contact-item,
.contact-map-wrap {
  border-radius: 20px !important;
}

#difference .landing-diff-card:nth-child(1) h3,
#difference .landing-diff-card:nth-child(2) h3,
#difference .landing-diff-card:nth-child(3) h3,
#difference .landing-diff-card:nth-child(4) h3 {
  color: #0f766e !important;
}

.landing-section-band .testimonial-quote {
  border-left-color: #14b8a6 !important;
}

.landing-footer {
  background: #0b1220 !important;
  color: rgba(255,255,255,0.75) !important;
  border-top: none !important;
}
.landing-footer a,
.landing-footer span {
  color: rgba(255,255,255,0.78) !important;
}
.landing-footer a:hover {
  color: #5eead4 !important;
}

/* ===== BikeFit AI Dark Studio Visual System (No BBA Imitation) ===== */
.landing-body {
  font-family: "DM Sans", system-ui, sans-serif !important;
  background: #080c16 !important;
  color: #e2e8f0 !important;
  --bf-ink: #080c16;
  --bf-muted: #94a3b8;
  --bf-cyan: #00f2fe;
  --bf-blue: #0072ff;
  --bf-panel: rgba(15, 23, 42, 0.82);
}

.landing-body h1,
.landing-body h2,
.landing-body h3,
.landing-nav .logo,
.landing-brand {
  font-family: Syne, "DM Sans", sans-serif !important;
  color: #f8fafc !important;
}

/* Bright & Clean Sports Luxury Header */
.landing-header {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #cbd5e1 !important;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

/* Custom Bicycle AI Logo & Typography */
.landing-nav .landing-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f172a !important;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}
.landing-nav .landing-logo:hover {
  transform: scale(1.02);
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 30px;
  color: #0f172a;
}
.bike-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.bike-wheel {
  stroke: #334155;
  transition: stroke 0.3s, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.landing-logo:hover .bike-wheel {
  stroke: #0284c7;
  transform: rotate(360deg);
  transform-origin: center;
}
.ai-node {
  animation: pulse-node 2s infinite alternate;
}
@keyframes pulse-node {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.2); opacity: 1; filter: drop-shadow(0 0 4px #0284c7); }
}
.logo-text {
  font-family: Syne, "DM Sans", sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.35rem !important;
  letter-spacing: -0.02em !important;
  color: #0f172a !important;
}
.ai-badge {
  display: inline-block;
  padding: 2px 8px;
  margin-left: 4px;
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  vertical-align: middle;
  background: linear-gradient(135deg, #059669 0%, #0284c7 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
  letter-spacing: 0;
}

/* Nav Links Styling in Light Theme */
.landing-nav-links a, .nav-login-link {
  color: #334155 !important;
  font-weight: 600 !important;
  transition: color 0.2s ease;
}
.landing-nav-links a:hover, .nav-login-link:hover {
  color: #0284c7 !important;
}
.landing-cta--nav {
  background: linear-gradient(135deg, #059669 0%, #0284c7 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25) !important;
  font-weight: 700 !important;
}

/* Responsive Mobile Navigation Toggle & Dropdown Panel */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  transition: all 0.2s;
  z-index: 10;
}
.nav-toggle:hover {
  background: #f1f5f9;
  border-color: #0284c7;
}
.hamburger-bar {
  width: 20px;
  height: 2px;
  background-color: #0f172a;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-toggle.is-active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: #0284c7;
}
.nav-toggle.is-active .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: #0284c7;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }
  .landing-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.99) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
    border-bottom: 1px solid #cbd5e1;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    z-index: 9999;
  }
  .landing-nav-links.is-open {
    display: flex !important;
    animation: slideDownMenu 0.25s ease-out forwards;
  }
  .landing-nav-links a,
  .landing-nav-links .nav-login-link {
    font-size: 1.08rem !important;
    padding: 10px 4px;
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
    color: #0f172a !important;
  }
}
@keyframes slideDownMenu {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Full-bleed cinematic product hero */
.landing-hero {
  padding: 0 !important;
  min-height: min(88vh, 880px) !important;
  background: #ffffff !important;
  display: block !important;
  position: relative;
}
.landing-hero-stage {
  position: relative;
  min-height: inherit;
  overflow: hidden;
}
.landing-hero-bg,
.landing-hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center !important;
  transform: none;
  filter: brightness(1.02) contrast(1.05);
}
.landing-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 46%, rgba(255, 255, 255, 0.18) 72%, rgba(255, 255, 255, 0.0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.0) 75%, #ffffff 100%);
  pointer-events: none;
}
@media (min-width: 1100px) {
  .landing-hero-bg,
  .landing-hero-bg-video {
    object-position: center center !important;
    filter: brightness(1.04) contrast(1.06);
  }
  .landing-hero-veil {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 40%, rgba(255, 255, 255, 0.08) 65%, rgba(255, 255, 255, 0.0) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.0) 82%, #ffffff 100%);
  }
}
.landing-hero-composition {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(72px, 12vh, 120px) clamp(16px, 4vw, 40px) 64px;
  display: grid;
  gap: 22px;
  align-content: end;
}
.landing-brand {
  color: #0284c7 !important;
  font-size: clamp(1.4rem, 3vw, 2rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  text-transform: none !important;
  margin: 0 !important;
  text-shadow: none !important;
}
.landing-hero-composition h1 {
  color: #0f172a !important;
  max-width: 14ch !important;
  font-size: clamp(2.4rem, 6vw, 4.4rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.045em !important;
  margin: 0 !important;
  text-shadow: none !important;
}
.landing-hero-sub {
  color: #334155 !important;
  max-width: 36rem !important;
  margin: 0 !important;
  text-shadow: none !important;
  font-weight: 600 !important;
}
}
.landing-hero-actions {
  margin: 8px 0 0 !important;
}
.landing-hero-secondary {
  color: #ffffff !important;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  border-radius: 0 !important;
  padding: 8px 0 !important;
}
.landing-hero-secondary:hover {
  color: var(--bf-cyan) !important;
  border-color: var(--bf-cyan);
  text-decoration: none !important;
}
.landing-sample {
  margin-top: 12px;
  max-width: 360px;
  background: var(--bf-panel) !important;
  border: 1px solid rgba(0, 242, 254, 0.25) !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  color: #fff !important;
}
.landing-sample-row span,
.landing-sample-meta,
.sample-cycles {
  color: rgba(226, 232, 240, 0.78) !important;
  -webkit-text-fill-color: rgba(226, 232, 240, 0.78) !important;
}
.landing-sample-row strong,
.landing-sample .score-value {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}

/* Stats: Rich slate blue bridging header to light sections */
.landing-stats-strip {
  background: #1e293b !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px clamp(16px, 4vw, 40px) !important;
  color: #f8fafc !important;
}

/* ========================================================
   ALTERNATING LIGHT & VIBRANT MODERN SECTION COLOR SYSTEM
   ======================================================== */

/* 1. Problem section: Cool Glacier Ice */
#problem {
  background: #f8fafc !important;
  color: #334155 !important;
}
#problem h2, #problem h3, #problem h4, #problem strong { color: #0f172a !important; }

/* 2. Method section: Pure Luminous White */
#method {
  background: #ffffff !important;
  color: #334155 !important;
}
#method h2, #method h3, #method h4 { color: #0f172a !important; }
.landing-method-grid .landing-benefit-card {
  background: #f0f7ff !important;
  border: 1px solid #dbeafe !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.06) !important;
  color: #334155 !important;
}
.landing-benefit-card h3 { color: #0f172a !important; }
.landing-benefit-card p { color: #475569 !important; }
.benefit-kicker {
  font-family: Syne, sans-serif;
  font-weight: 800;
  color: #0284c7 !important;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.benefit-icon { display: none !important; }

/* 3. Examples section: Soft Ocean Sky Tint */
#examples {
  background: #f0f9ff !important;
  color: #334155 !important;
}
#examples h2 { color: #0369a1 !important; }
#examples .landing-lead { color: #475569 !important; }
.fit-examples-grid { align-items: stretch !important; }
.fit-example-card {
  background: #ffffff !important;
  border: 1px solid #e0f2fe !important;
  box-shadow: 0 12px 30px rgba(3, 105, 161, 0.08) !important;
  color: #334155 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  border-radius: 20px !important;
}
.fit-example-card h3 { color: #0f172a !important; font-weight: 800 !important; }
.fit-example-card .fit-example-desc { color: #475569 !important; }
.fit-example-media {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  aspect-ratio: 16 / 10 !important;
  width: 100% !important;
  margin-top: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}
.fit-example-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* 4. Guide & How sections: Crisp Silver Slate & White */
#guide {
  background: #f8fafc !important;
  color: #334155 !important;
}
#guide h2, #guide h3 { color: #0f172a !important; }
#how {
  background: #ffffff !important;
  color: #334155 !important;
}
#how h2, #how h3 { color: #0f172a !important; }

/* Hero video & poster coverage */
.landing-hero-bg,
.landing-hero-bg-video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

/* 5. Difference section: Clean Mint & Glacier White (Bright, Authentic Professional Tone) */
#difference {
  background: #f1f5f9 !important;
  color: #334155 !important;
  border-top: 1px solid #e2e8f0 !important;
  border-bottom: 1px solid #e2e8f0 !important;
}
#difference h2 { color: #0f172a !important; }
#difference .landing-diff-card {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05) !important;
  color: #334155 !important;
}
#difference .landing-diff-card:nth-child(1) h3 { color: #0284c7 !important; }
#difference .landing-diff-card:nth-child(2) h3 { color: #059669 !important; }
#difference .landing-diff-card:nth-child(3) h3 { color: #0d9488 !important; }
#difference .landing-diff-card:nth-child(4) h3 { color: #4f46e5 !important; }
#difference .landing-diff-card h3 { 
  font-weight: 800 !important;
  margin-bottom: 10px !important;
}
#difference .landing-diff-card p,
#difference .landing-diff-card a,
#difference .landing-diff-card span,
.landing-section-band .landing-diff-card p,
.landing-section-band .landing-diff-card a {
  color: #334155 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #334155 !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}

/* 6. Pricing, Founder, Testimonials, FAQ, Blog, Contact: Fresh Light Colors */
#pricing {
  background: #f0f9ff !important;
  color: #334155 !important;
}
#pricing h2 { color: #0f172a !important; }
.landing-price-card {
  background: #ffffff !important;
  border: 1px solid #bae6fd !important;
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.1) !important;
  color: #334155 !important;
}
.landing-price-card h3, .landing-price-card .price-val { color: #0f172a !important; }

#testimonials {
  background: #ffffff !important;
  color: #334155 !important;
}
#testimonials h2 { color: #0f172a !important; }
.testimonial-card {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: #334155 !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03) !important;
}
.testimonial-author { color: #0f172a !important; font-weight: 700 !important; }
.landing-section-band .testimonial-quote { border-left-color: #0284c7 !important; color: #1e293b !important; }

#founder { background: #f8fafc !important; color: #334155 !important; }
#founder h2, #founder h3 { color: #0f172a !important; }

#faq { background: #eff6ff !important; color: #334155 !important; }
#faq h2, #faq h3 { color: #1e293b !important; }
.faq-item { background: #ffffff !important; border-bottom: 1px solid #dbeafe !important; color: #334155 !important; }
.faq-question { color: #0f172a !important; }

#blog, #contact { background: #ffffff !important; color: #334155 !important; }
#blog h2, #contact h2, #blog h3, #contact h3 { color: #0f172a !important; }
.blog-card, .contact-item { background: #f8fafc !important; border: 1px solid #e2e8f0 !important; color: #334155 !important; }
.blog-card h3 { color: #0f172a !important; }

/* Hyper-Cyan & Electric Blue Primary CTAs */
.landing-nav-cta,
.landing-cta--nav,
.landing-cta--hero,
.landing-cta--price {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%) !important;
  box-shadow: 0 10px 28px rgba(0, 114, 255, 0.35) !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25) !important;
}
.landing-nav-cta:hover,
.landing-cta--nav:hover,
.landing-cta--hero:hover,
.landing-cta--price:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 114, 255, 0.5) !important;
}
.landing-cta--coach {
  background: #0f172a !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25) !important;
  border-radius: 12px !important;
}

/* Footer: Solid Dark Framing at Bottom */
.landing-footer {
  background: #060912 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
