/* =========================================================
   LOUD CART — LANDING PAGE
   Scroll-based · No serif · NeueHaasDisplay
   ========================================================= */

@font-face {
  font-family: 'NeueHaasDisplayMediu';
  src: url('fonts/NeueHaasDisplayMediu.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NeueHaasDisplayRoman';
  src: url('fonts/NeueHaasDisplayRoman.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NeueHaasDisplayLight';
  src: url('fonts/NeueHaasDisplayLight.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }
em { font-style: normal; }

body {
  margin: 0;
  font-family: 'NeueHaasDisplayRoman', var(--lc-body);
  background: var(--lc-offwhite);
  color: var(--lc-ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'NeueHaasDisplayMediu', var(--lc-display), sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.0;
}

/* ---- Global Utilities ---- */
.heat-text { color: var(--lc-heat); }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section {
  padding: clamp(80px, 10vw, 128px) 0;
}

.dark-section {
  background: var(--lc-burnt);
  color: var(--lc-offwhite);
}

.alt-section {
  background: var(--lc-stone);
}

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-block;
  font-family: var(--lc-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lc-heat);
  margin-bottom: 16px;
}

/* ---- Section Intro Block ---- */
.section-intro {
  max-width: 680px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section-intro.light h2 { color: var(--lc-offwhite); }
.section-intro.light p { color: rgba(250,250,247,0.7); }
.section-intro.centered { text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }

.section-intro h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 20px;
  line-height: 1.05;
}

.section-intro p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--lc-slate);
  max-width: 54ch;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--lc-body);
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 120ms, transform 120ms, border-color 120ms, box-shadow 120ms, color 120ms;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn.sm { padding: 8px 16px; font-size: 13px; }
.btn.md { padding: 12px 22px; font-size: 14px; min-height: 44px; }
.btn.lg { padding: 16px 28px; font-size: 16px; min-height: 52px; }

.btn.primary { background: var(--lc-heat); color: #fff; }
.btn.primary:hover { background: var(--lc-heat-hover); box-shadow: 0 8px 24px rgba(255,77,31,0.35); }

.btn.ghost { background: transparent; color: var(--lc-ink); border-color: var(--lc-border-strong); }
.btn.ghost:hover { background: var(--lc-stone); border-color: var(--lc-ink); }

.btn.ghost-dark { background: transparent; color: var(--lc-offwhite); border-color: rgba(255,255,255,0.25); }
.btn.ghost-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }


/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, backdrop-filter 300ms ease, border-color 300ms ease, transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.site-header.nav-hidden {
  transform: translateY(-100%);
}
.site-header.scrolled {
  background: rgba(26, 18, 8, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.site-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: var(--lc-offwhite);
  text-decoration: none;
}
.brand-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lc-heat);
  flex-shrink: 0;
}
.nav-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    gap: 32px;
    flex: 1;
    margin-left: 40px;
  }
  .nav-desktop a {
    color: rgba(250,250,247,0.7);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 120ms;
  }
  .nav-desktop a:hover { color: var(--lc-offwhite); }
}


/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--lc-burnt);
  color: var(--lc-offwhite);
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 75%;
  background: radial-gradient(circle at center, rgba(255,77,31,0.13) 0%, transparent 68%);
  pointer-events: none;
}

/* the constrained content wrapper */
.hero-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px clamp(20px, 4vw, 48px) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 56px;
}

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
    padding-top: 140px;
    padding-bottom: 100px;
  }
  .hero-content { flex: 1.15; min-width: 0; }
  .hero-visual   { flex: 1;    min-width: 0; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(255,77,31,0.15);
  border: 1px solid rgba(255,77,31,0.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #FF8B6F;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lc-heat);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,77,31,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(255,77,31,0); }
}

.hero-h1 {
  font-size: clamp(52px, 8.5vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--lc-offwhite);
}

.hero-body {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: rgba(250,250,247,0.7);
  max-width: 46ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(250,250,247,0.6);
}
.hero-proof strong { color: var(--lc-offwhite); }

.avatar-stack {
  display: flex;
}
.avatar-stack span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--lc-burnt);
  margin-left: -8px;
  flex-shrink: 0;
}
.avatar-stack span:first-child { margin-left: 0; }

/* Hero Visual */
.hero-visual {
  position: relative;
}

.leak-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.leak-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(255,77,31,0.2), transparent 70%);
  pointer-events: none;
}
.leak-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card-label {
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.45);
}
.live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lc-heat);
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lc-heat);
  animation: pulse 1.6s ease-out infinite;
}
.leak-sublabel {
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.45);
  margin: 0 0 4px;
}
.leak-amount {
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-size: clamp(56px, 8vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--lc-heat);
  margin: 0 0 4px;
  font-weight: normal;
}
.leak-note {
  font-size: 12px;
  color: rgba(250,250,247,0.5);
  margin: 0 0 24px;
  line-height: 1.5;
}
.leak-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}
.leak-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: rgba(250,250,247,0.6);
}
.metric-bad { font-family: var(--lc-mono); font-size: 13px; color: #FF8B6F; }
.metric-ok  { font-family: var(--lc-mono); font-size: 13px; color: rgba(250,250,247,0.9); }

/* Floating slips */
.hero-slip {
  position: absolute;
  background: var(--lc-offwhite);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.slip-a { top: -16px; right: -12px; border-left: 3px solid var(--lc-error); }
.slip-b { bottom: 20px; left: -12px; border-left: 3px solid var(--lc-success); }
.slip-label {
  font-family: var(--lc-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lc-muted);
}
.slip-val {
  font-family: 'NeueHaasDisplayRoman', sans-serif;
  font-weight: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.slip-val.bad { color: var(--lc-error); }
.slip-val.good { color: var(--lc-success); }


/* =========================================================
   LOGOS MARQUEE
   ========================================================= */
.logos-band {
  background: var(--lc-stone);
  border-top: 1px solid var(--lc-border);
  border-bottom: 1px solid var(--lc-border);
  padding: 28px 0;
  overflow: hidden;
}
.logos-eyebrow {
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lc-muted);
  text-align: center;
  margin: 0 0 20px;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-item {
  font-family: 'NeueHaasDisplayRoman', sans-serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lc-slate);
  opacity: 0.6;
  padding: 0 40px;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-sep {
  color: var(--lc-muted);
  opacity: 0.4;
  font-size: 18px;
  flex-shrink: 0;
}


/* =========================================================
   PROBLEM SECTION
   ========================================================= */
.problem-section {
  background: var(--lc-offwhite);
  /* padding-bottom: 0px; */
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 600px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.stat-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-border);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat-num {
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-weight: normal;
  font-size: clamp(52px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--lc-heat);
}
.stat-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--lc-slate);
  margin: 0;
  flex: 1;
}
.stat-src {
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lc-muted);
}

.problem-callout {
  background: var(--lc-burnt);
  color: var(--lc-offwhite);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .problem-callout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}
.problem-callout p {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
  max-width: 52ch;
}


/* =========================================================
   SERVICES
   ========================================================= */
.services-section {
  background: var(--lc-burnt);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 200ms, border-color 200ms;
}
.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,77,31,0.4);
}
.svc-num {
  font-family: var(--lc-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--lc-heat);
  font-weight: 600;
}
.service-card h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  color: var(--lc-offwhite);
}
.service-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(250,250,247,0.65);
  margin: 0;
  flex: 1;
}
.svc-lift {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: auto;
}
.lift-val {
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--lc-heat);
}
.lift-key {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250,250,247,0.45);
  font-weight: 500;
}


/* =========================================================
   PROCESS
   ========================================================= */
.process-section {
  background: var(--lc-burnt);
}
.process-section .step-body h3 { color: var(--lc-offwhite); }
.process-section .step-body p  { color: rgba(250,250,247,0.7); }
.process-section .step-tag     { color: rgba(250,250,247,0.45); }
.process-section .step-line    { background: rgba(255,255,255,0.12); }
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1024px) {
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.process-step {
  display: flex;
  gap: 20px;
  padding: 0 0 40px 0;
}
@media (min-width: 1024px) {
  .process-step {
    flex-direction: column;
    gap: 24px;
    padding: 0 32px 0 0;
  }
  .process-step:last-child { padding-right: 0; }
}

.step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .step-num-wrap {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--lc-heat);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.step-line {
  flex: 1;
  height: 2px;
  background: var(--lc-border);
  display: none;
}
@media (min-width: 1024px) {
  .step-line { display: block; }
}

.step-body { padding-top: 4px; }
@media (min-width: 1024px) { .step-body { padding-top: 0; } }

.step-body h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 10px;
  color: var(--lc-ink);
  line-height: 1.2;
}
.step-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lc-slate);
  margin: 0 0 12px;
}
.step-tag {
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lc-muted);
}


/* =========================================================
   RESULTS
   ========================================================= */
.results-section {
  background: var(--lc-burnt);
}
.results-header {
  margin-bottom: clamp(48px, 6vw, 72px);
}
.results-header h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--lc-offwhite);
  margin-top: 12px;
  max-width: 24ch;
  line-height: 1.1;
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 600px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}
.result-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 1024px) {
  .result-item {
    border-bottom: 0;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding: 0 0 0 32px;
    margin-bottom: 0;
  }
  .result-item:first-child { border-left: 0; padding-left: 0; }
}
.result-num {
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-weight: normal;
  font-size: clamp(52px, 8vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--lc-heat);
}
.result-item p {
  font-size: 14px;
  color: rgba(250,250,247,0.65);
  line-height: 1.5;
  margin: 0;
  max-width: 22ch;
}


/* =========================================================
   TESTIMONIAL
   ========================================================= */
.testi-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .testi-layout {
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
  }
}

/* Left column */
.testi-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testi-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--lc-ink);
  margin: 0;
}

.testi-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.testi-stat {
  background: #f0f0f0;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 150px;
}

.testi-stat::after {
  display: none;
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--lc-heat) 0px,
    var(--lc-heat) 1.5px,
    transparent 1.5px,
    transparent 7px
  );
  opacity: 0.25;
  border-radius: 0 14px 0 0;
}


.testi-stat-num {
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 800;
  color: var(--lc-ink);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.testi-stat-label {
  font-size: 13px;
  color: var(--lc-slate, #555);
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

.testi-quote {
  font-size: clamp(15px, 1.4vw, 17px);
  font-style: italic;
  color: var(--lc-ink);
  line-height: 1.65;
  margin: 0;
  padding-left: 20px;
  border-left: 3px solid var(--lc-accent, #f97316);
}

/* Right column: vertical video */
.testi-right {
  display: flex;
  justify-content: center;
}

.testi-video-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

@media (min-width: 1024px) {
  .testi-video-wrap {
    max-width: 320px;
  }
}

.testi-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bottom gradient overlay */
.testi-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 18px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-owner-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.testi-store-name {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

.testi-store-url {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.testi-store-url:hover {
  color: rgba(255,255,255,0.85);
}

/* Top-left blurry play button */
.testi-play-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.2px;
}

.testi-play-btn:hover {
  background: rgba(255,255,255,0.25);
}

.testi-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* =========================================================
   CASE STUDIES
   ========================================================= */
.casestudies-section {
  /* background: var(--lc-offwhite); */
  background: var(--lc-white);
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) { .case-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

.case-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.case-visual {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.skincare-card .case-visual { background: #D1D3B1; }
.supplement-card .case-visual { background: linear-gradient(135deg, #E8EFE0 0%, #C4C8A0 100%); }

.case-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(255,255,255,0.55) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  display: none;
}

.case-device-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 20px 0;
  height: 292px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .case-device-wrap {
    height: 490px;
  }
}

.case-desktop-img {
  width: 73%;
  flex-shrink: 0;
  display: block;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.case-mobile-img {
  width: 20%;
  height: 100%;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
  object-position: top;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  margin-bottom: 20px;
}

.case-visual-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--lc-border);
  margin-bottom: 4px;
}

.case-brand-link {
  font-family: var(--lc-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--lc-heat);
  text-decoration: none;
  margin-top: 4px;
}
.case-brand-link:hover { text-decoration: underline; }

@media (max-width: 767px) {
  .case-mobile-img { width: 25%; }
}

.case-niche-tag {
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lc-burnt);
  opacity: 0.6;
}
.case-revenue-fig {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-weight: normal;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--lc-burnt);
}
.case-revenue-fig .before { opacity: 0.35; }
.case-revenue-fig .arrow { font-size: 0.5em; color: var(--lc-heat); font-family: var(--lc-body); }
.case-period {
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lc-burnt);
  opacity: 0.55;
  margin: 0;
}
.case-body {
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.case-category {
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lc-heat);
  font-weight: 600;
}
.case-body h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.25;
  color: var(--lc-ink);
}
.case-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lc-slate);
  margin: 0;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--lc-border);
}
.cs-item { display: flex; flex-direction: column; gap: 4px; }
.cv {
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--lc-heat);
}
.ck {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lc-muted);
  font-weight: 500;
}
.case-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--lc-border);
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lc-heat-tint), var(--lc-sand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'NeueHaasDisplayRoman', sans-serif;
  font-weight: normal;
  font-size: 15px;
  color: var(--lc-burnt);
  flex-shrink: 0;
}
.author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--lc-ink);
  display: block;
}
.author-role { font-size: 12px; color: var(--lc-muted); display: block; }


/* =========================================================
   TESTIMONIAL
   ========================================================= */
.testimonial-section {
  background: #fff;
  padding: clamp(40px, 5vw, 64px) 0;
}
.big-quote {
  max-width: 900px;
  margin: 0 auto;
}
.big-quote p {
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-weight: normal;
  font-size: clamp(26px, 4.5vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--lc-offwhite);
  margin: 0 0 36px;
}
.quote-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  font-style: normal;
}
.quote-footer .author-avatar {
  width: 48px;
  height: 48px;
  font-size: 18px;
  background: linear-gradient(135deg, var(--lc-heat), var(--lc-heat-press));
  color: #fff;
}
.quote-footer strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--lc-offwhite);
}
.quote-footer span {
  display: block;
  font-size: 13px;
  color: rgba(250,250,247,0.55);
}


/* =========================================================
   STORE SHOWCASE MARQUEE
   ========================================================= */
.stores-section {
  background: var(--lc-burnt);
  padding-bottom: clamp(80px, 10vw, 128px);
}
.stores-intro {
  padding-top: clamp(80px, 10vw, 128px);
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 600px;
}
.stores-intro h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--lc-offwhite);
  margin-bottom: 16px;
  line-height: 1.05;
}
.stores-intro p {
  font-size: 17px;
  color: rgba(250,250,247,0.6);
}
.stores-marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.stores-marquee {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: stores-scroll 44s linear infinite;
}
.stores-marquee-wrap:hover .stores-marquee {
  animation-play-state: paused;
}
@keyframes stores-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Store Card */
.store-card {
  width: 310px;
  flex-shrink: 0;
  background: var(--lc-offwhite);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
  transition: transform 300ms cubic-bezier(.22,1,.36,1);
  cursor: default;
}
.stores-marquee-wrap:hover .store-card:hover {
  transform: translateY(-6px);
}
.store-screen {
  background: var(--c1, #F5E6DE);
  padding: 12px 12px 0;
  border-radius: 12px 12px 0 0;
}
.sc-nav {
  background: #fff;
  border-radius: 8px 8px 0 0;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
}
.sc-dots {
  display: flex;
  gap: 4px;
}
.sc-dots i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c2, #E8C4B8);
}
.sc-url {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: var(--c1, #F5E6DE);
  margin-left: 4px;
}
.sc-hero-img {
  height: 110px;
  background: linear-gradient(145deg, var(--c1, #F5E6DE), var(--c2, #E8C4B8));
}
.sc-body {
  background: #fff;
  padding: 12px 14px 14px;
}
.sc-lines { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.scl { height: 7px; border-radius: 4px; background: var(--c1, #F5E6DE); }
.scl.lg { width: 100%; }
.scl.md { width: 68%; }
.scl.sm { width: 42%; }
.sc-price-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  align-items: center;
}
.sc-price {
  height: 20px;
  width: 72px;
  border-radius: 4px;
  background: var(--c2, #E8C4B8);
}
.sc-badge {
  height: 20px;
  width: 56px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--c1), var(--c2));
}
.sc-btn {
  height: 30px;
  border-radius: 6px;
  background: var(--c3, #8B2635);
}
.store-footer {
  background: #fff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F0EEE9;
}
.sf-brand {
  font-family: 'NeueHaasDisplayRoman', sans-serif;
  font-weight: normal;
  font-size: 15px;
  letter-spacing: -0.015em;
  color: var(--lc-ink);
  margin: 0 0 2px;
}
.sf-niche {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lc-muted);
}
.sf-lift { text-align: right; }
.sf-num {
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--lc-heat);
  display: block;
}
.sf-lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lc-muted);
}


/* =========================================================
   COMPARE — YOU vs THEM  (Scrollytelling)
   ========================================================= */
.compare-section {
  background: var(--lc-stone);
  padding-top: 0;
}

.compare-section > .container > .section-intro {
  padding-top: clamp(48px, 7vw, 80px);
  margin-bottom: clamp(32px, 4vw, 48px);
}

/* Layout grid */
.compare-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.compare-left { min-width: 0; }

/* Compare points column */
.compare-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Mobile: normal flow — point then image stacked */
.compare-scroller {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #e1e1e19c;
  border-radius: 12px;
  padding: 10px;
}

/* Mobile inline image (shown only on mobile) */
.cmp-img-inline .img-placeholder {
  aspect-ratio: 4/3;
  /* background: var(--lc-border); */
  background: #fff;
  border-radius: 12px;
}

/* Card — no sticky on mobile */
.compare-point {
  width: 100%;
  background: var(--lc-white);
  border: 1px solid var(--lc-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/* Desktop overrides */
@media (min-width: 1024px) {
  .compare-section .container {
    max-width: 95%;
    padding: 0;
  }

  .compare-layout {
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: start;
  }

  .compare-points {
    gap: 0;
  }

  .compare-points::after {
    content: '';
    display: block;
    height: calc(100vh - 80px);
    flex-shrink: 0;
  }

  /*
   * display:contents collapses each scroller so compare-point elements
   * become direct flex children of compare-points (the shared parent).
   * Sticky context is now the full left column, not each 320px scroller slice —
   * so cards accumulate at top:80px and never unstick early.
   */
  .compare-scroller {
    display: contents;
  }

  /* Hide mobile images on desktop */
  .cmp-img-inline {
    display: none;
  }

  /* Stacked sticky card — all same top, higher idx slides over lower.
   * margin-bottom is the scroll window: user scrolls ~240px per card. */
  .compare-point {
    position: sticky;
    top: 80px;
    z-index: calc(var(--idx, 0) + 1);
    margin-bottom: 40px;
    opacity: 0.35; /* JS overrides inline — base for before first checkActive */
  }
}

/* You row */
.you-row {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--lc-border);
}

/* Them row */
.them-row {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.you-row p, .them-row p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--lc-ink);
  margin: 0;
}

/* Right: sticky image panel */
.compare-right { display: none; }
@media (min-width: 1024px) {
  .compare-right {
    display: block;
    align-self: stretch; /* override parent grid's align-items:start so .compare-img-wrap has full height to stick within */
  }
}

/* Image stack (CSS grid overlap) */
.compare-img-wrap {
  display: grid;
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.cmp-img {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(.22,1,.36,1);
}
.cmp-img.active {
  opacity: 1;
  pointer-events: auto;
}

/* Image placeholder (until real images are added) */
.img-placeholder {
  aspect-ratio: 4/3;
  /* background: var(--lc-border); */
  background: #fff;
  border-radius: 16px;
}

/* Mock pair */
.mock-pair {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: flex-start;
}

/* Individual phone mockup */
.mock {
  flex: 1;
  max-width: 148px;
  background: var(--lc-white);
  border-radius: 16px;
  border: 1.5px solid var(--lc-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
/* Smaller on mobile strip */
.compare-mobile-strip .mock {
  max-width: 116px;
  border-radius: 12px;
}

.mock-lbl {
  font-family: var(--lc-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px 5px;
  border-bottom: 1px solid var(--lc-border);
}
.you-lbl { color: var(--lc-error); background: var(--lc-error-tint); }
.them-lbl { color: var(--lc-success); background: var(--lc-success-tint); }

.mock-body {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
  position: relative;
  overflow: hidden;
}
.compare-mobile-strip .mock-body {
  padding: 8px 8px 10px;
  gap: 5px;
}

/* Mockup UI components */
.mck-img {
  height: 64px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lc-sand), var(--lc-rose));
  flex-shrink: 0;
}
.mck-img.them-img {
  background: linear-gradient(135deg, #C4E0D0, #8BC4A8);
}
.mck-img.sm-img { height: 44px; }
.compare-mobile-strip .mck-img { height: 48px; }
.compare-mobile-strip .mck-img.sm-img { height: 34px; }

.mck-row {
  display: flex;
  align-items: center;
  gap: 5px;
}
.mck-stars { font-size: 11px; color: #F59E0B; letter-spacing: -1px; }
.mck-stars.dim { color: #D1D5DB; }
.compare-mobile-strip .mck-stars { font-size: 9px; }
.mck-cnt { font-family: var(--lc-mono); font-size: 9px; color: var(--lc-muted); }
.mck-cnt.them-cnt { color: var(--lc-success); }

.mck-photos {
  display: flex;
  gap: 3px;
}
.mck-photos i {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--c, #eee);
  flex-shrink: 0;
}
.compare-mobile-strip .mck-photos i { width: 18px; height: 18px; }

.mck-filters {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.mck-filter {
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--lc-heat-tint);
  color: var(--lc-heat);
  white-space: nowrap;
}

.mck-bars { display: flex; flex-direction: column; gap: 4px; }
.mck-bars.ghost .mck-b { background: rgba(0,0,0,0.06); }
.mck-b {
  height: 7px;
  border-radius: 4px;
  background: var(--lc-border);
}
.mck-b.w80 { width: 80%; }
.mck-b.w65 { width: 65%; }
.mck-b.w55 { width: 55%; }
.mck-b.w50 { width: 50%; }
.mck-b.w40 { width: 40%; }

.mck-cta {
  margin-top: 2px;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
}
.compare-mobile-strip .mck-cta { padding: 5px 6px; font-size: 8px; }
.you-cta { background: var(--lc-border); color: var(--lc-slate); }
.them-cta { background: var(--lc-heat); color: #fff; }

/* Qty row (bundles) */
.mck-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.mck-qty-label { font-size: 9px; color: var(--lc-muted); }
.mck-qty-box {
  font-size: 9px;
  padding: 3px 8px;
  border: 1px solid var(--lc-border);
  border-radius: 4px;
  color: var(--lc-ink);
}
.mck-price {
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-size: 18px;
  color: var(--lc-ink);
  letter-spacing: -0.02em;
  font-weight: normal;
}
.compare-mobile-strip .mck-price { font-size: 14px; }

/* Bundle options */
.mck-bundle {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mck-bopt {
  font-size: 8px;
  padding: 4px 6px;
  border-radius: 5px;
  border: 1px solid var(--lc-border);
  color: var(--lc-muted);
  display: flex;
  justify-content: space-between;
}
.mck-bopt.active {
  border-color: var(--lc-heat);
  color: var(--lc-heat);
  background: var(--lc-heat-tint);
}
.mck-bopt span { opacity: 0.8; }

/* Subscribe row */
.mck-sub-row {
  display: flex;
  align-items: center;
  gap: 5px;
}
.mck-sub-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--lc-success);
  flex-shrink: 0;
}
.mck-sub-txt { font-size: 8px; color: var(--lc-success); }

/* Speed screen */
.loading-body { background: #F9F9F9; }
.mck-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--lc-border);
  border-top-color: var(--lc-muted);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 8px auto 4px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.mck-spd-tag {
  font-family: var(--lc-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 999px;
  text-align: center;
  align-self: center;
}
.bad-spd { background: var(--lc-error-tint); color: var(--lc-error); }
.good-spd { background: var(--lc-success-tint); color: var(--lc-success); }

/* Sticky ATC screen */
.mck-scrolled {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.mck-no-atc {
  padding: 5px 6px;
  border-top: 1px dashed var(--lc-border);
  font-family: var(--lc-mono);
  font-size: 8px;
  color: var(--lc-error);
  text-align: center;
  opacity: 0.6;
}
.mck-sticky-bar {
  background: var(--lc-ink);
  color: var(--lc-offwhite);
  padding: 6px 8px;
  font-size: 8px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

/* Trust signals screen */
.mck-trust-empty {
  font-family: var(--lc-mono);
  font-size: 8px;
  color: var(--lc-error);
  opacity: 0.5;
  text-align: center;
  padding: 4px 0;
}
.mck-trust-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mck-trust-item {
  font-size: 8px;
  color: var(--lc-success);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* Tags & pills */
.col-tag {
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.col-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.you-tag { color: var(--lc-error); }
.them-tag { color: var(--lc-success); }
.stat-pill {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.bad-pill  { background: var(--lc-error-tint); color: #7F1D1D; }
.good-pill { background: var(--lc-success-tint); color: #14532D; }


/* =========================================================
   APPROACH — PDP anatomy + page sections
   ========================================================= */
.approach-section {
  background: var(--lc-offwhite);
}

.approach-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .approach-block {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .approach-block.reversed > .approach-visual { order: 2; }
  .approach-block.reversed > .approach-text   { order: 1; }
}

/* ---- Phone stage ---- */
.phone-stage {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-frame {
  width: 220px;
  height: 460px;
  background: #1A1208;
  border-radius: 32px;
  padding: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.phone-screen {
  background: var(--lc-white);
  border-radius: 24px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 24px;
}

.ps-imgrow { display: flex; gap: 4px; }
.ps-imgrow span {
  flex: 1; height: 30px;
  background: var(--lc-border);
  border-radius: 4px;
}
.ps-bigimg {
  height: 108px;
  background: linear-gradient(135deg, #E8C4B8 0%, #FFD580 100%);
  border-radius: 6px;
}
.ps-title { height: 9px; width: 65%; background: var(--lc-ink); border-radius: 2px; }
.ps-line  { height: 6px; background: var(--lc-border); border-radius: 2px; }
.ps-line.w70 { width: 70%; }
.ps-line.w50 { width: 50%; }
.ps-bundles { display: flex; gap: 4px; }
.ps-bundles span {
  flex: 1; height: 32px;
  background: var(--lc-stone);
  border: 1px solid var(--lc-border);
  border-radius: 6px;
}
.ps-bundles .active {
  background: var(--lc-success-tint);
  border-color: var(--lc-success);
}
.ps-cta {
  height: 32px;
  background: var(--lc-heat);
  border-radius: 8px;
  margin-top: auto;
}

/* ---- Callouts ---- */
.callout {
  position: absolute;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  background: var(--lc-white);
  border: 1px solid var(--lc-border);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--lc-ink);
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  z-index: 1;
}
@media (min-width: 1024px) {
  .callout { display: inline-flex; }
}
.callout-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--lc-heat);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.callout::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px;
  border-top: 1px dashed var(--lc-border-strong);
}
.callout.c-left::after  { left: 100%; }
.callout.c-right::after { right: 100%; }

/* Positions */
.callout.c-1 { top: 6%;  left: 4%;  }
.callout.c-2 { top: 26%; left: 0%;  }
.callout.c-3 { top: 52%; left: 4%;  }
.callout.c-4 { top: 76%; left: 8%;  }
.callout.c-5 { top: 12%; right: 4%; }
.callout.c-6 { top: 40%; right: 0%; }
.callout.c-7 { top: 68%; right: 4%; }

/* ---- Red banner ---- */
.approach-banner {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lc-heat);
  color: #fff;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: var(--lc-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 12px 28px rgba(255,77,31,0.32);
}

/* ---- Approach text side ---- */
.approach-text .eyebrow { margin-bottom: 14px; }
.approach-text h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  margin: 0 0 18px;
}
.approach-text > p {
  font-size: 16px;
  line-height: 1.62;
  color: var(--lc-slate);
  margin: 0 0 28px;
  max-width: 52ch;
}

/* Mini cards under heading */
.approach-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .approach-cards { grid-template-columns: 1fr 1fr; gap: 16px; }
}
.approach-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-border);
  border-radius: 12px;
  padding: 18px 20px 20px;
}
.ac-icon {
  display: inline-flex;
  width: 30px; height: 30px;
  align-items: center;
  justify-content: center;
  background: var(--lc-heat-tint);
  color: var(--lc-heat);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.approach-card h4 {
  font-size: 15px;
  font-family: 'NeueHaasDisplayMediu', var(--lc-display), sans-serif;
  margin: 0 0 6px;
  line-height: 1.2;
}
.approach-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--lc-slate);
  margin: 0;
}

/* ---- Approach feature list (block 2) ---- */
.approach-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* gap: 22px; */
  gap: 12px;
}
.approach-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--lc-white);
  border: 1px solid var(--lc-border);
  border-radius: 12px;
  padding: 18px 20px 20px;
}
.ap-icon {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--lc-heat-tint);
  color: var(--lc-heat);
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
}
.approach-list h4 {
  font-size: 16px;
  font-family: 'NeueHaasDisplayMediu', var(--lc-display), sans-serif;
  margin: 0 0 4px;
  line-height: 1.25;
}
.approach-list p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--lc-slate);
  margin: 0;
}

/* ---- PDP mockup grid (block 2 right side) ---- */
.pdp-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: flex-start;
}
.pdp-mockup {
  background: var(--lc-border);
  /* border: 1px solid var(--lc-border); */
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  overflow: hidden;
}
.pdp-mockup.pdp-1 { height: 410px; }
.pdp-mockup.pdp-2 { height: 435px; }
.pdp-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
}
.pdp-img-bottom {
  object-position: bottom;
}
.pdp-mockup.pdp-2 {
  margin-top: clamp(20px, 4vw, 48px);
}
@media (min-width: 1024px) {
  .pdp-mockup.pdp-1,
  .pdp-mockup.pdp-2 { height: 600px; }
}
@media (min-width: 1920px) {
  .pdp-mockup.pdp-1,
  .pdp-mockup.pdp-2 { height: 660px; }
}


/* =========================================================
   AUDIT SCORE CARD
   ========================================================= */
.audit-card {
  background: var(--lc-burnt);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}

.audit-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.audit-card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lc-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.5);
}
.audit-card-icon {
  color: var(--lc-heat);
  font-size: 14px;
}

/* Score row */
.audit-scores {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 32px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 16px;
}
.audit-score-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.audit-score-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.audit-score-num {
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: normal;
}
.audit-score-denom {
  font-family: var(--lc-mono);
  font-size: 14px;
  color: rgba(250,250,247,0.35);
  letter-spacing: 0;
}
.bad-num  { color: var(--lc-error); }
.good-num { color: var(--lc-success); }
.audit-store-name {
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.45);
}
.audit-score-tag {
  font-family: var(--lc-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}
.fail-tag  { background: rgba(220,38,38,0.18); color: #F87171; border: 1px solid rgba(220,38,38,0.3); }
.elite-tag { background: rgba(22,163,74,0.18);  color: #4ADE80; border: 1px solid rgba(22,163,74,0.3); }
.audit-vs {
  font-family: var(--lc-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(250,250,247,0.2);
  text-transform: uppercase;
}

/* Metric rows */
.audit-metrics {
  padding: 8px 24px 16px;
}
.audit-metrics-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-family: var(--lc-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.25);
  margin-bottom: 4px;
}
.audit-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.audit-metric:last-child { border-bottom: 0; }
.audit-metric-name {
  font-size: 13px;
  color: rgba(250,250,247,0.75);
  white-space: nowrap;
  flex-shrink: 0;
}
.audit-metric-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}
.audit-grade {
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: -0.01em;
  min-width: 20px;
  text-align: center;
}
.bad-grade  { color: #F87171; }
.good-grade { color: #4ADE80; }
.audit-arrow {
  font-size: 11px;
  color: rgba(250,250,247,0.2);
  flex-shrink: 0;
}
.audit-bar-track {
  flex: 1;
  max-width: 90px;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.audit-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lc-heat), #FF8B6F);
  transition: width 1s cubic-bezier(.22,1,.36,1);
}
.audit-card.bars-animate .audit-bar-fill {
  width: var(--pct);
}

/* Footer row */
.audit-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255,77,31,0.08);
  border-top: 1px solid rgba(255,77,31,0.18);
}
.audit-footer-label {
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.45);
}
.audit-footer-val {
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-size: 22px;
  font-weight: normal;
  letter-spacing: -0.02em;
  color: var(--lc-heat);
}
.audit-footer-period {
  font-family: var(--lc-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(250,250,247,0.35);
}


/* =========================================================
   CALCULATOR
   ========================================================= */
.calc-section {
  background: var(--lc-burnt);
  color: var(--lc-offwhite);
}
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .calc-wrap { grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
}
.calc-intro h2 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--lc-offwhite);
  margin-bottom: 16px;
  line-height: 1.1;
}
.calc-intro p { font-size: 16px; color: rgba(250,250,247,0.65); max-width: 42ch; }

.calc-widget {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px);
}
.calc-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.calc-row label {
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-row label .cv {
  font-family: var(--lc-body);
  font-weight: 700;
  color: var(--lc-offwhite);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}
.calc-row input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  outline: none;
}
.calc-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lc-heat);
  cursor: pointer;
  border: 3px solid var(--lc-burnt);
  box-shadow: 0 2px 8px rgba(255,77,31,0.5);
}
.calc-row input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lc-heat);
  cursor: pointer;
  border: 3px solid var(--lc-burnt);
}
.calc-output {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-output-label {
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.45);
}
.calc-big-num {
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-weight: normal;
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--lc-heat);
}
.calc-breakdown {
  font-size: 13px;
  color: rgba(250,250,247,0.55);
  line-height: 1.5;
}
.calc-breakdown strong { color: var(--lc-offwhite); font-weight: 600; }

/* ---- Calculator modal ---- */
.calc-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 280ms ease;
}
.calc-modal.open {
  pointer-events: all;
  opacity: 1;
}
.calc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 2, 0.82);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.calc-modal-box {
  position: relative;
  background: #1a1208;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(24px) scale(0.97);
  transition: transform 280ms cubic-bezier(0.22,1,0.36,1);
}
.calc-modal-box::-webkit-scrollbar { width: 4px; }
.calc-modal-box::-webkit-scrollbar-track { background: transparent; }
.calc-modal-box::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 2px; }
.calc-modal-box::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.32); }
.calc-modal.open .calc-modal-box {
  transform: translateY(0) scale(1);
}
.calc-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--lc-offwhite);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms ease;
  z-index: 1;
}
.calc-modal-close:hover { background: rgba(255,255,255,0.12); }
.calc-modal-inner {
  padding: clamp(32px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--lc-offwhite);
}
.calc-modal-intro h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 8px 0 10px;
}
.calc-modal-intro p {
  font-size: 15px;
  color: rgba(250,250,247,0.6);
  line-height: 1.6;
}


/* =========================================================
   PRICING
   ========================================================= */
.pricing-section {
  background: var(--lc-offwhite);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.price-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.price-card-featured {
  background: var(--lc-burnt);
  border-color: var(--lc-burnt);
  color: var(--lc-offwhite);
}
.price-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--lc-heat);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-tier {
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lc-heat);
  font-weight: 700;
}
.price-card h3 {
  font-size: 22px;
  line-height: 1.2;
  color: var(--lc-ink);
}
.price-card-featured h3 { color: var(--lc-offwhite); }
.price-amount {
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-weight: normal;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--lc-heat);
}
.price-per {
  font-family: var(--lc-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--lc-muted);
  margin-left: 4px;
}
.price-card-featured .price-per { color: rgba(250,250,247,0.45); }
.price-desc { font-size: 14px; line-height: 1.55; color: var(--lc-slate); margin: 0; }
.price-card-featured .price-desc { color: rgba(250,250,247,0.65); }

.price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--lc-border);
  padding-top: 20px;
  flex: 1;
}
.price-card-featured .price-features { border-top-color: rgba(255,255,255,0.1); }
.price-features li {
  font-size: 14px;
  display: flex;
  gap: 10px;
  line-height: 1.45;
  color: var(--lc-ink);
}
.price-card-featured .price-features li { color: rgba(250,250,247,0.85); }
.price-features li::before {
  content: '+';
  color: var(--lc-heat);
  font-weight: 800;
  flex-shrink: 0;
}


/* =========================================================
   FAQ
   ========================================================= */
.faq-section {
  /* background: var(--lc-stone); */
  background: var(--lc-offwhite);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 100px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-intro {
    position: static;
  }
}
.faq-item {
  border-top: 1px solid var(--lc-border);
}
.faq-item:last-child { border-bottom: 1px solid var(--lc-border); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--lc-body);
  font-weight: 600;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  color: var(--lc-ink);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.faq-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lc-heat-tint);
  color: var(--lc-heat);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 240ms cubic-bezier(.22,1,.36,1), background 200ms;
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
  background: var(--lc-heat);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 340ms cubic-bezier(.22,1,.36,1);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--lc-slate);
}


/* =========================================================
   FINAL CTA
   ========================================================= */
.cta-section {
  background: #0e0704;
  color: #fff;
  padding: clamp(80px, 10vw, 128px) 0;
  position: relative;
  overflow: hidden;
}
.site-header + .cta-section {
  padding-top: clamp(120px, 14vw, 150px);
}
@media (max-width: 767px) {
  .site-header + .cta-section {
    padding-top: 130px;
  }
}

/* Orange light from above */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 70% at 50% -10%, rgba(255,100,30,0.55) 0%, rgba(200,55,10,0.18) 50%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

/* Line grid overlay — fades out downward */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 65%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  opacity: .7;
}
.cta-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.cta-banner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
.cta-banner-h {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .cta-banner-h { width: 70%; }
}
@media (min-width: 1024px) {
  .cta-wrap { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
}
.cta-left h2 {
  font-size: clamp(52px, 7vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #fff;
}
.cta-ink { color: var(--lc-heat); }
.cta-left p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  max-width: 42ch;
  margin-bottom: 28px;
}
.cta-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.cta-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}
.check-icon {
  width: 22px;
  height: 22px;
  background: var(--lc-burnt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--lc-heat);
  flex-shrink: 0;
}

.audit-form {
  background: var(--lc-burnt);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 32px 64px rgba(26,18,8,0.35);
  position: relative;
}
.form-inner { display: flex; flex-direction: column; gap: 16px; }
.form-header h3 {
  font-size: 22px;
  color: var(--lc-offwhite);
  margin-bottom: 4px;
}
.form-header p {
  font-size: 13px;
  color: rgba(250,250,247,0.55);
  margin: 0;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 480px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
.check-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.pill {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
}
.pill input[type="checkbox"] { display: none; }
.pill span {
  padding: 7px 13px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
  font-family: 'NeueHaasDisplayRoman', sans-serif;
  text-transform: capitalize;
  color: rgba(250,250,247,0.7);
  transition: background 180ms, border-color 180ms, color 180ms;
  user-select: none;
}
.pill input:checked + span {
  background: var(--lc-heat);
  border-color: var(--lc-heat);
  color: #fff;
}
.pill:hover span {
  border-color: rgba(255,255,255,0.35);
  color: var(--lc-offwhite);
}
.field label {
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.5);
  font-weight: 500;
}
.audit-form input,
.audit-form select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--lc-offwhite);
  font-family: var(--lc-body);
  font-size: 15px;
  outline: none;
  transition: border-color 120ms, background 120ms;
  -webkit-appearance: none;
  appearance: none;
}
.audit-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(250,250,247,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.audit-form select option { background: var(--lc-burnt); color: var(--lc-offwhite); }
.audit-form input::placeholder { color: rgba(250,250,247,0.35); }
.audit-form input:focus,
.audit-form select:focus {
  border-color: var(--lc-heat);
  background: rgba(255,255,255,0.09);
}
.form-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--lc-heat);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-family: var(--lc-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 120ms, transform 120ms, box-shadow 120ms;
}
.form-submit:hover {
  background: var(--lc-heat-hover);
  box-shadow: 0 8px 24px rgba(255,77,31,0.55);
}
.form-submit:active { transform: translateY(1px); }
.form-fine {
  font-size: 12px;
  color: rgba(250,250,247,0.45);
  text-align: center;
  margin: 0;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}
.audit-form.submitted .form-inner { display: none; }
.audit-form.submitted .form-success { display: block; }
.form-success-gif {
  display: block;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 20px;
}
.form-success h4 {
  font-family: 'NeueHaasDisplayMediu', sans-serif;
  font-weight: normal;
  font-size: 28px;
  color: var(--lc-heat);
  margin: 0 0 8px;
}
.form-success p { font-size: 14px; color: rgba(250,250,247,0.7); margin: 0; }


/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #0e0704;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(250,250,247,0.65);
  padding: clamp(56px, 8vw, 96px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand {
  grid-column: 1 / -1;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
  .footer-brand { grid-column: auto; }
}
.footer-tagline {
  font-family: 'NeueHaasDisplayRoman', sans-serif;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--lc-offwhite);
  margin: 0 0 12px;
  line-height: 1.2;
}
.footer-sub {
  font-size: 14px;
  color: rgba(250,250,247,0.55);
  line-height: 1.6;
  margin: 0;
}
.footer-col h4 {
  font-family: var(--lc-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lc-heat);
  margin: 0 0 16px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: rgba(250,250,247,0.6);
  font-size: 14px;
  text-decoration: none;
  padding: 4px 0;
  transition: color 120ms;
}
.footer-col a:hover { color: var(--lc-offwhite); }
.footer-wordmark {
  padding: 40px 0 0;
  /* margin: 0 calc(-1 * clamp(20px, 4vw, 48px)); */
  overflow: hidden;
}
.footer-logo-big {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: rgba(250,250,247,0.4);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}


/* =========================================================
   SCROLL ANIMATION STATES
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms cubic-bezier(.22,1,.36,1), transform 700ms cubic-bezier(.22,1,.36,1);
}

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
}
[data-reveal-stagger].in-view > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms cubic-bezier(.22,1,.36,1), transform 600ms cubic-bezier(.22,1,.36,1);
}
[data-reveal-stagger].in-view > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].in-view > *:nth-child(2) { transition-delay: 80ms; }
[data-reveal-stagger].in-view > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal-stagger].in-view > *:nth-child(4) { transition-delay: 240ms; }
[data-reveal-stagger].in-view > *:nth-child(5) { transition-delay: 320ms; }
[data-reveal-stagger].in-view > *:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .marquee-track, .stores-marquee { animation: none !important; }
}
