/* Headroom Consulting - v2 (spec-driven)
   Dark + technical · copper accent */

/* Tokens (spec-exact hex) */
:root {
  /* Obsidian Plum */
  --plum-900: #1C1719;
  --plum-800: #2C2427;
  --plum-700: #3D3236;
  --plum-600: #544548;
  --plum-400: #876E73;
  --plum-200: #C4B5BA;
  --plum-50:  #F5F0F2;

  /* Ice Cyan (default accent) */
  --cyan-900: #0D4D52;
  --cyan-700: #1A8A93;
  --cyan-500: #6EE7F0;
  --cyan-200: #C5F6FA;
  --cyan-100: #E5FBFC;
  /* RGB channels of --cyan-500 for use inside rgba() */
  --accent-rgb: 110, 231, 240;
  /* RGB channels of --cyan-700 (deeper accent - used in radial glows) */
  --accent-deep-rgb: 26, 138, 147;
  /* RGB channels of --cyan-900 (darkest accent - used in pill bg / pulses) */
  --accent-darkest-rgb: 13, 77, 82;
}

/* Accent palette overrides (driven by Tweaks → Accent color).
   Each ramp keeps the same five-stop structure as the default cyan,
   so every existing rule that references --cyan-* keeps working. */
body[data-accent="teal"] {
  --cyan-900: #1F4548;
  --cyan-700: #3A8086;
  --cyan-500: #5BBFC6;
  --cyan-200: #C2E6E9;
  --cyan-100: #E4F5F6;
  --accent-rgb: 91, 191, 198;
  --accent-deep-rgb: 58, 128, 134;
  --accent-darkest-rgb: 31, 69, 72;
  --light-accent: #3A8086;
  --light-accent-deep: #1F4548;
  --light-accent-rgb: 58, 128, 134;
}
body[data-accent="gold"] {
  --cyan-900: #5A4A0F;
  --cyan-700: #A8861F;
  --cyan-500: #E8C547;
  --cyan-200: #F6E6A3;
  --cyan-100: #FBF4D6;
  --accent-rgb: 232, 197, 71;
  --accent-deep-rgb: 168, 134, 31;
  --accent-darkest-rgb: 90, 74, 15;
  --light-accent: #A8861F;
  --light-accent-deep: #5A4A0F;
  --light-accent-rgb: 168, 134, 31;
}
body[data-accent="coral"] {
  --cyan-900: #5C2E1E;
  --cyan-700: #A85636;
  --cyan-500: #E08B6D;
  --cyan-200: #F4CDBE;
  --cyan-100: #FBE9E0;
  --accent-rgb: 224, 139, 109;
  --accent-deep-rgb: 168, 86, 54;
  --accent-darkest-rgb: 92, 46, 30;
  --light-accent: #A85636;
  --light-accent-deep: #5C2E1E;
  --light-accent-rgb: 168, 86, 54;
}
body[data-accent="copper"] {
  --cyan-900: #5C3F1F;
  --cyan-700: #A07640;
  --cyan-500: #D4A574;
  --cyan-200: #EED9BF;
  --cyan-100: #F8EFE0;
  --accent-rgb: 212, 165, 116;
  --accent-deep-rgb: 160, 118, 64;
  --accent-darkest-rgb: 92, 63, 31;
  --light-accent: #A07640;
  --light-accent-deep: #5C3F1F;
  --light-accent-rgb: 160, 118, 64;
}

:root {
  --success: #6EF098;
  --warning: #F0C96E;
  --error:   #F0697B;
  --white:   #FFFFFF;

  /* Motion */
  --ease-out: cubic-bezier(.2,.7,.1,1);
  --dur-fast: 150ms;
  --dur-base: 220ms;
  --dur-slow: 360ms;

  --content: 1200px;
  --content-wide: 1360px;

  --font-display: 'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--plum-900);
  color: var(--plum-200);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

/* Grain texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMDAnIGhlaWdodD0nMjAwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC45JyBudW1PY3RhdmVzPScyJyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PGZlQ29sb3JNYXRyaXggdmFsdWVzPScwIDAgMCAwIDAuNSAwIDAgMCAwIDAuNSAwIDAgMCAwIDAuNSAwIDAgMCAwLjYgMCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScyMDAnIGhlaWdodD0nMjAwJyBmaWx0ZXI9J3VybCglMjNuKScgb3BhY2l0eT0nMC41Jy8+PC9zdmc+");
  opacity: .035;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: overlay;
}

/* ------------------------------------------------------------
   Type
   ------------------------------------------------------------ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan-500);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}
.eyebrow.no-rule::before { display: none; }

h1, h2, h3, h4 { margin: 0; color: var(--plum-50); font-family: var(--font-display); letter-spacing: -.02em; text-wrap: balance; }
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.2vw, 60px);
  line-height: 1.04;
  color: var(--plum-50);
}
.h-section {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.08;
  color: var(--plum-50);
}
.h-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--plum-400);
  max-width: 620px;
  text-wrap: pretty;
  margin: 0;
}

/* ------------------------------------------------------------
   Layout
   ------------------------------------------------------------ */
.wrap { max-width: var(--content); margin: 0 auto; padding: 0 40px; }
.wrap-wide { max-width: var(--content-wide); margin: 0 auto; padding: 0 40px; }
.section { padding: 120px 0; position: relative; }
.section-head { max-width: 780px; margin: 0 0 72px; display: flex; flex-direction: column; gap: 20px; }
.section-divider {
  height: 1px;
  max-width: var(--content);
  margin: 0 auto;
  background: var(--plum-700);
  opacity: .5;
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur-fast) var(--ease-out);
  line-height: 1;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn:active { transform: scale(.98); }
.btn-arrow { transition: transform .18s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--cyan-500);
  color: var(--plum-900);
  box-shadow: 0 0 0 0 rgba(var(--accent-rgb),0);
}
.btn-primary:hover {
  background: var(--cyan-200);
  box-shadow: 0 10px 32px -8px rgba(var(--accent-rgb),.38), 0 0 0 4px rgba(var(--accent-rgb),.08);
}

.btn-secondary {
  background: transparent;
  border-color: var(--cyan-500);
  color: var(--cyan-500);
}
.btn-secondary:hover {
  background: rgba(var(--accent-rgb),.10);
  border-color: var(--cyan-200);
  color: var(--cyan-200);
}

.btn-ghost {
  background: transparent;
  border-color: var(--plum-600);
  color: var(--plum-200);
}
.btn-ghost:hover {
  border-color: var(--plum-400);
  color: var(--plum-50);
}

/* ------------------------------------------------------------
   Nav
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), backdrop-filter var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 112px;
}
.nav.scrolled {
  background: rgba(28,23,25,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--plum-700);
}
.nav-brand img {
  height: 88px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  margin-left: 16px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--plum-200);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1.5px;
  background: var(--cyan-500);
  transition: right var(--dur-base) var(--ease-out);
}
.nav-links a:hover { color: var(--cyan-500); }
.nav-links a:hover::after { right: 0; }
.nav-ctas { display: flex; gap: 10px; align-items: center; }
.nav-mobile-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--plum-50);
  cursor: pointer;
  padding: 8px;
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  position: relative;
  padding: 170px 0 100px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 75% 35%, rgba(var(--accent-rgb),.07), transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(var(--accent-deep-rgb),.08), transparent 70%);
}
.hero-inner { position: relative; max-width: var(--content-wide); margin: 0 auto; padding: 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan-500);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb),.18);
  animation: heroEyebrowPulse 1.8s ease-in-out infinite !important;
  animation-play-state: running !important;
  will-change: transform, box-shadow;
}
body[data-hero-dot-pulse="off"] .hero-eyebrow .dot {
  animation: none !important;
  transform: none;
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb),.18);
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow .dot {
    animation: heroEyebrowPulse 1.8s ease-in-out infinite !important;
  }
  body[data-hero-dot-pulse="off"] .hero-eyebrow .dot {
    animation: none !important;
  }
}
@keyframes heroEyebrowPulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb),.22);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(var(--accent-rgb),.04);
    transform: scale(1.35);
  }
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--plum-50);
  margin: 0 0 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.28;
  letter-spacing: -.015em;
  color: var(--plum-200);
  margin: 0 0 24px;
  max-width: 620px;
}
.hero-headline .accent { color: var(--cyan-500); font-weight: 600; }
.hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--plum-400);
  max-width: 560px;
  margin: 0 0 40px;
}
.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  width: max-content;
  max-width: 100%;
}
.hero-cta-group { display: flex; flex-direction: column; gap: 8px; max-width: 440px; }
.hero-cta-group .btn { justify-content: center; }
.hero-cta-hint {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--plum-400);
  margin: 0;
  padding-left: 2px;
  line-height: 1.5;
}

/* Hero video placeholder */
.hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--plum-800);
  border: 1px solid var(--plum-700);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,.6),
    0 0 0 1px rgba(var(--accent-rgb),.04),
    inset 0 1px 0 rgba(255,255,255,.03);
}
.hero-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(var(--accent-rgb),.12), transparent 65%),
    linear-gradient(135deg, rgba(var(--accent-deep-rgb),.12), transparent 50%);
}
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: center;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-video-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 2;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out);
}
.hero-video:hover .hero-video-content { transform: scale(1.02); }
.hero-video-play {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--cyan-500);
  color: var(--plum-900);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(var(--accent-rgb),.3), 0 0 0 0 rgba(var(--accent-rgb),0);
  transition: all var(--dur-base) var(--ease-out);
}
.hero-video:hover .hero-video-play {
  transform: scale(1.06);
  box-shadow: 0 0 60px rgba(var(--accent-rgb),.45), 0 0 0 12px rgba(var(--accent-rgb),.08);
}
.hero-video-play svg { width: 30px; height: 30px; margin-left: 4px; }
.hero-video-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--plum-400);
}

/* Stats strip */
.hero-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hero-stat {
  background: var(--plum-800);
  border: 1px solid var(--plum-700);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.hero-stat:hover {
  border-color: var(--plum-600);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.4);
}
.hero-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),.04), transparent 40%);
  pointer-events: none;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--cyan-500);
  position: relative;
}
.hero-stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--plum-200);
  position: relative;
  margin: 0;
}

/* ------------------------------------------------------------
   CTA band (reusable between sections)
   ------------------------------------------------------------ */
.cta-band {
  padding: 72px 0;
  border-top: 1px solid var(--plum-700);
  border-bottom: 1px solid var(--plum-700);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--plum-900), var(--plum-900));
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(var(--accent-rgb),.05), transparent 70%);
  pointer-events: none;
}
.cta-band-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  flex-wrap: wrap;
}
.cta-band-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -.015em;
  color: var(--plum-50);
  margin: 0;
  max-width: 580px;
  line-height: 1.3;
}
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ------------------------------------------------------------
   Before / After
   ------------------------------------------------------------ */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ba-card {
  background: var(--plum-800);
  border: 1px solid var(--plum-700);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.ba-card--before {
  background: linear-gradient(180deg, rgba(240,105,123,.04), var(--plum-800) 30%);
}
.ba-card--after {
  background: linear-gradient(180deg, rgba(var(--accent-rgb),.05), var(--plum-800) 30%);
  border-color: rgba(var(--accent-rgb),.15);
}
.ba-card-head {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--plum-700);
}
.ba-card-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ba-card--before .ba-card-tag { color: var(--error); }
.ba-card--after .ba-card-tag { color: var(--cyan-500); }
.ba-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -.015em;
  color: var(--plum-50);
  margin: 0;
}
.ba-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ba-list li {
  display: flex;
  gap: 14px;
  padding: 18px 32px;
  font-size: 15px;
  line-height: 1.55;
  border-bottom: 1px solid var(--plum-700);
}
.ba-list li:last-child { border-bottom: 0; }
.ba-card--before .ba-list li { color: var(--plum-200); }
.ba-card--after .ba-list li { color: var(--plum-50); }
.ba-list-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.ba-card--before .ba-list-icon { background: rgba(240,105,123,.15); color: var(--error); }
.ba-card--after .ba-list-icon { background: rgba(var(--accent-rgb),.15); color: var(--cyan-500); }
.ba-list-icon svg { width: 12px; height: 12px; }

/* ------------------------------------------------------------
   Phases
   ------------------------------------------------------------ */
.phases {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.phases::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan-500), var(--cyan-700) 50%, var(--plum-700));
  opacity: .5;
}
.phase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-left: 60px;
  position: relative;
}
.phase::before {
  content: "";
  position: absolute;
  left: 0; top: 40px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--plum-900);
  border: 2px solid var(--cyan-500);
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb),.12), inset 0 0 12px rgba(var(--accent-rgb),.4);
}
.phase-reverse { direction: rtl; }
.phase-reverse > * { direction: ltr; }

.phase-text { display: flex; flex-direction: column; gap: 20px; position: relative; }
.phase-watermark {
  position: absolute;
  top: -40px;
  right: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 200px;
  line-height: 1;
  color: var(--plum-800);
  opacity: .4;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -.04em;
}
.phase-reverse .phase-watermark { left: 20px; right: auto; }
.phase-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.phase-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan-500);
}
.phase-weeks-badge {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--plum-700);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--plum-200);
}
.phase-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--plum-50);
  margin: 0;
  position: relative;
  z-index: 1;
}
.phase-bullets {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.phase-bullets li {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--plum-200);
}
.phase-bullet-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 5px;
  background: rgba(var(--accent-rgb),.12);
  color: var(--cyan-500);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.phase-bullet-check svg { width: 12px; height: 12px; }

/* Phase mockup card */
.phase-mockup {
  background: var(--plum-800);
  border: 1px solid var(--plum-700);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.03);
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.phase-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--accent-rgb),.05), transparent 60%);
  pointer-events: none;
}

/* Mockup chrome */
.mk-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 16px;
  border-bottom: 1px solid var(--plum-700);
  margin-bottom: 16px;
}
.mk-dots { display: flex; gap: 6px; }
.mk-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--plum-700);
}
.mk-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--plum-200);
  letter-spacing: .04em;
}
.mk-badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mk-badge-live { background: rgba(110,240,152,.12); color: var(--success); }

/* Phase 1: System Audit table */
.mk1-table { display: flex; flex-direction: column; gap: 2px; }
.mk1-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 60px;
  gap: 12px;
  align-items: center;
  padding: 11px 10px;
  border-radius: 6px;
  font-size: 13px;
}
.mk1-row:nth-child(odd) { background: rgba(255,255,255,.02); }
.mk1-row-head {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--plum-400);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--plum-700);
  background: transparent !important;
  margin-bottom: 2px;
}
.mk1-sys { color: var(--plum-50); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.mk1-sys-dot { width: 8px; height: 8px; border-radius: 2px; background: var(--cyan-500); }
.mk1-status {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  width: fit-content;
}
.mk1-status--bottleneck { background: rgba(240,105,123,.14); color: var(--error); }
.mk1-status--connected { background: rgba(240,201,110,.14); color: var(--warning); }
.mk1-status--ready { background: rgba(var(--accent-rgb),.14); color: var(--cyan-500); }
.mk1-bar {
  height: 4px;
  background: var(--plum-700);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.mk1-bar::after {
  content: "";
  display: block;
  height: 100%;
  width: var(--pct, 50%);
  background: linear-gradient(90deg, var(--cyan-700), var(--cyan-500));
  border-radius: 2px;
}
.mk1-hrs { font-family: var(--font-display); font-weight: 600; color: var(--plum-50); font-size: 13px; text-align: right; font-variant-numeric: tabular-nums; }
.mk1-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--plum-700);
}
.mk1-stat { display: flex; flex-direction: column; gap: 4px; }
.mk1-stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--plum-400);
}
.mk1-stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: var(--cyan-500);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

/* Phase 2: Workflow Pipeline */
.mk2-kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
}
.mk2-col {
  background: rgba(28,23,25,.5);
  border: 1px solid var(--plum-700);
  border-radius: 8px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 320px;
}
.mk2-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 2px 8px;
  border-bottom: 1px solid var(--plum-700);
  margin-bottom: 4px;
}
.mk2-col-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--plum-200);
}
.mk2-col-count {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: var(--plum-400);
  background: var(--plum-700);
  padding: 2px 7px;
  border-radius: 999px;
}
.mk2-task {
  background: var(--plum-800);
  border: 1px solid var(--plum-700);
  border-radius: 6px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mk2-task-tag {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-500);
}
.mk2-task-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--plum-50);
  line-height: 1.35;
}
.mk2-task-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--plum-400);
}
.mk2-agent-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 600;
  color: var(--cyan-500);
}
.mk2-agent-badge .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 2px rgba(var(--accent-rgb),.25);
}

/* Phase 3: Training Portal */
.mk3-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 14px; }
.mk3-modules-title .mk3-counter {
  display: inline-block;
  min-width: 10px;
  text-align: center;
  transition: opacity .15s ease;
  color: var(--plum-50);
  font-weight: 600;
}
.mk3-module { transition: background-color .25s ease, color .25s ease, border-color .25s ease; }
.mk3-mod-label { flex: 1; min-width: 0; }
.mk3-module--dim { color: var(--plum-600) !important; }
.mk3-module--dim .mk3-pct { color: var(--plum-600) !important; }
.mk3-module--inprogress {
  background: rgba(var(--accent-darkest-rgb),.28) !important;
  border: 1px solid rgba(var(--accent-rgb),.18);
  color: var(--plum-50);
}
.mk3-train-playing .mk3-module--inprogress {
  animation: mk3PulseBg 2s ease-in-out infinite;
}
@keyframes mk3PulseBg {
  0%, 100% { background-color: rgba(var(--accent-darkest-rgb),.25); }
  50% { background-color: rgba(var(--accent-darkest-rgb),.42); }
}
.mk3-check-svg {
  width: 10px; height: 10px;
  opacity: 0;
  transition: opacity .1s ease;
}
.mk3-module.mk3-module--done .mk3-check {
  background: var(--cyan-500);
  border-color: var(--cyan-500);
  color: var(--plum-900);
}
.mk3-module.mk3-module--done .mk3-check-svg { opacity: 1; }
.mk3-module.mk3-module--done {
  color: var(--plum-400);
}
.mk3-module.mk3-module--done .mk3-mod-label {
  text-decoration: line-through;
  text-decoration-color: var(--plum-600);
}
.mk3-pct--pill {
  background: rgba(var(--accent-darkest-rgb),.9);
  color: var(--cyan-500) !important;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* SOP doc line animation */
.mk3-doc-line {
  position: relative;
  overflow: hidden;
  height: 6px;
  border-radius: 3px;
  background: rgba(61,50,54,.55);
  transition: opacity .3s ease;
}
.mk3-doc-line::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--plum-700);
  transition: width .35s cubic-bezier(.2,.7,.3,1), background-color .3s ease;
}
.mk3-doc-line[data-color="accent"]::after { background: var(--cyan-500); }
.mk3-doc-line[data-color="accent-dark"]::after { background: var(--cyan-700); }
.mk3-doc-line[data-color="body"]::after { background: var(--plum-600); }
.mk3-doc-line.is-filled::after {
  width: var(--fill-w, 60%);
}

/* Prompt bar */
.mk3-prompt-arrow {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 13px;
  color: var(--cyan-500);
  font-weight: 600;
}
.mk3-prompt-cursor {
  animation: mk3CursorBlink 1s steps(2, start) infinite;
}
@keyframes mk3CursorBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.mk3-modules {
  background: rgba(28,23,25,.5);
  border: 1px solid var(--plum-700);
  border-radius: 8px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.mk3-modules-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--plum-400);
  margin-bottom: 4px;
}
.mk3-module {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 6px;
  font-size: 12px;
  color: var(--plum-200);
  border-radius: 4px;
}
.mk3-check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--plum-600);
  display: flex; align-items: center; justify-content: center;
}
.mk3-pct { margin-left: auto; font-family: var(--font-body); font-size: 10px; font-weight: 600; color: var(--plum-400); min-width: 28px; text-align: right; }

.mk3-doc {
  background: rgba(28,23,25,.5);
  border: 1px solid var(--plum-700);
  border-radius: 8px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 10px;
}
.mk3-doc-head {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--plum-700);
}
.mk3-doc-name { font-family: var(--font-body); font-size: 11px; color: var(--plum-50); font-weight: 500; }
.mk3-doc-ext { font-family: var(--font-body); font-size: 9px; color: var(--plum-400); letter-spacing: .1em; text-transform: uppercase; }
.mk3-doc-line-size { height: 5px; border-radius: 3px; }

.mk3-prompt {
  margin-top: 12px;
  border: 1px solid var(--plum-700);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(28,23,25,.5);
  display: flex; align-items: center; gap: 10px;
}
.mk3-prompt-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--plum-400);
}
.mk3-prompt-text {
  flex: 1;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px;
  color: var(--cyan-500);
}
.mk3-prompt-cursor {
  display: inline-block;
  width: 6px;
  height: 13px;
  background: var(--cyan-500);
  margin-left: 2px;
  vertical-align: -2px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* Phase 4: Results Dashboard */
.mk4-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.mk4-stat {
  background: rgba(28,23,25,.5);
  border: 1px solid var(--plum-700);
  border-radius: 8px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.mk4-stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--plum-400);
  margin-bottom: 6px;
}
.mk4-stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--cyan-500);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.mk4-stat-delta {
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--success);
}
.mk4-chart {
  background: rgba(28,23,25,.5);
  border: 1px solid var(--plum-700);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 14px;
}
.mk4-chart-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--plum-50);
  margin-bottom: 12px;
}
.mk4-bars {
  display: flex;
  align-items: stretch;
  gap: 10px;
  height: 110px;
}
.mk4-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  height: 100%;
  min-width: 0;
}
.mk4-bar {
  width: 100%;
  background: linear-gradient(180deg, var(--cyan-500), var(--cyan-700));
  border-radius: 3px 3px 0 0;
  box-shadow: 0 -4px 14px -4px rgba(var(--accent-rgb),.3);
}
.mk4-bar-labels {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px;
  margin-top: 8px;
}
.mk4-bar-labels .mk4-bar-label {
  flex: 1 1 0;
  min-width: 0;
}
.mk4-bar-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  color: var(--plum-400);
  text-align: center;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.mk4-roadmap {
  background: rgba(28,23,25,.5);
  border: 1px solid var(--plum-700);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.mk4-rm-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--plum-400);
  margin-bottom: 4px;
}
.mk4-rm-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px;
  color: var(--plum-200);
  padding: 4px 0;
}
.mk4-rm-month {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan-500);
  width: 44px;
}
.mk4-rm-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan-500);
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   Comparison table
   ------------------------------------------------------------ */
.compare-wrap {
  background: var(--plum-800);
  border: 1px solid var(--plum-700);
  border-radius: 16px;
  overflow: hidden;
}
.compare-scroll { overflow-x: auto; }
.compare-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table thead th {
  text-align: left;
  padding: 22px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--plum-400);
  letter-spacing: -.005em;
  background: var(--plum-900);
  border-bottom: 1px solid var(--plum-700);
  vertical-align: top;
  line-height: 1.35;
}
.compare-table thead th .sub {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--plum-600);
  margin-top: 4px;
  letter-spacing: 0;
}
.compare-table thead th.col-us {
  color: var(--plum-50);
  background: var(--plum-800);
  position: relative;
}
.compare-table thead th.col-us::before {
  content: "";
  position: absolute;
  left: 16px; right: 16px; top: 0;
  height: 2px;
  background: var(--cyan-500);
  box-shadow: 0 0 12px rgba(var(--accent-rgb),.4);
}
.compare-table thead th.col-us .sub { color: var(--cyan-500); }

.compare-table th.feature-col,
.compare-table td.feature-cell {
  min-width: 200px;
  padding-right: 12px;
}
.compare-table td {
  padding: 18px 20px;
  vertical-align: top;
  border-bottom: 1px solid var(--plum-700);
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table td.feature-cell {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--plum-50);
  font-size: 14.5px;
  background: var(--plum-900);
}
.compare-table td.col-us {
  background: var(--plum-700);
  color: var(--plum-50);
}

.cmp-cell { display: flex; align-items: flex-start; gap: 10px; line-height: 1.45; }
.cmp-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.cmp-icon svg { width: 11px; height: 11px; stroke-width: 2.5; }
.cmp-check { background: rgba(110,240,152,.14); color: var(--success); }
.cmp-warn { background: rgba(240,201,110,.14); color: var(--warning); }
.cmp-x { background: rgba(240,105,123,.14); color: var(--error); }
.cmp-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
}
.cmp-text.good { color: var(--plum-50); }
.cmp-text.mid { color: var(--warning); opacity: .85; }
.cmp-text.bad { color: var(--error); opacity: .85; }

@media (min-width: 1100px) {
  .compare-scroll { overflow-x: visible; }
  .compare-table { min-width: 0; }
}

/* ------------------------------------------------------------
   Case study (Black Star Digital Group)
   ------------------------------------------------------------ */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.case-card {
  background: var(--plum-800);
  border: 1px solid var(--plum-700);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case-card:hover {
  border-color: var(--plum-600);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,.5);
}
.case-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(var(--accent-rgb),.06), transparent 70%);
  pointer-events: none;
}
.case-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(var(--accent-rgb),.1);
  color: var(--cyan-500);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(var(--accent-rgb),.15);
}
.case-icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.case-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--plum-50);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.case-stat .before {
  color: var(--plum-400);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(135,110,115,.5);
  font-weight: 500;
}
.case-stat .arrow {
  color: var(--cyan-500);
  font-size: .9em;
  opacity: .6;
}
.case-stat .after {
  color: var(--cyan-500);
}
.case-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--plum-200);
  margin: 0;
}
.case-area-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--plum-400);
}

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--plum-700);
  transition: background var(--dur-fast);
}
.faq-item.open { background: rgba(var(--accent-rgb),.02); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 24px 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--plum-50);
  letter-spacing: -.01em;
  transition: color var(--dur-fast);
  line-height: 1.35;
}
.faq-q:hover { color: var(--cyan-500); }
.faq-plus {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--plum-600);
  border-radius: 8px;
  position: relative;
  transition: all var(--dur-base) var(--ease-out);
  color: var(--cyan-500);
}
.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: currentColor;
  border-radius: 1px;
}
.faq-plus::before { width: 12px; height: 1.5px; }
.faq-plus::after { width: 1.5px; height: 12px; transition: transform var(--dur-base) var(--ease-out); }
.faq-item.open .faq-plus { background: var(--cyan-500); color: var(--plum-900); border-color: var(--cyan-500); }
.faq-item.open .faq-plus::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-item.open .faq-a { max-height: 800px; }
.faq-a-inner {
  padding: 0 8px 28px;
  border-left: 3px solid var(--cyan-500);
  margin-left: 4px;
  padding-left: 20px;
}
.faq-a-inner p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--plum-200);
  margin: 0;
}

/* ------------------------------------------------------------
   Final CTA
   ------------------------------------------------------------ */
.final-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 50% 50%, rgba(var(--accent-rgb),.10), transparent 65%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(var(--accent-deep-rgb),.08), transparent 60%);
  pointer-events: none;
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(var(--accent-rgb),.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 70%);
  pointer-events: none;
  opacity: .6;
}
.final-cta-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.final-cta .eyebrow { margin-bottom: 0; }
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -.028em;
  color: var(--plum-50);
  margin: 0;
}
.final-cta .sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--plum-200);
  max-width: 580px;
  margin: 0;
}
.final-cta-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-direction: column;
  align-items: center;
}
.final-cta-hint {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--plum-400);
  margin: 0;
  max-width: 460px;
  line-height: 1.5;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.foot {
  border-top: 1px solid var(--plum-700);
  padding: 64px 0 32px;
}
.foot-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 56px;
}
.foot-brand img { height: 40px; width: auto; margin-bottom: 20px; }
.foot-brand p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--plum-400);
  margin: 0 0 14px;
  max-width: 320px;
}
.foot-brand .copy {
  font-size: 12px;
  color: var(--plum-600);
  margin: 0;
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.foot-cols h6 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--plum-50);
  margin: 0 0 18px;
}
.foot-cols a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--plum-400);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.foot-cols a:hover { color: var(--cyan-500); }
.foot-bottom {
  max-width: var(--content);
  margin: 40px auto 0;
  padding: 24px 40px 0;
  border-top: 1px solid var(--plum-700);
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--plum-600);
  line-height: 1.55;
  max-width: var(--content);
}
.foot-bottom p { margin: 0 0 10px; }
.foot-bottom p:last-child { margin-bottom: 0; }

/* Footer social icons */
.foot-social { display: flex; gap: 10px; margin-top: 14px; }
.foot-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0 !important;
  border-radius: 8px;
  border: none;
  color: var(--plum-300, #b8b0c9);
  transition: color var(--dur-fast), transform var(--dur-fast);
}
.foot-social-link svg { width: 22px; height: 22px; display: block; }
.foot-social-link:hover {
  color: var(--cyan-500);
  transform: translateY(-1px);
  background: transparent;
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .phase { grid-template-columns: 1fr; gap: 28px; padding-left: 40px; }
  .phase-reverse { direction: ltr; }
  .phase-watermark { font-size: 140px; top: -20px; }
  .mk3-wrap { grid-template-columns: 1fr; }
  .mk4-stats { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .wrap, .wrap-wide, .hero-inner, .cta-band-inner, .foot-inner, .final-cta-inner, .foot-bottom { padding-left: 24px; padding-right: 24px; }
  .nav-inner { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-ctas .btn-secondary { display: none; }
  .hero { padding: 120px 0 72px; }
  .hero-stats { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr; gap: 40px; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .cta-band { padding: 48px 0; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .section { padding: 80px 0; }
  .phases { gap: 80px; }
  .phases::before { left: 8px; }
  .phase { padding-left: 30px; }
  .phase::before { width: 20px; height: 20px; left: -2px; }
  .phase-watermark { font-size: 100px; }
  .phase-mockup { min-height: 0; padding: 14px; }
  .mk1-row { grid-template-columns: 1.4fr 1fr 1fr 50px; gap: 8px; font-size: 11px; }
  .mk1-footer { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .mk4-stats { grid-template-columns: 1fr; }
  .final-cta { padding: 80px 0; }
  .final-cta-actions { flex-direction: column; width: 100%; }
  .final-cta-actions .btn { width: 100%; justify-content: center; }
}
