/* ================================================================
   Turnout — Landing Page
   Design system: Instrument Serif + Manrope
   Palette: #171311 / #f6efe8 / #e6d9cd / #c8102e / #941226
   ================================================================ */

/* ─── Custom Properties ──────────────────────────── */
:root {
  --dark: #171311;
  --paper: #f6efe8;
  --sand: #e6d9cd;
  --red: #c8102e;
  --red-deep: #941226;
  --white: #fff;
  --ink: #171311;
  --muted: rgba(23, 19, 17, 0.55);
  --muted-light: rgba(255, 255, 255, 0.55);
  --line: rgba(23, 19, 17, 0.1);
  --line-light: rgba(255, 255, 255, 0.1);

  --radius-module: 2.5rem;
  --radius-card: 1.25rem;
  --radius-pill: 999px;
  --radius-btn: 999px;

  --shadow-card: 0 4px 24px rgba(23, 19, 17, 0.06), 0 1px 4px rgba(23, 19, 17, 0.04);
  --shadow-elevated: 0 12px 48px rgba(23, 19, 17, 0.1), 0 2px 8px rgba(23, 19, 17, 0.06);
  --shadow-deep: 0 24px 80px rgba(23, 19, 17, 0.14);

  --glass-bg: rgba(255, 252, 248, 0.6);
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-blur: blur(20px);

  --page-gutter: 24px;
  --max-width: 1200px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --green: #1a7a3a;
  --green-bg: rgba(26, 122, 58, 0.08);

  /* Spacing scale for consistent vertical rhythm */
  --section-padding-sm: clamp(48px, 6vw, 72px);
  --section-padding-md: clamp(64px, 8vw, 96px);
  --section-padding-lg: clamp(80px, 10vw, 120px);

  interpolate-size: allow-keywords;
}

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

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

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

button, a, summary, select {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

::selection {
  background: rgba(200, 16, 46, 0.15);
  color: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--white);
  font-weight: 600;
  transition: top 200ms var(--ease-out);
}
.skip-link:focus { top: 16px; }

/* ─── Typography ─────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

h1 em, h2 em, h3 em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
}

.section-kicker {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-btn);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 200ms var(--ease-spring), box-shadow 200ms var(--ease-out), background 200ms var(--ease-out);
  white-space: nowrap;
}

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

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

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(200, 16, 46, 0.4), 0 1px 3px rgba(200, 16, 46, 0.25);
}

.btn-red:hover {
  background: var(--red-deep);
  box-shadow: 0 8px 36px rgba(200, 16, 46, 0.5), 0 4px 12px rgba(200, 16, 46, 0.35);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  font-size: 0.875rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.btn-sm {
  padding: 10px 24px;
  font-size: 0.8125rem;
}

.trust-badge--urgent {
  color: var(--red);
  font-weight: 700;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.nav-bar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 48px);
  max-width: 860px;
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem 0.625rem 0.625rem 1.25rem;
  border-radius: var(--radius-pill);
  background: rgba(23, 19, 17, 0.65);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: background 300ms var(--ease-out), border-color 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.nav-scrolled .nav-inner {
  background: rgba(246, 239, 232, 0.85);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 24px rgba(23, 19, 17, 0.06);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.nav-wordmark {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.03em;
  transition: color 300ms var(--ease-out);
}

.nav-scrolled .nav-wordmark {
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color 200ms var(--ease-out), background 200ms var(--ease-out);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-scrolled .nav-links a {
  color: var(--muted);
}

.nav-scrolled .nav-links a:hover {
  color: var(--ink);
  background: rgba(23, 19, 17, 0.06);
}

.nav-cta {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  background: var(--red);
  color: var(--white);
  transition: transform 200ms var(--ease-spring), background 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--red-deep);
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.35);
}

/* ================================================================
   1. HERO
   ================================================================ */
.hero {
  padding: 12px;
  padding-top: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-module {
  position: relative;
  flex: 1;
  border-radius: 0 0 var(--radius-module) var(--radius-module);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(23, 19, 17, 0.78) 0%,
      rgba(23, 19, 17, 0.58) 20%,
      rgba(23, 19, 17, 0.48) 40%,
      rgba(23, 19, 17, 0.55) 65%,
      rgba(23, 19, 17, 0.82) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 120px var(--page-gutter) 80px;
}

.hero-kicker {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e84255;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin: 0 auto 2.75rem;
  line-height: 1.6;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-actions .btn {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.hero-pill {
  padding: 0.375rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ================================================================
   2. ESTIMATE CALCULATOR
   ================================================================ */
.estimate {
  position: relative;
  padding: var(--section-padding-md) var(--page-gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}

.estimate-inner {
  text-align: center;
}

.estimate-header {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  text-align: center;
}

.estimate-select-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}

.estimate-start-label {
  position: absolute;
  top: -22px;
  left: 1.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  animation: studioLabelBounce 2s ease-in-out infinite;
}

@keyframes studioLabelBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.estimate-select {
  appearance: none;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: var(--radius-pill);
  padding: 0.75rem 2.5rem 0.75rem 1.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23c8102e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  box-shadow: var(--shadow-card);
  transition: border-color 200ms, box-shadow 200ms, transform 200ms;
  animation: studioSelectPulse 2.5s ease-in-out infinite;
}

@keyframes studioSelectPulse {
  0%, 100% { box-shadow: var(--shadow-card), 0 0 0 0 rgba(200, 16, 46, 0); }
  50% { box-shadow: var(--shadow-card), 0 0 0 6px rgba(200, 16, 46, 0.12), 0 0 20px rgba(200, 16, 46, 0.08); }
}

.estimate-select:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-card), 0 0 0 3px rgba(200, 16, 46, 0.06);
  transform: scale(1.02);
}

/* Stop pulsing once a studio is selected */
.estimate-select.has-selection {
  animation: none;
  border-color: var(--red);
}

.estimate-select:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.custom-studio-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.custom-studio-form[hidden] {
  display: none;
}
.custom-input {
  flex: 1;
  min-width: 150px;
  padding: 0.6rem 1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  border: 1px solid var(--sand);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 200ms;
}
.custom-input:focus {
  border-color: var(--red);
}

.estimate-context {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.estimate-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.estimate-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(23, 19, 17, 0.04);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 300ms var(--ease-out);
}

.estimate-card-highlight {
  grid-column: 1 / -1; /* Full width below the 3 cards */
}

.estimate-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(200, 16, 46, 0.08);
}

.estimate-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.estimate-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.125rem;
}

.estimate-num {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.estimate-unit {
  font-size: 1.125rem;
  color: var(--muted);
  font-weight: 500;
}

/* Calculator inputs */
.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  max-width: 760px;
  margin: 2.5rem auto 3rem;
  padding: 2rem 2.5rem;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(23, 19, 17, 0.04);
}
.calc-input-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.calc-slider-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.calc-slider-row input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--sand);
  outline: none;
  cursor: pointer;
}
.calc-slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(200, 16, 46, 0.3);
  cursor: pointer;
  transition: transform 150ms var(--ease-out);
}
.calc-slider-row input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.calc-slider-row input[type="range"]:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.2), 0 2px 8px rgba(200, 16, 46, 0.3);
  transform: scale(1.1);
}
.calc-slider-row input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(200, 16, 46, 0.3);
  cursor: pointer;
}
.calc-slider-row output {
  min-width: 3.5rem;
  text-align: right;
  font-family: 'Instrument Serif', serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* Estimate 50/50 layout */
.estimate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 1200px;
  margin: 2rem auto 0;
}
.estimate-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0; /* Prevent grid blowout */
  overflow: visible;
}
.estimate-left .estimate-select-wrap {
  display: flex;
  margin: 0;
}
.estimate-left .estimate-select {
  width: 100%;
}
.estimate-left .calc-inputs {
  margin: 0;
  max-width: none;
  padding: 1.25rem 1.5rem;
  gap: 1rem 2rem;
}
.estimate-right {
  min-width: 0;
  position: sticky;
  top: 100px;
  height: calc(100vh - 200px);
  max-height: 800px;
  display: flex;
  flex-direction: column;
}
.estimate-right .studio-map {
  height: 100%;
  flex: 1;
}
.studio-map {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(23, 19, 17, 0.06);
  background: #e8e0d6;
}
.studio-map .leaflet-tile-pane {
  filter: saturate(0.3) brightness(1.05);
}
.map-caption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
}

.estimate-card-accent {
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.06), rgba(200, 16, 46, 0.02));
  border-color: rgba(200, 16, 46, 0.1);
}
.estimate-card-highlight {
  background: var(--dark);
  border-color: transparent;
}
.estimate-card-highlight .estimate-label {
  color: var(--muted-light);
}
.estimate-card-highlight .estimate-num {
  font-size: clamp(2.8rem, 5vw, 3.8rem) !important;
  color: var(--white);
}
.estimate-card-highlight .estimate-unit {
  color: var(--muted-light);
}

/* Card pulse on value change */
@keyframes cardPulse {
  0%   { box-shadow: var(--shadow-card); }
  50%  { box-shadow: 0 4px 24px rgba(200, 16, 46, 0.12), 0 1px 4px rgba(200, 16, 46, 0.08); }
  100% { box-shadow: var(--shadow-card); }
}
@keyframes cardPulseHighlight {
  0%   { box-shadow: var(--shadow-elevated); }
  50%  { box-shadow: 0 4px 32px rgba(200, 16, 46, 0.18), 0 2px 8px rgba(200, 16, 46, 0.12); }
  100% { box-shadow: var(--shadow-elevated); }
}
.estimate-card.is-updating {
  animation: cardPulse 600ms ease-out;
}
.estimate-card-highlight.is-updating {
  animation: cardPulseHighlight 600ms ease-out;
}

/* Annual savings emphasis when studio selected */
.estimate-card-highlight.is-studio-selected {
  transform: scale(1.02);
  box-shadow: var(--shadow-elevated);
}
.estimate-card-highlight.is-studio-selected:hover {
  transform: scale(1.02) translateY(-4px);
}
.estimate-card-highlight.is-studio-selected .estimate-label::after {
  content: ' \2014 Per year';
  font-weight: 400;
  opacity: 0.7;
}

/* ─── Local Intelligence Card ───────────────────── */
.local-intel {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 0 40px rgba(200, 16, 46, 0.08), var(--shadow-elevated);
  border: 1px solid rgba(200, 16, 46, 0.12);
  text-align: left;
  overflow: hidden;
}

.local-intel[hidden] {
  display: none;
}

.local-intel.is-active {
  animation: intelSlideIn 500ms var(--ease-out) forwards;
}

.local-intel.is-exiting {
  animation: intelSlideOut 300ms ease-in forwards;
}

@keyframes intelSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intelSlideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(8px);
  }
}

.local-intel-kicker {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.875rem;
}

.local-intel-conditions {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.625rem;
  color: var(--white);
}

.local-intel-market {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.625rem;
}

.local-intel-seasonal,
.local-intel-competition {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.375rem;
}

.local-intel-competition {
  margin-bottom: 0;
}

/* ─── Leaflet Popup Styling ────────────────────────── */
.studio-popup .leaflet-popup-content {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 10px 14px;
}

.studio-popup .leaflet-popup-content strong {
  font-size: 0.875rem;
  font-weight: 700;
}

/* ================================================================
   2b. STUDIO CONDITIONS (dynamic section)
   ================================================================ */
.studio-conditions-inline {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem 1rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(23, 19, 17, 0.04);
}

.studio-conditions-inline[hidden] {
  display: none;
}

.studio-conditions-inline.is-active {
  animation: conditionsSlideIn 600ms var(--ease-out) forwards;
}

.studio-conditions-inline.is-exiting {
  animation: conditionsSlideOut 350ms ease-in forwards;
}

.studio-conditions {
  padding: 0 var(--page-gutter) clamp(72px, 8vw, 100px);
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.studio-conditions[hidden] {
  display: none;
}

.studio-conditions.is-active {
  animation: conditionsSlideIn 600ms var(--ease-out) forwards;
}

.studio-conditions.is-exiting {
  animation: conditionsSlideOut 350ms ease-in forwards;
}

@keyframes conditionsSlideIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes conditionsSlideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-16px);
  }
}

.conditions-inner {
  background: var(--white);
  border-radius: var(--radius-module);
  padding: 3rem 3rem 2.5rem;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(23, 19, 17, 0.04);
}

.conditions-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.conditions-header .section-heading {
  margin-bottom: 0.5rem;
}

.conditions-address {
  font-size: 0.9375rem;
  color: var(--muted);
  font-weight: 500;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.conditions-grid-limited {
  display: none;
}

.condition-card {
  background: var(--paper);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 2px 12px rgba(23, 19, 17, 0.04);
  border: 1px solid rgba(23, 19, 17, 0.04);
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out), border-color 250ms var(--ease-out);
}

.condition-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: rgba(200, 16, 46, 0.08);
}

.condition-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.condition-card strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.condition-card p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.conditions-footer {
  text-align: left;
  font-size: 0.7rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

/* ─── Compact conditions variant ─── */
.conditions-inner--compact {
  padding: 2rem 2.5rem 1.5rem;
}

.conditions-header--compact {
  margin-bottom: 1rem;
  text-align: left;
}

.conditions-header--compact .section-kicker {
  font-size: 0.6rem;
  margin-bottom: 0.125rem;
}

.conditions-studio-name {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.125rem;
}

.conditions-explainer {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0.5rem 0 0;
  line-height: 1.45;
}

.conditions-grid--compact {
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.condition-card--compact {
  padding: 0.75rem 0.75rem;
}

.condition-card--compact .condition-icon {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.condition-card--compact strong {
  font-size: 0.75rem;
  margin-bottom: 0.125rem;
}

.condition-card--compact p {
  font-size: 0.65rem;
  line-height: 1.4;
}

.conditions-limited-msg {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9375rem;
  color: var(--muted);
  font-weight: 500;
}


/* ================================================================
   2c. PRODUCT PREVIEW (Dashboard Mockup)
   ================================================================ */
.product-preview {
  padding: var(--section-padding-md) var(--page-gutter);
  overflow: hidden;
}

.product-preview-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  /* Perspective context for the 3D tilt on the frame */
  perspective: 1200px;
}

/* Ambient red glow behind the mockup */
.product-preview-glow {
  position: absolute;
  width: 800px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(200, 16, 46, 0.12) 0%, rgba(200, 16, 46, 0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Browser frame with 3D tilt + deep warm shadow */
.product-preview-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(23, 19, 17, 0.22),
    0 20px 50px rgba(23, 19, 17, 0.14),
    0 8px 20px rgba(23, 19, 17, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotateX(2.5deg);
  transform-origin: center bottom;
  transform-style: preserve-3d;
  transition: transform 600ms var(--ease-out), box-shadow 600ms var(--ease-out);
}

.product-preview-frame:hover {
  transform: rotateX(1deg);
  box-shadow:
    0 48px 120px rgba(23, 19, 17, 0.25),
    0 24px 60px rgba(23, 19, 17, 0.16),
    0 10px 24px rgba(23, 19, 17, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Browser chrome title bar */
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1rem;
  background: #2a2a2a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

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

.dot-close { background: #ff5f57; }
.dot-minimize { background: #febc2e; }
.dot-expand { background: #28c840; }

.browser-tab-bar {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 0.5rem;
}

.browser-tab {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.3rem 0.75rem;
  border-radius: 6px 6px 0 0;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.35);
  cursor: default;
}

.browser-tab-active {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.7);
}

.browser-address {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 0 1 auto;
  width: 280px;
  margin: 0 auto;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.browser-chrome-spacer {
  width: 80px;
  flex-shrink: 0;
}

.browser-lock {
  flex-shrink: 0;
}

.browser-url {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.01em;
}

/* Dashboard layout */
.mock-dashboard {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 520px;
}

/* Sidebar */
.mock-sidebar {
  background: #141210;
  padding: 1.25rem 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding: 0 0.25rem;
}

.mock-brand-name {
  font-family: 'Instrument Serif', serif;
  font-size: 0.9375rem;
  color: #fff;
  letter-spacing: -0.03em;
}

.mock-studio-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.375rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.mock-studio-status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28c840;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(40, 200, 64, 0.4);
}

.mock-studio-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.mock-studio-name {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-studio-connected {
  font-size: 0.5625rem;
  color: rgba(40, 200, 64, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mock-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mock-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.625rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  cursor: default;
  transition: background 180ms ease, color 180ms ease;
  border-left: 2px solid transparent;
}

.mock-nav-item svg {
  flex-shrink: 0;
}

.mock-nav-active {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-weight: 600;
  border-left-color: var(--red);
}

.mock-sidebar-footer {
  margin-top: auto;
}

.mock-sidebar-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0.75rem 0;
}

.mock-sidebar-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem;
}

.mock-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-avatar-name {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* Main content area */
.mock-main {
  background: linear-gradient(180deg, #faf6f1 0%, #fdf9f5 100%);
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.125rem;
}

.mock-topbar-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.125rem;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.mock-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mock-topbar-date {
  font-size: 0.6875rem;
  color: var(--muted);
  font-weight: 500;
}

.mock-topbar-pill {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius-pill);
  background: rgba(23, 19, 17, 0.05);
  color: var(--muted);
}

/* Metric cards */
.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mock-metric-card {
  background: #fff;
  border-radius: 12px;
  padding: 0.875rem 1rem 0.625rem;
  box-shadow: 0 1px 4px rgba(23, 19, 17, 0.05);
  border: 1px solid rgba(23, 19, 17, 0.05);
  transition: transform 200ms ease, box-shadow 200ms ease;
  position: relative;
  overflow: hidden;
}

.mock-metric-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(23, 19, 17, 0.08);
}

.mock-metric-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.375rem;
}

.mock-metric-row {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-bottom: 0.125rem;
}

.mock-metric-value {
  font-family: 'Instrument Serif', serif;
  font-size: 1.375rem;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.mock-metric-change {
  font-family: 'Manrope', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.1rem 0.375rem;
  border-radius: var(--radius-pill);
}

.mock-metric-up {
  color: var(--green);
  background: var(--green-bg);
}

.mock-metric-sub {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.5625rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.mock-sparkline {
  display: block;
  width: 100%;
  height: 22px;
  margin-top: auto;
}

/* Chart card */
.mock-chart-card {
  background: #fff;
  border-radius: 12px;
  padding: 0.875rem 1rem 0.625rem;
  box-shadow: 0 1px 4px rgba(23, 19, 17, 0.05);
  border: 1px solid rgba(23, 19, 17, 0.05);
}

.mock-chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.375rem;
}

.mock-chart-header-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mock-chart-legend {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mock-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.5625rem;
  color: var(--muted);
  font-weight: 500;
}

.mock-legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.mock-legend-red {
  background: #c8102e;
}

.mock-legend-gray {
  background: #d0ccc7;
}

.mock-chart-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
}

.mock-chart-range {
  font-size: 0.5625rem;
  color: var(--muted);
  font-weight: 500;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(23, 19, 17, 0.04);
}

.mock-chart {
  height: 100px;
}

.mock-chart-svg {
  width: 100%;
  height: 100%;
}

/* Action card */
.mock-action-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: 0 1px 4px rgba(23, 19, 17, 0.05);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-left: 3px solid var(--red);
}

.mock-action-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: mock-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(200, 16, 46, 0.35);
}

@keyframes mock-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(200, 16, 46, 0.35); }
  50% { opacity: 0.5; box-shadow: 0 0 4px rgba(200, 16, 46, 0.15); }
}

.mock-action-body {
  flex: 1;
  min-width: 0;
}

.mock-action-label {
  display: block;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 0.2rem;
}

.mock-action-title {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.125rem;
  line-height: 1.3;
}

.mock-action-desc {
  display: block;
  font-size: 0.625rem;
  color: var(--muted);
  line-height: 1.4;
}

.mock-action-desc strong {
  color: var(--green);
  font-weight: 700;
}

.mock-action-badge {
  flex-shrink: 0;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--red);
  color: #fff;
  cursor: default;
  transition: background 150ms ease;
}

/* Second row of info cards */
.mock-row-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mock-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem 0.875rem;
  box-shadow: 0 1px 4px rgba(23, 19, 17, 0.05);
  border: 1px solid rgba(23, 19, 17, 0.05);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.mock-info-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(23, 19, 17, 0.08);
}

.mock-info-label {
  display: block;
  font-size: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.mock-info-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mock-thumb {
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

.mock-info-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.mock-info-title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--ink);
}

.mock-info-meta {
  display: block;
  font-size: 0.5625rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

.mock-info-progress-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.mock-info-progress-bar {
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: rgba(23, 19, 17, 0.06);
  overflow: hidden;
}

.mock-info-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--red), #e84464);
}

.mock-info-pct {
  font-family: 'Instrument Serif', serif;
  font-size: 0.875rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}

.mock-info-insight {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  font-size: 0.5625rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 500;
}

.mock-info-insight svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.mock-info-insight strong {
  color: var(--ink);
  font-weight: 700;
}

/* Live stats ticker in mock dashboard */
.mock-live-stats {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: #1a1714;
  border-radius: 6px;
  padding: 0.3rem 0.625rem;
  margin-bottom: 0.125rem;
}

.mock-live-stat {
  font-size: 0.5625rem;
  color: rgba(255, 252, 248, 0.55);
  white-space: nowrap;
  line-height: 1.3;
}

.mock-live-stat strong {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: rgba(255, 252, 248, 0.88);
  margin-right: 0.125rem;
}

.mock-live-sep {
  font-size: 0.5rem;
  color: rgba(255, 252, 248, 0.25);
}

/* Research finding in mock dashboard */
.mock-research-finding {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.625rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  border: 1px solid rgba(56, 122, 198, 0.12);
  border-left: 3px solid #387ac6;
}

.mock-finding-badge {
  flex-shrink: 0;
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.125rem 0.375rem;
  border-radius: var(--radius-pill);
  background: rgba(56, 122, 198, 0.1);
  color: #2a6cb5;
}

.mock-finding-text {
  font-size: 0.625rem;
  color: var(--ink);
  line-height: 1.4;
  font-weight: 600;
}

/* Metric explainer — subtle description under each metric label */
.mock-metric-explainer {
  display: block;
  font-size: 0.4375rem;
  color: rgba(23, 19, 17, 0.35);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.25rem;
  max-width: 18ch;
}

/* Live detail inline text */
.mock-live-detail {
  color: rgba(255, 252, 248, 0.35);
  font-weight: 500;
}

/* Today's spend strip */
.mock-today-strip {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #fff;
  border-radius: 8px;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(23, 19, 17, 0.06);
  box-shadow: 0 1px 3px rgba(23, 19, 17, 0.04);
}

.mock-today-label {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  flex-shrink: 0;
}

.mock-today-stats {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.mock-today-stat {
  font-size: 0.5625rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.mock-today-stat strong {
  color: var(--ink);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.mock-today-sep {
  font-size: 0.4rem;
  color: rgba(23, 19, 17, 0.2);
}

/* Activity feed card */
.mock-activity-card {
  background: #fff;
  border-radius: 12px;
  padding: 0.625rem 0.875rem 0.5rem;
  box-shadow: 0 1px 4px rgba(23, 19, 17, 0.05);
  border: 1px solid rgba(23, 19, 17, 0.05);
}

.mock-activity-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.375rem;
}

.mock-activity-title {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--ink);
}

.mock-activity-count {
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.1rem 0.375rem;
  border-radius: var(--radius-pill);
  background: rgba(23, 19, 17, 0.04);
}

.mock-activity-feed {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mock-activity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  padding: 0.2rem 0;
}

.mock-activity-time {
  font-size: 0.4375rem;
  font-weight: 600;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 3.5em;
  padding-top: 1px;
}

.mock-activity-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.mock-activity-dot--green { background: #28c840; }
.mock-activity-dot--red { background: #c8102e; }
.mock-activity-dot--blue { background: #387ac6; }
.mock-activity-dot--amber { background: #e09b3d; }

.mock-activity-text {
  font-size: 0.5rem;
  color: var(--ink);
  line-height: 1.4;
  font-weight: 500;
}

/* A/B test status rows */
.mock-ab-status {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mock-ab-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.mock-ab-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-ab-dot--active {
  background: #28c840;
  box-shadow: 0 0 4px rgba(40, 200, 64, 0.4);
}

.mock-ab-dot--queued {
  background: #e09b3d;
}

.mock-ab-dot--done {
  background: #d0ccc7;
}

.mock-ab-text {
  font-size: 0.5625rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
}

/* Subtle meta text */
.mock-info-meta--subtle {
  color: rgba(23, 19, 17, 0.35);
  font-size: 0.5rem;
  margin-top: 1px;
}

/* Bottom row: action + automation side by side */
.mock-bottom-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: stretch;
}

.mock-auto-card {
  min-width: 160px;
}

/* Caption below mockup */
.product-preview-caption {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted);
  font-weight: 500;
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

/* ================================================================
   3. WHY SECTION
   ================================================================ */
.why {
  padding: var(--section-padding-md) var(--page-gutter);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.why-inner {
  position: relative;
}

.why-statement {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
  color: var(--ink);
  text-wrap: balance;
}

.why-statement em {
  color: var(--red);
}

.why-sub {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--muted);
  max-width: 600px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}

/* ================================================================
   3b. PHONE SHOWCASE — 3D CAROUSEL
   ================================================================ */

/* Tall outer container drives the scroll distance */
.showcase-scroll {
  height: 600vh;
  position: relative;
}

/* Sticky inner pins the carousel to the viewport */
.showcase-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showcase-module {
  background: var(--dark);
  box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: clamp(60px, 6vw, 80px) var(--page-gutter) clamp(160px, 15vw, 240px);
}

.showcase-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}

.showcase-title {
  color: var(--white);
}

/* Ambient red glow behind carousel */
.showcase-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(200, 16, 46, 0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.showcase-kicker {
  color: var(--red);
}

.showcase-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ─── Carousel Viewport ─────────────────────────── */
.carousel-viewport {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
  perspective-origin: 50% 45%;
}

.carousel {
  position: relative;
  width: 220px;
  height: 450px;
  transform-style: preserve-3d;
  will-change: transform;
  /* Initial rotation set by JS */
  transform: rotateY(0deg);
}

/* ─── Each 3D Phone in the Carousel ─────────────── */
.phone-3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  --phone-width: 220px;
  --phone-height: 450px;
  --phone-depth: 16px;
  --phone-depth-half: calc(var(--phone-depth) / 2);
  --phone-radius: 36px;
  --phone-cap-inset: 18px;
  --phone-shell-gradient:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 16%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(90deg, #6c6963 0%, #c4c0b8 16%, #f2f0ea 31%, #a09b92 52%, #ece8e0 72%, #77736c 100%);
  --phone-shell-shadow:
    0 12px 24px rgba(0, 0, 0, 0.18),
    0 4px 10px rgba(0, 0, 0, 0.18);
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--angle) * 1deg)) translateZ(420px);
  backface-visibility: visible;
}

.phone-3d::after {
  display: none;
}

/* 3D phone body — preserves 3D for child faces */
.phone-body {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

/* ─── Phone Side Edges (curved titanium shell) ─── */
.phone-side-left {
  position: absolute;
  top: var(--phone-cap-inset);
  left: 50%;
  width: var(--phone-depth);
  height: calc(100% - (var(--phone-cap-inset) * 2));
  margin-left: calc(var(--phone-depth-half) * -1);
  display: block;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.04) 26%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(90deg, #6f6a63 0%, #d1cbc1 48%, #7f7a72 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  transform: translateX(calc(var(--phone-width) / -2)) rotateY(-90deg);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 4;
}

.phone-side-left::before,
.phone-side-left::after,
.phone-side-right::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #6e6962 0%, #e6e0d6 48%, #757068 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

.phone-side-left::before {
  top: 16px;
  width: 2px;
  height: 22px;
  border-radius: 999px;
}

.phone-side-left::after {
  top: 56px;
  width: 2px;
  height: 42px;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 58px 0 0 rgba(195, 189, 180, 0.98);
}

.phone-side-right {
  position: absolute;
  top: var(--phone-cap-inset);
  left: 50%;
  width: var(--phone-depth);
  height: calc(100% - (var(--phone-cap-inset) * 2));
  margin-left: calc(var(--phone-depth-half) * -1);
  display: block;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.04) 26%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(90deg, #77726a 0%, #d6d0c7 48%, #837e76 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  transform: translateX(calc(var(--phone-width) / 2)) rotateY(90deg);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 4;
}

.phone-side-right::before {
  top: 72px;
  width: 2px;
  height: 84px;
  border-radius: 999px;
}

/* ─── Phone Front Face ──────────────────────────── */
.phone-front {
  position: absolute;
  inset: 0;
  border-radius: var(--phone-radius);
  overflow: hidden;
  background: #111215;
  transform: translateZ(var(--phone-depth-half));
  transform-style: preserve-3d;
  backface-visibility: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.phone-front::before,
.phone-front::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.phone-front::before {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 0 32px rgba(255, 255, 255, 0.04);
  z-index: 11;
}

.phone-front::after {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 16%);
  z-index: 2;
}

/* ─── iPhone Frame Overlay (bezel image on top of screen) ── */
.phone-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  object-fit: fill;
}

/* ─── Phone Screen ──────────────────────────────── */
.phone-screen {
  background: #000;
  overflow: hidden;
  position: absolute;
  /* Inset to match the screen area inside the iPhone 15 Pro mockup frame */
  top: 4.3%;
  left: 8.5%;
  right: 8.5%;
  bottom: 4.3%;
  border-radius: 28px;
  z-index: 1;
  box-shadow:
    inset 0 0 0 0.75px rgba(255, 255, 255, 0.05),
    0 0 0 0.5px rgba(0, 0, 0, 0.35);
}

/* Subtle glass reflection on screen — diagonal light streak */
.phone-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 38px;
  background: linear-gradient(
    125deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.06) 38%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0.06) 42%,
    transparent 45%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 50;
}

/* ─── Phone Screen Content (scrollable inner) ──── */
.phone-screen-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.phone-screen-content > .fb-post,
.phone-screen-content > .ig-post {
  height: 100%;
  min-height: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.phone-screen-content--scroll {
  animation: phoneScroll 8s ease-in-out infinite alternate;
}

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

/* Stagger scroll timing per phone */
[data-phone="2"] .phone-screen-content--scroll { animation-delay: -1s; }
[data-phone="4"] .phone-screen-content--scroll { animation-delay: -3s; }
[data-phone="5"] .phone-screen-content--scroll { animation-delay: -5s; }
[data-phone="7"] .phone-screen-content--scroll { animation-delay: -2s; }
[data-phone="9"] .phone-screen-content--scroll { animation-delay: -4s; }

/* ─── Phone Back Face — Real iPhone 15 Pro mockup images ── */
.phone-back {
  position: absolute;
  inset: 0;
  border-radius: var(--phone-radius);
  overflow: hidden;
  background: linear-gradient(145deg, #9c988f 0%, #beb8ae 28%, #a29d94 58%, #8c877f 100%);
  transform: rotateY(180deg) translateZ(var(--phone-depth-half));
  transform-style: preserve-3d;
  backface-visibility: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

/* Back image fills the phone back face */
.phone-back-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

/* Titanium frame edge highlight — subtle border on top of photo */
.phone-back::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--phone-radius);
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
  z-index: 2;
}

/* Titanium anodized shimmer — JS-driven specular highlight via custom properties */
.phone-back::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--phone-radius);
  background:
    /* Moving specular highlight — position driven by --light-x, --light-y custom props (set by JS) */
    radial-gradient(
      ellipse 120px 200px at var(--light-x, 65%) var(--light-y, 25%),
      rgba(255,255,255,0.18) 0%,
      rgba(255,255,255,0.06) 30%,
      transparent 70%
    ),
    /* Secondary soft fill light from opposite side */
    radial-gradient(
      ellipse 160px 240px at calc(100% - var(--light-x, 65%)) calc(100% - var(--light-y, 25%)),
      rgba(255,255,255,0.04) 0%,
      transparent 60%
    ),
    /* Edge vignette for depth */
    radial-gradient(ellipse at 50% 40%, transparent 40%, rgba(0,0,0,0.12) 100%);
  pointer-events: none;
  z-index: 1;
  transition: background 0.15s ease;
}

/* (Lens flare removed — real mockup images used instead of CSS-drawn elements) */

/* ─── Floor Reflection ──────────────────────────── */
.carousel-reflection {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─── ML Insight overlay card ──────────────────── */
.ml-insight {
  position: absolute;
  bottom: 60px;
  right: -40px;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 300px;
  padding: 14px 18px;
  background: rgba(30, 26, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.ml-insight--visible {
  opacity: 1;
  transform: translateY(0);
}

.ml-insight-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 16, 46, 0.15);
  border-radius: 8px;
  color: var(--red);
}

.ml-insight-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.ml-insight-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@media (max-width: 900px) {
  .ml-insight {
    right: 10px;
    bottom: 40px;
    max-width: 240px;
    padding: 10px 14px;
  }
}

@media (max-width: 680px) {
  .ml-insight {
    display: none; /* Too crowded on mobile */
  }
}

/* ─── Act 1: Solo Phone (before assembly) ──────── */
.phone-3d[data-phone="1"] {
  /* Phone 1 starts visible and centered; GSAP handles transforms */
}

/* Phones 2-9 start hidden below viewport (GSAP initial state) */
.phone-3d:not([data-phone="1"]) {
  visibility: hidden;
}

/* ─── FB / IG Post Styles (unchanged from original) ─── */
.fb-post {
  font-family: -apple-system, system-ui, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 8px;
  color: #050505;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fb-header {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 6px 4px;
}

.fb-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #c8102e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fb-avatar span {
  color: #fff;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.fb-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  flex: 1;
}

.fb-name {
  font-weight: 700;
  font-size: 7px;
  color: #050505;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fb-info {
  font-size: 5.5px;
  color: #65676B;
  display: flex;
  align-items: center;
  gap: 2px;
}

.fb-globe {
  width: 6px;
  height: 6px;
  color: #65676B;
  flex-shrink: 0;
}

.fb-dots {
  color: #65676B;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  flex-shrink: 0;
  margin-left: auto;
}

.fb-text {
  padding: 2px 6px 5px;
  font-size: 7.5px;
  line-height: 1.35;
  color: #050505;
}

.fb-image {
  flex: 1;
  min-height: 120px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #0b0c10;
  position: relative;
  overflow: hidden;
}

.fb-engagement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px;
  font-size: 6px;
  color: #65676B;
}

.fb-reactions {
  display: flex;
  align-items: center;
  gap: 2px;
}

.fb-reaction-icons {
  font-size: 7px;
  letter-spacing: -1px;
}

.fb-counts {
  font-size: 5.5px;
  white-space: nowrap;
}

.fb-actions {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 4px 4px 5px;
  border-top: 1px solid #CED0D4;
}

.fb-action {
  font-size: 6px;
  font-weight: 600;
  color: #65676B;
  cursor: default;
}

.ig-post {
  font-family: -apple-system, system-ui, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 8px;
  color: #262626;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ig-header {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
}

.ig-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 1.5px;
}

.ig-avatar span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  color: #262626;
  font-size: 5px;
  font-weight: 700;
}

.ig-username {
  font-weight: 600;
  font-size: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ig-verified {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
}

.ig-dots {
  margin-left: auto;
  color: #262626;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  flex-shrink: 0;
}

.ig-image {
  flex: 1;
  min-height: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #0b0c10;
  position: relative;
  overflow: hidden;
}

/* ─── Phone Video Element ─────────────────────── */
.phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.fb-post--video,
.ig-post--video {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fb-post--video .fb-image,
.ig-post--video .ig-image {
  flex: 1;
  min-height: 0;
}

.ig-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 6px 2px;
}

.ig-actions-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ig-icon {
  width: 12px;
  height: 12px;
  color: #262626;
  cursor: default;
}

.ig-likes {
  padding: 0 6px;
  font-size: 7px;
  font-weight: 600;
  color: #262626;
}

.ig-caption {
  padding: 2px 6px 6px;
  font-size: 7px;
  line-height: 1.35;
  color: #262626;
}

.ig-caption strong {
  font-weight: 600;
}

/* ================================================================
   3c. PAGES WE RESEARCH — SCROLLING GRID
   ================================================================ */
.network {
  padding: var(--section-padding-md) var(--page-gutter);
}

.network-module {
  background: linear-gradient(135deg, #1a1613 0%, #171311 25%, #1c1815 50%, #171311 75%, #1a1714 100%);
  border-radius: var(--radius-module);
  overflow: hidden;
  position: relative;
  padding: var(--section-padding-sm) 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.network-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  padding: 0 var(--page-gutter);
  position: relative;
  z-index: 2;
}

.network-kicker {
  color: var(--red);
}

.network-heading {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.network-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted-light);
  max-width: 620px;
  margin: 1rem auto 0;
  text-align: center;
}

/* ─── Track rows ─────────────────────────────────── */
.network-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.network-track {
  overflow: hidden;
  width: 100%;
}

.network-track-inner {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}

/* Right-scrolling tracks */
.network-track--right .network-track-inner {
  animation: network-scroll-right var(--track-speed, 60s) linear infinite;
}

/* Left-scrolling tracks */
.network-track--left .network-track-inner {
  animation: network-scroll-left var(--track-speed, 60s) linear infinite;
}

/* Speed variants */
.network-track--slow {
  --track-speed: 70s;
}
.network-track--fast {
  --track-speed: 50s;
}

@keyframes network-scroll-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes network-scroll-left {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Pause on hover for readability */
.network-track:hover .network-track-inner {
  animation-play-state: paused;
}

/* ─── Individual cards ───────────────────────────── */
.network-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 10px 14px;
  width: 200px;
  min-height: 60px;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms var(--ease-out);
}

.network-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* ─── Avatar circles ─────────────────────────────── */
.network-avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

/* ─── Card info ──────────────────────────────────── */
.network-card-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  overflow: hidden;
}

.network-handle {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.network-meta {
  font-family: 'Manrope', sans-serif;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
}

.network-followers {
  color: var(--red);
  font-weight: 700;
}

.network-badge {
  font-family: 'Manrope', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
}

/* ─── Gradient edge masks ────────────────────────── */
.network-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}

.network-mask--left {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}

.network-mask--right {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

/* ================================================================
   4. FEATURES STICKY SCROLL
   ================================================================ */
.features-scroll {
  height: 600vh; /* 6 features x 100vh */
  position: relative;
}

.features-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--paper);
}

.features-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  max-width: 1000px;
  padding: 0 var(--page-gutter);
  width: 100%;
}

.features-left {
  display: flex;
  align-items: center;
}

/* Progress indicator */
.features-progress {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.features-progress-step {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.3;
  transition: opacity 400ms var(--ease-out);
}

.features-progress-step.is-active {
  opacity: 1;
}

.features-progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sand);
  transition: background 400ms var(--ease-out), transform 400ms var(--ease-out);
}

.features-progress-step.is-active .features-progress-dot {
  background: var(--red);
  transform: scale(1.3);
}

.features-progress-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}

/* Content panels */
.features-right {
  position: relative;
}

.features-panel {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
  pointer-events: none;
}

.features-panel.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.features-panel h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ink);
}

.features-panel p {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 500px;
}

/* ─── ML Flow Visual (Panel 0 — ML Engine) ───── */
.ml-flow-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 1.5rem;
  max-width: 380px;
}

.ml-flow-inputs,
.ml-flow-outputs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.ml-flow-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
  background: rgba(26, 21, 18, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}

.ml-flow-chip--out {
  color: var(--red);
  background: rgba(200, 16, 46, 0.06);
  border-color: rgba(200, 16, 46, 0.15);
}

.ml-flow-arrow {
  display: flex;
  justify-content: center;
  opacity: 0.5;
}

.ml-flow-core {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white);
}

.ml-flow-core-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

.ml-flow-core-glow {
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.25) 0%, transparent 70%);
  animation: mlCoreGlow 3s ease-in-out infinite;
}

@keyframes mlCoreGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ─── Research Visual (Panel 1 illustration) ──── */
.research-visual {
  position: relative;
  margin-top: 1.25rem;
  padding: 1.25rem;
  max-width: 100%;
  border-radius: var(--radius-card);
  background: rgba(23, 19, 17, 0.03);
  border: 1px solid var(--line);
  overflow: visible;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  justify-items: center;
}

.rv-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--av-bg, var(--ink));
  color: var(--av-text, #fff);
  font-family: 'Manrope', sans-serif;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.6s ease;
}

.rv-avatar.rv-glow {
  animation: rv-pulse 2.4s ease-in-out infinite;
}

.rv-avatar.rv-glow:nth-child(4) {
  animation-delay: 0.8s;
}

.rv-avatar.rv-glow:nth-child(8) {
  animation-delay: 1.6s;
}

@keyframes rv-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0); }
  50% { box-shadow: 0 0 12px 4px rgba(200, 16, 46, 0.25); }
}

.rv-scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.5;
  animation: rv-scan 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes rv-scan {
  0%   { top: 0; opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.5; }
  100% { top: 100%; opacity: 0; }
}

/* ── Intelligence grid (panel 3 visual) ── */
.intel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 1.25rem;
  max-width: 420px;
}

.intel-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(23, 19, 17, 0.03);
  border: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms var(--ease-out);
}

.intel-chip:hover {
  background: rgba(200, 16, 46, 0.04);
  border-color: rgba(200, 16, 46, 0.08);
  transform: translateY(-1px);
}

.intel-chip:nth-child(even) {
  background: rgba(23, 19, 17, 0.06);
}

.intel-emoji {
  font-size: 0.9rem;
  line-height: 1;
  flex-shrink: 0;
}

.intel-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .intel-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 280px;
  }
}

/* ─── Ad Fan Visual (Panel 1 illustration) ──── */
.ad-fan {
  position: relative;
  margin-top: 1.5rem;
  height: 180px;
  width: 100%;
  max-width: 320px;
}

.ad-fan-card {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 90px;
  height: 130px;
  margin-left: -45px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(23, 19, 17, 0.08);
  box-shadow: 0 2px 8px rgba(23, 19, 17, 0.06);
  transform-origin: 50% 100%;
  transform: rotate(var(--fan-rotate, 0deg));
  z-index: var(--fan-z, 1);
  overflow: hidden;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}

.ad-fan-header {
  height: 38px;
  background: var(--header-bg, var(--sand));
}

.ad-fan-body {
  padding: 10px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ad-fan-line {
  display: block;
  height: 5px;
  border-radius: 3px;
  background: rgba(23, 19, 17, 0.10);
}

.ad-fan-cta {
  display: block;
  width: 48px;
  height: 14px;
  border-radius: 4px;
  margin-top: 4px;
  background: rgba(23, 19, 17, 0.08);
}

/* Winner card: subtle glow */
.ad-fan-winner {
  box-shadow:
    0 2px 8px rgba(23, 19, 17, 0.06),
    0 0 20px rgba(200, 16, 46, 0.15),
    0 0 40px rgba(200, 16, 46, 0.06);
  border-color: rgba(200, 16, 46, 0.20);
}

.ad-fan-winner .ad-fan-cta {
  background: var(--red);
}

/* ─── A/B Test Visual (Panel 2 illustration) ──── */
.ab-visual {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 1.5rem;
  max-width: 340px;
}

.ab-phone {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ab-phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 130px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  background: #fff;
  overflow: hidden;
}

.ab-phone--winner .ab-phone-frame {
  box-shadow: 0 0 16px rgba(200, 16, 46, 0.2), 0 0 4px rgba(200, 16, 46, 0.1);
}

.ab-notch {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 6px;
  border-radius: 4px;
  background: var(--ink);
  z-index: 2;
}

.ab-screen {
  position: absolute;
  inset: 0;
  padding: 14px 6px 6px;
}

.ab-ad {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ab-ad-img {
  flex: 1;
  border-radius: 4px;
  min-height: 0;
}

.ab-ad-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(23, 19, 17, 0.1);
}

.ab-ad--b .ab-ad-line {
  background: rgba(23, 19, 17, 0.07);
}

/* Progress bars */
.ab-bar-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.ab-bar {
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: rgba(23, 19, 17, 0.08);
  overflow: hidden;
}

.ab-bar-fill {
  display: block;
  height: 100%;
  width: var(--bar-pct);
  border-radius: 3px;
  transition: width 0.6s var(--ease-out);
}

.ab-bar--win .ab-bar-fill {
  background: var(--red);
}

.ab-bar--lose .ab-bar-fill {
  background: rgba(23, 19, 17, 0.2);
}

.ab-bar-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  min-width: 24px;
  text-align: right;
  letter-spacing: -0.01em;
}

.ab-bar--win ~ .ab-bar-label {
  color: var(--red);
}

/* "Variant A / B" labels */
.ab-variant-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.ab-check {
  color: var(--red);
  font-weight: 700;
  font-size: 0.75rem;
}

/* VS badge */
.ab-vs {
  align-self: center;
  margin-top: 36px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── Network Graph (Panel 4 illustration) ──── */
.network-graph {
  margin-top: 1.5rem;
  max-width: 340px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-svg {
  width: 100%;
  height: 100%;
}

.network-line {
  stroke: var(--ink);
  stroke-width: 0.8;
  opacity: 0.12;
}

.network-line--dim {
  stroke-width: 0.5;
  opacity: 0.06;
  stroke-dasharray: 3 4;
}

.network-node {
  fill: var(--ink);
  opacity: 0.2;
}

.network-node--center-glow {
  fill: var(--red);
  opacity: 0.12;
  animation: net-glow 2.5s ease-in-out infinite alternate;
}

.network-node--center {
  fill: var(--red);
}

@keyframes net-glow {
  0%   { opacity: 0.08; r: 14; }
  100% { opacity: 0.18; r: 18; }
}

.network-pulse {
  fill: var(--red);
  opacity: 0;
  animation: net-pulse-fade 3s ease-in-out infinite;
}

.network-pulse:nth-child(13) { animation-delay: 0s; }
.network-pulse:nth-child(14) { animation-delay: 0.6s; }
.network-pulse:nth-child(15) { animation-delay: 1.2s; }
.network-pulse:nth-child(16) { animation-delay: 1.8s; }
.network-pulse:nth-child(17) { animation-delay: 2.4s; }

@keyframes net-pulse-fade {
  0%   { opacity: 0; }
  15%  { opacity: 0.7; }
  85%  { opacity: 0.7; }
  100% { opacity: 0; }
}

.network-label {
  font-family: 'Manrope', sans-serif;
  font-size: 8px;
  font-weight: 600;
  fill: var(--ink);
  opacity: 0.35;
  text-anchor: middle;
  letter-spacing: 0.04em;
}

.network-label--you {
  font-size: 9px;
  font-weight: 700;
  fill: var(--red);
  opacity: 1;
}

/* ================================================================
   4a-ii. ML ENGINE VISUAL
   ================================================================ */
.ml-engine {
  position: relative;
  background: #1a1512;
  color: var(--white);
  padding: var(--section-padding-md) var(--page-gutter);
  overflow: hidden;
}

.ml-engine-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ml-engine .section-kicker {
  color: var(--red);
}

.ml-engine .section-heading {
  color: var(--white);
}

.ml-engine-footnote {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-style: italic;
  margin-top: 2rem;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.before-after-card {
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  text-align: left;
}
.before-after-card--before {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.before-after-card--after {
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.2);
}
.before-after-label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}
.before-after-card--before .before-after-label {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
}
.before-after-card--after .before-after-label {
  background: rgba(200, 16, 46, 0.15);
  color: var(--red);
}
.before-after-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ba-stat {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.ba-num {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  color: var(--white);
  min-width: 80px;
  font-variant-numeric: tabular-nums;
}
.before-after-card--before .ba-num {
  color: rgba(255,255,255,0.5);
}
.ba-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.before-after-card--after .ba-desc {
  color: rgba(255,255,255,0.7);
}
@media (max-width: 680px) {
  .before-after-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   4b. COMPARISON
   ================================================================ */
.comparison {
  position: relative;
  padding: var(--section-padding-md) var(--page-gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}

.comparison-inner {
  text-align: center;
}

.comparison-header {
  margin-bottom: 1.5rem;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

/* ── Column cards ── */
.comparison-col {
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.comparison-col-agency {
  background: var(--white);
  border: 1px solid rgba(23, 19, 17, 0.06);
  box-shadow: var(--shadow-card);
}

.comparison-col-agency:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

.comparison-col-turnout {
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.04) 0%, rgba(200, 16, 46, 0.02) 100%);
  border: 1.5px solid rgba(200, 16, 46, 0.12);
  box-shadow: var(--shadow-elevated), 0 0 0 1px rgba(200, 16, 46, 0.04);
}

.comparison-col-turnout:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep), 0 0 0 1px rgba(200, 16, 46, 0.08);
}

/* ── Column headers ── */
.comparison-col-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--line);
}

.comparison-col-header-turnout {
  border-bottom-color: rgba(200, 16, 46, 0.1);
}

.comparison-col-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison-col-agency .comparison-col-label {
  color: #8a8580;
}

.comparison-col-turnout .comparison-col-label {
  color: var(--red);
}

/* ── Rows ── */
.comparison-row {
  padding: 0.75rem 1.75rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.comparison-col-turnout .comparison-row {
  border-bottom-color: rgba(200, 16, 46, 0.06);
}

.comparison-row-last {
  border-bottom: none;
}

.comparison-aspect {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}

.comparison-val {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.4;
}

/* Agency column: muted text */
.comparison-col-agency .comparison-val {
  color: #8a8580;
  font-weight: 500;
}

/* Strikethrough for agency price */
.comparison-strike {
  text-decoration: line-through;
  text-decoration-color: rgba(138, 133, 128, 0.5);
}

/* Subtle strikethrough for original Turnout price ($350) */
.comparison-strike-subtle {
  text-decoration: line-through;
  text-decoration-color: rgba(138, 133, 128, 0.4);
  opacity: 0.55;
  font-weight: 400;
  margin-right: 6px;
}

/* Turnout column: bold dark text */
.comparison-bold {
  font-weight: 700;
  color: var(--ink);
}

/* ── Hero row (price) — bigger numbers ── */
.comparison-row-hero {
  padding: 1.25rem 1.75rem;
  position: relative;
}

.comparison-free-badge {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--red);
  background: rgba(200, 16, 46, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  animation: badgePulse 3s ease-in-out infinite;
}

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

.comparison-row-hero .comparison-val {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.comparison-col-agency .comparison-row-hero .comparison-val {
  color: #b5afa9;
  text-decoration: line-through;
  text-decoration-color: rgba(181, 175, 169, 0.5);
}

.comparison-col-turnout .comparison-row-hero .comparison-val {
  color: var(--red);
  font-weight: 400;
  text-decoration: none;
}

/* ── Icons ── */
.comparison-x,
.comparison-check {
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .comparison-table {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .comparison-row {
    padding: 0.875rem 1.25rem;
  }

  .comparison-row-hero {
    padding: 1.25rem;
  }
}

/* ================================================================
   5. STATS
   ================================================================ */
.stats {
  padding: var(--section-padding-sm) 12px;
}

.stats-module {
  background: radial-gradient(ellipse at 50% 40%, #211d1a 0%, #171311 60%);
  border-radius: var(--radius-module);
  padding: var(--section-padding-lg) var(--page-gutter);
  position: relative;
  overflow: hidden;
}

/* Ambient glow behind stats */
.stats-module::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 16, 46, 0.18), rgba(200, 16, 46, 0.06) 50%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 1rem 2rem;
}

.stat-number {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline;
  font-variant-numeric: tabular-nums;
}

.stat-suffix {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ================================================================
   6. NETWORK INTELLIGENCE / PROOF CARDS
   ================================================================ */
.proof {
  position: relative;
  padding: 0;
  max-width: none;
  margin: 0 auto;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--section-padding-md) var(--page-gutter);
  text-align: center;
}

.proof-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 1rem auto 1.5rem;
  line-height: 1.6;
}

.proof-intro {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.proof-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out), border-color 250ms var(--ease-out);
}

.proof-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(200, 16, 46, 0.12);
}

.proof-card-source {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.proof-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.proof-card-source strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.proof-card-meta {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
}

.proof-card-insight {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 16px;
}

.proof-card-badge {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  background: rgba(200, 16, 46, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.proof-disclaimer {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* ─── Intelligence Flow Visualization ────────────── */
.intel-flow {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 2rem 0;
  border-radius: var(--radius-card);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200, 16, 46, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, rgba(23, 19, 17, 0.02) 0%, rgba(23, 19, 17, 0.04) 100%);
}

.intel-flow-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* ─── Connection lines ──────────────────────────── */
.intel-flow-line {
  fill: none;
  stroke: rgba(200, 16, 46, 0.18);
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
  stroke-linecap: round;
  filter: url(#line-glow);
  animation: intel-line-dash 20s linear infinite;
}

.intel-flow-line--faint {
  stroke: rgba(200, 16, 46, 0.08);
  stroke-width: 1;
  stroke-dasharray: 4 6;
  animation-duration: 30s;
}

@keyframes intel-line-dash {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -100; }
}

/* ─── Data packets (traveling dots) ─────────────── */
.intel-flow-packet {
  fill: #c8102e;
  opacity: 0.9;
}

.intel-flow-packet--alt {
  fill: #e85d75;
  opacity: 0.7;
}

.intel-flow-packet--return {
  fill: #ff8fa3;
  opacity: 0.5;
}

/* ─── Studio nodes ──────────────────────────────── */
.intel-flow-node-halo {
  fill: rgba(200, 16, 46, 0.06);
  stroke: rgba(200, 16, 46, 0.12);
  stroke-width: 1;
  animation: intel-node-pulse 3.5s ease-in-out infinite;
  animation-delay: var(--pulse-delay, 0s);
}

.intel-flow-node-core {
  fill: #c8102e;
  filter: url(#node-glow);
  animation: intel-core-breathe 4s ease-in-out infinite;
  animation-delay: var(--pulse-delay, 0s);
}

@keyframes intel-node-pulse {
  0%, 100% {
    opacity: 0.4;
    transform-origin: center;
    r: inherit;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes intel-core-breathe {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* ─── City labels ───────────────────────────────── */
.intel-flow-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  fill: var(--ink);
  opacity: 0.55;
  text-anchor: middle;
  letter-spacing: 0.03em;
}

/* ─── Central hub ───────────────────────────────── */
.intel-flow-hub-ring {
  fill: none;
  stroke: rgba(200, 16, 46, 0.15);
  stroke-width: 1.5;
  animation: intel-hub-rotate 25s linear infinite;
  transform-origin: 450px 200px;
  stroke-dasharray: 8 4;
}

.intel-flow-hub-ring--inner {
  stroke: rgba(200, 16, 46, 0.25);
  stroke-width: 1;
  animation-duration: 18s;
  animation-direction: reverse;
  stroke-dasharray: 4 6;
}

.intel-flow-hub-core {
  fill: #c8102e;
  filter: url(#node-glow);
  animation: intel-hub-pulse 2.5s ease-in-out infinite;
}

@keyframes intel-hub-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes intel-hub-pulse {
  0%, 100% {
    opacity: 0.85;
    r: 9;
  }
  50% {
    opacity: 1;
    r: 11;
  }
}

.intel-flow-hub-label {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  fill: var(--red);
  text-anchor: middle;
  letter-spacing: 0.04em;
}

/* ─── Mobile: scale down gracefully ─────────────── */
@media (max-width: 600px) {
  .intel-flow {
    margin: 0 auto 2rem;
    padding: 1rem 0;
  }

  .intel-flow-label {
    font-size: 9px;
  }

  .intel-flow-hub-label {
    font-size: 10px;
  }
}

/* ─── Flowing insights (animated text along paths) ── */
.flowing-insight {
  position: absolute;
  white-space: nowrap;
  pointer-events: none;
  font-family: 'Manrope', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--red, #c8102e);
  opacity: 0;
  z-index: 2;
  letter-spacing: 0.01em;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 8px rgba(200, 16, 46, 0.15);
  will-change: left, top, opacity;
}

@media (max-width: 600px) {
  .flowing-insight {
    font-size: 0.45rem;
  }
}

/* ================================================================
   7. TESTIMONIALS
   ================================================================ */
.testimonial {
  padding: 0;
  max-width: none;
  margin: 0 auto;
}

.testimonial-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--section-padding-md) var(--page-gutter);
  text-align: center;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 1.5rem;
  text-align: left;
}

.testimonial-featured {
  max-width: 640px;
  margin: 3rem auto 0;
  text-align: left;
}

.testimonial-card--featured {
  padding: 40px;
}

.testimonial-card--featured blockquote p {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  line-height: 1.5;
}

.testimonial-card {
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
}

.testimonial-card--rose {
  background: linear-gradient(135deg, #f4d5cf 0%, #f0c9c1 100%);
}

.testimonial-card--peach {
  background: linear-gradient(135deg, #fde8d0 0%, #f9dcc0 100%);
}

.testimonial-card--coral {
  background: linear-gradient(135deg, #fcd5d5 0%, #f5c4c4 100%);
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card blockquote p {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
}

.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-attr strong {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.testimonial-attr span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── Founder Story (v3 — immersive full-width) ─── */
.founder-story-section {
  background: var(--paper);
}

.founder-section-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: var(--section-padding-lg) var(--page-gutter);
  position: relative;
  overflow: hidden;
}

.founder-glow {
  position: absolute;
  width: 700px;
  height: 500px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(200, 16, 46, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─ Hero photo ─ */
.founder-hero-photo {
  position: relative;
  z-index: 1;
  margin-bottom: -220px; /* Text starts well within the faded photo */
  margin-left: calc(-1 * var(--page-gutter));
  margin-right: calc(-1 * var(--page-gutter));
}

.founder-studio-photo {
  width: 100%;
  height: auto;
  border-radius: 0; /* No border radius — fade handles the edges */
  object-fit: contain;
  box-shadow: none; /* No shadow — fade merges seamlessly with background */
  display: block;
}

.founder-photo-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(246, 241, 234, 0.15) 30%,
    rgba(246, 241, 234, 0.5) 50%,
    rgba(246, 241, 234, 0.8) 70%,
    var(--paper) 90%,
    var(--paper) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* ─ Text column ─ */
.founder-text-col {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.founder-text-col .section-kicker {
  text-align: center;
}

.founder-text-col .section-heading {
  text-align: center;
}

.founder-narrative {
  margin-top: 2rem;
  text-align: left;
}

.founder-narrative p {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1.35rem;
}

.founder-narrative p:last-child {
  margin-bottom: 0;
}

.founder-narrative p em {
  font-style: italic;
}

/* ─ Pull quote card ─ */
.founder-pullquote, .founder-result {
  margin: 2.25rem 0;
  padding: 1.5rem 1.75rem 1.5rem 2rem;
  border-left: 3px solid var(--red);
  background: rgba(246, 239, 232, 0.6);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 2px 16px rgba(23, 19, 17, 0.04);
}

.founder-pullquote p {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem) !important;
  font-style: italic;
  line-height: 1.55 !important;
  color: var(--ink);
  margin-bottom: 0 !important;
}

/* ─ Stats strip ─ */
.founder-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 2.5rem 0 0.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-stat {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

.founder-stat-number {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.founder-stat-label {
  display: block;
  margin-top: 0.3rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.3;
}

.founder-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
  flex-shrink: 0;
}

/* ─ Sign-off ─ */
.founder-signoff {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.founder-signoff strong {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.founder-signoff span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Founder story — tablet */
@media (max-width: 900px) {
  .founder-studio-photo {
    height: clamp(250px, 35vw, 360px);
  }

  .founder-text-col {
    max-width: 600px;
  }

  .founder-stats {
    gap: 0;
  }

  .founder-stat {
    padding: 0 0.75rem;
  }

  .founder-stat-number {
    font-size: clamp(1.15rem, 3vw, 1.4rem);
  }
}

/* Founder story — mobile */
@media (max-width: 480px) {
  .founder-section-inner {
    padding: 60px 0;
  }

  .founder-hero-photo {
    margin-bottom: -60px;
    margin-left: calc(-1 * var(--page-gutter, 20px));
    margin-right: calc(-1 * var(--page-gutter, 20px));
  }

  .founder-studio-photo {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: contain;
  }

  .founder-text-col {
    padding: 0 20px;
  }

  .founder-photo-fade {
    border-radius: 0;
  }

  .founder-pullquote, .founder-result {
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
  }

  .founder-stats {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem 0;
  }

  .founder-stat-divider {
    width: 60px;
    height: 1px;
  }

  .founder-stat {
    padding: 0;
  }
}

/* ================================================================
   8. FAQ
   ================================================================ */
.faq {
  padding: var(--section-padding-md) var(--page-gutter);
  max-width: 760px;
  margin: 0 auto;
}

.faq-inner {
  text-align: center;
}

.faq-list {
  text-align: left;
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease;
}

.faq-item:hover {
  background: rgba(23, 19, 17, 0.02);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 0.75rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  transition: color 200ms;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }

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

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 300ms var(--ease-out);
}

.faq-icon::before {
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  overflow: hidden;
  height: 0;
  transition: height 400ms var(--ease-out);
}

.faq-item[open] .faq-answer {
  height: auto;
}

.faq-answer p {
  padding: 0 0.75rem 1.375rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
}

/* ================================================================
   9. CTA
   ================================================================ */
.cta {
  padding: var(--section-padding-sm) 12px var(--section-padding-md);
}

.cta-module {
  background: linear-gradient(135deg, #1c1815, #171311, #1a1613, #171311);
  background-size: 400% 400%;
  animation: ctaShift 12s ease infinite;
  border-radius: var(--radius-module);
  padding: clamp(80px, 10vw, 120px) var(--page-gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@keyframes ctaShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Ad-screenshot collage grid behind CTA */
.cta-ad-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 2px;
  opacity: 0.08;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.cta-ad-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

/* Ambient glow */
.cta-module::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 16, 46, 0.16), rgba(200, 16, 46, 0.06) 45%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
}

.cta-heading {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--white);
  margin-bottom: 1rem;
  text-wrap: balance;
}

.cta-heading em {
  color: var(--red);
}

.cta-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-urgency {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  padding: 0 var(--page-gutter) clamp(40px, 4vw, 60px);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  font-family: 'Instrument Serif', serif;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color 200ms var(--ease-out);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 300ms var(--ease-out);
}

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

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

/* ================================================================
   SCROLL REVEAL (generic) — now driven by GSAP ScrollTrigger
   ================================================================ */

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .carousel {
    width: 180px;
    height: 370px;
  }

  .phone-3d {
    transform: rotateY(calc(var(--angle) * 1deg)) translateZ(320px);
  }

  .phone-front {
    border-radius: 28px;
  }

  .phone-screen {
    border-radius: 30px;
  }

  .phone-back {
    border-radius: 28px;
  }
  .phone-back::before,
  .phone-back::after {
    border-radius: 28px;
  }

  .features-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .proof-cards {
    grid-template-columns: 1fr;
  }

  .estimate-layout {
    grid-template-columns: 1fr;
  }

  .estimate-right {
    position: relative;
    top: auto;
    height: 350px;
    max-height: none;
  }

  .studio-map {
    height: 350px;
    min-height: 350px;
  }

  .calc-inputs,
  .estimate-left .calc-inputs {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .estimate-cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .conditions-inner {
    padding: 2rem 2rem 1.75rem;
  }

  .stats-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .stat {
    padding: 0.5rem 1rem;
  }

  /* Product preview: hide sidebar, go full-width */
  .mock-dashboard {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-bottom-row {
    grid-template-columns: 1fr;
  }

  .mock-live-detail {
    display: none;
  }

  .mock-metric-explainer {
    display: none;
  }

  .product-preview-frame {
    border-radius: 0.75rem;
  }

  .network {
    padding: 60px var(--page-gutter);
  }

  .network-module {
    border-radius: 1.5rem;
  }

  .network-card {
    width: 175px;
    padding: 8px 12px;
  }
}

@media (max-width: 680px) {
  :root {
    --page-gutter: 20px;
  }

  .carousel {
    width: 150px;
    height: 310px;
  }

  .phone-3d {
    transform: rotateY(calc(var(--angle) * 1deg)) translateZ(240px);
  }

  .phone-front {
    border-radius: 24px;
  }

  .phone-screen {
    border-radius: 24px;
  }

  .phone-back {
    border-radius: 24px;
  }
  .phone-back::before,
  .phone-back::after {
    border-radius: 24px;
  }

  .carousel-viewport {
    perspective: 1000px;
  }

  .fb-header { padding: 4px 4px 3px; gap: 3px; }
  .fb-avatar { width: 14px; height: 14px; }
  .fb-avatar span { font-size: 4.5px; }
  .fb-name { font-size: 5.5px; }
  .fb-info { font-size: 4px; }
  .fb-text { font-size: 5.5px; padding: 1px 4px 3px; }
  .fb-engagement { padding: 2px 4px; font-size: 4.5px; }
  .fb-reaction-icons { font-size: 5px; }
  .fb-counts { font-size: 4px; }
  .fb-actions { padding: 2px 3px 3px; }
  .fb-action { font-size: 4.5px; }

  .ig-header { padding: 4px; gap: 3px; }
  .ig-avatar { width: 14px; height: 14px; padding: 1px; }
  .ig-avatar span { font-size: 4px; }
  .ig-username { font-size: 5.5px; }
  .ig-verified { width: 5px; height: 5px; }
  .ig-icon { width: 8px; height: 8px; }
  .ig-action-row { padding: 3px 4px 1px; }
  .ig-actions-left { gap: 4px; }
  .ig-likes { font-size: 5.5px; padding: 0 4px; }
  .ig-caption { font-size: 5.5px; padding: 1px 4px 4px; }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(23, 19, 17, 0.92);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding: 0.5rem;
  }

  .nav-scrolled .nav-links {
    background: rgba(246, 239, 232, 0.95);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 24px rgba(23, 19, 17, 0.06);
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm, 8px);
  }

  .hero-headline {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .hero-content {
    padding: 120px var(--page-gutter) 60px;
  }

  .hero-pills {
    gap: 0.375rem;
  }

  .hero-pill {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }

  .features-scroll {
    height: auto;
  }

  .features-sticky {
    position: relative;
    height: auto;
    padding: 60px 0;
  }

  .features-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .features-progress {
    display: none;
  }

  .features-panel {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin-bottom: 1.5rem;
  }

  .features-panel:last-child {
    margin-bottom: 0;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 24px;
  }

  .why-statement {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

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

  .conditions-inner {
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: var(--radius-card);
  }

  .studio-conditions-inline {
    padding: 1rem 1.25rem 0.75rem;
  }

  .conditions-header--compact {
    text-align: center;
  }

  .studio-conditions {
    padding: 0 var(--page-gutter) 60px;
  }

  /* Product preview: stack metric cards */
  .mock-metrics {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .mock-metric-card {
    padding: 0.625rem 0.875rem;
  }

  .mock-row-2 {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .mock-bottom-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .mock-today-strip {
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
  }

  .mock-activity-card {
    padding: 0.5rem 0.625rem;
  }

  .mock-main {
    padding: 1rem;
  }

  .product-preview {
    padding: 20px var(--page-gutter) 60px;
  }

  .product-preview-caption {
    font-size: 1rem;
  }

  .browser-tab-bar {
    display: none;
  }

  .browser-chrome-spacer {
    display: none;
  }

  .network {
    padding: 40px 0;
  }

  .network-module {
    border-radius: 1.25rem;
    padding: 36px 0 36px;
  }

  .network-card {
    width: 165px;
    padding: 8px 10px;
    gap: 8px;
  }

  .network-avatar {
    width: 30px;
    height: 30px;
  }

  .network-handle {
    font-size: 0.6875rem;
  }

  .network-rows {
    gap: 8px;
  }

  .network-mask {
    width: 40px;
  }

  /* ── Disable sticky features on mobile — degrade to stacked ── */
  .features-scroll {
    height: auto !important;
  }
  .features-sticky {
    position: relative !important;
    height: auto !important;
  }
  .features-inner {
    grid-template-columns: 1fr !important;
  }
  .features-progress {
    display: none !important;
  }
  .features-left {
    display: none !important;
  }
  .features-panel {
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    margin-bottom: 2rem;
  }

  /* ── Disable hero parallax (performance) ── */
  .hero-video {
    will-change: auto !important;
  }

  /* ── Estimate cards single column ── */
  .estimate-cards {
    grid-template-columns: 1fr !important;
    max-width: 100%;
  }

  /* ── Comparison table single column ── */
  .comparison-table {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  /* Extend dark hero background into safe area / iOS nav bar gap */
  .hero {
    background: rgb(23, 19, 17);
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }

  .hero-module {
    border-radius: 0 0 var(--radius-card) var(--radius-card);
  }

  .stats-module,
  .cta-module {
    border-radius: var(--radius-card);
  }

  .nav-cta {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
  }

  /* ── Font scaling ── */
  .section-heading {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .hero-sub {
    font-size: 0.9375rem;
  }

  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
  }

  /* ── Carousel smaller on mobile ── */
  .carousel {
    width: 120px;
    height: 250px;
  }
  .phone-3d {
    transform: rotateY(calc(var(--angle) * 1deg)) translateZ(180px);
  }
  .phone-front {
    border-radius: 18px;
  }
  .phone-back {
    border-radius: 18px;
  }
  .phone-back::before,
  .phone-back::after {
    border-radius: 18px;
  }
  .phone-screen {
    border-radius: 16px;
  }

  /* ── Prevent horizontal overflow ── */
  .showcase-module,
  .network-module {
    overflow: hidden;
  }

  /* ── Testimonial tighter ── */
  .testimonial-card {
    padding: 20px 16px;
  }

  /* ── Map smaller ── */
  .studio-map {
    height: 220px;
  }

  /* ── Product preview frame ── */
  .product-preview-frame {
    border-radius: 0.5rem;
  }

  .mock-topbar-date,
  .mock-topbar-pill {
    display: none;
  }

  /* ── Fix estimate section overflow ── */
  .estimate {
    overflow: hidden;
  }
  .estimate-layout {
    max-width: 100%;
  }
  .estimate-right,
  .calc-inputs,
  .calc-slider-row {
    max-width: 100%;
    overflow: hidden;
  }
  .estimate-left {
    max-width: 100%;
    overflow: visible;
  }
  .estimate-select {
    max-width: 100%;
  }
  .estimate-cards {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .estimate-card {
    padding: 1.25rem 0.75rem;
  }

  /* ── Condition cards single column ── */
  .conditions-grid {
    grid-template-columns: 1fr;
  }

  /* ── Hero orbs don't cause overflow ── */
  .hero-orbs {
    display: none;
  }
}

/* ─── Reduced Motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .estimate,
  .product-preview,
  .product-preview-frame,
  .why,
  .showcase-scroll,
  .network,
  .features-scroll,
  .comparison,
  .proof,
  .testimonial,
  .faq {
    opacity: 1 !important;
    transform: none !important;
  }

  .studio-conditions.is-active,
  .studio-conditions.is-exiting,
  .studio-conditions-inline.is-active,
  .studio-conditions-inline.is-exiting {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .phone-3d {
    opacity: 1 !important;
    visibility: visible !important;
    transform: rotateY(calc(var(--angle) * 1deg)) translateZ(420px) !important;
  }

  .phone-screen-content--scroll {
    animation: none !important;
  }

  .carousel {
    will-change: auto;
  }

  .particle { animation: none !important; opacity: 0.2 !important; }
  /* Intel flow — hide SMIL-animated packets, show static diagram */
  .intel-flow-packet { display: none; }
  .intel-flow-line { stroke-dasharray: none; }
  .intel-flow-hub-ring { stroke-dasharray: none; }
  .flowing-insight { display: none !important; }
  .hero-orb { animation: none !important; }
  .cta-module { animation: none !important; }
  .stat-number.is-counted { animation: none !important; }

  /* Hero parallax — disable GPU layer promotion */
  .hero-video {
    will-change: auto !important;
    transform: none !important;
  }

  .hero-content {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-overlay {
    opacity: 1 !important;
  }

  /* Network marquee — freeze */
  .network-track-inner {
    animation-play-state: paused !important;
    will-change: auto !important;
  }

  /* Splitting.js words — show immediately */
  [data-splitting] .word {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Features sticky — degrade to stacked */
  .features-scroll {
    height: auto !important;
  }
  .features-sticky {
    position: relative !important;
    height: auto !important;
  }
  .features-panel {
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }
}

/* ─── Word animation (Splitting.js) ─── */
[data-splitting] .word {
  display: inline-block;
  overflow: hidden;
  /* Failsafe: if GSAP doesn't run, words fade in via CSS after 1.5s */
  animation: wordFallbackReveal 0.5s ease 1.5s both;
}
@keyframes wordFallbackReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* When GSAP is active it sets inline opacity, which overrides the animation */

/* Italic words inside em tags should preserve italic */
[data-splitting] em .word {
  font-style: italic;
}

/* ================================================================
   LOGO / CREDIBILITY BAR
   ================================================================ */
.logo-bar {
  position: relative;
  padding: 40px var(--page-gutter);
  text-align: center;
  background: var(--paper);
}
.logo-bar-inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.logo-bar-label {
  display: block;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.logo-bar-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.logo-bar-img {
  height: 28px;
  width: auto;
  filter: grayscale(1) opacity(0.4);
  transition: filter 400ms var(--ease-out), transform 300ms var(--ease-out);
}
.logo-bar-img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}
.logo-bar-sep {
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  user-select: none;
}

/* ─── Logo bar responsive ─── */
@media (max-width: 680px) {
  .logo-bar-logos {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .logo-bar-img {
    height: 22px;
  }
}
@media (max-width: 420px) {
  .logo-bar-logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .logo-bar-logos::-webkit-scrollbar {
    display: none;
  }
}

/* ─── Logo bar top gradient transition ─── */
/* REMOVED: was creating a visible shadow below the hero section */

/* ================================================================
   GRAIN OVERLAY
   ================================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  filter: url(#grain-filter);
  mix-blend-mode: overlay;
}

/* ================================================================
   ENHANCED RADIAL GLOWS
   ================================================================ */

/* ─── Estimate section glow ─── */
.estimate::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  width: 600px;
  height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(200, 16, 46, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Comparison section glow (behind Turnout column) ─── */
.comparison::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 10%;
  width: 500px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(200, 16, 46, 0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Proof section warm glow ─── */
.proof::before {
  content: '';
  position: absolute;
  top: 30%;
  right: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ================================================================
   AMBIENT PARTICLES
   ================================================================ */
.ambient-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.15);
  animation: particleDrift var(--dur) ease-in-out var(--delay) infinite alternate;
}

@keyframes particleDrift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(30px, -40px) scale(1.2);
    opacity: 0.5;
  }
  50% {
    transform: translate(-20px, -60px) scale(0.8);
    opacity: 0.2;
  }
  75% {
    transform: translate(40px, -20px) scale(1.1);
    opacity: 0.4;
  }
  100% {
    transform: translate(-10px, -50px) scale(1);
    opacity: 0.3;
  }
}

/* ================================================================
   HERO PARALLAX ORBS
   ================================================================ */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1; /* above overlay, below content */
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb--warm {
  width: 400px;
  height: 400px;
  top: 20%;
  left: 15%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.15), transparent 70%);
}

.hero-orb--cool {
  width: 300px;
  height: 300px;
  top: 50%;
  right: 10%;
  background: radial-gradient(circle, rgba(30, 60, 120, 0.1), transparent 70%);
}

/* ================================================================
   STATS BREATHING
   ================================================================ */
@keyframes statsBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.stat-number.is-counted {
  animation: statsBreathe 4s ease-in-out infinite;
}

/* ================================================================
   DISCLAIMER
   ================================================================ */
.disclaimer {
  font-size: 0.65rem;
  color: var(--muted);
  font-style: italic;
}

/* ================================================================
   HAMBURGER MENU
   ================================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}

.nav-scrolled .nav-hamburger span {
  background: var(--ink);
}

.nav-hamburger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ====== TRUST STRIP ====== */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.trust-badge {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
}
.trust-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.6rem;
}

/* ====== DAILY COST FRAMING ====== */
.comparison-daily {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ====== GUARANTEE BADGE ====== */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  margin-bottom: 0;
  padding: 10px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
}
.guarantee-icon {
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
}

/* ====== STICKY CTA BAR ====== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 21, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px max(12px, env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-cta-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  background: var(--red);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
  transition: background 200ms var(--ease-out), transform 200ms var(--ease-spring);
}
.sticky-cta-btn:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  /* Fully opaque on mobile — backdrop-filter bleeds through light page backgrounds */
  .sticky-cta {
    background: rgb(26, 21, 18);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
@media (max-width: 480px) {
  .sticky-cta-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .sticky-cta-btn { width: 100%; justify-content: center; }
}

/* ====== EXIT INTENT MODAL ====== */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.exit-modal.is-visible {
  display: flex;
}
.exit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.exit-modal-content {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-card);
  padding: 3rem 2.5rem;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  animation: exitSlideUp 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes exitSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.exit-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.exit-modal-heading {
  font-family: 'Instrument Serif', serif;
  font-size: 1.75rem;
  color: var(--ink);
  margin: 0 0 0.75rem;
}
.exit-modal-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.exit-modal-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--red);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 200ms var(--ease-out), transform 200ms var(--ease-spring);
}
.exit-modal-cta:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
}
.exit-modal-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 1rem 0 0;
}

/* ====== READING PROGRESS BAR ====== */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  width: 0%;
  z-index: 9999;
  transition: width 50ms linear;
  pointer-events: none;
}

/* ====== ACTIVITY TOAST ====== */
.activity-toast {
  position: fixed;
  bottom: 80px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white, #fff);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  z-index: 999;
  max-width: 320px;
  pointer-events: none;
}
.activity-toast.is-visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.toast-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: toastPulse 2s ease-in-out infinite;
}
@keyframes toastPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.toast-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}
.toast-text strong {
  font-weight: 700;
}
.toast-time {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  color: var(--muted);
  margin: 0;
}
.toast-close {
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--muted);
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .activity-toast {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: 72px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .activity-toast { transition: none; }
}

/* ====== FOUNDING MEMBER BADGE ====== */
.founding-badge {
  max-width: 400px;
  margin: 1rem auto 0;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}
.founding-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.founding-star {
  color: #fbbf24;
  font-size: 0.9rem;
}
.founding-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}
.founding-progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.founding-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.founding-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #e84057);
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.founding-count {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
}

/* ─── CTA Booking Iframe ─── */
.cta-booking {
  margin-top: 1.5rem;
  text-align: center;
}
.cta-booking-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.cta-booking iframe {
  margin: 0 auto;
  display: block;
}

/* ─── Founder CTA (legacy) ─── */
.founder-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.founder-cta .btn {
  font-size: 1rem;
  padding: 16px 36px;
}
.founder-cta-sub {
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
}
.founder-cta-sub a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--sand);
}
.founder-cta-sub a:hover {
  color: var(--red);
  border-color: var(--red);
}

/* ─── Inline Booking Section (split photo + form) ─── */
.inline-booking-section {
  max-width: 1100px;
  margin: 3rem auto 0;
  background: #1a1614;
  border-radius: var(--radius-module, 2.5rem);
  text-align: center;
  box-shadow: 0 24px 64px rgba(23, 19, 17, 0.25), 0 8px 24px rgba(23, 19, 17, 0.12);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.inline-booking-section::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 0;
  width: 50%;
  height: 350px;
  background: radial-gradient(ellipse, rgba(200, 16, 46, 0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* ── Photo half ── */
.booking-photo-half {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
.booking-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.booking-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 22, 20, 0.65) 0%,
    rgba(26, 22, 20, 0.35) 45%,
    rgba(26, 22, 20, 0.05) 70%,
    rgba(26, 22, 20, 0) 100%
  );
  pointer-events: none;
}
.booking-photo-tagline {
  position: absolute;
  top: 62%;
  left: 2.25rem;
  right: 2.25rem;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  z-index: 2;
  margin: 0;
  text-align: left;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

/* ── Form half ── */
.booking-form-half {
  padding: 2.5rem 2.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.booking-form-header {
  text-align: left;
  margin-bottom: 1.5rem;
}
.booking-form-header strong {
  display: block;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.booking-form-header span {
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}
.booking-bullets {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.booking-bullets li {
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 1.25rem;
  position: relative;
}
.booking-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red, #c8102e);
}
.booking-bullets em {
  font-style: normal;
  color: #fff;
  font-weight: 600;
}
.inline-booking-section .turnout-booking--dark {
  background: transparent;
  border: none;
  padding: 0;
  max-width: none;
}
.booking-widget-title {
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.booking-tz-note {
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin: -8px 0 12px;
}
.booking-role-toggle {
  margin-bottom: 12px;
  text-align: left;
}
.booking-role-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 8px;
}
.booking-role-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.booking-role-pill {
  padding: 7px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 150ms ease;
}
.booking-role-pill:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.booking-role-pill.is-selected {
  background: var(--red, #c8102e);
  border-color: var(--red, #c8102e);
  color: #fff;
}
.booking-fields {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}
.booking-input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: border-color 200ms, box-shadow 200ms;
}
.booking-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.booking-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.25);
}
.booking-input.is-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.3);
}
.booking-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.booking-trust-sep {
  opacity: 0.4;
}
.booking-contact-alt {
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.75rem;
}
.booking-contact-alt a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.booking-contact-alt a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}
/* ── Booking: tablet (stack to single column) ── */
@media (max-width: 768px) {
  .inline-booking-section {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 2rem auto 0;
    border-radius: var(--radius-card, 1.25rem);
  }
  .booking-photo-half {
    min-height: 280px;
    max-height: 320px;
  }
  .booking-photo-tagline {
    top: 60%;
    left: 1.5rem;
    font-size: 1.35rem;
  }
  .booking-form-half {
    padding: 1.75rem 1.5rem 1.5rem;
  }
}

/* ── Booking: mobile ── */
@media (max-width: 480px) {
  .inline-booking-section {
    margin: 2rem var(--page-gutter, 1rem) 0;
  }
  .booking-photo-half {
    min-height: 240px;
    max-height: 280px;
  }
  .booking-photo-tagline {
    top: 58%;
    left: 1.25rem;
    font-size: 1.2rem;
  }
  .booking-form-half {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .booking-fields {
    flex-direction: column;
  }
  .booking-role-pills {
    justify-content: center;
  }
  .booking-trust-strip {
    flex-direction: column;
    gap: 4px;
  }
  .booking-trust-sep {
    display: none;
  }
}

/* ─── Phone screen content visibility fixes ─── */
.phone-screen .fb-header,
.phone-screen .fb-text,
.phone-screen .fb-engagement,
.phone-screen .fb-actions,
.phone-screen .fb-name,
.phone-screen .fb-info,
.phone-screen .fb-dots,
.phone-screen .ig-header,
.phone-screen .ig-username,
.phone-screen .ig-dots,
.phone-screen .ig-likes,
.phone-screen .ig-caption,
.phone-screen .ig-action-row {
  color: rgba(255, 255, 255, 0.9);
}
.phone-screen .fb-action,
.phone-screen .fb-counts,
.phone-screen .ig-icon {
  color: rgba(255, 255, 255, 0.7);
}
.phone-screen .fb-engagement {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.phone-screen .fb-actions {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.phone-screen .fb-avatar span {
  color: #fff;
}

/* Calculator instructions */
.calc-instructions {
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  color: var(--muted);
  text-align: center;
  margin: 0 0 0.75rem;
  grid-column: 1 / -1;
}

/* ─── CTA Booking Button ─── */
.cta-booking {
  margin-top: 1.5rem;
  text-align: center;
}
.cta-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 200ms var(--ease-out);
}
.cta-booking-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  transform: translateY(-2px);
}
.cta-booking-label {
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.75rem;
}

/* ================================================================
   BOOKING WIDGET (dark variant — CTA section)
   ================================================================ */
.turnout-booking {
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: var(--radius-card, 1.25rem);
  font-family: 'Manrope', sans-serif;
}
.turnout-booking--dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.inline-booking-section .turnout-booking--dark {
  background: transparent;
  border: none;
  padding: 0;
}
.turnout-booking--light {
  background: rgba(23,19,17,0.03);
  border: 1px solid rgba(23,19,17,0.08);
}
.turnout-booking--light .booking-date-btn {
  background: rgba(23,19,17,0.04);
  border-color: rgba(23,19,17,0.12);
  color: var(--ink, #171311);
}
.turnout-booking--light .booking-date-btn:hover {
  background: rgba(23,19,17,0.08);
  border-color: rgba(23,19,17,0.2);
  color: var(--ink, #171311);
}
.turnout-booking--light .booking-date-btn.is-selected {
  background: var(--red, #c8102e);
  border-color: var(--red, #c8102e);
  color: #fff;
}
.turnout-booking--light .booking-time-btn {
  background: rgba(23,19,17,0.04);
  border-color: rgba(23,19,17,0.12);
  color: var(--ink, #171311);
}
.turnout-booking--light .booking-time-btn:hover {
  background: rgba(23,19,17,0.08);
  border-color: rgba(23,19,17,0.2);
  color: var(--ink, #171311);
}
.turnout-booking--light .booking-time-btn.is-selected {
  background: var(--red, #c8102e);
  border-color: var(--red, #c8102e);
  color: #fff;
}
.turnout-booking--light .booking-no-slots {
  color: var(--muted, rgba(23,19,17,0.55));
}
.turnout-booking--light .booking-loading {
  color: var(--muted, rgba(23,19,17,0.55));
}
.turnout-booking--light .booking-spinner {
  border-color: rgba(23,19,17,0.1);
  border-top-color: rgba(23,19,17,0.5);
}
.turnout-booking--light .booking-summary strong {
  color: var(--ink, #171311);
}
.turnout-booking--light .booking-summary span {
  color: var(--muted, rgba(23,19,17,0.55));
}
.turnout-booking--light .booking-more-dates {
  color: var(--muted, rgba(23,19,17,0.55)) !important;
}

/* ─── Date Buttons ─── */
.booking-dates {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.booking-date-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: all 200ms var(--ease-out, ease);
  font-family: 'Manrope', sans-serif;
  min-width: 80px;
}
.booking-date-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.booking-date-btn.is-selected {
  background: var(--red, #c8102e);
  border-color: var(--red, #c8102e);
  color: #fff;
}
.booking-date-day {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.booking-date-num {
  font-size: 0.8125rem;
  font-weight: 500;
}

/* ─── Time Slots ─── */
.booking-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
  margin-top: 1rem;
}
.booking-time-btn {
  padding: 10px 8px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: rgba(255,255,255,0.75);
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 150ms var(--ease-out, ease);
}
.booking-time-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.booking-time-btn.is-selected {
  background: var(--red, #c8102e);
  border-color: var(--red, #c8102e);
  color: #fff;
}
.booking-no-slots {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  padding: 0;
}
.booking-live-calendar {
  text-align: center;
  padding: 1rem 0;
}
.booking-live-calendar .booking-no-slots {
  margin: 0 0 0.75rem;
}

/* ─── Loading ─── */
.booking-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1.5rem 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}
.booking-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: booking-spin 0.6s linear infinite;
}
@keyframes booking-spin { to { transform: rotate(360deg); } }

/* ─── Confirmation ─── */
.booking-confirm {
  margin-top: 1.25rem;
  animation: booking-fadeIn 300ms var(--ease-out, ease);
}
@keyframes booking-fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.booking-summary {
  text-align: center;
  margin-bottom: 1rem;
}
.booking-summary strong {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.booking-summary span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.booking-submit {
  height: 48px;
  border: none;
  border-radius: 999px;
  background: var(--red, #c8102e);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 200ms, transform 200ms;
  box-shadow: 0 4px 20px rgba(200,16,46,0.3);
}
.booking-submit:hover {
  background: var(--red-deep, #941226);
  transform: translateY(-1px);
}
.booking-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ─── Success State ─── */
.booking-done {
  text-align: center;
  padding: 1.5rem 0;
  animation: booking-fadeIn 400ms var(--ease-out, ease);
}
.booking-check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 0.75rem;
}
.booking-done p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  margin: 0.25rem 0;
}
.booking-done strong {
  font-size: 1.125rem;
  color: #fff;
}
.booking-details {
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.8125rem !important;
}
.booking-note {
  color: rgba(255,255,255,0.4) !important;
  font-size: 0.8125rem !important;
  margin-top: 0.5rem !important;
}

/* ─── Fallback / Error ─── */
.booking-error {
  text-align: center;
  padding: 1rem 0;
  animation: booking-fadeIn 300ms var(--ease-out, ease);
}
.booking-error-msg {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.booking-fallback-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  text-decoration: none;
  transition: all 200ms;
}
.booking-fallback-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.booking-retry-btn {
  display: block;
  margin: 0.75rem auto 0;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: underline;
}
.booking-retry-btn:hover {
  color: #fff;
}

/* ─── Mobile ─── */
@media (max-width: 480px) {
  .booking-dates {
    gap: 6px;
  }
  .booking-date-btn {
    padding: 8px 10px;
    min-width: 60px;
  }
  .booking-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Hide dashboard mockup on mobile */
@media (max-width: 768px) {
  .product-preview { display: none; }
}

/* Push phone screen content below the Dynamic Island */
.phone-screen-content {
  padding-top: 28px;
}

/* ─── Calculator Personalization Flash ───────────── */
.calc-personalized {
  transition: background-color 600ms ease, color 300ms ease;
}
.calc-flash {
  animation: calcFlash 800ms ease;
}
@keyframes calcFlash {
  0%   { background-color: rgba(200, 16, 46, 0.12); }
  100% { background-color: transparent; }
}

/* CTA savings line */
.cta-savings {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-top: -0.25rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.cta-savings strong {
  color: #fff;
  font-weight: 700;
}

/* Research grid — real logos instead of CSS circles */
.rv-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 200ms, box-shadow 200ms;
}
.rv-logo.rv-glow {
  animation: rv-pulse 2.4s ease-in-out infinite;
}

/* Research grid — labeled brand logos */
.research-grid--labeled {
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  gap: 12px;
}
.rv-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.rv-item .rv-logo {
  width: 44px;
  height: 44px;
}
.rv-name {
  font-family: "Manrope", sans-serif;
  font-size: 0.56rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
  max-width: 80px;
  overflow: visible;
  white-space: nowrap;
}
.rv-item.rv-glow .rv-logo {
  animation: rv-pulse 2.4s ease-in-out infinite;
}
@media (max-width: 600px) {
  .research-grid--labeled { grid-template-columns: repeat(auto-fill, minmax(56px, 1fr)); gap: 8px; }
  .rv-item .rv-logo { width: 32px; height: 32px; }
  .rv-name { font-size: 0.48rem; }
}



/* Booking intro — static photo + text next to calendar */
.booking-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}
.booking-nate-photo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.booking-intro-text {
  text-align: left;
}
.booking-intro-text strong {
  display: block;
  font-family: "Instrument Serif", serif;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 4px;
}
.booking-intro-text span {
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ─── Dark-card overrides for inline booking on homepage ─── */
/* Card bg is var(--ink, #171311) — all content must be white/light */
.inline-booking-section .booking-nate-photo {
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.inline-booking-section .booking-intro-text strong {
  color: #fff;
}
.inline-booking-section .booking-intro-text span {
  color: rgba(255, 255, 255, 0.7);
}
.inline-booking-section .booking-intro-text {
  color: rgba(255, 255, 255, 0.85);
}
.inline-booking-section .booking-date-btn {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.inline-booking-section .booking-date-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.inline-booking-section .booking-date-btn.is-selected {
  background: var(--red, #c8102e);
  border-color: var(--red, #c8102e);
  color: #fff;
}
.inline-booking-section .booking-date-day {
  color: rgba(255, 255, 255, 0.9);
}
.inline-booking-section .booking-date-num {
  color: #fff;
}
.inline-booking-section .booking-time-btn {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.inline-booking-section .booking-time-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.inline-booking-section .booking-time-btn.is-selected {
  background: var(--red, #c8102e);
  border-color: var(--red, #c8102e);
  color: #fff;
}
.inline-booking-section .booking-more-dates {
  color: rgba(255, 255, 255, 0.7) !important;
}
.inline-booking-section .booking-role-label {
  color: rgba(255, 255, 255, 0.7);
}
.inline-booking-section .booking-role-pill {
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}
.inline-booking-section .booking-role-pill:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.inline-booking-section .booking-role-pill.is-selected {
  background: var(--red, #c8102e);
  border-color: var(--red, #c8102e);
  color: #fff;
}
.inline-booking-section .booking-input {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
  font-size: 0.95rem;
  padding: 13px 16px;
  border-radius: 12px;
}
.inline-booking-section .booking-input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.inline-booking-section .booking-input:focus {
  border-color: #fff !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}
.inline-booking-section .booking-trust-strip {
  color: rgba(255, 255, 255, 0.6);
}
.inline-booking-section .booking-trust-sep {
  color: rgba(255, 255, 255, 0.4);
}
.inline-booking-section .booking-contact-alt {
  color: rgba(255, 255, 255, 0.6);
}
.inline-booking-section .booking-contact-alt a {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}
.inline-booking-section .booking-summary strong {
  color: #fff;
}
.inline-booking-section .booking-summary span {
  color: rgba(255, 255, 255, 0.7);
}
.inline-booking-section .booking-submit {
  background: var(--red, #c8102e);
  color: #fff;
}
.inline-booking-section .booking-no-slots,
.inline-booking-section .booking-loading {
  color: rgba(255, 255, 255, 0.7);
}
.inline-booking-section .booking-live-calendar .booking-no-slots {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 480px) {
  .booking-nate-photo { width: 64px; height: 64px; }
  .booking-intro-text strong { font-size: 1.1rem; }
}

/* Web lines overlay on ad grid */
.cta-web-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
}
.cta-web-lines line {
  stroke: var(--red);
  stroke-width: 0.5;
  stroke-dasharray: 4 3;
}
.cta-web-lines circle {
  fill: var(--red);
  opacity: 0.6;
}

/* Nav tagline */
.nav-tagline {
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 8px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .nav-tagline { display: none; }
}

/* Founder result — normal text, not a callout */
.founder-result {
  border-left: none;
  background: none;
  padding: 0;
  margin: 1.5rem 0;
  box-shadow: none;
  border-radius: 0;
}
.founder-result p {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.7;
  color: var(--ink);
}

/* ================================================================
   MOBILE CONTENT OPTIMIZATION
   Philosophy: big picture, outcomes, excitement on mobile.
   Detail and depth on desktop/iPad.
   ================================================================ */

/* Utility: show only on mobile / only on desktop */
.mobile-only { display: none !important; }
.desktop-only { display: block !important; }
@media (max-width: 680px) {
  .mobile-only { display: block !important; }
  .desktop-only { display: none !important; }
}

@media (max-width: 680px) {
  /* Hide detail-heavy estimate conditions cards on mobile */
  .conditions-grid { display: none !important; }
  .conditions-footer { display: none !important; }

  /* Hide entire network scrolling section on mobile (logos hidden = heading makes no sense) */
  .network { display: none !important; }

  /* Hide proof section SVG visualization (keep proof cards) */
  .intel-flow { display: none !important; }

  /* Hide last 3 FAQ items on mobile */
  .faq-list details:nth-child(n+4) { display: none !important; }

  /* Condense features panel descriptions */
  .features-panel p {
    font-size: 0.88rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Founder story — shorter on mobile */
  .founder-narrative p:nth-child(n+3) { display: none; }

  /* Comparison table — hide less important rows */
  .comparison-row:nth-child(5),
  .comparison-row:nth-child(6) { display: none; }

  /* Tighter section spacing on mobile */
  section { padding-top: 3rem !important; padding-bottom: 3rem !important; }

  /* Hero — more impactful on mobile */
  .hero-heading { font-size: clamp(2rem, 8vw, 3rem); }

  /* "Start here" label slightly smaller on mobile */
  .estimate-start-label { font-size: 0.62rem; }
}

/* iPad — keep most content but tighten spacing */
@media (min-width: 681px) and (max-width: 1024px) {
  .features-panel p { font-size: 0.95rem; }
  .founder-narrative p:nth-child(n+4) { display: none; }
}
