:root {
  --navy: #101141;
  --white: #ffffff;
  --cyan: #b0e8e9;
  --magenta: #d368c6;
  --gradient: linear-gradient(115deg, #b0e8e9 0%, #a78bdb 48%, #d368c6 100%);

  --cloud: #edeff7;
  --smoke: #d3d6e0;
  --steel: #bcbfcc;
  --space: #9da2b3;
  --graphite: #6e7180;
  --arsenic: #40424d;
  --phantom: #1e1e24;
  --black: #000000;

  --font: "Manrope", system-ui, sans-serif;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.6;
  color: var(--phantom);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    border-color 0.35s var(--ease), color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

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

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, #ffffff 0%, #f4fbfb 48%, #f8f0f7 100%);
  box-shadow: 0 10px 30px rgba(176, 232, 233, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(211, 104, 198, 0.28);
}

.btn-primary.is-brand,
.site-header .btn-primary,
.cta-panel .btn-primary,
.try-it .btn-primary,
.calc-results .btn-primary {
  position: relative;
  isolation: isolate;
  background: transparent;
  border: none;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn-primary.is-brand::before,
.site-header .btn-primary::before,
.cta-panel .btn-primary::before,
.try-it .btn-primary::before,
.calc-results .btn-primary::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient);
  z-index: -1;
}

.btn-primary.is-brand:hover,
.site-header .btn-primary:hover,
.cta-panel .btn-primary:hover,
.try-it .btn-primary:hover,
.calc-results .btn-primary:hover {
  box-shadow: 0 14px 36px rgba(211, 104, 198, 0.28);
}

.btn-ghost {
  color: var(--navy);
  border-color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #eaf7f8 42%, #f3e6f1 100%);
  box-shadow: 0 10px 28px rgba(176, 232, 233, 0.14);
}

.btn-ghost:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #dff4f5 42%, #f0daf0 100%);
  box-shadow: 0 14px 34px rgba(211, 104, 198, 0.22);
}

.btn-sm {
  min-height: 2.5rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.92rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    #0c1a3a 0%,
    #1a1650 48%,
    #3d1850 100%
  );
  opacity: 0.55;
  transition: opacity 0.28s var(--ease), background 0.28s var(--ease);
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled::before {
  background: #101141;
  opacity: 1;
}

.brand img {
  height: 32px;
  width: auto;
}

/* Logo usage:
   - logo-on-dark.png  → navy/black surfaces (header, footer, heroes)
   - logo-on-light.png → white/cloud surfaces (darkened gradient + soft edge for contrast)
   - logo-white.png    → optional solid-white wordmark on dark
*/

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--smoke);
}

.nav > a {
  position: relative;
  transition: color 0.25s ease;
}

.nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav > a:hover {
  color: var(--white);
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.25s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--white);
}

.nav-dropdown-toggle svg {
  width: 0.7rem;
  height: 0.7rem;
  transition: transform 0.25s var(--ease);
}

.nav-dropdown.is-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  transform: translateX(-50%);
  width: min(42rem, calc(100vw - 2rem));
  padding: 1.15rem 1.15rem 0.9rem;
  border-radius: 1.15rem;
  background: rgba(16, 17, 65, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  display: none;
  z-index: 60;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  display: block;
}

.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}

.nav-mega-col {
  display: grid;
  gap: 0.2rem;
  align-content: start;
}

.nav-dropdown-label {
  margin: 0 0 0.35rem;
  padding: 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--space);
}

.nav-mega-link {
  display: grid;
  grid-template-columns: 2.35rem 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.55rem;
  border-radius: 0.75rem;
  color: var(--smoke);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-mega-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.nav-mega-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(176, 232, 233, 0.14);
}

.nav-mega-icon img {
  width: 1.35rem;
  height: 1.35rem;
}

.nav-mega-link strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: inherit;
}

.nav-mega-link > span:last-child {
  min-width: 0;
}

.nav-mega-link > span:last-child > span {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.72rem;
  color: var(--space);
  font-weight: 450;
  line-height: 1.3;
}

.nav-dropdown-overview {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.85rem;
  padding: 0.7rem 0.75rem;
  border-radius: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 650;
  color: var(--white);
}

.nav-dropdown-overview:hover {
  background: rgba(176, 232, 233, 0.1);
}

.nav-dropdown-overview img {
  width: 1.15rem;
  height: 1.15rem;
}

.nav-dropdown-menu.is-compact {
  width: min(22rem, calc(100vw - 2rem));
  padding: 0.75rem;
}

.nav-dropdown-menu.is-compact .nav-mega-grid {
  grid-template-columns: 1fr;
  gap: 0.2rem;
}

.nav-dropdown-menu.is-compact .nav-dropdown-label {
  display: none;
}

.site-header .btn-primary {
  color: var(--navy);
  box-shadow: none;
}

.site-header .btn-primary:hover {
  box-shadow: none;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: calc(var(--header-h) + 1.85rem) clamp(1.25rem, 4vw, 3.5rem) 2.85rem;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(211, 104, 198, 0.55), transparent 58%),
    radial-gradient(ellipse 75% 65% at 0% 100%, rgba(176, 232, 233, 0.42), transparent 55%),
    radial-gradient(ellipse 50% 45% at 45% 55%, rgba(167, 139, 219, 0.22), transparent 60%),
    linear-gradient(
      135deg,
      #0c1a3a 0%,
      #101141 28%,
      #2a1a55 58%,
      #3d1850 82%,
      #4a1a48 100%
    );
  animation: atmosphere-drift 18s ease-in-out infinite alternate;
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.28;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

@keyframes atmosphere-drift {
  from {
    filter: saturate(1) brightness(1);
    transform: scale(1);
  }
  to {
    filter: saturate(1.12) brightness(1.04);
    transform: scale(1.03);
  }
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 38rem;
  padding-bottom: 0.5rem;
}

.brand-signal {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.2vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  margin-top: 1.15rem;
  max-width: 32rem;
  color: var(--smoke);
  font-size: 1.125rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
}

.hero-photo {
  margin: 0;
  width: 100%;
  max-width: 36rem;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.badge-stage {
  position: relative;
  width: min(100%, 420px);
  height: 300px;
}

.badge {
  position: absolute;
  width: 210px;
  height: 320px;
  border-radius: 1.35rem;
  padding: 1px;
  background: var(--gradient);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.badge-front {
  right: 8%;
  bottom: 0;
  z-index: 2;
  animation: badge-float 6s var(--ease) infinite;
}

.badge-back {
  left: 4%;
  bottom: 28px;
  z-index: 1;
  transform: rotate(-8deg) scale(0.92);
  opacity: 0.92;
  animation: badge-float-alt 7.5s var(--ease) infinite;
}

@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes badge-float-alt {
  0%,
  100% {
    transform: rotate(-8deg) scale(0.92) translateY(0);
  }
  50% {
    transform: rotate(-8deg) scale(0.92) translateY(-8px);
  }
}

.badge-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(176, 232, 233, 0.25), transparent 60%);
  z-index: -1;
  filter: blur(10px);
}

.badge-screen {
  height: 100%;
  border-radius: 1.28rem;
  padding: 1.35rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(237, 239, 247, 0.98), rgba(211, 214, 224, 0.95));
  color: var(--navy);
  display: flex;
  flex-direction: column;
}

.badge-screen-staff {
  background:
    linear-gradient(180deg, #15174a, #101141);
  color: var(--white);
}

.badge-school {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite);
}

.badge-screen-staff .badge-school {
  color: var(--steel);
}

.badge-name {
  margin-top: 0.85rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.badge-meta {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: var(--graphite);
}

.badge-screen-staff .badge-meta {
  color: var(--space);
}

.badge-pass {
  margin-top: auto;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.badge-pass span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--smoke);
}

.badge-pass em {
  font-style: normal;
  font-weight: 700;
  font-size: 1.35rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.badge-status {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(176, 232, 233, 0.2);
}

/* ——— Sections ——— */
.section {
  padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3.5rem);
}

.section-inner {
  max-width: 46rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(115deg, #3d9ea3 0%, #6a4fb8 48%, #b03d9e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
}

.thesis .eyebrow,
.cta-section .eyebrow,
.page-hero .eyebrow {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lede,
.outcome-copy p {
  margin-top: 1.25rem;
  color: var(--arsenic);
  font-size: 1.125rem;
  max-width: 38rem;
}

.problem {
  background:
    linear-gradient(180deg, var(--cloud), var(--white));
}

.problem .split {
  margin-bottom: 2.5rem;
}

.page-stats {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.75rem 2rem;
}

.page-stat {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(16, 17, 65, 0.12);
}

.page-stat-num {
  margin: 0 0 0.45rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  background: linear-gradient(115deg, #3d9ea3 0%, #6a4fb8 48%, #b03d9e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-stat h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.page-stat p {
  margin: 0;
  color: var(--graphite);
  font-size: 0.98rem;
  max-width: 26rem;
  line-height: 1.5;
}

.plan-chip {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
  background: var(--gradient);
  color: var(--navy);
}

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

.thesis {
  background: var(--navy);
  color: var(--white);
}

.thesis .section-lede {
  color: var(--smoke);
}

.outcome {
  background: var(--white);
}

.outcome-alt {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(176, 232, 233, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(211, 104, 198, 0.12), transparent 50%),
    var(--cloud);
}

.outcome-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.outcome-grid.reverse .outcome-copy {
  order: 1;
}

.outcome-visual {
  min-height: 240px;
}

.scene {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.25rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.scene-class {
  background:
    linear-gradient(145deg, rgba(16, 17, 65, 0.96), #1a1c5c 55%, #24184f);
  color: var(--white);
  border: 1px solid rgba(176, 232, 233, 0.18);
}

.scene-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 500;
}

.pill-live {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(176, 232, 233, 0.16);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
}

.scene-lines {
  display: grid;
  gap: 0.65rem;
  margin: 1.75rem 0;
}

.scene-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.scene-line.filled::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  background: var(--gradient);
  transform-origin: left;
  animation: fill-line 2.8s var(--ease) infinite;
}

.scene-line.short::after {
  width: 62%;
  animation-delay: 0.35s;
}

@keyframes fill-line {
  0% {
    transform: scaleX(0.35);
    opacity: 0.65;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0.35);
    opacity: 0.65;
  }
}

.scene-caption {
  font-size: 0.92rem;
  color: var(--steel);
}

.scene-hall {
  background: var(--white);
  border: 1px solid var(--smoke);
  gap: 0.85rem;
}

.pass-chip {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: var(--navy);
  color: var(--white);
}

.pass-chip em {
  font-style: normal;
  font-weight: 700;
  color: var(--cyan);
}

.pass-chip.muted {
  background: transparent;
  border: 1px solid var(--smoke);
  color: var(--navy);
}

.pass-chip.muted em {
  color: var(--magenta);
}

.scene-hall .scene-caption {
  color: var(--graphite);
  margin-top: auto;
}

.scene-roll {
  background:
    linear-gradient(145deg, #101141, #18206a 60%, #101141);
  color: var(--white);
  border: 1px solid rgba(176, 232, 233, 0.2);
}

.roll-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.roll-stats div {
  padding: 1rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
}

.roll-stats strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.roll-stats span {
  font-size: 0.85rem;
  color: var(--steel);
}

.scene-safety {
  background:
    linear-gradient(160deg, #101141, #2a1450 70%, #101141);
  color: var(--white);
  border: 1px solid rgba(211, 104, 198, 0.25);
  gap: 0.85rem;
}

.safety-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}

.safety-row.soft {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--smoke);
}

.safety-tag {
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.district-marquee-band {
  padding: 1.75rem 0 2rem;
  background: var(--white);
  border-bottom: 1px solid rgba(16, 17, 65, 0.08);
}

.district-marquee-band-dark {
  background: var(--navy);
  border-bottom: none;
}

.district-marquee-label {
  margin: 0 auto 1.25rem;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  max-width: 1100px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.district-marquee-band-dark .district-marquee-label {
  color: var(--cyan);
}

.district-marquee-viewport {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}

.district-marquee-track {
  display: flex;
  width: max-content;
  animation: district-marquee 42s linear infinite;
}

.district-marquee-set {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-right: 1.25rem;
}

.district-marquee-set img {
  display: block;
  height: 3.25rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  opacity: 0.92;
  filter: grayscale(0.15);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.district-marquee-set img:hover {
  opacity: 1;
  filter: grayscale(0);
}

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

@media (prefers-reduced-motion: reduce) {
  .district-marquee-viewport {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .district-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    gap: 1rem;
    padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  }

  .district-marquee-set[aria-hidden="true"] {
    display: none;
  }
}

.faq-section {
  background: var(--cloud);
}

.faq-page {
  padding-top: 1.5rem;
}

.about-story .section-lede + .section-lede {
  margin-top: 1rem;
}

.about-proof {
  background: var(--navy);
  color: var(--white);
}

.about-proof-head {
  max-width: 40rem;
  margin: 0 auto 2.25rem;
}

.about-proof h2 {
  color: var(--white);
}

.about-proof .eyebrow {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-stats {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.about-stat-num {
  margin: 0 0 0.45rem;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-stats p:last-child {
  margin: 0;
  color: var(--smoke);
  max-width: 16rem;
}

.about-contact {
  background: var(--cloud);
}

.about-contact-inner {
  max-width: 40rem;
  margin: 0 auto;
}

.about-contact .section-lede {
  margin-top: 1rem;
  color: var(--graphite);
}

.about-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.about-contact .btn-ghost-dark {
  background: var(--white);
}

.about-contact-note {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: var(--steel);
}

@media (min-width: 780px) {
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.faq-head {
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.faq-item {
  border-top: 1px solid rgba(16, 17, 65, 0.12);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(16, 17, 65, 0.12);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 2.25rem 1.25rem 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  position: relative;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--graphite);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item summary:hover {
  color: #2a1a55;
}

.faq-item p {
  margin: 0 0 1.35rem;
  max-width: 40rem;
  color: var(--graphite);
  font-size: 1.02rem;
  line-height: 1.55;
}

.quote-section {
  background: var(--navy);
  color: var(--white);
}

.quote-layout {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
  align-items: center;
  justify-items: start;
}

.quote-section blockquote {
  max-width: 36rem;
  margin: 0;
}

.quote-section p {
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.quote-section footer {
  margin-top: 1.5rem;
  color: var(--smoke);
  font-size: 1rem;
  display: grid;
  gap: 0.15rem;
}

.quote-section footer strong {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
}

.quote-section footer span {
  color: var(--cyan);
  font-weight: 600;
}

.quote-section .quote-place {
  color: var(--steel);
  font-weight: 500;
}

.quote-photo {
  margin: 0;
  width: 9.5rem;
  height: 9.5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 0 4px rgba(176, 232, 233, 0.28);
}

.quote-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 780px) {
  .quote-layout {
    grid-template-columns: auto 1fr;
    gap: 2.75rem;
  }

  .quote-photo {
    width: 12rem;
    height: 12rem;
  }
}

.unify {
  background:
    linear-gradient(180deg, var(--white), var(--cloud));
}

.cta-section {
  background: var(--cloud);
  padding-top: 2rem;
}

.cta-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  border-radius: 1.75rem;
  background:
    radial-gradient(ellipse 80% 70% at 20% 0%, rgba(176, 232, 233, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 60% at 90% 100%, rgba(211, 104, 198, 0.3), transparent 50%),
    var(--navy);
  color: var(--white);
}

.cta-panel p {
  margin: 1rem auto 2rem;
  max-width: 34rem;
  color: var(--smoke);
}

.cta-panel .btn-primary {
  color: var(--navy);
}

.site-footer {
  padding: 3rem clamp(1.25rem, 4vw, 3.5rem) 1.75rem;
  background: var(--navy);
  color: var(--steel);
}

.footer-inner {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
}

.footer-brand img {
  height: 28px;
  width: auto;
}

.footer-brand p {
  margin: 0;
  max-width: 18rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--smoke);
}

.footer-email {
  width: fit-content;
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--cyan);
  transition: color 0.2s var(--ease);
}

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

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 1.5rem;
}

.footer-col {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.footer-col-title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--space);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--smoke);
  transition: color 0.2s var(--ease);
}

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

.footer-overview {
  margin-top: 0.25rem;
  color: var(--cyan) !important;
}

.footer-overview:hover {
  color: var(--white) !important;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding-top: 1.5rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--space);
}

.footer-top-link {
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--steel);
  transition: color 0.2s var(--ease);
}

.footer-top-link:hover {
  color: var(--white);
}

@media (min-width: 780px) {
  .footer-inner {
    grid-template-columns: minmax(12rem, 0.9fr) minmax(0, 2.4fr);
    gap: 3rem;
    align-items: start;
  }

  .footer-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 780px) {
  .nav {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    padding-top: calc(var(--header-h) + 1.65rem);
    padding-bottom: 2.75rem;
    gap: 2rem;
  }

  .hero-visual {
    min-height: 0;
    justify-content: flex-end;
  }

  .hero-photo {
    max-width: none;
  }

  .hero-photo img {
    max-height: 380px;
    min-height: 280px;
  }

  .badge-stage {
    height: 380px;
    width: 460px;
  }

  .badge {
    width: 230px;
    height: 350px;
  }

  .outcome-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .outcome-grid.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .outcome-grid.reverse .outcome-copy {
    order: 2;
  }

  .outcome-grid.reverse .outcome-visual {
    order: 1;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .site-header .btn-sm {
    width: auto;
  }

  .badge-back {
    display: none;
  }

  .badge-front {
    right: 50%;
    transform: translateX(50%);
  }

  @keyframes badge-float {
    0%,
    100% {
      transform: translateX(50%) translateY(0);
    }
    50% {
      transform: translateX(50%) translateY(-12px);
    }
  }
}

.install {
  background:
    radial-gradient(ellipse 70% 55% at 88% 12%, rgba(176, 232, 233, 0.35), transparent 55%),
    radial-gradient(ellipse 55% 50% at 8% 88%, rgba(211, 104, 198, 0.12), transparent 50%),
    linear-gradient(180deg, var(--cloud), var(--white));
  color: var(--navy);
}

.install .section-lede {
  color: var(--arsenic);
}

.install-grid {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  display: grid;
  gap: 1.5rem;
}

.install-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.25rem;
  align-items: start;
}

.install-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: rgba(16, 17, 65, 0.06);
  border: 1.5px solid rgba(16, 17, 65, 0.22);
}

.install-icon img {
  width: 3.15rem;
  height: 3.15rem;
}

.install-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.install-item p {
  color: var(--arsenic);
  font-size: 1rem;
  max-width: 28rem;
}

.install .section-inner {
  max-width: 46rem;
}

.install-closing {
  max-width: 40rem;
  margin: 2.75rem auto 0;
  text-align: center;
  color: var(--arsenic);
  font-size: 1.125rem;
}

.install-closing strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--navy);
}

@media (min-width: 780px) {
  .install-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }

  .install-grid:has(> :nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-intro {
  background: var(--white);
}

.pricing-promise {
  max-width: 960px;
  margin: 2.5rem auto 0;
  display: grid;
  gap: 1.75rem;
}

.pricing-promise h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.pricing-promise p {
  color: var(--arsenic);
  max-width: 22rem;
}

.consolidate {
  background: var(--navy);
  color: var(--white);
}

.consolidate .section-lede {
  color: var(--smoke);
}

.consolidate-grid {
  max-width: 960px;
  margin: 2.5rem auto 0;
  display: grid;
  gap: 1.75rem;
}

.consolidate-grid h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
}

.consolidate-grid p {
  color: var(--smoke);
  max-width: 22rem;
}

@media (min-width: 900px) {
  .consolidate-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.pricing-plans {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(176, 232, 233, 0.18), transparent 55%),
    var(--cloud);
}

.pricing-plans-first {
  padding-top: 2.5rem;
}

.calc-section {
  background: var(--white);
}

.calc-head {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.calc-head .section-lede {
  margin-top: 1rem;
  color: var(--graphite);
}

.calc-shell {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: start;
}

.calc-form {
  display: grid;
  gap: 1.5rem;
}

.calc-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.85rem;
}

.calc-fieldset legend {
  padding: 0;
  margin-bottom: 0.35rem;
  font-weight: 750;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.calc-fieldset label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 550;
  color: var(--graphite);
}

.calc-fieldset input[type="number"],
.calc-fieldset select {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--smoke);
  border-radius: 0.75rem;
  background: var(--cloud);
  color: var(--navy);
  font: inherit;
  font-weight: 600;
}

.calc-fieldset input[type="number"]:focus,
.calc-fieldset select:focus {
  outline: 2px solid rgba(176, 232, 233, 0.85);
  outline-offset: 1px;
  border-color: var(--cyan);
}

.calc-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
  font-weight: 550;
}

.calc-check input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--navy);
}

.calc-results {
  padding: 1.75rem 1.5rem;
  border-radius: 1.15rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(176, 232, 233, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(211, 104, 198, 0.14), transparent 50%),
    var(--navy);
  color: var(--white);
  display: grid;
  gap: 0.85rem;
}

.calc-results-label {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}

.calc-stat {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.98rem;
  color: var(--smoke);
}

.calc-stat strong {
  color: var(--white);
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.calc-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-top: 0.35rem;
  font-weight: 650;
}

.calc-total span {
  color: var(--white);
}

.calc-total strong {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}

.calc-detail {
  margin: 0.25rem 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--steel);
}

.calc-results .btn-primary {
  margin-top: 0.35rem;
  justify-self: start;
  color: var(--navy);
}

@media (min-width: 900px) {
  .calc-shell {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }

  .calc-fieldset {
    grid-template-columns: 1fr 1fr;
  }

  .calc-fieldset legend,
  .calc-check {
    grid-column: 1 / -1;
  }

  .calc-results {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

.page-hero-compact {
  padding-bottom: 2rem;
}

.page-hero-compact .page-hero-inner {
  max-width: 40rem;
}

.page-hero .price-range {
  display: inline;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-head {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.pricing-head h2 {
  color: var(--navy);
}

.pricing-calc-jump {
  margin: 1rem 0 0;
}

.pricing-calc-jump a {
  font-weight: 650;
  color: var(--navy);
  border-bottom: 1px solid rgba(16, 17, 65, 0.25);
}

.pricing-calc-jump a:hover {
  border-bottom-color: var(--magenta);
}

.term-toggle {
  margin: 1.75rem auto 0;
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--smoke);
}

.term-btn {
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 650;
  color: var(--graphite);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1.2;
}

.term-btn span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--space);
}

.term-btn.is-active {
  background: var(--navy);
  color: var(--white);
}

.term-btn.is-active span {
  color: var(--cyan);
}

.term-note {
  margin: 1rem auto 0;
  max-width: 32rem;
  color: var(--arsenic);
  font-size: 0.98rem;
}

.plan-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.plan {
  background: var(--white);
  border: 1px solid var(--smoke);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem 1.5rem;
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.plan-featured {
  border-color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--gradient) border-box;
  border: 1px solid transparent;
  box-shadow: 0 24px 50px rgba(16, 17, 65, 0.1);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(176, 232, 233, 0.45);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}

.plan h3 {
  font-size: 1.5rem;
  color: var(--navy);
}

.plan-tag {
  margin: 0.35rem 0 0;
  color: var(--graphite);
  font-size: 0.95rem;
}

.plan-price {
  margin: 1rem 0 0;
  color: var(--arsenic);
  font-size: 0.95rem;
}

.plan-price span {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.plan ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.plan li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--arsenic);
  font-size: 0.98rem;
}

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gradient);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--smoke);
  font-weight: 650;
  color: var(--navy);
  background: transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.btn-ghost-dark:hover {
  border-color: var(--navy);
  background: var(--cloud);
}

.plan .btn-primary,
.plan .btn-ghost-dark {
  width: 100%;
}

.pricing-extras {
  background: var(--white);
}

@media (min-width: 900px) {
  .pricing-promise {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .plan-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .plan-featured {
    transform: translateY(-0.5rem);
  }
}

.demo-frame-wrap.demo-frame-wrap-tall {
  aspect-ratio: 16 / 11;
  min-height: 560px;
}

.split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.split-copy {
  max-width: 34rem;
}

.split-media {
  margin: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  min-height: 220px;
  background: var(--navy);
}

.split-media img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.thesis.split .section-lede {
  color: var(--smoke);
}

.thesis.split .section-link a {
  border-bottom-color: rgba(176, 232, 233, 0.45);
}

.install.split .section-lede,
.install.split .split-copy p {
  color: var(--arsenic);
}

.pricing-intro.split {
  background: var(--white);
}

.pricing-intro.split h2 {
  color: var(--navy);
}

.impact {
  background:
    radial-gradient(ellipse 70% 55% at 100% 0%, rgba(176, 232, 233, 0.16), transparent 55%),
    radial-gradient(ellipse 55% 50% at 0% 100%, rgba(211, 104, 198, 0.1), transparent 50%),
    var(--cloud);
}

.impact-head {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.impact-head .section-lede {
  margin-top: 1rem;
  color: var(--graphite);
}

.impact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem 2.5rem;
}

.impact-item {
  padding-top: 1.35rem;
  border-top: 1px solid rgba(16, 17, 65, 0.12);
}

.impact-num {
  margin: 0 0 0.55rem;
  font-size: clamp(2.35rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  background: linear-gradient(115deg, #3d9ea3 0%, #6a4fb8 48%, #b03d9e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.impact-item h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.impact-item p {
  margin: 0;
  color: var(--graphite);
  max-width: 28rem;
  font-size: 1rem;
}

.impact-item a {
  font-weight: 650;
  color: var(--navy);
  border-bottom: 1px solid rgba(16, 17, 65, 0.25);
}

.impact-item a:hover {
  border-bottom-color: var(--magenta);
}

.impact-note {
  max-width: 46rem;
  margin: 2.25rem auto 0;
  font-size: 0.92rem;
  color: var(--steel);
  line-height: 1.5;
}

@media (min-width: 780px) {
  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.handles {
  background: var(--white);
  color: var(--phantom);
}

.handles-head {
  max-width: 1100px;
  margin: 0 auto 1.25rem;
  display: grid;
  gap: 1.25rem;
  align-items: end;
}

.handles-photo {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  max-width: 280px;
}

.handles-photo img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.handle {
  padding: 1.1rem 0;
}

.handles-list {
  margin-top: 0.5rem;
}

.cta-inline {
  color: var(--cyan);
  font-weight: 650;
}

.cta-section {
  padding-top: 1.25rem;
}

.cta-panel {
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.page-hero {
  padding: calc(var(--header-h) + 2.25rem) clamp(1.25rem, 4vw, 3.5rem) 2.5rem;
}

@media (min-width: 780px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .split-reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split-reverse .split-copy {
    order: 2;
  }

  .split-reverse .split-media {
    order: 1;
  }

  .split-media img {
    max-height: 380px;
  }

  .handles-head {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .handles-photo {
    justify-self: end;
    max-width: 320px;
  }

  .handles-photo img {
    height: 180px;
  }
}

.handles .section-lede,
.handles-note {
  color: var(--arsenic);
}

.handles-list {
  max-width: 920px;
  margin: 2.25rem auto 0;
  display: grid;
  gap: 0;
}

.handle {
  padding: 1.5rem 0;
  border-top: 1px solid var(--smoke);
}

.handle:last-child {
  border-bottom: 1px solid var(--smoke);
}

.handle h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.handle p {
  margin: 0;
  color: var(--arsenic);
  max-width: 40rem;
  font-size: 1.05rem;
}

.handles-note {
  max-width: 920px;
  margin: 1.75rem auto 0;
  font-size: 1rem;
}

.handles-note a {
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid rgba(16, 17, 65, 0.35);
}

.handles-note a:hover {
  border-bottom-color: var(--magenta);
}

.try-it {
  background:
    radial-gradient(ellipse 70% 60% at 10% 0%, rgba(176, 232, 233, 0.2), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(211, 104, 198, 0.16), transparent 50%),
    var(--cloud);
}

.try-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.try-inner h2 {
  color: var(--navy);
}

.try-inner p {
  margin-top: 0.85rem;
  color: var(--arsenic);
  max-width: 36rem;
  font-size: 1.1rem;
}

.try-it .btn-primary {
  color: var(--navy);
  width: fit-content;
}

@media (min-width: 780px) {
  .handles-list {
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
  }

  .handle:nth-last-child(2) {
    border-bottom: 1px solid var(--smoke);
  }

  .try-inner {
    grid-template-columns: 1fr auto;
  }
}

.explore {
  background: var(--white);
}

.explore-grid {
  max-width: 960px;
  margin: 2rem auto 0;
  display: grid;
  gap: 0.75rem;
}

.explore-link {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 0.25rem;
  border-top: 1px solid var(--smoke);
  transition: opacity 0.2s ease;
}

.explore-link:last-child {
  border-bottom: 1px solid var(--smoke);
}

.explore-link:hover {
  opacity: 0.75;
}

.explore-link .nav-mega-icon {
  background: var(--cloud);
  border-color: var(--smoke);
}

.explore-link strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.explore-link span span {
  display: block;
  margin-top: 0.15rem;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 450;
}

@media (min-width: 780px) {
  .explore-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
  }

  .explore-link:nth-last-child(2) {
    border-bottom: 1px solid var(--smoke);
  }
}

.platform-intro {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.demo-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.demo-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.demo-controls .eyebrow {
  margin: 0;
}

.device-toggle {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--smoke);
}

.device-btn {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--graphite);
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1.2;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.device-btn.is-active {
  background: var(--navy);
  color: var(--white);
}

.device-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.demo-stage {
  padding: clamp(1rem, 3vw, 1.75rem);
  border-radius: 1.35rem;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(211, 104, 198, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(176, 232, 233, 0.12), transparent 50%),
    var(--cloud);
  transition: padding 0.35s var(--ease);
}

.demo-chrome {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 1rem 1rem 0 0;
  background: #16185a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  color: var(--steel);
  transition: max-width 0.35s var(--ease), border-radius 0.35s var(--ease);
}

.demo-dots {
  display: flex;
  gap: 0.35rem;
}

.demo-dots span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.demo-dots span:nth-child(1) {
  background: #ff6b6b;
}

.demo-dots span:nth-child(2) {
  background: #ffd166;
}

.demo-dots span:nth-child(3) {
  background: #6bcB77;
}

.demo-url {
  margin: 0;
  justify-self: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--space);
}

.demo-open {
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--cyan);
}

.demo-open:hover {
  text-decoration: underline;
}

.demo-frame-wrap {
  position: relative;
  border-radius: 0 0 1rem 1rem;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 65, 0.12);
  border-top: 0;
  background: var(--navy);
  box-shadow: 0 30px 60px rgba(16, 17, 65, 0.18);
  aspect-ratio: 16 / 10;
  min-height: 420px;
  transition:
    max-width 0.35s var(--ease),
    aspect-ratio 0.35s var(--ease),
    border-radius 0.35s var(--ease),
    min-height 0.35s var(--ease);
}

.demo-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #0b0d2e;
}

.demo-hint {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--graphite);
}

.demo-hint a {
  font-weight: 650;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Explicit Mobile preview — wins over viewport media query */
.demo-shell.is-mobile .demo-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(1.25rem, 4vw, 2.25rem) clamp(1rem, 3vw, 1.5rem);
}

.demo-shell.is-mobile .demo-chrome,
.demo-shell.is-mobile .demo-frame-wrap {
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.demo-shell.is-mobile .demo-chrome {
  border-radius: 1.35rem 1.35rem 0 0;
  grid-template-columns: auto 1fr;
  padding: 0.65rem 0.9rem;
}

.demo-shell.is-mobile .demo-url {
  display: none;
}

.demo-shell.is-mobile .demo-frame-wrap,
.demo-shell.is-mobile .demo-frame-wrap.demo-frame-wrap-tall {
  aspect-ratio: 9 / 19;
  min-height: 640px;
  max-height: 780px;
  border-radius: 0 0 1.75rem 1.75rem;
  border: 3px solid #16185a;
  border-top: 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 50px rgba(16, 17, 65, 0.28);
}

.demo-shell.is-mobile .demo-frame-wrap::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5.5rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #0b0d2e;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

@media (max-width: 700px) {
  .demo-chrome {
    grid-template-columns: auto 1fr;
  }

  .demo-url {
    display: none;
  }

  .demo-frame-wrap,
  .demo-frame-wrap.demo-frame-wrap-tall {
    aspect-ratio: 3 / 4;
    min-height: 520px;
  }

  .demo-shell.is-mobile .demo-frame-wrap,
  .demo-shell.is-mobile .demo-frame-wrap.demo-frame-wrap-tall {
    aspect-ratio: 9 / 19;
    min-height: 560px;
    max-height: none;
  }
}

.section-link {
  margin-top: 1.75rem;
}

.section-link a {
  font-weight: 650;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom: 1px solid rgba(176, 232, 233, 0.45);
}

/* ——— Feature pages ——— */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 2.25rem) clamp(1.25rem, 4vw, 3.5rem) 2.5rem;
  color: var(--white);
  background: var(--navy);
}

.page-hero.page-hero-media {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.page-hero-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  min-height: 200px;
  background: #0b0d2e;
}

.page-hero-figure img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: cover;
  display: block;
}

@media (min-width: 860px) {
  .page-hero.page-hero-media {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.25rem;
  }

  .page-hero-figure img {
    max-height: 360px;
    min-height: 280px;
  }
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(211, 104, 198, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 45% at 5% 90%, rgba(176, 232, 233, 0.2), transparent 50%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

.page-hero .brand-signal {
  margin-bottom: 0.85rem;
}

.hero-signal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 0.85rem;
}

.hero-signal-row .brand-signal {
  margin-bottom: 0;
}

.page-hero .pill-live {
  background: rgba(176, 232, 233, 0.16);
  color: var(--cyan);
}

.hero-tags {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--cyan);
  background: rgba(176, 232, 233, 0.12);
  border: 1px solid rgba(176, 232, 233, 0.22);
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.page-hero .hero-lede {
  margin-top: 1.15rem;
  color: var(--smoke);
  font-size: 1.125rem;
  max-width: 36rem;
}

.hero-quote {
  margin: 2rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 34rem;
}

.hero-quote p {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--white);
}

.hero-quote footer {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--cyan);
  font-weight: 600;
}

.tips-section {
  background: var(--cloud);
}

.tips-section h2 {
  color: var(--navy);
}

.tips-section .section-lede {
  color: var(--arsenic);
}

.tips-section strong {
  color: var(--navy);
}

.page-hero .hero-actions {
  margin-top: 1.75rem;
}

.crumb {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--steel);
}

.crumb a {
  color: var(--cyan);
}

.crumb a:hover {
  text-decoration: underline;
}

.moments {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.moment {
  padding: 1.75rem 0;
  border-top: 1px solid var(--smoke);
}

.moment:last-child {
  border-bottom: 1px solid var(--smoke);
}

.moment h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.moment p {
  color: var(--arsenic);
  max-width: 40rem;
}

.related {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.related a {
  display: block;
  padding: 1.35rem 0;
  border-top: 1px solid var(--smoke);
  transition: color 0.25s ease;
}

.related a:last-child {
  border-bottom: 1px solid var(--smoke);
}

.related a:hover {
  color: var(--navy);
}

.related strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.related span {
  color: var(--graphite);
  font-size: 0.98rem;
}

.solution-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.solution-list a {
  display: grid;
  gap: 0.35rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--smoke);
  transition: opacity 0.25s ease;
}

.solution-list a:last-child {
  border-bottom: 1px solid var(--smoke);
}

.solution-list a:hover {
  opacity: 0.75;
}

.solution-list strong {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: -0.03em;
}

.solution-list span {
  color: var(--graphite);
  max-width: 40rem;
}

.moments-media {
  max-width: 920px;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
}

.moments-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.consolidate-media {
  max-width: 1100px;
  margin: 0 auto 1.75rem;
  border-radius: 1rem;
  overflow: hidden;
}

.consolidate-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

@media (min-width: 780px) {
  .moments-media img {
    height: 280px;
  }

  .consolidate-media img {
    height: 300px;
  }
}

.outcome-alt.split .section-lede,
.outcome-alt.split .split-copy p {
  color: var(--graphite);
}

.install.split .split-copy h2 {
  color: var(--navy);
}

.install.split .eyebrow {
  background: linear-gradient(115deg, #3d9ea3 0%, #6a4fb8 48%, #b03d9e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-atmosphere,
  .badge-front,
  .badge-back,
  .scene-line.filled::after {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


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


/* ——— Book a demo ——— */
.book-section {
  background: var(--white);
}

.book-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: start;
}

.book-summary {
  padding: 1.5rem;
  border-radius: 1.15rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(176, 232, 233, 0.2), transparent 55%),
    var(--cloud);
}

.book-summary h3 {
  margin: 0.35rem 0 1rem;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.book-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: var(--graphite);
}

.book-meta strong {
  color: var(--navy);
}

.book-summary-note {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  color: var(--steel);
}

.book-summary-note a {
  font-weight: 650;
  color: var(--navy);
  border-bottom: 1px solid rgba(16, 17, 65, 0.25);
}

.book-form {
  display: grid;
  gap: 1.75rem;
}

.book-step-label {
  margin: 0 0 0.75rem;
  font-weight: 750;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.book-tz {
  font-weight: 500;
  color: var(--steel);
  font-size: 0.9rem;
}

.book-calendar {
  max-width: 22rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--smoke);
  background: var(--cloud);
}

.book-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.book-cal-label {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
}

.book-cal-nav {
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}

.book-cal-nav:hover {
  background: var(--smoke);
}

.book-cal-dows,
.book-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
  text-align: center;
}

.book-cal-dows {
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 650;
  color: var(--steel);
}

.book-day {
  aspect-ratio: 1;
  border: 0;
  border-radius: 0.65rem;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.book-day:not(.is-disabled):not(.is-empty):hover {
  background: rgba(176, 232, 233, 0.45);
}

.book-day.is-empty {
  visibility: hidden;
}

.book-day.is-disabled {
  color: var(--space);
  cursor: not-allowed;
  opacity: 0.45;
}

.book-day.is-active {
  background: var(--navy);
  color: var(--white);
}

.book-times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.book-times-hint {
  margin: 0;
  color: var(--steel);
  font-size: 0.95rem;
}

.book-time {
  min-height: 2.5rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--smoke);
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.book-time:hover {
  border-color: var(--navy);
}

.book-time.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.book-fields {
  display: grid;
  gap: 0.85rem;
}

.book-fields label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 550;
  color: var(--graphite);
}

.book-fields input,
.book-fields select {
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--smoke);
  border-radius: 0.75rem;
  background: var(--cloud);
  color: var(--navy);
  font: inherit;
  font-weight: 600;
}

.book-fields input:focus,
.book-fields select:focus {
  outline: 2px solid rgba(176, 232, 233, 0.85);
  outline-offset: 1px;
  border-color: var(--cyan);
}

.book-selected {
  margin: 0;
  font-weight: 650;
  color: var(--navy);
  min-height: 1.4rem;
}

.book-form .btn-primary {
  position: relative;
  isolation: isolate;
  background: transparent;
  border: none;
  overflow: hidden;
  width: fit-content;
  color: var(--navy);
}

.book-form .btn-primary::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient);
  z-index: -1;
}

.book-success {
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: 0.9rem;
  background: rgba(176, 232, 233, 0.25);
  color: var(--arsenic);
  line-height: 1.5;
}

.book-success a {
  font-weight: 650;
  color: var(--navy);
}

@media (min-width: 860px) {
  .book-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2.5rem;
  }

  .book-summary {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }

  .book-fields {
    grid-template-columns: 1fr 1fr;
  }
}

/* ——— Funnel landing page ——— */
.funnel-page .site-header,
.funnel-page .hero,
.funnel-page .section,
.funnel-page .funnel-footer {
  padding-left: max(clamp(1.25rem, 4vw, 3.5rem), calc((100% - 1280px) / 2));
  padding-right: max(clamp(1.25rem, 4vw, 3.5rem), calc((100% - 1280px) / 2));
}

.funnel-page .funnel-trust .page-stats,
.funnel-page .compare-grid,
.funnel-page .funnel-step,
.funnel-page .funnel-proof-grid,
.funnel-page .quote-layout,
.funnel-page .funnel-footer-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero .eyebrow {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.funnel-header {
  justify-content: space-between;
}

.funnel-header .nav {
  display: none;
}

.lead-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
  max-width: 32rem;
}

.lead-form input[type="email"] {
  flex: 1 1 12rem;
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  font-weight: 550;
}

.lead-form input[type="email"]::placeholder {
  color: var(--steel);
}

.lead-form input[type="email"]:focus {
  outline: 2px solid rgba(176, 232, 233, 0.85);
  outline-offset: 1px;
  border-color: var(--cyan);
}

.lead-form .btn-primary {
  position: relative;
  isolation: isolate;
  background: transparent;
  border: none;
  overflow: hidden;
  color: var(--navy);
  flex: 0 0 auto;
}

.lead-form .btn-primary::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient);
  z-index: -1;
}

.lead-form-note {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--steel);
}

.lead-form-success {
  margin: 1rem 0 0;
  padding: 0.85rem 1.1rem;
  border-radius: 0.9rem;
  background: rgba(176, 232, 233, 0.18);
  color: var(--smoke);
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 32rem;
}

.lead-form-success a {
  font-weight: 650;
  color: var(--cyan);
}

.lead-form-success a:hover {
  text-decoration: underline;
}

.funnel-hero-visual {
  position: relative;
}

.funnel-hero-visual .pill-live {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
}

.funnel-trust {
  background: var(--white);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.funnel-trust .page-stats {
  max-width: 1280px;
  margin: 0 auto;
}

.compare-section {
  background:
    linear-gradient(180deg, var(--cloud), var(--white));
}

.compare-head {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.compare-head .section-lede {
  margin-top: 1rem;
  color: var(--graphite);
}

.compare-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.compare-card {
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  background: var(--white);
  border: 1px solid var(--smoke);
  display: grid;
  gap: 1.15rem;
  align-content: start;
}

.compare-card.is-good {
  border-color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--gradient) border-box;
  border: 1px solid transparent;
  box-shadow: 0 24px 50px rgba(16, 17, 65, 0.08);
}

.compare-card-media {
  margin: 0;
  border-radius: 0.9rem;
  overflow: hidden;
  min-height: 160px;
  background: var(--navy);
}

.compare-card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.compare-card h3 {
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.compare-card-label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
}

.compare-card.is-good .compare-card-label {
  background: linear-gradient(115deg, #3d9ea3 0%, #6a4fb8 48%, #b03d9e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
}

.compare-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.compare-point {
  position: relative;
  padding-left: 1.35rem;
  color: var(--arsenic);
  font-size: 1rem;
  line-height: 1.5;
}

.compare-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--steel);
}

.compare-card.is-good .compare-point::before {
  background: var(--gradient);
}

.funnel-steps {
  background: var(--white);
}

.funnel-steps-head {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.funnel-steps-head .section-lede {
  margin-top: 1rem;
  color: var(--graphite);
}

.funnel-step {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.funnel-step + .funnel-step {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid var(--smoke);
}

.funnel-step .split {
  align-items: start;
}

.funnel-step .split-copy {
  max-width: none;
  padding-top: 0;
}

.funnel-step .split-copy .eyebrow {
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.funnel-step .split-media {
  min-height: 0;
  width: 100%;
}

.funnel-step .split-media img {
  width: 100%;
  height: 240px;
  max-height: none;
  object-fit: cover;
}

.funnel-step-claim {
  margin-top: 1.25rem;
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--graphite);
}

@media (min-width: 780px) {
  .funnel-step .split-media img {
    height: 280px;
  }
}

.quote-highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.funnel-proof {
  background: var(--navy);
  color: var(--white);
}

.funnel-proof-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.funnel-proof blockquote {
  margin: 0;
}

.funnel-proof blockquote p {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.funnel-proof footer {
  margin-top: 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--smoke);
}

.funnel-proof .quote-photo {
  width: 4.5rem;
  height: 4.5rem;
}

.funnel-proof footer strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
}

.funnel-proof footer span {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.95rem;
}

.funnel-proof-media {
  margin: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  min-height: 220px;
  background: #0b0d2e;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.funnel-proof-media img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: cover;
  display: block;
}

.funnel-proof-link {
  margin-top: 1.25rem;
}

.funnel-proof-link a {
  font-weight: 650;
  color: var(--cyan);
  border-bottom: 1px solid rgba(176, 232, 233, 0.35);
}

.funnel-proof-link a:hover {
  border-bottom-color: var(--magenta);
}

.funnel-final {
  background: var(--cloud);
}

.funnel-final .cta-panel {
  max-width: 640px;
  text-align: left;
}

.funnel-final .cta-panel h2 {
  text-align: left;
}

.funnel-final .cta-panel > p {
  margin-left: 0;
  text-align: left;
}

.funnel-checklist {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.funnel-checklist li {
  position: relative;
  padding-left: 2rem;
  color: var(--smoke);
  font-size: 1.05rem;
  line-height: 1.45;
}

.funnel-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(176, 232, 233, 0.22);
  box-shadow: inset 0 0 0 1.5px rgba(176, 232, 233, 0.65);
}

.funnel-checklist li::after {
  content: "";
  position: absolute;
  left: 0.38rem;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.7rem;
  border: solid var(--cyan);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.funnel-final .lead-form {
  max-width: none;
}

.funnel-final .lead-form-success {
  max-width: none;
}

.funnel-footer {
  padding: 2rem clamp(1.25rem, 4vw, 3.5rem);
  background: var(--navy);
  color: var(--steel);
}

.funnel-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.funnel-footer img {
  height: 28px;
  width: auto;
}

.funnel-footer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--space);
}

@media (min-width: 780px) {
  .compare-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .compare-card-media img {
    height: 200px;
  }

  .funnel-proof-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .funnel-proof-media img {
    max-height: 380px;
    min-height: 280px;
  }
}

@media (max-width: 520px) {
  .lead-form {
    flex-direction: column;
    align-items: stretch;
  }

  .lead-form .btn-primary {
    width: 100%;
  }
}
