/* =========================================================
   HootHoot — Owl-Themed B2B Content
   Warm nighttime palette · Owl vision metaphor · Observational
   ========================================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; color: inherit; }

/* ---------- TOKENS ---------- */
:root {
  /* Owl-themed palette - warm nighttime tones */
  --cream: #F5F1ED;
  --cream-2: #EBE5DF;
  --cream-3: #DDD5CC;
  --ink: #2C2925;
  --ink-2: #4A4540;
  --mute: #897D6F;
  --amber: #D4A574;      /* Warm owl feather tone */
  --amber-deep: #B8844F;
  --night: #3D4A5C;      /* Deep nighttime blue */
  --moss: #6B7A54;       /* Muted forest green */
  
  /* Owl vision accent - subtle golden glow */
  --vision-glow: rgba(212, 165, 116, 0.15);
  --vision-focus: rgba(212, 165, 116, 0.3);

  /* type */
  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans: "Inter Tight", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* spacing */
  --px: max(24px, 4.5vw);
  --section-pad: clamp(56px, 6.5vw, 96px);

  /* motion */
  --ease: cubic-bezier(0.6, 0.05, 0.1, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- BASE ---------- */
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

::selection { background: var(--amber); color: var(--cream); }

.mono { 
  font-family: var(--mono); 
  font-size: 0.78em; 
  letter-spacing: 0.04em; 
  text-transform: uppercase; 
}

em { 
  font-style: italic; 
  font-family: var(--serif); 
  font-variation-settings: "SOFT" 100, "opsz" 144; 
}

.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;
}

/* ================================================
   ENTRANCE LOADER
   ================================================ */
.loader {
  position: fixed; inset: 0;
  z-index: 10000;
  pointer-events: none;
}
.loader__top, .loader__bot {
  position: absolute; left: 0; right: 0;
  background: var(--ink);
  z-index: 1;
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}
.loader__top { top: 0; height: 50%; }
.loader__bot { bottom: 0; height: 50%; }
.loader__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 var(--px);
  color: var(--cream);
  z-index: 2;
  transition: opacity 0.4s ease;
}
.loader__meta {
  position: absolute;
  top: 30px; left: var(--px); right: var(--px);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px !important;
  letter-spacing: 0.1em;
  color: rgba(245, 241, 237, 0.6);
}
.loader__meta .mono { font-size: 11px !important; }
.loader__name {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 40, "wght" 400;
}
.loader__name em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 400;
}
.loader__line-1, .loader__line-2 {
  display: block;
  overflow: hidden;
}
.loader__bar {
  position: absolute;
  bottom: 30px; left: var(--px); right: var(--px);
  height: 2px;
  background: rgba(245, 241, 237, 0.12);
  overflow: hidden;
}
.loader__bar > span {
  display: block; height: 100%;
  width: 0%;
  background: var(--amber);
  transition: width 0.25s linear;
  box-shadow: 0 0 16px rgba(212, 165, 116, 0.5);
}

html.is-loaded .loader__top { transform: translateY(-100%); }
html.is-loaded .loader__bot { transform: translateY(100%); }
html.is-loaded .loader__content { opacity: 0; }
html.is-loaded .loader { pointer-events: none; }
html:not(.is-loaded) body { overflow: hidden; height: 100vh; }

/* ================================================
   GRAIN TEXTURE
   ================================================ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="n"><feTurbulence baseFrequency="0.9" numOctaves="3" /></filter><rect width="200" height="200" filter="url(%23n)" opacity="0.5"/></svg>');
  background-repeat: repeat;
  animation: grain 8s steps(10) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}

/* ================================================
   CUSTOM CURSOR
   ================================================ */
.cursor, .cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor.is-active, .cursor-dot.is-active {
  opacity: 1;
}

.cursor {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s ease;
}

.cursor__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cursor.is-button,
.cursor.is-link {
  width: 60px;
  height: 60px;
  border-color: var(--amber-deep);
}

.cursor.is-button .cursor__label,
.cursor.is-link .cursor__label {
  opacity: 1;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

@media (hover: none) {
  .cursor, .cursor-dot { display: none; }
}

/* ================================================
   SCROLL PROGRESS
   ================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 9997;
  background: rgba(212, 165, 116, 0.1);
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--amber);
  box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
  transition: width 0.1s ease-out;
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, padding 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(245, 241, 237, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px var(--px);
  box-shadow: 0 1px 0 rgba(44, 41, 37, 0.06);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: opacity 0.2s ease;
}

.nav__logo:hover {
  opacity: 0.7;
}

.nav__mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.nav__mark svg {
  width: 100%;
  height: 100%;
}

.nav__links {
  display: none;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}

.nav__links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--amber-deep);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}

.nav__cta:hover {
  background: var(--ink-2);
}

.nav__cta svg {
  width: 16px;
  height: 16px;
}

.nav__burger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  transition: opacity 0.2s ease;
}

.nav__burger:hover {
  opacity: 0.7;
}

.nav__burger span {
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.nav__burger[aria-expanded="true"] span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.nav__burger[aria-expanded="true"] span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 100vw);
  background: var(--cream);
  z-index: 999;
  padding: 100px var(--px) var(--px);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: -2px 0 20px rgba(44, 41, 37, 0.1);
}

.nav__drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.nav__drawer ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav__drawer a {
  font-size: 24px;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

.nav__drawer a:hover {
  color: var(--amber-deep);
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: flex;
  }

  .nav__burger {
    display: none;
  }
}

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--px) var(--section-pad);
  position: relative;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: var(--mute);
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.pulse::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--amber);
  border-radius: 50%;
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(40px, 8vw, 100px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  margin-bottom: 32px;
}

.hero__title .line {
  display: block;
  overflow: hidden;
  padding: 0.1em 0;
}

.hero__title .line__inner {
  display: block;
}

.hero__title em {
  color: var(--amber-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero__sub {
  max-width: 600px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--ink);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 41, 37, 0.2);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 18px;
}

.btn__text {
  position: relative;
  overflow: hidden;
  height: 1.2em;
}

.btn__text span {
  display: block;
  transition: transform 0.3s var(--ease);
}

.btn__text span:last-child {
  position: absolute;
  top: 100%;
  left: 0;
}

.btn:hover .btn__text span:first-child {
  transform: translateY(-100%);
}

.btn:hover .btn__text span:last-child {
  transform: translateY(-100%);
}

.btn__arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ================================================
   REVEAL ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   LANES / THREE LANES SECTION
   ================================================ */
.lanes {
  padding: var(--section-pad) var(--px);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.lanes__intro {
  max-width: 800px;
  margin: 0 auto var(--section-pad);
  text-align: center;
}

.lanes__title {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}

.lanes__title em {
  color: var(--amber-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.lanes__sub {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-2);
}

.lanes__grid {
  display: grid;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .lanes__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lane-card {
  background: var(--cream);
  border: 1px solid rgba(44, 41, 37, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.lane-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.lane-card:hover::before {
  transform: scaleX(1);
}

.lane-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 41, 37, 0.08);
}

.lane-card__num {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--amber-deep);
  margin-bottom: 16px;
}

.lane-card__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.lane-card__tagline {
  font-size: 16px;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 20px;
}

.lane-card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 16px;
}

.lane-card__meta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(44, 41, 37, 0.08);
}

.lane-card__meta .mono {
  display: block;
  color: var(--mute);
  margin-bottom: 12px;
}

.lane-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lane-card__list li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 20px;
  position: relative;
}

.lane-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 18px;
}

.lane-card__outcome {
  margin-top: 24px;
  padding: 20px;
  background: var(--vision-glow);
  border-radius: 8px;
}

.lane-card__outcome .mono {
  display: block;
  color: var(--amber-deep);
  margin-bottom: 8px;
}

.lane-card__outcome p {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

/* ================================================
   APPROACH / VISION CIRCLES (Owl Vision Metaphor)
   ================================================ */
.approach {
  padding: calc(var(--section-pad) * 1.5) var(--px);
  background: var(--cream);
  position: relative;
}

.approach__intro {
  max-width: 800px;
  margin: 0 auto calc(var(--section-pad) * 1.2);
  text-align: center;
}

.approach__title {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}

.approach__tagline {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-2);
}

.approach__tagline em {
  color: var(--amber-deep);
}

.approach__circles {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

/* Vision System - Concentric Circles = Expanding Field of Vision */
.vision-system {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.vision-circle {
  position: relative;
  margin-bottom: 60px;
  transition: all 0.6s var(--ease);
}

/* Circular "glow" effect when in view */
.vision-system.is-in-view .vision-circle {
  animation: visionReveal 0.8s var(--ease-out) forwards;
  animation-delay: calc(var(--circle-index, 0) * 0.15s);
}

@keyframes visionReveal {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.vision-circle--1 { --circle-index: 0; }
.vision-circle--2 { --circle-index: 1; }
.vision-circle--3 { --circle-index: 2; }
.vision-circle--4 { --circle-index: 3; }
.vision-circle--5 { --circle-index: 4; }

.vision-circle__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  background: var(--cream);
  border: 2px solid rgba(212, 165, 116, 0.2);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  text-align: left;
}

/* Subtle circle visual motif */
.vision-circle__trigger::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20px;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 var(--vision-glow);
  transition: all 0.4s var(--ease);
}

.vision-circle__trigger:hover::before,
.vision-circle.is-active .vision-circle__trigger::before {
  box-shadow: 0 0 0 8px var(--vision-glow),
              0 0 0 16px rgba(212, 165, 116, 0.05);
}

.vision-circle__trigger:hover {
  border-color: var(--amber);
  background: var(--vision-glow);
  transform: translateX(4px);
}

.vision-circle.is-active .vision-circle__trigger {
  border-color: var(--amber);
  background: var(--vision-focus);
  border-radius: 24px 24px 0 0;
}

.vision-circle__num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--amber-deep);
  padding-left: 16px;
}

.vision-circle__label {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.vision-circle__hint {
  font-size: 14px;
  color: var(--mute);
  text-align: right;
  transition: opacity 0.3s ease;
}

.vision-circle.is-active .vision-circle__hint {
  opacity: 0;
}

.vision-circle__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: var(--cream-2);
  border: 2px solid var(--amber);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  padding: 0 36px;
  transition: all 0.5s var(--ease);
}

.vision-circle.is-active .vision-circle__content {
  max-height: 1000px;
  opacity: 1;
  padding: 36px;
  margin-bottom: 0;
}

.vision-circle__content h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--ink);
}

.vision-circle__content > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 24px;
}

.vision-detail {
  margin-bottom: 24px;
}

.vision-detail .mono {
  display: block;
  color: var(--amber-deep);
  margin-bottom: 12px;
}

.vision-detail ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vision-detail li {
  font-size: 15px;
  color: var(--ink-2);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.vision-detail li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 18px;
}

.vision-detail p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}

@media (max-width: 767px) {
  .vision-circle__trigger {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 28px;
  }

  .vision-circle__hint {
    text-align: left;
  }

  .vision-circle__content {
    padding: 0 28px;
  }

  .vision-circle.is-active .vision-circle__content {
    padding: 28px;
  }
}

/* ================================================
   WHY THIS WORKS
   ================================================ */
.why {
  padding: calc(var(--section-pad) * 1.5) var(--px);
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream-3) 100%);
}

.why__inner {
  max-width: 900px;
  margin: 0 auto;
}

.why__title {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  text-align: center;
}

.why__title em {
  color: var(--amber-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.why__body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 60px;
}

.why__body > p {
  margin-bottom: 24px;
}

.why__scarce {
  margin: 40px 0;
  padding: 32px;
  background: var(--vision-glow);
  border-left: 4px solid var(--amber);
  border-radius: 8px;
}

.why__scarce .mono {
  display: block;
  color: var(--amber-deep);
  margin-bottom: 16px;
}

.why__scarce ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why__scarce li {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  padding-left: 24px;
  position: relative;
}

.why__scarce li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber-deep);
  font-weight: 700;
}

.why__process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.why__process li {
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid rgba(44, 41, 37, 0.08);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
}

.why__closer {
  font-size: 20px !important;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  margin-top: 40px !important;
}

.why__closer em {
  color: var(--amber-deep);
}

.why__stat {
  margin-top: 60px;
  padding: 48px 40px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 16px;
  text-align: center;
}

.why__stat-num {
  font-family: var(--serif);
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 24px;
}

.why__stat-label {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.why__stat-label em {
  color: var(--amber);
}

.why__stat-source {
  color: var(--cream-3);
}

/* ================================================
   FINAL CTA
   ================================================ */
.cta {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--cream);
  overflow: hidden;
}

.cta__marquee {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 0;
}

.cta__marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cta__ast {
  color: var(--amber);
  font-size: 0.6em;
  vertical-align: middle;
}

.cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px var(--px) var(--section-pad);
  text-align: center;
}

.cta__title {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}

.cta__title em {
  color: var(--amber-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.cta__sub {
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-2);
}

.cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: var(--section-pad) 0 48px;
  position: relative;
  overflow: hidden;
}

.footer__bigname {
  margin-bottom: 60px;
  overflow: hidden;
}

.footer__bigname-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 600;
  letter-spacing: -0.03em;
  opacity: 0.08;
}

.footer__dot {
  color: var(--amber);
  font-size: 0.3em;
  vertical-align: middle;
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer__col .mono {
  color: var(--cream-3);
  margin-bottom: 12px;
}

.footer__col p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.7;
}

.footer__link {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--amber);
  transition: opacity 0.2s ease;
}

.footer__link:hover {
  opacity: 0.7;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__social a {
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer__social a:hover {
  color: var(--amber);
}
