:root {
  --ink: #111616;
  --ink-soft: #263130;
  --muted: #687472;
  --line: #d9e2db;
  --paper: #fbfcf7;
  --sage: #edf3ea;
  --white: #ffffff;
  --green: #0b7a61;
  --mint: #25d69a;
  --shadow: 0 28px 80px rgba(31, 45, 38, 0.15);
  --radius: 18px;
  --font-display: "Cabinet Grotesk", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}

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

html.is-embedded,
html.is-embedded body {
  min-height: 100%;
}

html.is-embedded .site-header {
  top: 8px;
}

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

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

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

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(1120px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(17, 22, 22, 0.08);
  border-radius: 999px;
  background: rgba(248, 250, 245, 0.9);
  box-shadow: 0 12px 34px rgba(17, 22, 22, 0.07);
  backdrop-filter: blur(18px);
  transition:
    padding 280ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 280ms cubic-bezier(0.16, 1, 0.3, 1),
    background 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
  top: 10px;
  padding: 8px 10px;
  background: rgba(251, 252, 247, 0.96);
  box-shadow: 0 16px 40px rgba(17, 22, 22, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand > span:last-child span {
  color: var(--green);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark .pin {
  fill: rgba(37, 214, 154, 0.12);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-bar {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-bar:first-of-type {
  top: 17px;
}

.nav-toggle-bar:last-of-type {
  top: 23px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-of-type {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-of-type {
  transform: translateY(-3px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.header-cta {
  border-radius: 999px;
  padding: 10px 14px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-links a {
  position: relative;
}

.nav-links a.is-active {
  color: var(--green);
  font-weight: 800;
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--mint);
}

.nav-links a:hover,
.header-cta:hover {
  transform: translateY(-1px);
  background: var(--white);
  color: var(--ink);
}

.nav-links a.is-active:hover {
  color: var(--green);
}

.header-cta {
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}

.header-cta .cta-short {
  display: none;
}

main {
  overflow: clip;
}

.hero,
.intro-band,
.finder-signature,
.local-section,
.founders-section,
.contact-section {
  padding: 76px 0;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(78dvh, 820px);
  margin-top: 0;
  padding: 108px 0 72px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: #1a2420;
}

.hero-backdrop::after {
  display: none;
}

.hero-backdrop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1);
  animation: kenBurns 22s ease-out forwards;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(17, 22, 22, 0.88) 0%, rgba(17, 22, 22, 0.72) 42%, rgba(17, 22, 22, 0.28) 100%),
    linear-gradient(0deg, rgba(17, 22, 22, 0.5), transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  max-width: 680px;
  color: var(--white);
}

.hero-inner .eyebrow {
  color: var(--mint);
}

.hero-inner h1,
.hero-inner .hero-text,
.hero-inner .hero-examples {
  color: var(--white);
}

.hero-inner .hero-text,
.hero-inner .hero-examples {
  color: rgba(255, 255, 255, 0.88);
}

.hero-line {
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line:nth-child(1) {
  animation-delay: 0.08s;
}

.hero-line:nth-child(2) {
  animation-delay: 0.18s;
}

.hero-line:nth-child(3) {
  animation-delay: 0.28s;
}

.hero-line:nth-child(4) {
  animation-delay: 0.36s;
}

.hero-line:nth-child(5) {
  animation-delay: 0.44s;
}

.local-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 22, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(16, 79, 68, 0.18), rgba(185, 95, 53, 0.08)),
    #dfe9e0;
  box-shadow: var(--shadow);
}

.local-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(17, 22, 22, 0.36)),
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.34), transparent 30%);
  pointer-events: none;
}

.local-photo img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.local-photo.has-photo img {
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.local-photo.has-photo .photo-fallback {
  display: none;
}

.photo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  justify-items: start;
  padding: 30px;
  text-align: left;
}

.photo-fallback span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.photo-fallback strong {
  display: block;
  margin-top: 8px;
  color: rgba(17, 22, 22, 0.86);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 0.98;
  max-width: 8ch;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 700;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

.hero-text {
  max-width: 52ch;
  font-size: 18px;
}

.hero-examples {
  max-width: 52ch;
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(11, 122, 97, 0.22);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.finder-output .button.secondary,
.contact-form .button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.section-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0)),
    var(--sage);
}

.intro-scroll-track,
.section-heading,
.intro-list,
.photo-grid,
.founder-grid,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.intro-scroll-track {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.intro-lead {
  margin-top: 16px;
  font-size: 18px;
}

.intro-progress {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.intro-progress-dot {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  transform-origin: left center;
  transition:
    background 360ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-progress-dot.is-active {
  background: var(--green);
  transform: scaleX(1.15);
}

.intro-list {
  width: auto;
  display: grid;
  gap: 0;
}

@media (min-width: 961px) {
  .intro-scroll-panel {
    min-height: 68vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.38;
    transform: translateY(28px);
    transition:
      opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .intro-scroll-panel[data-reveal],
  .intro-scroll-panel[data-reveal].is-visible {
    opacity: 0.38;
    transform: translateY(28px);
  }

  .intro-scroll-panel.is-active-step {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .intro-scroll-panel.is-active-step::before {
    transform: scaleY(1);
  }
}

.intro-list article {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 22px 0 22px 18px;
}

.intro-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-index, 0) * 120ms + 200ms);
}

.intro-step.is-visible::before {
  transform: scaleY(1);
}

.intro-list article + article {
  margin-top: 0;
}

.control-label,
.role {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading p {
  margin: 0;
  font-size: 17px;
}

.finder-signature {
  position: relative;
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 214, 154, 0.16), transparent 44%),
    radial-gradient(circle at 92% 100%, rgba(11, 122, 97, 0.22), transparent 40%),
    var(--ink);
  color: var(--white);
  scroll-margin-top: 110px;
}

.finder-signature-inner {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.finder-intro {
  max-width: 720px;
  margin-bottom: 36px;
}

.finder-eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.finder-intro h2 {
  color: var(--white);
}

.finder-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  max-width: 58ch;
}

.finder-stage {
  width: 100%;
}

.finder-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 20px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}

.finder-controls {
  display: grid;
  gap: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.finder-signature .control-label {
  color: var(--mint);
}

.segmented {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.segmented.stacked {
  display: grid;
}

.segment-indicator {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 999px;
  background: var(--green);
  border: 1px solid rgba(11, 122, 97, 0.45);
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    width 320ms cubic-bezier(0.16, 1, 0.3, 1),
    height 320ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.segmented.stacked .segment-indicator {
  border-radius: 16px;
}

.segmented button {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  padding: 11px 14px;
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.segmented.stacked button {
  border-radius: 16px;
  text-align: left;
}

.segmented button:hover:not(.is-active) {
  transform: translateY(-1px);
  border-color: rgba(11, 122, 97, 0.28);
}

.segmented button.is-active {
  border-color: transparent;
  color: var(--white);
  transform: none;
}

.finder-signature .segmented button {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
}

.finder-signature .segmented button:hover:not(.is-active) {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.finder-signature .segmented button.is-active {
  color: var(--white);
}

.finder-signature .segment-indicator {
  background: var(--green);
  border-color: var(--green);
}

.finder-output {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: visible;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
}

.finder-lottie {
  width: min(100%, 320px);
  height: 64px;
  margin-bottom: 12px;
  opacity: 0.95;
  filter: drop-shadow(0 8px 24px rgba(37, 214, 154, 0.12));
}

.finder-pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pipeline-step {
  display: grid;
  gap: 6px;
}

.pipeline-step span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    background 320ms cubic-bezier(0.16, 1, 0.3, 1),
    color 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pipeline-step.is-active span {
  background: var(--green);
  color: var(--white);
  transform: scale(1.08);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pipeline-step.is-complete span {
  background: rgba(37, 214, 154, 0.28);
  color: var(--mint);
}

.pipeline-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.pipeline-step.is-active p {
  color: rgba(255, 255, 255, 0.9);
}

.finder-result {
  display: flex;
  flex-direction: column;
  flex: 1;
  transition: opacity 220ms ease, transform 220ms ease;
}

.finder-result.is-updating {
  opacity: 0;
  transform: translateY(8px);
}

.result-label {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finder-output h3 {
  max-width: 22ch;
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.finder-output p,
.finder-output li {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.72);
}

.finder-output ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 24px;
  padding-left: 19px;
}

.finder-output li {
  opacity: 1;
  transform: translateX(0);
}

.finder-cta {
  margin-top: auto;
  padding-top: 8px;
  align-self: flex-start;
}

.photo-grid,
.founder-grid {
  display: grid;
  gap: 18px;
}

.photo-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.photo-grid .local-photo {
  min-height: 420px;
}

.local-photo figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(17, 22, 22, 0.82);
  color: var(--white);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.photo-credit {
  width: min(1120px, calc(100% - 32px));
  margin: 16px auto 0;
  color: rgba(104, 116, 114, 0.82);
  font-size: 12px;
}

.services-section {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 214, 154, 0.14), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(11, 122, 97, 0.18), transparent 42%),
    linear-gradient(165deg, #dfe9e2 0%, #edf3ea 42%, #f3f6ef 100%);
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 22, 22, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 22, 22, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 88%);
  pointer-events: none;
}

.services-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.services-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 40px;
}

.services-eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-intro h2 {
  margin-bottom: 0;
  max-width: 14ch;
}

.services-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
  max-width: 38ch;
}

.service-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: start;
}

.service-feature,
.service-row,
.founder-card,
.contact-form {
  border: 1px solid rgba(17, 22, 22, 0.09);
  border-radius: 24px;
}

.service-feature {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  align-self: start;
  overflow: hidden;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 214, 154, 0.22), transparent 46%),
    linear-gradient(155deg, #1a2420 0%, var(--ink) 55%, #0d1614 100%);
  box-shadow: 0 32px 80px rgba(17, 22, 22, 0.28);
}

.service-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 55%;
  background: radial-gradient(circle at 0% 0%, rgba(37, 214, 154, 0.18), transparent 62%);
  pointer-events: none;
}

.service-feature::after {
  content: "";
  position: absolute;
  top: -8%;
  right: -12%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 214, 154, 0.12);
  filter: blur(12px);
  pointer-events: none;
  animation: serviceOrb 9s ease-in-out infinite alternate;
}

.service-feature-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(200px, 28vw, 272px);
  padding: 28px 32px 8px;
}

.service-lottie-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(88%, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 214, 154, 0.22), transparent 68%);
  transform: translate(-50%, -54%);
  pointer-events: none;
}

.service-lottie {
  position: relative;
  z-index: 1;
  width: min(78%, 260px);
  aspect-ratio: 200 / 240;
  height: auto;
  filter: drop-shadow(0 16px 36px rgba(37, 214, 154, 0.2));
}

.service-feature-body {
  position: relative;
  z-index: 1;
  padding: 8px 32px 32px;
}

.service-feature h3,
.service-feature p,
.service-feature .service-tag {
  position: relative;
  z-index: 1;
}

.service-feature h3 {
  color: var(--white);
  font-size: clamp(30px, 3.2vw, 40px);
  max-width: 16ch;
}

.service-feature p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 36ch;
}

.service-tag {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 12px;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(37, 214, 154, 0.16);
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-feature .service-tag {
  background: rgba(37, 214, 154, 0.18);
}

.service-stack {
  display: grid;
  gap: 14px;
}

.service-row-lottie {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  opacity: 0.92;
}

.service-row {
  position: relative;
  padding: 22px 28px 26px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(31, 45, 38, 0.08);
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
  overflow: hidden;
}

.service-row .service-tag {
  background: rgba(11, 122, 97, 0.1);
  color: var(--green);
}

.service-row h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--mint), var(--green));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 122, 97, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 56px rgba(31, 45, 38, 0.12);
}

.service-row:hover::before {
  transform: scaleY(1);
}

.founder-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 122, 97, 0.3);
  box-shadow: var(--shadow);
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.service-price-hint {
  margin: 0 0 8px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-feature .service-price-hint {
  color: rgba(255, 255, 255, 0.72);
}

.services-pricing-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.services-pricing-link:hover {
  color: var(--ink);
}

.founder-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.industry-fit {
  padding: 76px 0;
}

.industry-fit-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.industry-fit-heading {
  max-width: 640px;
  margin-bottom: 32px;
}

.industry-fit-eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.industry-fit-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.industry-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.industry-fit-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(17, 22, 22, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(31, 45, 38, 0.07);
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.industry-fit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 122, 97, 0.28);
  box-shadow: 0 22px 52px rgba(31, 45, 38, 0.11);
}

.industry-fit-tag {
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-fit-card h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.15;
}

.industry-fit-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.industry-fit-link {
  justify-self: start;
  margin-top: 4px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--green);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.industry-fit-link:hover {
  color: var(--ink);
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(118px, 148px) 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.founder-portrait {
  position: relative;
  will-change: clip-path;
  flex-shrink: 0;
  width: 148px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-card:hover .founder-portrait img {
  transform: scale(1.04);
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
    var(--sage);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: start;
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-points li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.45;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(37, 214, 154, 0.2);
}

.contact-phone {
  margin-top: 20px;
  font-weight: 700;
}

.contact-phone a {
  color: var(--green);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.contact-form.is-success {
  border-color: rgba(11, 122, 97, 0.45);
  box-shadow:
    0 0 0 1px rgba(37, 214, 154, 0.2),
    0 24px 56px rgba(11, 122, 97, 0.12);
}

.form-status.is-success {
  color: var(--green);
  font-weight: 700;
}

.form-status.is-success a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status.is-success a:hover {
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.booking-embed-head .closing-prep-label {
  margin-bottom: 8px;
  color: var(--green);
}

.booking-embed-head .closing-booking-copy h3 {
  color: var(--ink);
}

.booking-embed-head .booking-live-badge {
  border-color: rgba(11, 122, 97, 0.2);
  background: rgba(237, 243, 234, 0.9);
  color: var(--green);
}

.booking-embed-head .booking-live-dot {
  background: var(--green);
}

.form-business-phone {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.form-business-phone a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-business-phone a:hover {
  color: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(11, 122, 97, 0.12);
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.2em;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 28px 0 42px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
  font-weight: 700;
}

.footer-nav a {
  color: var(--ink-soft);
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--green);
}

.footer-nav a[aria-current="page"] {
  color: var(--green);
}

/* Pricing page */

.pricing-page main {
  overflow: visible;
}

.pricing-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.pricing-hero {
  padding: 108px 0 72px;
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 214, 154, 0.1), transparent 42%),
    var(--paper);
}

.pricing-hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  max-width: 720px;
}

.pricing-eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.pricing-hero-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
  max-width: 52ch;
}

.pricing-hero-actions {
  margin-top: 28px;
}

.pricing-hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 44ch;
}

.pricing-trust {
  padding: 0 0 56px;
}

.pricing-trust-inner {
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 22, 22, 0.06);
}

.pricing-trust-inner h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 30px);
  max-width: 24ch;
}

.pricing-trust-inner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  max-width: 68ch;
}

.pricing-offers-section {
  padding: 0 0 88px;
}

.pricing-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 28px 48px;
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.pricing-offer:last-child {
  padding-bottom: 0;
}

.pricing-offer-featured {
  margin-top: 8px;
  padding: 32px;
  border: 1px solid rgba(11, 122, 97, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(237, 243, 234, 0.9), rgba(251, 252, 247, 0.4)),
    var(--sage);
}

.pricing-offer-featured + .pricing-offer {
  border-top: 0;
  margin-top: 28px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.pricing-offer-label {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-offer-main h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.08;
}

.pricing-offer-copy {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  max-width: 58ch;
}

.pricing-examples-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-offer-list {
  margin: 0;
  padding-left: 1.1em;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.pricing-offer-list li + li {
  margin-top: 8px;
}

.pricing-examples-list {
  columns: 2;
  column-gap: 28px;
  list-style-position: inside;
  padding-left: 0;
}

.pricing-examples-list li {
  break-inside: avoid;
  padding-left: 0.2em;
}

.pricing-offer-side {
  display: grid;
  gap: 16px;
  align-content: start;
  justify-items: start;
}

.pricing-price {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pricing-offer-cta {
  width: 100%;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
  padding: 14px 18px;
  min-height: 52px;
}

.pricing-page .button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(17, 22, 22, 0.06);
}

.pricing-guide {
  padding: 76px 0;
}

.pricing-guide-heading {
  margin-bottom: 28px;
}

.pricing-guide-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 38px);
}

.pricing-guide-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.pricing-guide-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.pricing-guide-list li {
  padding: 20px 0 20px 18px;
  border-top: 1px solid rgba(17, 22, 22, 0.1);
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
  position: relative;
}

.pricing-guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;
  border-radius: 999px;
  background: var(--green);
}

.pricing-guide-list strong {
  color: var(--ink);
}

.pricing-stripe-panel {
  padding: 0 0 76px;
}

.pricing-stripe-inner {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-stripe-lead {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  max-width: 58ch;
}

.stripe-pricing-table-mount {
  margin-bottom: 16px;
}

.pricing-final-cta {
  padding: 76px 0 96px;
  background: var(--ink);
  color: var(--white);
}

.pricing-final-inner {
  max-width: 640px;
}

.pricing-final-inner h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.06;
  color: var(--white);
}

.pricing-final-inner p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.6;
}

/* Homepage pricing + contact block */

#pricing,
#contact,
.pricing-offers-section {
  scroll-margin-top: 110px;
}

/* Closing section: pricing rail + contact form */

.closing-section {
  position: relative;
  padding: 88px 0 96px;
  scroll-margin-top: 110px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 214, 154, 0.16), transparent 44%),
    radial-gradient(circle at 92% 100%, rgba(11, 122, 97, 0.22), transparent 40%),
    var(--ink);
  overflow: hidden;
}

.closing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 88%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.closing-intro {
  max-width: 720px;
  margin-bottom: 36px;
}

.closing-eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.closing-intro h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.8vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 16ch;
}

.closing-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.6;
  max-width: 54ch;
}

.closing-prep {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.closing-prep-card {
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.closing-prep-label {
  margin: 0 0 10px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing-prep-card h3 {
  margin: 0 0 14px;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.15;
  color: var(--white);
}

.closing-prep-list {
  margin: 0;
  padding-left: 1.1em;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.6;
}

.closing-prep-list li + li {
  margin-top: 8px;
}

.closing-step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.closing-step-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.closing-step-index {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37, 214, 154, 0.16);
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
}

.closing-booking {
  scroll-margin-top: 110px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  height: 100%;
}

.closing-panel .closing-booking {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.closing-booking-head,
.booking-embed-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.booking-embed-head {
  padding: 20px 20px 14px;
  border-bottom: 1px solid rgba(17, 22, 22, 0.08);
  background: var(--white);
}

.closing-booking-copy {
  min-width: 0;
}

.closing-booking-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.closing-booking-copy h3 {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.15;
  color: var(--white);
}

.closing-booking-lead {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.booking-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(37, 214, 154, 0.28);
  border-radius: 999px;
  background: rgba(37, 214, 154, 0.1);
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 rgba(37, 214, 154, 0.45);
  animation: booking-live-pulse 2.2s ease-in-out infinite;
}

@keyframes booking-live-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 214, 154, 0.35);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 6px rgba(37, 214, 154, 0);
  }
}

.closing-booking .button.secondary {
  flex-shrink: 0;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.closing-booking .button.secondary:hover {
  border-color: rgba(37, 214, 154, 0.45);
  background: rgba(37, 214, 154, 0.12);
  color: var(--mint);
}

.booking-open-link {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.booking-open-link:hover {
  color: var(--green);
}

.booking-embed-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 680px;
  height: 100%;
  border: 1px solid rgba(17, 22, 22, 0.09);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.booking-embed-accent {
  height: 3px;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--green), var(--mint));
}

.booking-embed-shell iframe {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  border: 0;
  background: #fff;
}

.closing-booking-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.closing-booking-note a {
  color: var(--mint);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.closing-booking-note a:hover {
  color: var(--white);
}

.closing-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
  gap: 20px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}

.closing-panel-solo {
  grid-template-columns: 1fr;
}

.closing-contact-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
  align-items: stretch;
}

.closing-rail {
  display: grid;
  gap: 16px;
  align-content: start;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.closing-section .control-label {
  color: var(--mint);
}

.closing-lottie-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin: -4px 0 4px;
}

.closing-lottie-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 214, 154, 0.2), transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.closing-lottie {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  filter: drop-shadow(0 12px 28px rgba(37, 214, 154, 0.18));
}

.closing-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.closing-menu-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition:
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.closing-menu-item:hover {
  transform: translateX(4px);
  border-color: rgba(37, 214, 154, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.closing-menu-item.is-active {
  border-color: rgba(37, 214, 154, 0.5);
  background: rgba(37, 214, 154, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.closing-menu-price {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--mint);
}

.closing-menu-copy {
  display: grid;
  gap: 2px;
}

.closing-menu-copy strong {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.closing-menu-copy small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.35;
}

.closing-rail-link {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.closing-rail-link:hover {
  color: var(--mint);
}

.closing-form-stage {
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.closing-form {
  flex: 1 1 auto;
  min-height: 680px;
  height: 100%;
  border-color: rgba(17, 22, 22, 0.06);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.closing-form-head {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  margin-bottom: 4px;
}

.closing-form-kicker {
  grid-column: auto;
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing-selected-product {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(11, 122, 97, 0.2);
  border-radius: 14px;
  background: rgba(237, 243, 234, 0.85);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.4;
}

.closing-selected-label {
  color: var(--muted);
  font-weight: 700;
}

.closing-selected-product strong {
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.contact-form label .field-hint {
  margin-top: -2px;
}

.closing-footnote {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.5;
}

.closing-footnote a {
  color: var(--mint);
  font-weight: 700;
}

.closing-footnote-sep {
  margin: 0 10px;
  opacity: 0.45;
}

.contact-pricing-section {
  padding: 0;
}

.pricing-offer-side .pricing-price {
  max-width: 100%;
}

.pricing-offer-side .pricing-price:not(:only-child) {
  font-size: clamp(18px, 2.2vw, 26px);
}

.pricing-offer-featured .pricing-offer-side {
  align-self: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-index, 0) * 90ms);
}

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

@keyframes kenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}

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

@keyframes serviceOrb {
  from {
    transform: translate(0, 0);
    opacity: 0.75;
  }
  to {
    transform: translate(-14px, 18px);
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .intro-scroll-panel {
    opacity: 0.45;
    transform: translateY(14px);
    transition:
      opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .intro-scroll-panel.is-active-step {
    opacity: 1;
    transform: translateY(0);
  }

  .intro-scroll-panel.is-active-step::before {
    transform: scaleY(1);
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    inset: 88px 16px auto;
    z-index: 25;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(251, 252, 247, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .header-cta .cta-long {
    display: none;
  }

  .header-cta .cta-short {
    display: inline;
  }

  .hero {
    min-height: min(72dvh, 700px);
    padding: 96px 0 64px;
  }

  .intro-scroll-track,
  .finder-panel,
  .contact-layout,
  .services-intro,
  .service-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .services-section {
    padding: 72px 0;
  }

  .finder-signature {
    padding: 72px 0;
  }

  .intro-progress {
    display: none;
  }

  .contact-copy {
    position: static;
  }

  .founder-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .pricing-offer {
    grid-template-columns: 1fr;
  }

  .pricing-offer-side {
    width: 100%;
  }

  .pricing-offer-cta {
    width: 100%;
  }

  .closing-panel {
    grid-template-columns: 1fr;
  }

  .closing-contact-duo {
    grid-template-columns: 1fr;
  }

  .closing-prep {
    grid-template-columns: 1fr;
  }

  .closing-booking-head,
  .booking-embed-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-embed-shell,
  .closing-form {
    min-height: 580px;
  }

  .industry-fit-grid {
    grid-template-columns: 1fr;
  }

  .closing-menu-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .pricing-examples-list {
    columns: 1;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 8px;
    width: min(100% - 20px, 1120px);
  }

  .brand {
    font-size: 14px;
  }

  .hero,
  .intro-band,
  .industry-fit,
  .intro-scroll-track,
  .finder-signature,
  .local-section,
  .founders-section,
  .closing-section,
  .pricing-hero,
  .pricing-guide,
  .pricing-final-cta {
    padding: 64px 0;
  }

  .pricing-offers-section {
    padding-bottom: 64px;
  }

  .pricing-trust {
    padding-bottom: 48px;
  }

  .pricing-trust-inner {
    padding: 22px 20px;
  }

  .pricing-offer-featured {
    padding: 24px 20px;
  }

  .services-section {
    padding: 64px 0;
  }

  .hero {
    min-height: min(68dvh, 640px);
    padding: 88px 0 56px;
  }

  .hero-inner {
    width: min(1120px, calc(100% - 24px));
  }

  h1 {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .hero-text,
  .hero-examples {
    font-size: 16px;
  }

  .hero-actions,
  .contact-form {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .finder-pipeline {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pipeline-step {
    grid-template-columns: 28px 1fr;
    align-items: center;
  }

  .finder-output {
    padding: 22px;
  }

  .finder-cta {
    width: 100%;
    justify-content: center;
  }

  .photo-grid .local-photo {
    min-height: 280px;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    width: 118px;
  }
}

html.reduced-motion {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .hero-line,
  .finder-output li,
  .photo-grid .local-photo,
  [data-gsap-reveal],
  [data-closing-reveal],
  [data-pricing-reveal],
  [data-pricing-row],
  [data-contact-reveal],
  [data-contact-field],
  .closing-menu-item,
  .closing-panel,
  .service-row,
  .local-photo[data-parallax] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    clip-path: none !important;
  }

  .service-feature::after {
    animation: none !important;
  }

  .hero-backdrop img {
    transform: none !important;
    animation: none !important;
  }

  .intro-step::before {
    transform: scaleY(1) !important;
  }
}
