/* FunnelLeaders compressed visual homepage — 2026 */
:root {
  --coral: #d83a2e;
  --coral-light: #eb635e;
  --coral-soft: rgba(216, 58, 46, .09);
  --coral-wash: #fff3f0;
  --purple: #7c3aed;
  --green: #187a5a;
  --ink: #0f172a;
  --muted: #526076;
  --bg: #ffffff;
  --paper: #fbfaf8;
  --bg-soft: #f4f5f7;
  --border: #e4e8ee;
  --dark: #111318;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
[id] { scroll-margin-top: 96px; }

.container { width: min(calc(100% - 48px), 1180px); margin-inline: auto; padding: 0; }
.container-narrow { width: min(calc(100% - 48px), 920px); margin-inline: auto; padding: 0; }

h1, h2, h3, h4 { color: var(--ink); letter-spacing: -.035em; line-height: 1.08; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 12px 28px rgba(216,58,46,.20); }
.btn-coral:hover { background: #b92e24; }
.btn-ghost { border-color: #cbd1da; background: rgba(255,255,255,.55); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: #fff; }
.btn-sm { min-height: 42px; padding: 10px 15px; font-size: 13px; }
.btn-lg { min-height: 52px; padding: 15px 23px; font-size: 15.5px; }

/* Shared full-site navigation */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(228,232,238,.88);
  background: rgba(251,250,248,.92);
  backdrop-filter: blur(16px);
}
.nav-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.logo-link { display: inline-flex; flex-shrink: 0; align-items: center; }
.logo-link img { width: auto; height: 48px; display: block; }
.nav-menu { display: none; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.nav-menu > li { position: relative; }
.nav-link, .nav-drop-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 11px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13.5px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.nav-link:hover, .nav-drop-btn:hover { color: var(--coral); }
.nav-drop-btn .car, .mm-toggle .car {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-drop-btn[aria-expanded="true"] .car { transform: rotate(-135deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 120;
  min-width: 270px;
  display: none;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15,23,42,.14);
}
.nav-dropdown.open { display: block; }
.nav-dropdown a {
  min-height: 42px;
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
}
.nav-dropdown a:hover { background: var(--coral-wash); color: var(--coral); }
.nav-dropdown .dd-all { margin-top: 5px; padding-top: 11px; border-top: 1px solid var(--border); color: var(--coral); }
.nav-cta { display: none; }
.nav-burger {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-burger span { display: block; height: 2px; border-radius: 2px; background: var(--ink); }
.mobile-menu { display: none; }
.mobile-menu.open { display: block; }
.mobile-menu .mm-group { border-bottom: 1px solid var(--border); }
.mobile-menu .mm-toggle {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}
.mobile-menu .mm-panel { display: none; padding: 0 4px 12px; }
.mobile-menu .mm-panel.open { display: block; }
.mobile-menu .mm-panel a, .mobile-menu a.mm-link {
  min-height: 44px;
  display: block;
  padding: 11px 8px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}
.mobile-menu a.mm-link { padding: 15px 4px; border-bottom: 1px solid var(--border); border-radius: 0; color: var(--ink); font-weight: 750; }
.mobile-menu .mm-cta { width: 100%; margin-top: 20px; }

@media (min-width: 1024px) {
  .nav-menu { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
}

/* Visual hero */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 68px;
  background:
    radial-gradient(circle at 85% 5%, rgba(216,58,46,.13), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(124,58,237,.07), transparent 32%),
    var(--paper);
}
.home-hero::after {
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(216,58,46,.17);
  border-radius: 50%;
  content: "";
}
.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  gap: 56px;
  align-items: center;
}
.home-hero h1 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(52px, 6.2vw, 82px);
  line-height: .96;
  letter-spacing: -.07em;
}
.home-hero h1 em { color: var(--coral); font-style: normal; }
.home-hero-lede { max-width: 650px; margin: 0 0 28px; color: var(--muted); font-size: 19px; line-height: 1.55; }
.home-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.home-principles { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 20px 0 0; padding: 0; list-style: none; }
.home-principles li { position: relative; padding-left: 16px; color: var(--muted); font-size: 12.5px; }
.home-principles li::before { position: absolute; top: 7px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--green); content: ""; }

.home-case-slider {
  position: relative;
  min-height: 558px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 34px 90px rgba(15,23,42,.18);
}
.home-case-slider:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 4px;
}
.home-case-topbar {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 4px 10px;
}
.home-case-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.home-case-label::before { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); content: ""; }
.home-case-topmeta { display: flex; align-items: center; gap: 10px; }
.home-case-topmeta strong { color: var(--muted); font-size: 10px; letter-spacing: .09em; }
.home-case-topmeta button {
  min-width: 64px;
  min-height: 44px;
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink);
  font: inherit;
  font-size: 10px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease;
}
.home-case-topmeta button:hover { border-color: #c6ccd5; background: #fff; }
.home-case-slides { overflow: hidden; border: 1px solid var(--border); border-radius: 18px; }
.home-case-slide {
  min-height: 450px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}
.home-case-slide[hidden] { display: none; }
.home-case-shot {
  position: relative;
  display: grid;
  min-height: 315px;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #f8fafc;
}
.home-case-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.home-case-copy { min-height: 135px; padding: 18px 22px 20px; }
.home-case-kicker {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.home-case-copy h3 { margin: 0 0 7px; color: var(--ink); font-size: 27px; line-height: 1.08; letter-spacing: -.045em; }
.home-case-copy > p:last-child { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.home-case-controls {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 2px 0;
}
.home-case-nav,
.home-case-dot {
  min-height: 44px;
  border: 1px solid var(--border);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.home-case-nav { min-width: 92px; padding: 8px 13px; border-radius: 999px; background: var(--bg-soft); font-size: 11px; }
.home-case-nav:hover { border-color: #c6ccd5; background: #fff; transform: translateY(-1px); }
.home-case-dots { display: flex; justify-content: center; gap: 6px; }
.home-case-dot { min-width: 44px; padding: 6px 9px; border-radius: 999px; background: #fff; font-size: 10px; letter-spacing: .08em; }
.home-case-dot:hover { background: var(--bg-soft); }
.home-case-dot[aria-current="true"] { border-color: var(--coral); background: var(--coral); color: #fff; }
.home-case-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Shared section styling */
.home-section { padding: 90px 0; }
.home-section.soft { background: var(--bg-soft); }
.home-section.dark { background: var(--dark); color: #fff; }
.home-section-head {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}
.home-section-head h2 { max-width: 720px; margin: 0; font-size: clamp(38px, 4.5vw, 58px); line-height: 1.02; letter-spacing: -.055em; }
.home-section-head p { max-width: 650px; margin: 0; color: var(--muted); font-size: 16.5px; }
.dark .home-section-head h2 { color: #fff; }
.dark .home-section-head p { color: rgba(255,255,255,.63); }
.dark .eyebrow { color: #ff8d84; }

/* Evidence */
.home-results-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.home-result-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.home-result-card:hover { transform: translateY(-3px); border-color: #c8ced7; box-shadow: 0 22px 52px rgba(15,23,42,.10); }
.home-result-shot { position: relative; aspect-ratio: 2 / 1; overflow: hidden; border-bottom: 1px solid var(--border); background: #fff; }
.home-result-shot img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; }
.home-nda { position: absolute; top: 10px; left: 10px; padding: 5px 8px; border-radius: 999px; background: rgba(15,23,42,.9); color: #fff; font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.home-result-body { padding: 20px; }
.home-result-body small { color: var(--coral); font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.home-result-body h3 { margin: 8px 0 7px; font-size: 19px; line-height: 1.2; }
.home-result-body p { margin: 0; color: var(--muted); font-size: 13px; }
.home-disclosure { max-width: 900px; margin: 20px 0 0; color: var(--muted); font-size: 11.5px; }
.home-inline-link { display: inline-flex; margin-top: 18px; color: var(--coral); font-weight: 800; text-underline-offset: 4px; }

/* Services and verticals */
.home-services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.home-service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.home-service-card:hover { transform: translateY(-3px); border-color: #c7cdd6; box-shadow: 0 20px 48px rgba(15,23,42,.09); }
.home-service-media { aspect-ratio: 1.9; overflow: hidden; background: #eef1f4; }
.home-service-media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.home-service-card:hover .home-service-media img { transform: scale(1.025); }
.home-service-copy { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.home-service-copy small { color: var(--coral); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.home-service-copy h3 { margin: 9px 0 7px; font-size: 21px; }
.home-service-copy p { margin: 0; color: var(--muted); font-size: 13.5px; }
.home-service-arrow { margin-top: auto; padding-top: 15px; color: var(--coral); font-size: 13px; font-weight: 800; }

.home-verticals { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 40px; }
.home-vertical-card { position: relative; min-height: 260px; overflow: hidden; border-radius: 18px; color: #fff; text-decoration: none; }
.home-vertical-card img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.home-vertical-card:hover img { transform: scale(1.03); }
.home-vertical-card::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,13,20,.93), rgba(10,13,20,.25)); content: ""; }
.home-vertical-copy { position: relative; z-index: 1; max-width: 380px; padding: 30px; }
.home-vertical-copy small { color: #ff9b93; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.home-vertical-copy h3 { margin: 12px 0 8px; color: #fff; font-size: 26px; }
.home-vertical-copy p { margin: 0; color: rgba(255,255,255,.7); font-size: 13.5px; }

/* Four-phase visual system */
.home-phase-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.home-phase-card { overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.045); }
.home-phase-media { aspect-ratio: 1.35; overflow: hidden; background: #222630; }
.home-phase-media img { width: 100%; height: 100%; display: block; object-fit: cover; opacity: .78; }
.home-phase-copy { padding: 20px; }
.home-phase-copy small { color: #ff8d84; font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.home-phase-copy h3 { margin: 8px 0 7px; color: #fff; font-size: 17px; }
.home-phase-copy p { margin: 0; color: rgba(255,255,255,.6); font-size: 12.5px; }
.home-model-note {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
}
.home-model-note p { max-width: 800px; margin: 0; color: rgba(255,255,255,.69); font-size: 14px; }
.home-model-links { display: flex; flex-shrink: 0; gap: 15px; }
.home-model-links a { color: #ff8d84; font-size: 13px; font-weight: 800; text-underline-offset: 4px; }

/* Direct contact */
.home-contact { padding: 94px 0; background: radial-gradient(circle at 15% 100%, rgba(216,58,46,.12), transparent 36%), var(--paper); }
.home-contact-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); gap: 64px; align-items: start; }
.home-contact-copy h2 { max-width: 600px; margin: 0 0 18px; font-size: clamp(42px, 5vw, 66px); line-height: 1; letter-spacing: -.06em; }
.home-contact-copy > p { max-width: 540px; margin: 0; color: var(--muted); font-size: 16.5px; }
.home-contact-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.home-contact-list li { position: relative; padding-left: 24px; color: var(--muted); font-size: 14px; }
.home-contact-list li::before { position: absolute; left: 0; color: var(--green); content: "✓"; font-weight: 900; }
.home-form-card { padding: 30px; border: 1px solid var(--border); border-radius: 20px; background: #fff; box-shadow: 0 25px 70px rgba(15,23,42,.10); }
.home-form-card h3 { margin: 0 0 7px; font-size: 23px; }
.home-form-card > p { margin: 0 0 20px; color: var(--muted); font-size: 13px; }
.home-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 6px; color: var(--ink); font-size: 12.5px; font-weight: 750; }
.field input, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}
.field textarea { min-height: 92px; resize: vertical; }
.home-form-card .btn { width: 100%; }
.home-form-note { margin: 11px 0 0 !important; font-size: 11px !important; }

/* Footer */
footer.site-footer { padding: 54px 0 38px; border-top: 1px solid rgba(255,255,255,.08); background: var(--dark); color: rgba(255,255,255,.58); font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 30px; margin-bottom: 34px; }
.footer-brand { margin-bottom: 9px; color: var(--coral-light); font-size: 18px; font-weight: 900; }
.footer-tagline { max-width: 290px; margin: 0; color: rgba(255,255,255,.5); }
.footer-col h4 { margin: 0 0 12px; color: #fff; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.footer-col a { display: block; padding: 4px 0; color: rgba(255,255,255,.68); text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.42); font-size: 11.5px; }

a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .home-hero-grid, .home-contact-grid { grid-template-columns: 1fr; }
  .home-case-slider { max-width: 760px; }
  .home-section-head { grid-template-columns: 1fr; gap: 13px; }
  .home-results-grid, .home-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-phase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container, .container-narrow { width: min(calc(100% - 32px), 1180px); }
  .nav-inner { min-height: 66px; }
  .logo-link img { height: 40px; }
  .home-hero { padding: 58px 0 44px; }
  .home-hero h1 { font-size: clamp(44px, 13vw, 58px); }
  .home-hero-lede { font-size: 17px; }
  .home-actions { display: grid; }
  .home-actions .btn { width: 100%; }
  .home-case-slider { min-height: 0; padding: 8px; border-radius: 20px; }
  .home-case-slides, .home-case-slide { border-radius: 14px; }
  .home-case-slide { min-height: 0; }
  .home-case-topbar { padding-inline: 3px; }
  .home-case-label { font-size: 8.5px; letter-spacing: .08em; }
  .home-case-topmeta { gap: 6px; }
  .home-case-topmeta button { min-width: 58px; padding-inline: 9px; }
  .home-case-shot { min-height: 240px; aspect-ratio: 16 / 10; }
  .home-case-copy { min-height: 138px; padding: 18px 18px 20px; }
  .home-case-copy h3 { font-size: 22px; }
  .home-case-controls { gap: 6px; }
  .home-case-nav { min-width: 44px; padding-inline: 0; }
  .home-case-nav-text { display: none; }
  .home-section, .home-contact { padding: 68px 0; }
  .home-section-head h2 { font-size: clamp(36px, 10vw, 46px); }
  .home-results-grid,
  .home-services-grid,
  .home-phase-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(278px, 84vw);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    padding: 2px 2px 14px;
  }
  .home-results-grid > *,
  .home-services-grid > *,
  .home-phase-grid > * { scroll-snap-align: start; }
  .home-verticals, .home-form-grid, .footer-grid { grid-template-columns: 1fr; }
  .home-service-card { min-height: 0; }
  .home-vertical-card { min-height: 235px; }
  .home-model-note { display: grid; }
  .home-model-links { flex-wrap: wrap; }
  .home-contact-grid { gap: 34px; }
  .home-form-card { padding: 22px; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
