/* ═══════════════════════════════════════════
   ZADDY — Scientifically Handsome
   Vanilla CSS · Dark Luxury · Kit Pattern
   ═══════════════════════════════════════════ */

/* ─── TIER 1: PRIMITIVES ─── */
:root {
  --gold: #ffffff;
  --gold-light: #cccccc;
  --gold-glow: rgba(255, 255, 255, 0.08);
  --gold-border: rgba(255, 255, 255, 0.12);

  --black: #0a0a0a;
  --black-card: #111111;
  --black-surface: #161616;
  --black-border: rgba(255, 255, 255, 0.06);

  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);

  --font-display: "Bebas Neue", "Impact", "Arial Narrow", sans-serif;
  --font-body: "Barlow", sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: #0a0a0a;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

.site-wrapper {
  width: 100%;
  overflow-x: clip;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--gold-glow);
  color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-border);
  border-radius: 2px;
}

/* ─── TYPOGRAPHY ─── */
.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 400;
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.1;
  font-weight: 400;
}

.heading-sm {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
}

.label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 500;
}

.body-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-50);
  line-height: 1.7;
  font-weight: 300;
}

.italic {
  font-style: normal;
  color: var(--gold);
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

/* Mobile: tighten section rhythm. !important overrides inline shorthand
   padding on sections that set it directly (intake, faq, ecosystem, etc). */
@media (max-width: 768px) {
  .section,
  .problem {
    padding-top: var(--space-lg) !important;
    padding-bottom: var(--space-lg) !important;
  }
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header .label {
  margin-bottom: var(--space-sm);
  display: block;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: var(--space-md) auto;
  opacity: 0.4;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: calc(var(--space-sm) + env(safe-area-inset-top)) var(--space-md)
    var(--space-sm);
  transition: all 0.5s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-border);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.15em;
}

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

.navbar-links a {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white-50);
  transition: color 0.3s ease;
  font-weight: 400;
}

.navbar-links a:hover {
  color: var(--gold);
}

.btn-shop,
.navbar-links a.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: #0a0a0a;
  background: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: background 0.3s ease;
}

.btn-shop:hover {
  background: var(--gold-light);
}

.mobile-toggle {
  display: none;
  color: var(--white);
  padding: 8px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--white-70);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  padding: 8px;
  z-index: 201;
}
.mobile-menu .btn-shop {
  color: #0a0a0a !important;
  background: #ffffff;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.8rem;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 0;
  overflow: hidden;
}
.hero > .stats-bar {
  position: relative;
  z-index: 3;
  margin-top: auto;
}

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

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  text-align: left;
  opacity: 0;
}
.hero-content > * {
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: var(--space-md);
}

.hero-badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
}

.hero-badge-tag {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  background: var(--gold);
  color: var(--black);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.hero-title {
  margin-bottom: var(--space-md);
}

.hero-title span {
  display: inline;
}

.hero-subtitle {
  font-size: 0.85rem;
  color: var(--white);
  max-width: 420px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: var(--space-md);
  margin-left: 0;
  margin-right: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background: var(--white-90);
  color: var(--black);
  border-color: var(--white-90);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
  color: var(--white-50);
  transition: color 0.3s ease;
}

.btn-text:hover {
  color: var(--gold);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--white-30);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ─── STATS BAR ─── */
.stats-bar {
  border-top: none;
  border-bottom: none;
  padding: var(--space-lg) 0;
  background: transparent;
}
.stats-bar--light {
  background: #f8f8f6;
  border-top: none;
  border-bottom: none;
}
.stats-bar--light .stat-number {
  color: #0a0a0a;
}
.stats-bar--light .stat-label {
  color: #4b5563;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat-item {
  padding: var(--space-sm);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  font-weight: 400;
}

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

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.problem-text .heading-lg {
  margin-bottom: var(--space-md);
}

.problem-text .body-text {
  margin-bottom: var(--space-md);
}

.problem-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.problem-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--white-70);
  font-weight: 300;
}

.problem-points .point-icon {
  color: #0a0a0a;
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.problem-visual {
  position: relative;
}

.problem-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-border),
    transparent
  );
}

.problem-card .heading-md {
  color: var(--white-90);
  margin-bottom: var(--space-sm);
}

.problem-card .body-text {
  font-size: 0.85rem;
}

.problem-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-md);
}

.problem-badge {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-weight: 500;
}

/* ─── PRODUCTS SECTION ─── */
.products {
  padding: var(--space-xl) 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.product-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  transition: all 0.5s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--black-surface);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-body {
  padding: var(--space-sm) var(--space-sm) calc(var(--space-sm) + 4px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white-90);
  margin-bottom: 4px;
}

.product-card-sub {
  font-size: 0.7rem;
  color: var(--white-30);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: auto;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-sm);
  padding-top: var(--space-xs);
  border-top: 1px solid var(--black-border);
}

.product-card-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}

.product-card-link {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white-30);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.product-card:hover .product-card-link {
  color: var(--gold);
}

/* ─── COMING SOON ─── */
.product-card.coming-soon {
  cursor: pointer;
}
.coming-soon-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #ffffff;
  background: #0a0a0a;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ─── NATIONAL MEDIA FEATURES MARQUEE ─── */
.media-marquee-section {
  padding: var(--space-lg) 0;
  overflow: hidden;
}
.media-marquee-label {
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #9a9a94;
  font-weight: 500;
  margin-bottom: var(--space-md);
}
.media-marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}
/* two identical groups sitting side by side, both animated -100% of their OWN
   width in lockstep — guarantees a seamless loop at ANY screen width.
   width:max-content with a 100% floor means: on wide screens the group is
   exactly one viewport (logos spread by space-around, no gap), and on narrow
   mobile the group grows to fit all logos so the -100% translate always equals
   one full group width (no cutoff, no jump). */
.media-marquee-group {
  flex: 0 0 auto;
  width: max-content;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  animation: media-scroll 38s linear infinite;
  will-change: transform;
}
.media-marquee:hover .media-marquee-group {
  animation-play-state: paused;
}
.media-logo {
  flex: 0 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #0a0a0a;
  opacity: 1;
}
/* when real logo images are dropped in: <img class="media-logo-img"> */
.media-logo-img {
  flex: 0 0 auto;
  height: clamp(26px, 3.2vw, 40px);
  width: auto;
  margin: 0 clamp(1.25rem, 3vw, 2.5rem);
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
}
@keyframes media-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* NOTE: this logo strip intentionally keeps scrolling even when the OS has
   "Reduce Motion" enabled — it's a gentle horizontal marquee (not a vestibular
   trigger) and the rotation is a core part of the design on every device. */

/* ─── BUILT TO LAST (SUPPLEMENTS) ─── */
.built-to-last {
  padding: var(--space-xl) 0;
  position: relative;
}

.btl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.btl-visual {
  position: relative;
}

.btl-hero-image {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.btl-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.btl-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--black) 100%);
}

.btl-content .heading-lg {
  margin-bottom: var(--space-md);
}

.btl-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.btl-pillar {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) calc(var(--space-sm) + 4px);
  transition: border-color 0.3s ease;
}

.btl-pillar:hover {
  border-color: var(--gold-border);
}

.btl-pillar h4 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white-90);
  margin-bottom: 6px;
}

.btl-pillar p {
  font-size: 0.8rem;
  color: var(--white-30);
  font-weight: 300;
}

.btl-waitlist {
  margin-top: var(--space-md);
}

.btn-waitlist {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--black);
  background: var(--gold);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: background 0.3s ease;
}

.btn-waitlist:hover {
  background: var(--gold-light);
}

/* ─── APPAREL SECTION ─── */
.apparel {
  padding: var(--space-2xl) 0;
}

.apparel-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.apparel-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  transition: all 0.5s var(--ease-smooth);
}

.apparel-card:hover {
  border-color: var(--gold-border);
}

.apparel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s var(--ease-smooth),
    opacity 0.5s ease;
  opacity: 0.7;
}

.apparel-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.apparel-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md) var(--space-sm);
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
  z-index: 1;
}

.apparel-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white-90);
  margin-bottom: 2px;
}

.apparel-card-price {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
}

/* ─── FOUNDER ─── */
.founder {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--black-border);
}

.founder-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1;
  font-weight: 400;
  margin: 0;
  color: #ffffff;
}

.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.founder-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--black-card);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-content .label {
  margin-bottom: var(--space-sm);
  display: block;
}

.founder-content .heading-lg {
  margin-bottom: var(--space-md);
}

.founder-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--white-70);
  line-height: 1.6;
  padding-left: var(--space-md);
  border-left: 2px solid var(--gold);
  margin-top: var(--space-md);
}

.founder-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white-30);
  margin-top: var(--space-sm);
}

/* ─── FOOTER ─── */
.footer {
  padding: var(--space-xl) 0 var(--space-md);
  border-top: none;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-brand .navbar-logo {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--white-30);
  font-weight: 300;
  max-width: 260px;
}

.footer-links-group h4 {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white-50);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-group a {
  font-size: 0.8rem;
  color: var(--white-30);
  transition: color 0.3s ease;
  font-weight: 300;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--black-border);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--white-30);
  font-weight: 300;
}

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

.footer-socials a {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white-30);
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--gold);
}

/* ─── LEGAL PAGES ─── */
.legal-main {
  background: #faf9f7;
  color: #1a1a1a;
  padding: calc(var(--space-2xl) + 48px) 0 var(--space-2xl);
}
.legal-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.legal-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #9a9a94;
  font-weight: 600;
}
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  color: #0a0a0a;
  letter-spacing: 0.01em;
  margin: 0.5rem 0 0.75rem;
}
.legal-updated {
  font-size: 0.85rem;
  color: #8a8a84;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid #e6e4df;
}
.legal-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: #3a3a38;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.02em;
  color: #0a0a0a;
  margin: 2.5rem 0 0.75rem;
}
.legal-body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: #0a0a0a;
  margin: 1.75rem 0 0.5rem;
}
.legal-body p {
  margin: 0 0 1rem;
}
.legal-body ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}
.legal-body li {
  margin-bottom: 0.5rem;
}
.legal-body a {
  color: #0a0a0a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-body strong {
  color: #0a0a0a;
}
.legal-emergency {
  background: #fff4f4;
  border: 1px solid #f1d2d2;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #7a1f1f;
  margin-bottom: 1.75rem;
}
.legal-disclaimer {
  background: #f1f0ec;
  border-left: 3px solid #0a0a0a;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  margin: 1.5rem 0;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-xl);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #0a0a0a;
  font-weight: 600;
  text-decoration: none;
}
.legal-back:hover {
  opacity: 0.6;
}

/* ─── ANIMATIONS ─── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
}

.reveal {
  transform: translateY(40px);
}
.reveal-left {
  transform: translateX(-30px);
}
.reveal-right {
  transform: translateX(30px);
}

/* ─── MEDICAL STANDARDS GRID ─── */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

/* ─── SECTION LIGHT (white sections) ─── */
.section-light {
  background: #f8f8f6;
  color: #0a0a0a;
}
.section-light .label {
  color: #999999;
}
.section-light .label::before,
.section-light .label::after {
  color: #999999;
}
.section-light .body-text {
  color: #6b7280;
}
.section-light .heading-lg,
.section-light .heading-md,
.section-light .heading-xl {
  color: #0a0a0a;
}
.section-light .italic {
  color: #999999;
}
.section-light .stat-number {
  color: #0a0a0a;
}
.section-light .stat-label {
  color: #6b7280;
}
.section-light .problem-badge {
  background: rgba(0, 0, 0, 0.04);
  color: #666666;
  border-color: rgba(0, 0, 0, 0.1);
}
.section-light .problem-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.section-light .problem-card .body-text {
  color: #6b7280;
}
.section-light .btl-pillar {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
.section-light .btl-pillar h4 {
  color: #0a0a0a;
}
.section-light .btl-pillar p {
  color: #6b7280;
}
.section-light .product-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
.section-light .product-card-name {
  color: #0a0a0a;
}
.section-light .product-card-sub {
  color: #6b7280;
}
.section-light .product-card-price {
  color: #0a0a0a;
}
.section-light .product-card-link {
  color: #0a0a0a;
}
.section-light .btn-primary {
  background: #0a0a0a;
  color: #ffffff;
  border-color: #0a0a0a;
}
.section-light .btn-primary:hover {
  background: #333333;
  border-color: #333333;
}
.section-light .btn-waitlist {
  background: #0a0a0a;
  color: #ffffff;
  border-color: #0a0a0a;
}
.section-light .btn-waitlist:hover {
  background: #333333;
  border-color: #333333;
}
.section-light .divider {
  background: rgba(0, 0, 0, 0.1);
}
.section-light .standards-grid > div {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #0a0a0a;
}
.section-light .standards-grid > div h4 {
  color: #0a0a0a;
}
.section-light .standards-grid > div p {
  color: #6b7280;
}
.section-light .problem-points li {
  color: #4b5563;
}

/* Dark cards inside light sections need white text */
.section-light [style*="black-card"] h4,
.section-light [style*="black-card"] h3 {
  color: #ffffff !important;
}
.section-light .btn-text {
  color: #0a0a0a;
}
.section-light .btn-text:hover {
  color: #666666;
}
.section-light .problem-card .heading-md {
  color: #0a0a0a;
}

/* ─── BEFORE / AFTER TOGGLE ─── */
.ba-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.ba-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.6s ease;
}
.ba-bg--after {
  opacity: 0;
}
.ba-card.active .ba-bg--before {
  opacity: 0;
}
.ba-card.active .ba-bg--after {
  opacity: 1;
}
.ba-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.ba-inner {
  position: relative;
  z-index: 2;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 480px;
}
.ba-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}
.ba-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}
.ba-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ba-hint {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}
.ba-card.active .ba-hint {
  display: none;
}
.ba-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.ba-toggle-track {
  display: block;
  width: 62px;
  height: 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.55);
  position: relative;
  transition: background 0.3s ease;
  animation: ba-toggle-pulse 2.2s ease-in-out infinite;
}
.ba-card.active .ba-toggle-track {
  background: rgba(255, 255, 255, 0.6);
  animation: none;
}
@keyframes ba-toggle-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.14);
  }
}
.ba-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.3s ease;
}
.ba-card.active .ba-toggle-thumb {
  transform: translateX(30px);
}
.ba-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.ba-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.ba-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.ba-pill--down {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ba-pill--up {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.3;
  transform: translateX(-8px);
}
.ba-card.active .ba-pill--down {
  opacity: 0.3;
  transform: translateX(8px);
}
.ba-card.active .ba-pill--up {
  opacity: 1;
  transform: translateX(0);
}
.ba-arrow {
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .ba-row {
    flex-wrap: wrap;
  }
  .ba-card {
    min-height: 400px;
  }
}
@media (max-width: 480px) {
  .ba-pill {
    font-size: 0.65rem;
    padding: 6px 10px;
  }
  .ba-inner {
    padding: var(--space-sm);
  }
  .ba-card {
    min-height: 360px;
  }
}

/* ─── HOW IT WORKS (MEDVi-style timeline) ─── */
.hiw-section {
  overflow: visible;
}
.hiw-section .container {
  overflow: visible;
}
.hiw-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}
.hiw-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.hiw-timeline {
  position: relative;
  padding-left: 40px;
}
.hiw-line {
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(0, 0, 0, 0.1);
}
.hiw-step {
  position: relative;
  margin-bottom: var(--space-xl);
}
.hiw-step:last-child {
  margin-bottom: 0;
}
.hiw-dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0a0a0a;
  border: 3px solid #f8f8f6;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.hiw-step-content h3 {
  color: #0a0a0a;
}
.hiw-step-content .body-text {
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.hiw-step-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.hiw-step-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .hiw-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .hiw-intro {
    position: static;
  }
}

.section-light .founder-image {
  background: #f0f0ee;
}
.section-light .founder-quote {
  color: #4b5563;
}
.section-light .founder-quote cite {
  color: #6b7280;
}

/* Fade transitions */
.fade-dark-to-light {
  height: 120px;
  background: linear-gradient(180deg, #0a0a0a 0%, #f8f8f6 100%);
}
.fade-light-to-dark {
  height: 120px;
  background: linear-gradient(180deg, #f8f8f6 0%, #0a0a0a 100%);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }

  /* Full-bleed hero: fill the entire mobile screen (incl. behind the browser
     status bar / toolbar) so only the photo shows — no white/black gaps. */
  .hero {
    min-height: 100vh;
    min-height: 100lvh;
  }

  .hero-content {
    margin: 0;
    text-align: left;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
  .hero-content > * {
    max-width: 100%;
  }
  .hero-cta {
    justify-content: flex-start !important;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--space-xs);
  }

  .problem-grid,
  .btl-grid,
  .founder-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .apparel-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-scroll {
    display: none;
  }

  /* ── Mobile section spacing ── */
  .section,
  .section-light {
    padding: var(--space-lg) 0 !important;
  }

  /* ── Final CTA: remove aspect-ratio, center content ── */
  .section[style*="aspect-ratio"] {
    aspect-ratio: unset !important;
    min-height: auto !important;
    padding: var(--space-xl) 0 !important;
  }
  .section[style*="aspect-ratio"] > div[style*="text-align: center"] {
    padding: var(--space-lg) var(--space-md) !important;
  }

  /* ── Built to Last: text before images ── */
  .btl-grid .btl-visual {
    order: 2;
  }
  .btl-grid .btl-content {
    order: 1;
  }

  /* ── Founder: text before photo ── */
  .founder-layout .founder-image {
    order: 2;
  }
  .founder-layout .founder-content {
    order: 1;
  }

  /* ── Products grid override for inline styles ── */
  .products-grid[style] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* ── Problem grid: text before toggle ── */
  .problem-grid .problem-text {
    order: 1;
  }
  .problem-grid .problem-visual {
    order: 2;
  }

  /* ── Product modal ── */
  .product-modal > div {
    margin: var(--space-sm) !important;
    max-width: calc(100% - 2rem) !important;
  }

  /* ── Reduce large gaps ── */
  .protocol-sub {
    margin-bottom: var(--space-lg) !important;
  }

  /* ── Compliance strip: stack on mobile, hide pipes ── */
  .section-light[style*="border-top"] .reveal[style*="flex"] {
    flex-direction: column;
    gap: var(--space-xs) !important;
  }
  .section-light[style*="border-top"]
    .reveal[style*="flex"]
    span[style*="color: #cccccc"] {
    display: none;
  }

  /* ── Compliance strip cards ── */
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .products-grid,
  .products-grid[style] {
    grid-template-columns: 1fr !important;
  }

  .apparel-showcase {
    grid-template-columns: 1fr;
  }

  .standards-grid {
    grid-template-columns: 1fr;
  }

  /* ── Even tighter spacing ── */
  .section,
  .section-light {
    padding: var(--space-md) 0 !important;
  }

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

/* ─── PROTOCOL ACCORDION (mobile only) ─── */
.protocol-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 var(--space-md) 0;
  border: none;
  background: none;
  cursor: default;
  pointer-events: none;
}
.protocol-tab-icon {
  display: none;
}
.protocol-panel {
  display: block;
}
@media (max-width: 768px) {
  .protocol-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    border: none;
    background: none;
    cursor: pointer;
    pointer-events: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .protocol-tab-icon {
    display: block;
    font-size: 1.4rem;
    color: #999;
    font-weight: 300;
    line-height: 1;
  }
  .protocol-accordion .protocol-panel {
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .protocol-accordion:not([data-accordion-open="true"]) .protocol-panel {
    max-height: 0 !important;
    margin-top: 0 !important;
  }
  .protocol-accordion[data-accordion-open="true"] .protocol-panel {
    max-height: 2000px;
  }
  .protocol-sub {
    margin-bottom: var(--space-sm) !important;
  }
}

/* ─── FINAL CTA SECTION ─── */
.final-cta-section {
  aspect-ratio: 16/9;
  min-height: 80vh;
}
@media (max-width: 768px) {
  .final-cta-section {
    aspect-ratio: unset !important;
    min-height: auto !important;
    padding: var(--space-xl) var(--space-md) !important;
  }
  .final-cta-content {
    padding-top: 180% !important;
  }
}

/* ─── TESTIMONIALS (auto-rotating slider) ─── */
.test-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  min-height: 220px;
}
.test-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 0 var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    visibility 0.6s ease;
  pointer-events: none;
}
.test-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.test-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 3px;
}
.test-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: #2a2a2a;
  line-height: 1.65;
  font-weight: 300;
  max-width: 640px;
}
.test-name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #999999;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.test-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: var(--space-md);
}
.test-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.test-dots button.is-active {
  background: #0a0a0a;
  transform: scale(1.35);
}
@media (max-width: 600px) {
  .test-slider {
    min-height: 300px;
  }
}

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.faq-item:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #0a0a0a;
  text-align: left;
  line-height: 1.5;
  gap: 16px;
}
.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: #999999;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 0 0 0;
}
.faq-item.active .faq-a {
  max-height: 500px;
  padding-bottom: 20px;
}
.faq-a p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── FAQ DARK MODE ─── */
.faq-dark .label {
  color: var(--white-50);
}
.faq-dark .heading-lg {
  color: #ffffff;
}
.faq-dark .italic {
  color: var(--white-50);
}
.faq-dark .faq-q {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.faq-dark .faq-item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.faq-dark .faq-item:first-of-type {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.faq-dark .faq-icon {
  color: var(--white-50);
}
.faq-dark .faq-a p {
  color: var(--white-70);
}

/* ─── PRODUCT MODAL CTA (dark, matches Get Started button) ─── */
.product-modal .btn-primary {
  background: #0a0a0a;
  color: #ffffff;
  border-color: #0a0a0a;
}
.product-modal .btn-primary:hover {
  background: #333333;
  border-color: #333333;
  color: #ffffff;
}

/* ─── INTAKE SECTION OVERRIDES ─── */
#intake .italic {
  color: #999999;
}
#intake .section-header .body-text {
  color: #1a1a1a;
}

/* ─── EVALUATORS CAROUSEL (Begin Your Evaluation) ─── */
.evaluators {
  max-width: 1100px;
  margin: 0 auto var(--space-lg);
}
.evaluators-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}
.evaluators-head .label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0a0a0a;
}
.evaluators-nav {
  display: flex;
  gap: 0.5rem;
}
.eval-arrow {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  border: 1px solid #d0d0cd;
  background: #fff;
  color: #0a0a0a;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s var(--ease-smooth),
    border-color 0.25s var(--ease-smooth),
    transform 0.25s var(--ease-smooth);
}
.eval-arrow:hover {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}

.evaluators-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, calc(50% - var(--space-md) / 2));
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* top/side padding gives the hover-lift + shadow room so they aren't
     clipped by the horizontal scroll container */
  padding: 16px 8px var(--space-md);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.evaluators-track::-webkit-scrollbar {
  display: none;
}
.evaluators-track.is-single {
  grid-auto-columns: minmax(0, 100%);
}

.evaluator-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-md);
  align-items: center;
  background: #fff;
  border: 1px solid #e5e5e3;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.3s var(--ease-smooth),
    box-shadow 0.3s var(--ease-smooth),
    border-color 0.3s var(--ease-smooth);
}
.evaluator-card:hover,
.evaluator-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  border-color: #0a0a0a;
  outline: none;
}
.evaluator-card-photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #f0f0ee;
}
.evaluator-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.evaluator-card-body .label {
  display: block;
  margin-bottom: 0.75rem;
}
.evaluator-card-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #0a0a0a;
  margin: 0 0 0.4rem;
}
.evaluator-card-creds {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 0.6rem;
}
.evaluator-card-role {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
}
.evaluator-card-teaser {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4b5563;
  margin: 0 0 var(--space-sm);
}
.evaluator-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
}
.evaluator-card-link i {
  transition: transform 0.25s var(--ease-smooth);
}
.evaluator-card:hover .evaluator-card-link i {
  transform: translateX(3px);
}

/* ── Evaluator modal ── */
.eval-modal-card {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.eval-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}
.eval-modal-photo {
  background: #f0f0ee;
}
.eval-modal-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center top;
}
.eval-modal-body {
  padding: var(--space-lg);
}
#evalModalName {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  color: #0a0a0a;
  margin: 0 0 6px;
}
#evalModalCreds {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 10px;
}
#evalModalRole {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 20px;
}
#evalModalBio p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 16px;
}
.eval-modal-facts {
  margin: var(--space-sm) 0 0;
  border-top: 1px solid #ececea;
  padding-top: var(--space-sm);
}
.eval-fact {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: var(--space-sm);
  padding: 8px 0;
  border-bottom: 1px solid #f0f0ee;
}
.eval-fact dt {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
}
.eval-fact dd {
  font-size: 0.88rem;
  color: #374151;
  margin: 0;
}

@media (max-width: 768px) {
  /* exactly one card per view — fixed full-width columns so each card fills
     the viewport (minmax sizes to content and lets a 2nd card peek, so we use
     a fixed 100% track instead) */
  .evaluators-track {
    grid-auto-columns: 100% !important;
    padding: 12px 4px var(--space-sm);
  }
  .evaluators-track.is-single {
    grid-auto-columns: 100% !important;
  }
  /* vertical "poster" card — big photo on top, text stacked beneath */
  .evaluator-card {
    grid-template-columns: 1fr !important;
    gap: var(--space-sm);
    align-items: start;
    padding: var(--space-sm);
  }
  .evaluator-card-body {
    min-width: 0;
  }
  /* large, click-worthy photo — capped at ~half the screen so the
     qualification questions still peek below it */
  .evaluator-card-photo {
    aspect-ratio: auto;
    width: 100%;
    height: 46vh;
    max-height: 440px;
  }
  .evaluator-card-body .label {
    margin-bottom: 0.35rem;
  }
  .evaluator-card-name {
    font-size: 1.6rem;
    line-height: 1.05;
  }
  .evaluator-card-creds {
    margin-bottom: 0.4rem;
  }
  .evaluator-card-role {
    margin-bottom: 0.6rem;
  }
  /* short description back on, clamped to 2 lines to keep the card compact */
  .evaluator-card-teaser {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--space-sm);
  }
  /* make the click-for-more read like a clear button */
  .evaluator-card-link {
    padding: 0.7rem 1.25rem;
    border: 1px solid #0a0a0a;
    border-radius: var(--radius-full);
  }
  .eval-modal-grid {
    grid-template-columns: 1fr;
  }
  .eval-modal-photo img {
    min-height: 260px;
    max-height: 340px;
  }
}

/* ─── QUALIFICATION FORM BOX ─── */
.qualification-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.qual-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.qual-step {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: var(--space-sm);
}
.qual-question {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0 0 var(--space-md);
}
.qual-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}
.qual-option {
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white-90);
  background: var(--black-surface);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition:
    border-color 0.25s var(--ease-smooth),
    background 0.25s var(--ease-smooth),
    transform 0.25s var(--ease-smooth);
}
.qual-option:hover {
  border-color: var(--white-30);
  transform: translateX(2px);
}
.qual-option[aria-checked="true"] {
  border-color: #ffffff;
  background: #1d1d1d;
}
.qual-continue {
  width: 100%;
  justify-content: center;
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-smooth);
}
.qual-continue.enabled {
  opacity: 1;
  pointer-events: auto;
}
.qualification-box .btn-primary,
.section-light .qualification-box .btn-primary {
  background: #ffffff;
  color: #0a0a0a;
  border-color: #ffffff;
}

/* ─── ECOSYSTEM ─── */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.ecosystem-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: #fff;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s ease;
}
.ecosystem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.28);
}
.ecosystem-card-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f5f3;
}
.ecosystem-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.02);
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s ease;
}
.ecosystem-card:hover .ecosystem-card-img img {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1.05);
}
.ecosystem-card-body {
  position: relative;
  padding: var(--space-md);
  z-index: 2;
}
.ecosystem-card-tag {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}
.ecosystem-card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: #fff;
}
.ecosystem-card-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.9rem;
}
.ecosystem-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition:
    gap 0.3s ease,
    color 0.3s ease;
}
.ecosystem-card:hover .ecosystem-card-link {
  gap: 0.6rem;
  color: #fff;
}
@media (max-width: 768px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .ecosystem-card-img {
    aspect-ratio: 3 / 4;
  }
  .ecosystem-card-img img {
    height: 100%;
    object-fit: cover;
  }
  .ecosystem-card-body {
    padding: var(--space-sm);
  }
  .ecosystem-card-title {
    font-size: 1.35rem;
  }
  .ecosystem-card-desc {
    font-size: 0.8rem;
    margin-bottom: 0.7rem;
  }
  .ecosystem-card-link {
    font-size: 0.7rem;
  }
}
/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
  .scroll-line {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}
