/*
 * Kojable Premium Design System
 * Overrides and refines the base design toward Stripe / Linear / Vercel quality
 * Load order: styles.css → hero-recognition-styles.css → premium.css
 */

/* ─────────────────────────────────────────────
   DESIGN TOKENS — Single source of truth
   ───────────────────────────────────────────── */
:root {
  /* Ink palette — authority without decoration */
  --ink-900: #0F172A;
  --ink-700: #334155;
  --ink-500: #64748B;
  --ink-300: #94A3B8;
  --ink-100: #F1F5F9;

  /* Signal — canonical Kojable brand green */
  --green-50:  #ecfff7;
  --green-100: #d4ffed;
  --green-200: #a8f7d8;
  --green-400: #36e8a4;
  --green-500: #12eb93;
  --green-600: #0fc97e;
  --green-700: #0b8f5e;
  --signal:       var(--green-500);
  --signal-hover: var(--green-600);
  --signal-muted: rgba(18, 235, 147, 0.08);
  --signal-ring:  rgba(18, 235, 147, 0.25);

  /* Confirmation — success / check states only */
  --confirm:      var(--green-700);
  --confirm-muted: var(--signal-muted);

  /* Surfaces */
  --surface-0: #FFFFFF;
  --surface-1: #F8FAFC;
  --surface-2: #F1F5F9;
  --surface-dark: #0F172A;

  /* Borders */
  --edge:        #E2E8F0;
  --edge-strong: #CBD5E1;

  /* Shadows — measured, not decorative */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.05), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.06), 0 4px 6px rgba(15, 23, 42, 0.04);
  --shadow-hover: 0 20px 25px rgba(15, 23, 42, 0.08), 0 8px 10px rgba(15, 23, 42, 0.04);

  /* Typography — confident scale */
  --text-hero:    clamp(2.625rem, 5.5vw + 0.5rem, 4rem);
  --text-h2:      clamp(1.875rem, 3.5vw + 0.25rem, 2.5rem);
  --text-h3:      clamp(1.25rem, 1.5vw + 0.25rem, 1.5rem);
  --text-body-lg: 1.125rem;
  --text-body:    1rem;
  --text-sm:      0.875rem;
  --text-xs:      0.75rem;

  /* Spacing scale */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --section-y: clamp(4.5rem, 8vw, 7rem);

  /* Radius */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-pill: 999px;

  /* Override base tokens to cascade correctly */
  --primary-color:        var(--ink-900);
  --primary-light:        var(--ink-700);
  --text-primary:         var(--ink-900);
  --text-secondary:       var(--ink-500);
  --secondary-color:      #62AFFF;
  --secondary-light:      #8CC4FF;
  --secondary-dark:       #4A9AEB;
  --accent-primary:       var(--signal);
  --accent-secondary:     var(--secondary-color);
  --background-accent:    var(--signal);
  --color-action-primary-bg: var(--green-500);
  --color-action-primary-bg-hover: var(--green-600);
  --color-action-primary-text: var(--ink-900);
  --background-primary:   var(--surface-0);
  --background-secondary: var(--surface-1);
  --background-tertiary:  var(--surface-2);
  --border-light:         var(--edge);
  --border-medium:        var(--edge-strong);
  --font-size-h1:         var(--text-hero);
  --font-size-h2:         var(--text-h2);
  --font-size-h3:         var(--text-h3);
}

/* ─────────────────────────────────────────────
   GLOBAL RESETS — Eliminate noise
   ───────────────────────────────────────────── */

/* Kill ALL looping background animations on sections */
.hero-section::before,
.hero-section::after,
.hero-cta-group::before,
.hero-visual::before,
.problem-section::before,
.solution-section::before,
.how-it-works-section::before,
.why-choose-us-section::before,
.why-choose-us-section::after,
.comparison-section::before,
.comparison-section::after,
.stakes-section::before {
  animation: none;
  display: none;
}

/* Kill looping animations on interactive elements */
.hero-app-mockup,
.hero-icons,
.roadmap-circle::before,
.visibility-accuracy-animation,
.visibility-accuracy-animation::before,
.visibility-accuracy-animation::after,
.hero-award-logo,
.icon-circle::before,
.progress-fill::after {
  animation: none;
}

/* Stop glow pulse on primary buttons */
.hero-cta-group .btn-primary {
  animation: none;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
   ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.015em;
  color: var(--ink-900);
}

.hero-title {
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--accent-primary);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--accent-primary);
  background-clip: unset;
  text-shadow: none;
  margin-bottom: 1.25rem;
}

/* Remove the decorative accent line under hero title */
.hero-title::after {
  display: none;
}

.hero-subtitle {
  font-size: clamp(1.0625rem, 1.75vw + 0.25rem, 1.25rem);
  color: var(--ink-500);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 0;
  text-shadow: none;
}

.section-title {
  font-size: var(--text-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: 0.75rem;
}

/* Remove gradient text from section titles */
.solution-section .section-title,
.stakes-title {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--ink-900);
  background-clip: unset;
  color: var(--ink-900);
}

.section-subtitle {
  font-size: var(--text-body-lg);
  color: var(--ink-500);
  line-height: 1.65;
  font-weight: 400;
}

/* ─────────────────────────────────────────────
   NAVIGATION — Full-featured, clean
   ───────────────────────────────────────────── */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--edge);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10001;
  box-shadow: var(--shadow-xs);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--edge);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
}

.site-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.site-title a {
  color: var(--ink-900);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.site-title a:hover {
  color: var(--ink-900);
  opacity: 0.72;
  transform: none;
  text-decoration: none;
}

.site-title a::after {
  display: none;
}

/* Primary nav links */
.nav-primary-links {
  display: none;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.nav-primary-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-700);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-primary-links a:hover {
  background: var(--surface-1);
  color: var(--ink-900);
  transform: none;
  text-decoration: none;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

/* CTA group in nav */
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-cta-btn {
  white-space: nowrap;
  font-size: var(--text-sm) !important;
  padding: 0.5rem 1rem !important;
  min-width: auto !important;
  min-height: 36px !important;
}

@media (max-width: 899px) {
  .main-navigation {
    gap: var(--space-3);
  }

  .main-navigation > .nav-cta-group {
    display: none !important;
  }
}

/* ─────────────────────────────────────────────
   BUTTONS — Two clean variants
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1;
  border-radius: var(--r-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, color 0.15s ease;
  user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

/* Primary — Kojable green */
.btn-primary {
  background: linear-gradient(135deg, var(--color-action-primary-bg), var(--color-action-primary-bg-hover));
  color: var(--color-action-primary-text);
  border: none;
  box-shadow: 0 1px 3px rgba(18, 235, 147, 0.3), 0 0 0 0 transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-400), var(--color-action-primary-bg-hover));
  color: var(--color-action-primary-text);
  box-shadow: 0 4px 12px rgba(18, 235, 147, 0.35);
}

.btn-primary:active {
  background: var(--color-action-primary-bg-hover);
  box-shadow: none;
}

/* Secondary - Kojable blue */
.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: var(--text-inverse);
  border: 1.5px solid var(--secondary-color);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
  color: var(--text-inverse);
  border-color: var(--secondary-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:active {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.btn.btn-secondary:focus-visible {
  outline: 3px solid var(--secondary-dark);
  outline-offset: 2px;
}

/* Ghost — text only */
.btn-ghost {
  background: transparent;
  color: var(--ink-700);
  border: none;
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--surface-1);
  color: var(--ink-900);
  box-shadow: none;
}

/* Sizing */
.btn {
  padding: 0.6875rem 1.375rem;
  min-height: 44px;
}

.btn-sm {
  padding: 0.4375rem 0.875rem;
  font-size: var(--text-xs);
  min-height: 34px;
  border-radius: var(--r-sm);
}

.btn-lg {
  padding: 0.9375rem 2rem;
  font-size: 1rem;
  min-height: 52px;
  border-radius: var(--r-md);
}

/* Remove all the ripple/interactive extra layers */
.btn-interactive::before,
.btn-ripple::before {
  display: none;
}

/* Ensure primary button always uses brand green */
.btn-primary {
  background: linear-gradient(135deg, var(--color-action-primary-bg), var(--color-action-primary-bg-hover)) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-400), var(--color-action-primary-bg-hover)) !important;
}

/* ─────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────── */
.hero-section {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3.5rem, 6vw, 5rem);
  background: var(--surface-0);
  overflow: visible;
}

.hero-container.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 860px) {
  .hero-container.hero-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.hero-content {
  text-align: left;
  max-width: 560px;
}

@media (max-width: 860px) {
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
}

.hero-cta-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .hero-cta-group {
    justify-content: center;
  }
}

.hero-cta-group .btn-primary {
  font-size: 0.9375rem;
  padding: 0.8125rem 1.75rem;
  min-height: 48px;
}

.hero-cta-group .btn-secondary {
  font-size: 0.9375rem;
  padding: 0.8125rem 1.75rem;
  min-height: 48px;
}

/* Hero meta text below CTAs */
.hero-meta {
  margin-top: 1rem;
  max-width: 100%;
  font-size: var(--text-sm);
  color: var(--ink-300);
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 860px) {
  .hero-meta {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group .btn {
    width: 100%;
    white-space: normal;
  }

  .hero-meta {
    max-width: 18rem;
  }
}

/* Hero visual — the before/after card */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Override old dashboard card */
.hero-dashboard-card {
  background: var(--surface-0) !important;
  border-radius: var(--r-xl) !important;
  border: 1px solid var(--edge) !important;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--edge) !important;
  padding: 0 !important;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/* New before/after comparison card */
.comparison-card {
  background: var(--surface-0);
  border-radius: var(--r-xl);
  border: 1px solid var(--edge);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 440px;
  width: 100%;
}

.comparison-card-header {
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid var(--edge);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-1);
}

.comparison-card-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ai-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ai-status-dot.before { background: #F97316; }
.ai-status-dot.after  { background: var(--confirm); }

.comparison-pane {
  padding: 1.25rem 1.5rem;
}

.comparison-pane + .comparison-pane {
  border-top: 1px solid var(--edge);
}

.pane-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.pane-label.before { color: #EA580C; }
.pane-label.after  { color: var(--confirm); }

.pane-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pane-label.before .pane-label-dot { background: #F97316; }
.pane-label.after  .pane-label-dot { background: var(--confirm); }

.pane-platform {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}

.pane-platform-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-fit: contain;
}

.pane-platform-name {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--ink-700);
}

.pane-text {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--ink-500);
  font-style: italic;
  background: var(--surface-1);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--edge);
}

.pane-text.before {
  border-left-color: #FDBA74;
  color: var(--ink-700);
}

.pane-text.after {
  border-left-color: #6EE7B7;
  color: var(--ink-700);
}

.pane-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-pill);
  margin-top: 0.625rem;
}

.pane-badge.before {
  background: rgba(249, 115, 22, 0.08);
  color: #C2410C;
}

.pane-badge.after {
  background: rgba(5, 150, 105, 0.08);
  color: #047857;
}

.comparison-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--edge);
  background: var(--surface-1);
}

.platform-coverage {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.platform-coverage-label {
  font-size: var(--text-xs);
  color: var(--ink-400);
  font-weight: 500;
  white-space: nowrap;
}

.platform-coverage-logos {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.platform-logo-sm {
  height: 16px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.15s ease;
  filter: grayscale(1);
}

.platform-logo-sm:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ─────────────────────────────────────────────
   LOGO SLIDERS — Greyscale, professional
   ───────────────────────────────────────────── */
.logo-slider-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  background: var(--surface-0);
}

.logo-slider-section .section-title {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-300);
  text-align: center;
  margin-bottom: 1.5rem;
}

.logo-image {
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.logo-image:hover {
  filter: grayscale(0);
  opacity: 0.85;
}

/* Supporting Partners section — same treatment */
.supporting-partners-section {
  background: var(--surface-1);
  border-color: var(--edge);
}

/* ─────────────────────────────────────────────
   TRUSTED BY — Original-color logo marquee
   ───────────────────────────────────────────── */
.trusted-by-section {
  padding: var(--section-y) 0;
  overflow: hidden;
  background: var(--surface-0);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}

.trusted-by-container {
  display: grid;
  gap: var(--space-8);
}

.trusted-by-header {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.trusted-by-title {
  margin: 0;
  font-family: var(--font-family-heading);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink-900);
}

.trusted-slider {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}

.trusted-slider-track {
  display: flex;
  width: max-content;
  animation: trustedLogoMarquee 26s linear infinite;
  will-change: transform;
}

.trusted-slider:hover .trusted-slider-track,
.trusted-slider:focus-within .trusted-slider-track {
  animation-play-state: paused;
}

.trusted-slider-group {
  display: flex;
  flex: 0 0 auto;
  gap: var(--space-5);
  padding-right: var(--space-5);
}

.trusted-logo-card {
  display: flex;
  min-width: 0;
  width: clamp(9.5rem, 17vw, 13rem);
  min-height: 112px;
  align-items: center;
  justify-content: center;
  padding: var(--space-5) var(--space-6);
  background: var(--surface-0);
  border: 1px solid var(--edge);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.trusted-logo-card--link:hover {
  transform: translateY(-2px);
  border-color: var(--edge-strong);
  box-shadow: var(--shadow-lg);
}

.trusted-logo-card:focus-visible {
  outline: 3px solid var(--signal-ring);
  outline-offset: 3px;
  border-color: var(--signal);
}

.trusted-logo-card--pending-link {
  cursor: default;
}

.trusted-logo {
  width: 100%;
  max-width: 172px;
  height: 58px;
  max-height: 58px;
  object-fit: contain;
  opacity: 1;
  filter: none;
}

.trusted-by-meta,
.trusted-by-empty {
  color: var(--ink-500);
  font-size: var(--text-sm);
}

.trusted-by-empty {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
}

@keyframes trustedLogoMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 700px) {
  .trusted-slider {
    mask-image: linear-gradient(
      to right,
      transparent,
      black 5%,
      black 95%,
      transparent
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      black 5%,
      black 95%,
      transparent
    );
  }

  .trusted-slider-group {
    gap: var(--space-4);
    padding-right: var(--space-4);
  }

  .trusted-logo-card {
    width: 9.25rem;
    min-height: 96px;
    padding: var(--space-4);
  }

  .trusted-logo {
    max-width: 128px;
    height: 48px;
    max-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-slider {
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .trusted-slider-track {
    display: block;
    width: 100%;
    animation: none;
  }

  .trusted-slider-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
    gap: var(--space-4);
    padding-right: 0;
  }

  .trusted-slider-group[aria-hidden="true"] {
    display: none;
  }

  .trusted-logo-card {
    width: auto;
    min-height: 104px;
  }
}

/* ─────────────────────────────────────────────
   CONTENT SECTIONS
   ───────────────────────────────────────────── */
.content-section {
  padding: var(--section-y) 0;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Alternate section backgrounds */
.hero-section,
.problem-section,
.solution-section,
.stakes-section,
.pricing-section {
  background: var(--surface-0);
}

.logo-slider-section,
.how-it-works-section,
.why-choose-us-section,
.comparison-section,
.faq-section,
.supporting-partners-section {
  background: var(--surface-1);
}

/* Clean section borders */
.how-it-works-section,
.why-choose-us-section,
.faq-section {
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}

/* ─────────────────────────────────────────────
   PROBLEM SECTION
   ───────────────────────────────────────────── */
.problem-section {
  padding: var(--section-y) 0;
}

.problem-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.problem-description {
  font-size: var(--text-body-lg);
  color: var(--ink-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.problem-highlight {
  font-size: clamp(1.0625rem, 2vw + 0.25rem, 1.25rem);
  font-weight: 600;
  color: var(--ink-900);
  background: var(--surface-1);
  border-left: 3px solid var(--ink-900);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1rem 1.25rem;
  text-align: left;
  margin: 1.75rem 0;
  animation: none;
}

.problem-highlight::before {
  display: none;
}

.problem-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   SOLUTION SECTION
   ───────────────────────────────────────────── */
.solution-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.solution-description {
  font-size: var(--text-body-lg);
  color: var(--ink-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

/* ─────────────────────────────────────────────
   HOW IT WORKS — Steps grid
   ───────────────────────────────────────────── */
.how-it-works-section {
  padding: var(--section-y) 0;
}

/* Hide the circle roadmap — redundant with the steps grid */
.roadmap-container {
  display: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  margin-bottom: 0;
}

@media (max-width: 680px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: var(--surface-0);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--edge-strong);
  background: var(--surface-0);
}

/* Remove the dramatic gradient-on-hover */
.step-card:hover * {
  color: unset !important;
}

.step-card:hover .step-title {
  color: var(--ink-900) !important;
}

.step-card:hover .step-description {
  color: var(--ink-500) !important;
}

.step-card:hover .step-number {
  background: var(--signal) !important;
  color: #fff !important;
  transform: none;
}

.step-card::before {
  display: none;
}

.step-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: var(--signal-muted);
  color: var(--signal);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  margin-bottom: 0;
  font-family: var(--font-family-heading);
  transition: background 0.15s ease, color 0.15s ease;
}

.step-content-wrapper {
  flex: 1;
  min-width: 0;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.step-description {
  font-size: var(--text-sm);
  color: var(--ink-500);
  line-height: 1.6;
  margin-bottom: 0;
}

/* CTA below steps */
.steps-grid > .problem-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ─────────────────────────────────────────────
   COMPARISON TABLE
   ───────────────────────────────────────────── */
.comparison-section {
  padding: var(--section-y) 0;
}

.comparison-wrapper {
  background: var(--surface-0);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: auto;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.comparison-wrapper:hover {
  box-shadow: var(--shadow-md);
}

.comparison-table {
  font-size: 0.875rem;
  min-width: 640px;
}

.comparison-table th,
.comparison-table td {
  padding: 0.875rem 1rem;
  white-space: nowrap;
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  padding-left: 1.5rem;
  min-width: 240px;
}

.comparison-table thead th {
  background: var(--surface-1);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-500);
  border-bottom: 1px solid var(--edge);
  position: sticky;
  top: 0;
}

.comparison-table thead th.highlight-col {
  background: rgba(18, 235, 147, 0.06);
  color: var(--signal);
  border-left: 1px solid rgba(18, 235, 147, 0.2);
  border-right: 1px solid rgba(18, 235, 147, 0.2);
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--edge);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--surface-1);
}

.comparison-table tbody td.highlight-col {
  background: rgba(18, 235, 147, 0.04);
  font-weight: 600;
  color: var(--signal);
  border-left: 1px solid rgba(18, 235, 147, 0.15);
  border-right: 1px solid rgba(18, 235, 147, 0.15);
}

.comparison-table tbody tr:nth-child(even) {
  background: transparent;
}

.comparison-table tbody tr:nth-child(even) td.highlight-col {
  background: rgba(18, 235, 147, 0.05);
}

.comparison-intro {
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  text-align: center;
}

/* ─────────────────────────────────────────────
   CARDS — Why brand leaders section
   ───────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (min-width: 960px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.card {
  background: var(--surface-0);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.card::before {
  display: none;
}

.card::after {
  display: none;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--edge-strong);
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.card-body {
  font-size: var(--text-sm);
  color: var(--ink-500);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────
   STAKES SECTION
   ───────────────────────────────────────────── */
.stakes-section {
  padding: var(--section-y) 0;
  background: var(--surface-dark);
}

.stakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

@media (max-width: 760px) {
  .stakes-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.stakes-left,
.stakes-right {
  padding: 0;
}

.stakes-title {
  font-size: clamp(1.875rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

.stakes-title::after {
  display: none;
}

.stakes-description {
  font-size: var(--text-body-lg);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.stakes-description:last-of-type {
  margin-bottom: 0;
}

.stakes-choice {
  display: none; /* replaced by stakes-description blocks */
}

.stakes-content .problem-cta {
  justify-content: flex-start;
  margin-top: 2rem;
}

.stakes-section .btn-primary {
  background: linear-gradient(135deg, var(--color-action-primary-bg), var(--color-action-primary-bg-hover)) !important;
  color: var(--color-action-primary-text) !important;
  border: none;
}

.stakes-section .btn-primary:hover {
  background: linear-gradient(135deg, var(--green-400), var(--color-action-primary-bg-hover)) !important;
  color: var(--color-action-primary-text) !important;
}

/* Transparent outline button for use on dark backgrounds */
.btn-outline-dark {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: none !important;
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  box-shadow: none !important;
}

/* ─────────────────────────────────────────────
   PRICING SECTION
   ───────────────────────────────────────────── */
.pricing-section {
  padding: var(--section-y) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 860px;
  margin: 3rem auto 0;
}

@media (max-width: 680px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: var(--surface-0);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pricing-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* Featured pricing card */
.pricing-card.featured {
  border-color: var(--signal);
  background: linear-gradient(180deg, rgba(37,99,235,0.02) 0%, var(--surface-0) 100%);
}

.pricing-card-header {
  margin-bottom: 1.25rem;
}

.pricing-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 0.375rem;
}

.pricing-card-price .price-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.pricing-card-body {
  flex: 1;
}

.pricing-card-body p {
  font-size: var(--text-sm);
  color: var(--ink-500);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.pricing-features-simple {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pricing-features-simple li {
  font-size: var(--text-sm);
  color: var(--ink-700);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--edge);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features-simple li:last-child {
  border-bottom: none;
}

.pricing-features-simple li::before {
  content: none;
}

/* Style the ✓ check marks */
.pricing-features-simple li:first-child::before,
.pricing-features-simple li:nth-child(2)::before,
.pricing-features-simple li:nth-child(3)::before {
  content: none;
}

.pricing-card-footer {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.pricing-card-footer .btn {
  width: 100% !important;
  max-width: none !important;
  display: flex !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  min-width: 0 !important;
}

/* Urgency chip */
.card-accent {
  border-radius: var(--r-md);
  background: var(--surface-1) !important;
  border: 1px solid var(--edge) !important;
  border-left: 3px solid var(--signal) !important;
  padding: 0.875rem 1.125rem !important;
}

.card-accent p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--ink-500);
}

/* "Agencies add layers" card */
.card.card-accent[style*="border-left: 4px solid"] {
  border-radius: var(--r-lg);
  background: var(--surface-1) !important;
  border-left: 3px solid var(--signal) !important;
}

/* ─────────────────────────────────────────────
   FAQ SECTION — Clean accordion, no cards
   ───────────────────────────────────────────── */
.faq-section {
  padding: var(--section-y) 0;
}

.faq-accordion-container {
  max-width: 760px;
  margin: 2.5rem auto 0;
}

/* Each item is a flat row — no card, no border-box */
.faq-accordion-item {
  background: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  border-bottom: 1px solid var(--edge) !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.faq-accordion-item:first-child {
  border-top: 1px solid var(--edge) !important;
}

/* No hover card-lift effect */
.faq-accordion-item:hover {
  box-shadow: none !important;
  border-color: var(--edge) !important;
}

/* Active item — still no box, just slightly different row bg */
.faq-accordion-item.active {
  border-color: var(--edge) !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Button */
.faq-accordion-btn {
  width: 100%;
  padding: 1.25rem 0;
  background: transparent !important;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  text-align: left;
  transition: none;
}

.faq-accordion-btn:hover {
  background: transparent !important;
}

/* Question text */
.faq-question {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.5;
  font-family: var(--font-family-heading);
}

/* Icon — simple arrow, no circle, no filled background */
.faq-icon {
  font-size: 1rem;
  color: var(--ink-400);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
  font-style: normal;

  /* Reset the filled-circle from base CSS */
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  background: transparent !important;
  display: inline !important;
  padding: 0 !important;
}

.faq-accordion-item.active .faq-icon {
  transform: rotate(180deg);
  /* Override the filled-blue-circle from base CSS */
  background: transparent !important;
  color: var(--ink-500) !important;
}

/* Answer content */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 !important;
}

.faq-accordion-item.active .faq-content {
  max-height: 500px;
  padding: 0 !important;
}

/* Answer text — no left border, clean body copy */
.faq-answer {
  font-size: var(--text-sm);
  color: var(--ink-500);
  line-height: 1.7;
  padding: 0 0 1.375rem !important;
  margin: 0;
  border-left: none !important;
  animation: none !important;
}

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.site-footer {
  background: var(--surface-1);
  border-top: 1px solid var(--edge);
  padding: 3.5rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
}

.footer-logo a {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-900);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.footer-logo a:hover {
  color: var(--ink-900);
  opacity: 0.72;
}

.footer-description {
  font-size: var(--text-sm);
  color: var(--ink-500);
  line-height: 1.6;
  margin-top: 0.625rem;
  margin-bottom: 1.25rem;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  border: 1px solid var(--edge);
  color: var(--ink-500);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.social-link:hover {
  background: var(--surface-0);
  border-color: var(--edge-strong);
  color: var(--ink-900);
  transform: none;
}

.footer-title {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--ink-500);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--ink-900);
  text-decoration: none;
  transform: none;
}

.footer-main {
  margin-bottom: 0;
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--edge);
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--ink-300);
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  font-size: var(--text-xs);
  color: var(--ink-300);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-legal a:hover {
  color: var(--ink-700);
}

/* ─────────────────────────────────────────────
   ANIMATIONS — Subtle entrance only
   ───────────────────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .fade-in-up,
  .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─────────────────────────────────────────────
   HOVER UTILITIES — Toned down
   ───────────────────────────────────────────── */
.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ─────────────────────────────────────────────
   INLINE STYLE OVERRIDES
   (Covers all inline styles in index.html)
   ───────────────────────────────────────────── */

/* Hero description inline margin */
.hero-description {
  margin-bottom: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-500);
}

/* Platform label in hero card */
.platform-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-300);
  text-align: left;
  margin-bottom: 0.875rem;
}

/* Section subtitle override */
.section-subtitle {
  max-width: 680px;
  margin: 0 auto 3rem;
}

/* Problem section title */
.problem-section .section-title {
  font-size: var(--text-h2);
}

/* Why choose us grid override (force 2 cols on small/medium) */
@media (max-width: 959px) and (min-width: 681px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Pricing "why founder-led" card */
.pricing-section > .content-container > .card {
  max-width: 700px;
  margin: 3rem auto 0;
  background: var(--surface-1);
  border: 1px solid var(--edge);
  border-left: 3px solid var(--signal);
  box-shadow: none;
  padding: 1.75rem 2rem;
}

.pricing-section > .content-container > .card:hover {
  transform: none;
  box-shadow: none;
}

.pricing-section > .content-container > .card .card-header .card-title {
  font-size: 1rem;
  color: var(--ink-900);
  margin-bottom: 0;
}

.pricing-section > .content-container > .card .card-body p {
  color: var(--ink-500);
  line-height: 1.7;
  margin: 0;
  font-size: var(--text-sm);
}

/* ─────────────────────────────────────────────
   NAV TOGGLE BUTTON — Mobile
   ───────────────────────────────────────────── */

/* Hide mobile nav menu entirely on desktop */
@media (min-width: 900px) {
  .nav-menu {
    display: none !important;
  }
  .nav-toggle {
    display: none !important;
  }
}

.nav-toggle {
  display: none;
}

@media (max-width: 899px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--edge);
    border-radius: var(--r-sm);
    cursor: pointer;
    gap: 4px;
    padding: 0;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink-700);
    border-radius: 2px;
    transition: all 0.2s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: none;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

/* Mobile nav menu */
@media (max-width: 899px) {
  .nav-primary-links {
    display: none !important;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--edge);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 9999;
    bottom: auto;
  }

  .nav-menu::before {
    display: none;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu li {
    opacity: 1;
    transform: none;
    max-width: 100%;
    text-align: left;
  }

  .nav-menu .nav-cta-group {
    flex-direction: column;
    padding-top: 0.75rem;
    border-top: 1px solid var(--edge);
    margin-top: 0.5rem;
    gap: 0.5rem;
  }

  .nav-menu .btn {
    width: 100%;
    justify-content: center;
  }

  /* Mobile nav links */
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
    gap: 0.125rem;
  }

  .mobile-nav-links a {
    display: block;
    padding: 0.625rem 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink-700);
    text-decoration: none;
    border-radius: var(--r-sm);
    transition: background 0.15s ease, color 0.15s ease;
  }

  .mobile-nav-links a:hover {
    background: var(--surface-1);
    color: var(--ink-900);
    transform: none;
  }
}

/* ─────────────────────────────────────────────
   ABOUT PAGE
   ───────────────────────────────────────────── */

/* Page header */
.about-page-header {
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--surface-0);
  border-bottom: 1px solid var(--edge);
}

.about-header-inner {
  max-width: 760px;
}

.about-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--signal);
  margin-bottom: 1.25rem;
}

.about-heading {
  font-size: clamp(1.875rem, 4vw + 0.5rem, 2.875rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink-900);
  margin: 0;
}

/* Section label (small caps heading) */
.about-section-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-300);
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Founder section */
.about-founder-section {
  background: var(--surface-0);
}

.about-founder-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .about-founder-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-founder-photo-wrapper {
  position: relative;
}

.about-founder-photo {
  width: 100%;
  max-width: 220px;
  border-radius: var(--r-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 720px) {
  .about-founder-photo {
    max-width: 160px;
  }
}

.about-founder-meta {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-founder-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  font-family: var(--font-family-heading);
}

.about-founder-role {
  font-size: var(--text-sm);
  color: var(--ink-500);
}

.about-founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.625rem;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--signal);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.about-founder-linkedin:hover {
  opacity: 0.75;
  text-decoration: none;
  transform: none;
}

.about-founder-bio-col {
  padding-top: 0.25rem;
}

.about-bio-text {
  font-size: var(--text-body-lg);
  color: var(--ink-500);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-bio-text:last-of-type {
  margin-bottom: 0;
}

.about-founder-quote {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--surface-1);
  border-radius: var(--r-lg);
  border-left: 3px solid var(--signal);
}

.about-founder-quote blockquote {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.65;
  margin: 0 0 0.75rem;
  font-style: normal;
}

.about-founder-quote cite {
  font-size: var(--text-sm);
  color: var(--ink-400);
  font-style: normal;
}

/* Beliefs section */
.about-beliefs-section {
  background: var(--surface-1);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}

/* Recognition logos */
.about-recognition-section {
  background: var(--surface-0);
  border-bottom: 1px solid var(--edge);
}

.about-recognition-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-recognition-logo {
  height: 36px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.45;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.about-recognition-logo:hover {
  filter: grayscale(0);
  opacity: 0.85;
}

@media (max-width: 560px) {
  .about-recognition-logos {
    gap: 2rem;
  }
  .about-recognition-logo {
    height: 28px;
  }
}

/* ─────────────────────────────────────────────
   SKIP LINK
   ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--ink-900);
  color: #fff;
  padding: 8px 12px;
  text-decoration: none;
  z-index: 99999;
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  font-weight: 500;
}

.skip-link:focus {
  top: 6px;
}
