/* ==========================================================================
   Vivid Concepts — Scroll-Driven Experience
   Ghost tracer effect + keyword highlighting + immersive scroll
   ========================================================================== */

/* ==========================================================================
   1. CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Neutrals */
  --black: #010101;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Brand purple - used for ghost tracer and highlights only */
  --brand: #ac4fc6;
  --brand-glow: rgba(172, 79, 198, 0.4);
  --brand-soft: rgba(172, 79, 198, 0.15);

  /* Typography */
  --font-sans: 'avenir-next', 'Avenir Next', 'Avenir', system-ui, sans-serif;
  --font-serif: quiche-sans, 'avenir-next', 'Avenir Next', sans-serif;
  /* --font-display: kept as sans so body headings/buttons use Avenir Next.
     Use --font-serif explicitly for hero h1 and manifesto display only. */
  --font-display: 'avenir-next', 'Avenir Next', 'Avenir', system-ui, sans-serif;

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}


/* ==========================================================================
   2. RESET + BASE
   ========================================================================== */

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

html {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

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

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

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


/* ==========================================================================
   2.5 SECTION DIVIDERS
   ========================================================================== */

.section-divider {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 clamp(24px, 5vw, 80px);
}

.section-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--gray-700) 20%,
    var(--gray-600) 50%,
    var(--gray-700) 80%,
    transparent 100%
  );
  transition: width 1.2s var(--ease-out-expo);
}

.section-divider.is-visible::before {
  width: 100%;
}

.section-divider.gradient::before {
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--brand-soft) 20%,
    var(--brand) 50%,
    var(--brand-soft) 80%,
    transparent 100%
  );
  height: 2px;
  box-shadow: 0 0 20px var(--brand-glow);
}

/* ==========================================================================
   ECG DIVIDER
   ========================================================================== */

.ecg-divider {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.ecg-canvas {
  display: block;
  width: 100%;
  height: 100%;
}




/* ==========================================================================
   2.6 WORD SPLIT ANIMATIONS
   ========================================================================== */

.split-text .word,
.split-words .word {
  display: inline-block;
  /* overflow:hidden was clipping punctuation glyphs that overshoot the
     baseline box (e.g. the period after italic 'machine.'). The
     y-translate reveal still works without clipping. */
  vertical-align: top;
}

.split-text .word {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s var(--ease-out-expo), 
              transform 0.6s var(--ease-out-expo);
}

.split-words .word {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s var(--ease-out-expo), 
              transform 0.5s var(--ease-out-expo);
}

/* Reveal states */
.split-text.revealed .word,
.split-words.revealed .word {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays - applied via JS */


/* ==========================================================================
   3. GHOST TRACER CANVAS
   ========================================================================== */

#ghost-tracer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}


/* ==========================================================================
   4. NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 5vw, 80px);
  z-index: 100;
  /* mix-blend-mode: difference made the logo invert against light sections
     and rendered as broken-image alt text. Use a backdrop fade instead. */
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 1;
}


/* ==========================================================================
   5. HERO
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #000;
}

/* ==========================================================================
   5.1 HERO STARFIELD — perpetual space travel
   ========================================================================== */
.hero-starfield {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

#warp-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}



.hero-video-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.hero-title .line {
  display: block;
}

.hero-title .line:nth-child(2),
.hero-title .line:nth-child(4) {
  font-style: italic;
}

.scroll-prompt {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.5;
}
.scroll-prompt span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--white) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

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


/* ==========================================================================
   6. HIGHLIGHT WORDS - Subtle text glow, no blocks
   ========================================================================== */

.highlight-word {
  position: relative;
  display: inline-block;
  color: var(--white);
  transition: color 0.8s var(--ease-out-expo), text-shadow 0.8s var(--ease-out-expo);
}

/* Active state - just color change and subtle glow, NO backgrounds */
.highlight-word.active {
  color: var(--brand);
  text-shadow: 
    0 0 20px var(--brand-glow),
    0 0 40px var(--brand-glow),
    0 0 60px rgba(172, 79, 198, 0.2);
}

/* Scroll-driven tracer orb - large and bold */
.tracer {
  position: fixed;
  width: 32px;
  height: 32px;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, var(--brand) 30%, rgba(172, 79, 198, 0.4) 60%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  box-shadow: 
    0 0 30px var(--brand),
    0 0 60px var(--brand),
    0 0 100px var(--brand-glow);
  transition: opacity 0.4s ease;
  transform: translate(-50%, -50%);
}

.tracer.visible {
  opacity: 1;
}

/* Trail dots - FIXED to document, fade over time */
.trail-step {
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, var(--brand) 0%, rgba(172, 79, 198, 0.2) 70%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 10px var(--brand-glow);
  transform: translate(-50%, -50%);
  animation: decayDot 2.6s ease-out forwards;
}

@keyframes decayDot {
  0% { 
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
  70% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% { 
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
}


/* ==========================================================================
   7. MANIFESTO
   ========================================================================== */

.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 15vh, 160px) clamp(24px, 8vw, 120px);
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.manifesto-content {
  max-width: 720px;
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 1;
}

.manifesto-text {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.005em;
  color: #444;
  margin-bottom: 1.4em;
}

.manifesto-text:first-child {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin-bottom: 0.6em;
}

.manifesto-text:last-child {
  margin-bottom: 0;
}

.manifesto-closer {
  font-style: italic;
  font-weight: 500;
  color: #555;
}

/* Letter animation states */
.manifesto-word {
  display: inline-block;
  /* keeps every word's letters together so words never break mid-word */
  white-space: nowrap;
}

.manifesto-letter {
  display: inline-block;
  will-change: transform, opacity;
  transform-style: preserve-3d;
  line-height: 1;
}

.manifesto-letter.space {
  width: 0.3em;
}


/* ==========================================================================
   8. SECTION LABELS + HEADLINES
   ========================================================================== */

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}

/* ==========================================================================
   9. INDUSTRY SECTIONS - Alternating Layout
   ========================================================================== */

.industry-stack {
  position: relative;
}

.industry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
  min-height: 100vh;
  height: 100vh;
  padding: clamp(80px, 10vw, 120px) clamp(40px, 6vw, 100px);
  max-width: 1400px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  box-sizing: border-box;
  transform-origin: top center;
  will-change: transform, opacity;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 12px 60px rgba(0,0,0,0.5), 0 2px 12px rgba(0,0,0,0.3);
  overflow: clip;
  grid-template-areas: "content visual";
}

.industry-right {
  grid-template-areas: "visual content";
}

.industry-content {
  grid-area: content;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100%;
}

.inline-intro-block {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 100px) clamp(48px, 6vw, 80px);
}

.inline-intro-headline {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.inline-intro-headline em {
  font-style: italic;
  color: var(--brand);
}

.inline-intro-sub {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  max-width: 480px;
  margin: 0;
}

.industry-visual {
  grid-area: visual;
  min-width: 0;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 0 0 transparent;
  position: relative;
  opacity: 1;
  transform: none;
}



[data-industry="medical"] .industry-visual {
  justify-content: flex-start;
  overflow: hidden;
  max-height: 520px;
}

[data-industry="medical"] .industry-visual .mockup-window {
  max-width: 100%;
  transform: none;
  margin-bottom: 0;
}

[data-industry="home-services"] .industry-visual .mockup-window {
  max-width: 480px;
}

[data-industry="home-services"] {
  transform: scale(0.88);
}

[data-industry="home-services"] .mockup-body {
  max-height: none;
  overflow: visible;
}


.industry-number {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #cccccc;
  margin-bottom: 16px;
  transition: all 0.6s ease;
}

.industry.is-active .industry-number {
  -webkit-text-stroke-color: var(--brand);
  text-shadow: 0 0 40px var(--brand-glow);
}

.industry-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #0a0a0a;
}

.industry-subtitle {
  font-size: clamp(16px, 1.8vw, 22px);
  color: #555555;
  margin-bottom: clamp(24px, 3vw, 40px);
  font-weight: 400;
}

.industry-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}

.industry-features li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 20px;
  border-left: 2px solid #e0e0e0;
  transition: border-color 0.4s ease, padding-left 0.4s ease;
}

.industry-features li:hover {
  border-color: var(--brand);
  padding-left: 28px;
}

.feature-label {
  font-size: 17px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.01em;
}

.feature-detail {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
}


/* ==========================================================================
   9.1 MOCKUP WINDOW
   ========================================================================== */

.mockup-window {
  width: 100%;
  max-width: 480px;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: #242424;
  border-bottom: 1px solid #2e2e2e;
}

.mockup-titlebar .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }

.mockup-body {
  padding: 20px 24px;
}

.menu-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #2a2a2a;
}

.menu-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #222;
}

.menu-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.menu-row:hover .menu-thumb {
  transform: scale(1.05);
}

.menu-row:last-child { border-bottom: none; }

.menu-row.highlight {
  background: rgba(172, 79, 198, 0.07);
  margin: 0 -24px;
  padding: 12px 24px;
  border-radius: 0;
  border-bottom: none;
}

.menu-row.dimmed {
  opacity: 0.4;
}

.menu-row.dimmed .menu-thumb {
  filter: grayscale(100%);
}

.menu-row.dimmed .menu-row-name {
  text-decoration: line-through;
  text-decoration-color: #dc2626;
}


.menu-row-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.menu-row-name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  transition: text-decoration 0.3s ease;
}

.menu-row-desc {
  font-size: 11px;
  color: #666;
}

.menu-row-price {
  font-size: 14px;
  font-weight: 600;
  color: #aaa;
  white-space: nowrap;
}

.menu-pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.menu-pill.purple { 
  background: var(--brand); 
  color: #fff; 
  box-shadow: 0 2px 10px rgba(172, 79, 198, 0.4);
}

.menu-pill.red { 
  background: #dc2626; 
  color: #fff; 
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.4);
}

.visual-tag {
  margin-top: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  background: #f0f0f0;
  padding: 6px 16px 6px 28px;
  border-radius: 16px;
  flex-shrink: 0;
  position: relative;
}

.visual-tag::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.industry-visual.in-view .visual-tag::before {
  animation: syncPulse 2s ease-in-out infinite;
  animation-delay: 1.8s;
}

@keyframes syncPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}


/* ==========================================================================
   MOCKUP ENTRANCE ANIMATIONS (triggered by .in-view on parent)
   ========================================================================== */

/* Schedule mockup */
.sched-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sched-date {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.sched-ai-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(172, 79, 198, 0.25);
  color: var(--brand);
  border: 1px solid rgba(172, 79, 198, 0.4);
  padding: 3px 8px;
  border-radius: 20px;
}

.sched-grid {
  display: flex;
  gap: 6px;
}

.sched-times {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 22px;
}

.sched-time {
  height: 32px;
  font-size: 10px;
  color: #555;
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding-right: 6px;
}

.sched-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.sched-col-name {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-align: center;
  margin-bottom: 2px;
  letter-spacing: 0.03em;
}

.sched-block {
  height: 32px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sched-block.open {
  background: #1e1e1e;
  border: 1px dashed #333;
}

.sched-block.booked {
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  color: #666;
}

.sched-block.booked-ext {
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-top: none;
  border-radius: 0 0 6px 6px;
  margin-top: -8px;
}

.sched-block.match {
  background: rgba(172, 79, 198, 0.2);
  border: 1px solid var(--brand);
  color: var(--brand);
  box-shadow: 0 0 10px rgba(172, 79, 198, 0.2);
}

.sched-block.match-ext {
  background: rgba(172, 79, 198, 0.12);
  border: 1px solid var(--brand);
  border-top: none;
  border-radius: 0 0 6px 6px;
  margin-top: -8px;
}


/* ==========================================================================
   9.1c PATIENT INTAKE MOCKUP (Medical/Dental)
   ========================================================================== */

.intake-form {
  padding: 20px;
}

.intake-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.intake-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.intake-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.intake-badge.green {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.intake-patient {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  margin-bottom: 16px;
}

.intake-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.intake-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.intake-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.intake-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

.intake-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.intake-field {
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  position: relative;
}

.intake-field.filled {
  background: rgba(172, 79, 198, 0.06);
  border-color: rgba(172, 79, 198, 0.2);
}

.intake-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.intake-value {
  display: block;
  font-size: 13px;
  color: var(--white);
}

.intake-auto {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 9px;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.intake-input {
  display: block;
  height: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  position: relative;
}

.intake-input::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: var(--brand);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.intake-insights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}

.insight-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.insight-icon {
  font-size: 14px;
}

.insight-row strong {
  color: #22c55e;
}


/* ==========================================================================
   9.1d DISPATCH BOARD MOCKUP (Home Services)
   ========================================================================== */

.dispatch-board {
  padding: 14px;
}

.dispatch-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.dispatch-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.dispatch-count {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.dispatch-jobs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.dispatch-job {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dispatch-job.complete {
  opacity: 0.5;
}

.dispatch-job-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.dispatch-job.en-route .dispatch-status-dot {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

.dispatch-job.assigned .dispatch-status-dot {
  background: var(--brand);
  box-shadow: 0 0 8px rgba(172, 79, 198, 0.4);
}

.dispatch-job.queued .dispatch-status-dot {
  background: rgba(255,255,255,0.3);
}

.dispatch-job.complete .dispatch-status-dot {
  background: rgba(34, 197, 94, 0.5);
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.dispatch-job-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.dispatch-job-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}

.dispatch-job-type {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}

.dispatch-job-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dispatch-eta,
.dispatch-tech,
.dispatch-time,
.dispatch-invoice {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}

.dispatch-eta {
  color: #22c55e;
}

.dispatch-badge {
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.dispatch-badge.en-route {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.dispatch-badge.assigned {
  background: rgba(172, 79, 198, 0.15);
  color: var(--brand);
}

.dispatch-badge.queued {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
}

.dispatch-badge.complete {
  background: rgba(34, 197, 94, 0.1);
  color: rgba(34, 197, 94, 0.7);
}

.dispatch-footer {
  padding: 8px 10px;
  background: rgba(172, 79, 198, 0.08);
  border: 1px solid rgba(172, 79, 198, 0.2);
  border-radius: 8px;
}

.dispatch-ai {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}


/* ==========================================================================
   9.2 INDUSTRY RESPONSIVE
   ========================================================================== */

@media (max-width: 1000px) {
  .industry {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "content" !important;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 86svh;
    height: auto;
    padding: 24px clamp(20px, 5vw, 34px) 34px;
    gap: 24px;
    align-items: stretch;
  }

  .industry-visual {
    display: flex;
    min-height: 0;
    max-height: none;
    padding: 0;
    background: transparent;
    border-radius: 0;
    justify-content: flex-end;
  }

  [data-industry="medical"] .industry-visual {
    max-height: none;
    overflow: clip;
  }

  .industry-visual .mockup-window {
    max-width: min(100%, 340px);
    transform: none;
  }

  .mockup-titlebar {
    padding: 9px 12px;
  }

  .mockup-titlebar .dot {
    width: 9px;
    height: 9px;
  }

  .mockup-body {
    padding: 14px 16px;
  }

  .menu-section-label {
    margin-bottom: 7px;
    padding-bottom: 7px;
  }

  .menu-row {
    gap: 9px;
    padding: 7px 0;
  }

  .menu-thumb {
    width: 38px;
    height: 38px;
    border-radius: 6px;
  }

  .menu-row.highlight {
    margin: 0 -16px;
    padding: 8px 16px;
  }

  .menu-row-name,
  .menu-row-price {
    font-size: 12px;
  }

  .menu-row-desc {
    font-size: 10px;
  }

  .menu-pill {
    font-size: 8px;
    padding: 2px 6px;
  }

  .industry-visual .visual-tag {
    display: none;
  }

  .industry-content {
    height: auto;
    justify-content: flex-end;
    align-self: end;
  }

  [data-industry="home-services"] {
    transform: none;
  }

  .industry-number {
    font-size: 60px;
  }

  .industry-title {
    font-size: clamp(28px, 6vw, 40px);
  }

  .industry-subtitle {
    margin-bottom: 34px;
  }

  .industry-features {
    gap: 22px;
  }
}


/* ==========================================================================
   10. TECHNICAL PATTERNS
   ========================================================================== */

.tech-patterns {
  min-height: 100vh;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}

.tech-patterns::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(172, 79, 198, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.tech-patterns > * {
  position: relative;
  z-index: 1;
}

.tech-patterns-layout {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  width: 100%;
}

.tech-patterns-copy {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

.tech-patterns-copy .section-label {
  position: static;
  margin-bottom: 16px;
}

.tech-patterns-copy .section-headline {
  margin: 0;
}

.patterns-video {
  flex: 1;
  position: relative;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.7);
}

@media (max-width: 900px) {
  .tech-patterns-layout {
    flex-direction: column;
  }
  
  .tech-patterns-copy {
    flex: none;
    max-width: 100%;
    text-align: center;
  }
  
  .patterns-video {
    width: 100%;
  }
}

.patterns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.patterns-video video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.patterns-video-border {
  position: absolute;
  inset: -3px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  pointer-events: none;
  animation: water-glow 4s ease-in-out infinite;
}

@keyframes water-glow {
  0%, 100% {
    box-shadow:
      0 0 8px rgba(255, 255, 255, 0.3),
      0 0 16px rgba(255, 255, 255, 0.15);
  }
  50% {
    box-shadow:
      0 0 12px rgba(255, 255, 255, 0.5),
      0 0 24px rgba(255, 255, 255, 0.25);
  }
}

.pattern-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 8px;
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.pattern-card:hover {
  border-color: var(--gray-600);
  transform: translateY(-4px);
}

.pattern-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.pattern-source {
  font-size: 13px;
  color: var(--brand);
  font-weight: 500;
}

.pattern-method {
  font-size: 13px;
  color: var(--gray-500);
}


/* ==========================================================================
   11. PRICING
   ========================================================================== */

.pricing {
  background: var(--white);
  color: var(--black);
  padding: clamp(100px, 14vw, 160px) clamp(40px, 8vw, 120px);
}

.pricing-inner {
  max-width: 1600px;
  margin: 0 auto;
  text-align: left;
}

.pricing .section-label {
  color: var(--brand);
}

.pricing-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 16px 0 20px;
  color: var(--black);
  max-width: 1100px;
  text-wrap: balance;
}

.pricing-subhead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0 0 64px;
  max-width: 720px;
}

/* Pricing Cards Grid */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Individual Card */
.pricing-card {
  position: relative;
  background: var(--gray-100);
  border-radius: 16px;
  padding: 44px 36px 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: var(--black);
  color: var(--white);
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 20px;
}

/* Card Header */
.pricing-card-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-300);
}

.pricing-card.featured .pricing-card-header {
  border-bottom-color: var(--gray-700);
}

.pricing-tier {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
}

.pricing-card.featured .pricing-tier {
  color: var(--gray-400);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  margin: 8px 0;
}

.pricing-dollar {
  font-size: 28px;
  font-weight: 600;
  margin-right: 2px;
}

.pricing-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-period {
  font-size: 18px;
  color: var(--gray-500);
  margin-left: 4px;
}

.pricing-card.featured .pricing-period {
  color: var(--gray-400);
}

.pricing-after {
  font-size: 14px;
  color: var(--brand);
  font-weight: 500;
}

/* Card Body */
.pricing-card-body {
  flex: 1;
}

.pricing-desc {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 28px;
}

.pricing-card.featured .pricing-desc {
  color: var(--gray-300);
}

/* Feature Groups */
.pricing-group {
  margin-bottom: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
}

.pricing-group:first-of-type {
  border-top: none;
  padding-top: 0;
}

.pricing-group:last-of-type {
  margin-bottom: 0;
}

.pricing-card.featured .pricing-group {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.pricing-group-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 12px;
}

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

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.45;
  padding: 6px 0;
  color: var(--gray-800);
}

.pricing-card.featured .pricing-features li {
  color: var(--gray-100);
}

.pricing-features .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(172, 79, 198, 0.12);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.pricing-card.featured .pricing-features .check {
  background: rgba(172, 79, 198, 0.25);
}

/* CTA Button */
.pricing-cta {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 16px 32px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.3);
}

.pricing-card.featured .pricing-cta {
  background: var(--white);
  color: var(--black);
}

.pricing-card.featured .pricing-cta:hover {
  box-shadow: 0 8px 24px -8px rgba(255,255,255,0.3);
}

/* Fine Print */
.pricing-fine {
  font-size: 14px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing collapse toggle — desktop hides toggle and shows everything;
   mobile collapses feature groups behind a "See what's included" button */
.pricing-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 8px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-family: 'avenir-next', 'Avenir Next', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--black);
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
}

.pricing-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
}

.pricing-card.featured .pricing-toggle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.pricing-card.featured .pricing-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-toggle-icon {
  flex-shrink: 0;
  transition: transform 250ms ease;
}

.pricing-toggle[aria-expanded="true"] .pricing-toggle-icon {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  .pricing-toggle {
    display: inline-flex;
  }

  .pricing-collapse {
    display: none;
  }

  .pricing-card.is-expanded .pricing-collapse {
    display: block;
    margin-top: 8px;
  }

  /* Tighten card padding so collapsed cards don't waste vertical space */
  .pricing-card {
    padding: 32px 28px 28px;
  }

  .pricing-card-header {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }

  .pricing-desc {
    margin-bottom: 16px;
  }
}


/* ==========================================================================
   11b. MID CTA
   ========================================================================== */

.mid-cta {
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
  background: transparent;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mid-cta-text {
  font-size: clamp(28px, 3.2vw, 46px);
  color: var(--gray-300);
  margin-bottom: 36px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.12;
}

.mid-cta-button {
  display: inline-block;
  padding: 18px 46px;
  background: var(--brand);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
}

.mid-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(172, 79, 198, 0.4);
}


/* ==========================================================================
   11c. WHAT CHANGES
   ========================================================================== */

.what-changes {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 80px);
}

.what-changes-inner {
  max-width: 900px;
  margin: 0 auto;
}

.what-changes .section-label {
  text-align: center;
  margin-bottom: 48px;
}

.changes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
}

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

.change-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-800);
}

.change-before {
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.change-after {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
}


/* ==========================================================================
   11d. FAQ
   ========================================================================== */

.faq {
  padding: clamp(90px, 12vw, 150px) clamp(24px, 5vw, 80px);
}

.faq-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.faq .section-label {
  text-align: center;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.48);
}

.faq-headline {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  text-align: center;
  margin: 0 auto clamp(46px, 6vw, 72px);
  max-width: 760px;
  letter-spacing: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width: 700px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.faq-item {
  position: relative;
  min-height: 190px;
  padding: 30px 32px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), rgba(172,79,198,0));
}

.faq-q {
  position: relative;
  z-index: 1;
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 16px;
  line-height: 1.18;
}

.faq-a {
  position: relative;
  z-index: 1;
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 0;
}


/* ==========================================================================
   12. FINAL CTA
   ========================================================================== */

.final-cta {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 80px);
  background: #ffffff;
}

.cta-content {
  text-align: center;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  color: #0a0a0a;
}

.highlight-word {
  color: #ac4fc6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 48px;
  background: #0a0a0a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.4s var(--ease-out-expo);
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.25);
}

.cta-button svg {
  transition: transform 0.4s var(--ease-out-expo);
}

.cta-button:hover svg {
  transform: translateX(8px);
}


/* ==========================================================================
   13. FOOTER
   ========================================================================== */

.footer {
  padding: 80px clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--gray-900);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand img {
  height: 24px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-500);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 14px;
  color: var(--gray-500);
  transition: color 0.3s ease;
}

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

.footer-legal {
  font-size: 13px;
  color: var(--gray-600);
}


/* ==========================================================================
   14. SCROLL ANIMATIONS (GSAP will enhance these)
   ========================================================================== */

[data-scroll] {
  will-change: transform;
}

/* Fade in up base */
.fade-in-up {
  opacity: 0;
  transform: translateY(60px);
}

.fade-in-up.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(40px);
}

.stagger-children.is-inview > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.is-inview > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.is-inview > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.is-inview > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.is-inview > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.is-inview > *:nth-child(5) { transition-delay: 0.4s; }


/* ==========================================================================
   15. RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-video--desktop {
    display: none;
  }

  .hero-video--mobile {
    display: block;
  }
  
  .hero-title {
    font-size: clamp(32px, 10vw, 60px);
  }
  
  .manifesto-text {
    font-size: clamp(16px, 4.4vw, 19px);
    line-height: 1.55;
    margin-bottom: 1.1em;
  }

  .manifesto-text:first-child {
    font-size: clamp(30px, 8vw, 44px);
    line-height: 1.1;
    margin-bottom: 0.5em;
  }
  
  .industry {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .industry-number {
    font-size: 60px;
    position: static;
  }
  
  .patterns-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   X. CONVERSION ELEMENTS � added in Pro-upsell pass
   ========================================================================== */

/* Hero offer strip */
.hero-offer {
  margin-top: clamp(28px, 4vw, 44px);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  max-width: 100%;
}

.hero-offer-pill {
  display: inline-block;
  padding: 4px 12px;
  background: var(--brand);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-offer-text {
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--gray-300);
  line-height: 1.45;
}

.hero-offer-text strong {
  color: var(--white);
  font-weight: 600;
}

/* Hero CTAs */
.hero-ctas {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo), background 0.2s ease;
  border: 1px solid transparent;
}

.hero-cta.primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 10px 30px -10px var(--brand-glow);
}

.hero-cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px var(--brand-glow);
}

.hero-cta.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
}

.hero-cta.secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.32);
}

/* Pro tag on industry titles */
.pro-tag {
  display: inline-block;
  vertical-align: middle;
  margin-left: 12px;
  padding: 4px 10px;
  background: var(--brand-soft);
  color: var(--brand);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(172, 79, 198, 0.35);
  border-radius: 999px;
  position: relative;
  top: -4px;
}

/* Pricing additions */
.pricing-anchor {
  display: inline-block;
  margin: 0 auto 40px;
  padding: 10px 18px;
  background: var(--gray-100);
  border: 1px dashed var(--gray-300);
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-700);
}

.pricing-anchor s {
  color: var(--gray-500);
}

.pricing-cards.three-cols {
  grid-template-columns: 1fr 1.08fr 1fr;
  align-items: stretch;
  gap: 28px;
  max-width: 1500px;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 1024px) {
  .pricing-cards.three-cols {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pricing-card.featured {
  transform: scale(1.04);
  z-index: 2;
  box-shadow: 0 30px 80px -30px rgba(172, 79, 198, 0.45);
  border: 1px solid rgba(172, 79, 198, 0.4);
}

@media (max-width: 1024px) {
  .pricing-card.featured {
    transform: none;
  }
}

.pricing-card.custom {
  background: transparent;
  border: 1px solid var(--gray-300);
}

.pricing-card.custom .pricing-number.small {
  font-size: 36px;
  letter-spacing: -0.02em;
}

.pricing-card.custom .pricing-cta {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.pricing-card.custom .pricing-cta:hover {
  background: var(--black);
  color: var(--white);
}

.pricing-limit {
  margin-top: 18px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.04);
  border-left: 2px solid var(--gray-400);
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-600);
  border-radius: 4px;
}

.pricing-card.featured .pricing-limit {
  display: none;
}

/* CTA fine prints */
.mid-cta-fine,
.cta-fine {
  margin-top: 18px;
  font-size: 20px;
  color: var(--gray-500);
  letter-spacing: 0.01em;
}

/* ==========================================================================
   X.2 HOW IT WORKS + SOCIAL PROOF (added in design-fix pass)
   ========================================================================== */

.how-it-works {
  padding: clamp(100px, 14vw, 160px) clamp(40px, 8vw, 120px);
  background: #fff;
  color: var(--gray-900);
}

.how-inner {
  max-width: 1600px;
  margin: 0 auto;
  text-align: left;
}

.how-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 16px 0 64px;
  color: var(--gray-900);
  max-width: 1000px;
  text-wrap: balance;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.how-step {
  position: relative;
  padding: 28px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.12);
  border-radius: 0;
  transition: border-top-color 0.3s ease, transform 0.3s var(--ease-out-expo);
}

.how-step:hover {
  transform: translateY(-3px);
  border-top-color: var(--brand);
}

.how-step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 16px;
}

.how-step-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.how-step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600);
}

/* --- Social proof --- */

.social-proof {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 80px);
  background: #fff;
  color: #111;
}

.social-proof-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.social-proof-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.social-proof-industries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin-bottom: 56px;
}

.social-proof-industries span {
  display: inline-block;
  padding: 8px 18px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.social-proof-quote {
  margin: 0;
  padding: 40px 32px;
  border-left: 3px solid var(--brand);
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}

.social-proof-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #111;
  margin: 0 0 20px;
}

.social-proof-quote figcaption {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.quote-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  border: 1px solid rgba(172, 79, 198, 0.3);
}

/* Hero offer + cta tweaks */
.hero-offer {
  margin-top: clamp(20px, 3vh, 32px);
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  margin-top: 24px;
  justify-content: center;
}

/* Make scroll prompt less heavy now that hero has CTAs */
.scroll-prompt {
  opacity: 0.5;
  font-size: 11px;
}

/* ==========================================================================
   X.3 OFFER PILLS ON SECONDARY PAGES (work.html, contact.html, case studies)
   ========================================================================== */

.page-hero-offer {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 10px 18px;
  border: 1px solid rgba(172, 79, 198, 0.3);
  background: rgba(172, 79, 198, 0.08);
  border-radius: 999px;
  font-size: 14px;
  color: var(--gray-300, #d4d4d4);
}

.page-hero-offer-pill {
  display: inline-block;
  padding: 4px 12px;
  background: var(--brand, #ac4fc6);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  white-space: nowrap;
}

/* Project CTA offer pill (case studies) */
.project-cta-offer {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 12px auto 24px;
  padding: 10px 18px;
  border: 1px solid rgba(172, 79, 198, 0.3);
  background: rgba(172, 79, 198, 0.08);
  border-radius: 999px;
  font-size: 13px;
  color: var(--gray-400, #a3a3a3);
}

.project-cta-pill {
  display: inline-block;
  padding: 3px 10px;
  background: var(--brand, #ac4fc6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  white-space: nowrap;
}

/* ==========================================================================
   X.4 � EDITORIAL ALIGNMENT
   Match homepage typographic register with /work and /work/* pages.
   Wisp / ghost-tracer / brand purple highlights are NOT touched.
   ========================================================================== */

:root {
  --font-mono: 'avenir-next', 'Avenir Next', 'Avenir', system-ui, sans-serif;
}

/* --- Display headlines: Quiche regular (400), tighter tracking, italic accents --- */
.hero-title,
.section-headline,
.industry-title,
.pricing-headline,
.cta-headline,
.how-headline,
.manifesto-text:first-child {
  font-weight: 400;
  letter-spacing: -0.025em;
}

.hero-title { font-size: clamp(48px, 7.5vw, 112px); line-height: 0.96; }
.section-headline { font-size: clamp(40px, 6.5vw, 88px); line-height: 1.02; }
.industry-title { font-size: clamp(32px, 4vw, 56px); line-height: 1.05; }
.pricing-headline { font-size: clamp(40px, 6vw, 80px); line-height: 1.0; }
.cta-headline { font-size: clamp(40px, 6vw, 88px); line-height: 1.05; }
.how-headline { font-size: clamp(36px, 5vw, 64px); line-height: 1.05; font-weight: 400; letter-spacing: -0.025em; }
.manifesto-text:first-child { font-size: clamp(40px, 5.5vw, 64px); line-height: 1.05; }

/* Italic accent lines stay italic; reduce weight contrast */
.hero-title .line:nth-child(2),
.hero-title .line:nth-child(4) {
  font-weight: 400;
  font-style: italic;
}

/* --- Eyebrows: convert sans-caps to mono-caps --- */
.section-label,
.faq .section-label,
.how-eyebrow {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* --- Hero offer: editorial register, retain conversion message --- */
.hero-offer {
  margin-top: 36px;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid var(--gray-700);
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-offer-pill {
  background: transparent;
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0;
  border: 0;
  border-radius: 0;
}
.hero-offer-pill::before {
  content: '� ';
  color: var(--gray-500);
}
.hero-offer-text {
  font-size: 14px;
  color: var(--gray-300);
}

/* --- Pro tags: small mono caps prefix instead of pill --- */
.pro-tag {
  display: inline-block;
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  background: transparent;
  padding: 0;
  border: 0;
  vertical-align: middle;
  position: relative;
  top: -0.4em;
}
.pro-tag::before { content: '\25C6\00A0'; color: var(--gray-600); }

/* --- Pricing anchor & fine print: mono register --- */
.pricing-anchor {
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.cta-fine,
.mid-cta-fine {
  font-family: var(--font-mono);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* --- Manifesto: keep editorial weight on closer, lighter on body --- */
.manifesto-text {
  font-weight: 400;
}
.manifesto-closer {
  font-style: italic;
  font-weight: 400;
}

/* --- Section dividers: hairline matches editorial register --- */
.section-divider {
  height: 1px;
  background: var(--gray-800);
  border: 0;
  opacity: 0.6;
}


/* ==========================================================================
   X.3 HERO OVERLAY COPY (premium positioning H1 + subhead)
   ========================================================================== */

.hero-overlay-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 0 clamp(24px, 5vw, 60px);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  backface-visibility: hidden;
}

.hero-copy-stage {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes heroCopyIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: clamp(18px, 2vw, 26px);
  font-weight: 500;
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8.5vw, 128px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 clamp(20px, 2.4vw, 32px);
  text-wrap: balance;
}

.hero-h1 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 500;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.82);
  max-width: 1100px;
  margin: 0 auto clamp(28px, 3vw, 38px);
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 700px) {
  .hero-sub {
    white-space: normal;
  }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-cta:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}


.principle {
  position: relative;
  padding: clamp(120px, 16vw, 200px) clamp(40px, 8vw, 120px);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.principle-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(56px, 8vw, 120px);
  align-items: end;
  max-width: 1500px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .principle-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }
}

.principle-side .section-label-light {
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
}

.principle-headline {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--white);
  text-wrap: balance;
  max-width: 22ch;
}

.principle-headline s {
  text-decoration: line-through;
  text-decoration-color: rgba(172, 79, 198, 0.55);
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: none;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}

.principle-emph {
  display: block;
  margin-top: 22px;
  color: var(--brand);
  font-style: italic;
  font-size: 0.92em;
}

.principle-body {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 18px;
  max-width: 460px;
}

.principle-body strong {
  color: var(--white);
  font-weight: 600;
}

.principle-body-soft {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-size: 0.95em;
  margin-top: 8px;
}


/* ==========================================================================
   X.6 COMPARISON TABLE
   ========================================================================== */

.compare {
  padding: clamp(100px, 14vw, 160px) clamp(40px, 8vw, 120px);
  background: #fafafa;
  color: var(--gray-900);
}

.compare-inner {
  max-width: 1600px;
  margin: 0 auto;
  text-align: left;
}

.compare-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 16px 0 20px;
  color: var(--gray-900);
  text-wrap: balance;
  max-width: 1100px;
}

.compare-sub {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 0 56px;
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 30px 70px -40px rgba(0,0,0,0.18);
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-family: var(--font-sans);
  text-align: left;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  vertical-align: middle;
}

.compare-table thead th {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray-600);
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.compare-table tbody th {
  font-weight: 500;
  color: var(--gray-700);
  width: 28%;
}

.compare-table td {
  color: var(--gray-600);
}

.compare-table th.us,
.compare-table td.us {
  background: rgba(172, 79, 198, 0.06);
  color: var(--gray-900);
  position: relative;
}

.compare-table thead th.us {
  background: var(--brand);
  color: var(--white);
}

.compare-table td.us strong {
  color: var(--brand);
  font-weight: 600;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 700px) {
  .compare {
    padding: 76px 20px;
  }

  .compare-headline {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 1.02;
    margin-bottom: 22px;
  }

  .compare-sub {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 36px;
  }

  .compare-table-wrap {
    overflow: visible;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td {
    display: block;
    width: 100%;
  }

  .compare-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tbody tr {
    margin-bottom: 16px;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    box-shadow: 0 18px 45px -35px rgba(0,0,0,0.4);
  }

  .compare-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .compare-table tbody th {
    width: 100%;
    padding: 0 0 14px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    color: var(--gray-900);
    font-size: 18px;
    font-weight: 700;
  }

  .compare-table td {
    display: grid;
    grid-template-columns: minmax(110px, 42%) 1fr;
    gap: 16px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 15px;
    line-height: 1.45;
  }

  .compare-table td::before {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
  }

  .compare-table td:nth-of-type(1)::before {
    content: 'Typical agency';
  }

  .compare-table td:nth-of-type(2)::before {
    content: 'DIY builder';
  }

  .compare-table td:nth-of-type(3)::before {
    content: 'Vivid Concepts';
    color: var(--brand);
  }

  .compare-table td.us {
    margin: 2px -8px 0;
    padding: 12px 8px;
    border-radius: 6px;
    border-bottom: 0;
  }
}


/* ==========================================================================
   X.7 PRICING "FROM" PREFIX
   ========================================================================== */

.pricing-from {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}

/* ==========================================================================
   Mobile-only CTA tweaks
   ========================================================================== */
@media (max-width: 600px) {
  .mid-cta-button {
    padding: 14px 30px;
    font-size: 14px;
  }
  .cta-button {
    padding: 16px 28px;
    font-size: 14px;
    gap: 10px;
  }
  .cta-button svg {
    width: 18px;
    height: 18px;
  }
  .mid-cta-fine,
  .cta-fine {
    font-size: 13px;
    letter-spacing: 0.08em;
  }
}
