/* Hyprboost visual system — bright, controlled, and conversion-first. */

:root {
  color-scheme: light;
  --ink: #073f42;
  --ink-deep: #032d30;
  --ink-soft: #0c5051;
  --green: #08d6a4;
  --green-strong: #007763;
  --lime: #b7f34a;
  --lime-soft: #e3ffad;
  --paper: #f8fbf6;
  --surface: #ffffff;
  --surface-2: #e4f3ea;
  --text: #0a3d40;
  --muted: #58706f;
  --line: rgba(7, 63, 66, 0.18);
  --line-strong: rgba(7, 63, 66, 0.29);
  --focus: #006c5c;
  --danger: #a51f34;
  --danger-soft: rgba(165, 31, 52, 0.1);
  --shadow-sm: 0 10px 32px rgba(3, 45, 48, 0.07);
  --shadow-md: 0 22px 60px rgba(3, 45, 48, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --header-h: 74px;
  --shell: min(1180px, calc(100vw - 48px));
  --section-y: clamp(68px, 6.5vw, 88px);
  --hero-progress: 0;
  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --paper: #05383a;
  --surface: #094144;
  --surface-2: #104b49;
  --text: #f2fff8;
  --muted: #b3c9c5;
  --green-strong: #65e7c0;
  --focus: #b7f34a;
  --danger: #ff9cac;
  --danger-soft: rgba(255, 156, 172, 0.13);
  --line: rgba(238, 255, 248, 0.18);
  --line-strong: rgba(238, 255, 248, 0.29);
  --shadow-sm: 0 10px 32px rgba(0, 15, 16, 0.18);
  --shadow-md: 0 22px 60px rgba(0, 15, 16, 0.26);
}

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

html {
  background: var(--ink-deep);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--lime);
  color: var(--ink-deep);
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink-deep);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.shell,
.section-shell,
.nav-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--section-y) 0;
}

.section--tint {
  background: var(--surface-2);
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(36px, 4.5vw, 56px);
}

.section-heading h2,
.proof-copy h2 {
  max-width: 15ch;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
}

.section-heading > p:last-child,
.section-intro {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--green-strong);
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--lime);
}

.button,
.hero-actions a,
.form-actions button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--green);
  color: var(--ink-deep);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.1;
  transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.button:hover,
.hero-actions a:hover,
.form-actions button:hover {
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(8, 214, 164, 0.2);
  transform: translateY(-2px);
}

button:disabled,
.button:disabled,
.form-actions button:disabled {
  cursor: wait;
  opacity: 0.58;
  box-shadow: none;
  transform: none;
}

button:disabled:hover,
.button:disabled:hover,
.form-actions button:disabled:hover {
  background: var(--green);
  box-shadow: none;
  transform: none;
}

.button--ghost,
.button-ghost,
.button-back,
.hero-actions .button--ghost,
.hero-actions .button-ghost {
  border-color: currentColor;
  background: transparent;
  color: inherit;
  box-shadow: none;
}

.button--ghost:hover,
.button-ghost:hover,
.button-back:hover {
  border-color: var(--green);
  background: rgba(8, 214, 164, 0.1);
  color: inherit;
  box-shadow: none;
}

.button--small,
.button-nav {
  min-height: 42px;
  padding: 11px 17px;
  font-size: 0.82rem;
}

.button--wide {
  width: 100%;
}

/* Header — both homepage and secondary-page markup share the same geometry. */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  border-bottom: 1px solid rgba(244, 255, 249, 0.12);
  background: rgba(3, 45, 48, 0.96);
  color: #f4fff9;
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 45, 48, 0.99);
  box-shadow: 0 10px 30px rgba(0, 18, 19, 0.18);
}

.site-header .site-nav.shell,
.site-header .nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: #f4fff9;
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand img,
.brand-mark {
  width: 38px;
  height: 38px;
  content: url("hyprboost-icon.png");
  object-fit: contain;
}

.brand-name,
.brand-word {
  display: block;
  width: 150px;
  height: 30px;
  flex: 0 0 auto;
  overflow: hidden;
  background: url("hyprboost-wordmark-light.png") left center / contain no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.7vw, 36px);
}

.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-mobile-cta {
  display: none;
}

.site-header .button {
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  color: rgba(244, 255, 249, 0.76);
  font-size: 0.87rem;
  font-weight: 650;
  line-height: 1;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #f4fff9;
}

.site-header .button[aria-current="page"] {
  color: var(--ink-deep);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions,
.nav-controls {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.theme-toggle,
.menu-toggle,
.nav-toggle {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(244, 255, 249, 0.24);
  border-radius: 50%;
  background: transparent;
  color: #f4fff9;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.theme-toggle {
  display: grid;
  place-items: center;
  padding: 0;
}

.theme-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.theme-icon--sun,
html[data-theme="dark"] .theme-icon--moon {
  display: none;
}

html[data-theme="dark"] .theme-icon--sun {
  display: block;
}

.theme-toggle:hover,
.menu-toggle:hover,
.nav-toggle:hover {
  border-color: var(--lime);
  background: rgba(183, 243, 74, 0.1);
}

.menu-toggle,
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.menu-toggle span,
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child,
.nav-toggle[aria-expanded="true"] span:not(.sr-only):first-of-type {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child,
.nav-toggle[aria-expanded="true"] span:not(.sr-only):last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Homepage hero */
.hero-scroll {
  position: relative;
  min-height: 210svh;
  background: var(--ink-deep);
  color: #f4fff9;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 58%, rgba(8, 214, 164, 0.15), transparent 30%),
    radial-gradient(circle at 16% 86%, rgba(183, 243, 74, 0.08), transparent 26%),
    var(--ink-deep);
}

.hero-sticky::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 255, 249, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 255, 249, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent 2%, #000 28%, #000 78%, transparent 100%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  right: -240px;
  bottom: -180px;
  border: 70px solid rgba(8, 214, 164, 0.06);
}

.hero-glow-two {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  height: 100%;
  align-content: center;
  padding: calc(var(--header-h) + 12px) 0 24px;
}

.hero-title {
  position: relative;
  z-index: 2;
  display: flex;
  width: max-content;
  max-width: 100%;
  flex-direction: column;
  margin: 0;
  font-size: clamp(6rem, min(24vw, 31svh), 22rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.77;
  text-transform: uppercase;
}

.hero-word,
.hero-title .hero-word:nth-child(n),
.hero-title .word-behind {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  margin-left: 0;
  color: #f4fff9;
  -webkit-text-stroke: 0;
  transform: none;
}

.hero-title .hero-word:nth-child(3) {
  color: var(--lime);
}

.hero-lower {
  display: grid;
  width: min(100%, 900px);
  grid-template-columns: minmax(280px, 510px) auto;
  align-items: end;
  gap: 30px;
  margin-top: clamp(28px, 4vh, 42px);
}

.hero-lower > p {
  margin: 0;
  color: rgba(244, 255, 249, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 24px;
}

.hero-lower .hero-actions {
  margin-top: 0;
}

.hero-scroll .button-ghost,
.subpage-hero .button--ghost {
  border-color: rgba(244, 255, 249, 0.5);
  color: #f4fff9;
}

.flight-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 42%;
  width: clamp(320px, 37vw, 540px);
  height: auto;
  opacity: clamp(0, calc(var(--hero-progress) * 4), 1);
  pointer-events: none;
  filter: drop-shadow(0 18px 34px rgba(0, 20, 22, 0.28));
  transform: translate3d(
    calc(-21vw + var(--hero-progress) * 38vw),
    calc(14vh - var(--hero-progress) * 54vh),
    0
  ) scale(calc(0.84 + var(--hero-progress) * 0.14));
  transform-origin: 50% 50%;
  will-change: transform;
}

.hero-destination {
  position: absolute;
  z-index: 4;
  right: clamp(24px, 5vw, 78px);
  bottom: clamp(38px, 6vh, 66px);
  width: min(480px, 38vw);
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(244, 255, 249, 0.18);
  border-left: 3px solid var(--lime);
  border-radius: 18px;
  background: rgba(3, 45, 48, 0.92);
  box-shadow: 0 20px 60px rgba(0, 12, 13, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 420ms var(--ease),
    transform 420ms var(--ease),
    visibility 0s linear 420ms;
  visibility: hidden;
}

.hero-scroll.is-arrived .hero-destination {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
  visibility: visible;
}

.hero-destination .eyebrow {
  margin-bottom: 11px;
  color: var(--lime);
}

.hero-destination__lead {
  margin: 0;
  color: #f4fff9;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.55vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.hero-destination .hero-actions {
  margin-top: 18px;
}

.hero-destination .button {
  min-height: 44px;
  padding: 12px 17px;
  font-size: 0.78rem;
}

.hero-channel-strip {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.3vw, 30px);
  overflow: hidden;
  border-top: 1px solid rgba(244, 255, 249, 0.13);
  background: rgba(3, 45, 48, 0.94);
  color: rgba(244, 255, 249, 0.72);
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 0.9vw, 0.78rem);
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-channel-strip i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
}

.motion-marquee {
  overflow: hidden;
  background: var(--lime);
  color: var(--ink-deep);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  animation: marquee 22s linear infinite;
}

.marquee-track b {
  color: var(--green-strong);
  font-size: 1.35rem;
}

/* Services */
.services-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(183, 243, 74, 0.12), transparent 24%),
    var(--paper);
  padding-bottom: 64px;
}

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

.service-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 360px;
  grid-template-rows: 132px 1fr auto;
  gap: 16px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 220ms ease, box-shadow 240ms ease, transform 240ms var(--ease);
}

.service-card:hover {
  border-color: rgba(8, 214, 164, 0.55);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-card.service-dark {
  border-color: rgba(244, 255, 249, 0.13);
  background: var(--ink);
  color: #f4fff9;
}

.service-card > div:not(.service-visual) {
  min-width: 0;
}

.service-card .card-number {
  display: block;
  margin-bottom: 8px;
  color: var(--green-strong);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.service-dark .card-number,
.service-dark .card-link {
  color: var(--lime);
}

.service-card h3 {
  margin-bottom: 9px;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.12;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.service-dark p {
  color: rgba(244, 255, 249, 0.7);
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-strong);
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 750;
}

.service-card .card-link b {
  font-size: 1.15rem;
  transition: transform 200ms var(--ease);
}

.service-card:hover .card-link b {
  transform: translate(4px, -2px);
}

.service-visual {
  position: relative;
  display: grid;
  width: 100%;
  height: 132px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(8, 214, 164, 0.1), rgba(183, 243, 74, 0.1)),
    var(--surface-2);
  color: var(--ink);
  isolation: isolate;
}

.service-dark .service-visual {
  border-color: rgba(244, 255, 249, 0.14);
  background: #0b5050;
  color: #f4fff9;
}

html[data-theme="dark"] .service-card:not(.service-dark) .service-visual {
  color: #f4fff9;
}


.service-icon {
  width: min(94%, 228px);
  height: 116px;
  overflow: visible;
  color: currentColor;
  transition: transform 260ms var(--ease);
}

.service-card:hover .service-icon {
  transform: translate3d(5px, -3px, 0);
}

.system-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  background: var(--green);
  color: var(--ink-deep);
  transition: background 220ms ease, transform 220ms var(--ease);
}

.system-cta:hover {
  background: var(--lime);
  transform: translateY(-3px);
}

.system-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink-deep);
  color: var(--lime);
}

.system-arrow img {
  width: 28px;
  height: 28px;
}

.system-cta small,
.system-cta strong {
  display: block;
}

.system-cta small {
  margin-bottom: 2px;
  opacity: 0.72;
}

.system-cta strong {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

/* Proof */
.proof-section {
  overflow: hidden;
  background: var(--surface-2);
  padding-top: 74px;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(44px, 7vw, 86px);
}

.proof-copy {
  margin-bottom: 0;
}

.growth-system {
  position: relative;
  display: grid;
  min-height: 360px;
  grid-template-columns: minmax(180px, 1.05fr) minmax(80px, 0.5fr) minmax(160px, 0.8fr);
  grid-template-rows: auto minmax(270px, 1fr);
  gap: 16px 20px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.system-label {
  position: static;
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-inputs {
  position: static;
  display: grid;
  width: auto;
  grid-template-rows: repeat(4, 1fr);
  grid-column: 1;
  grid-row: 2;
  gap: 9px;
}

.system-inputs span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface-2);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
}

.system-inputs i {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--lime-soft);
  color: var(--ink-deep);
  font-style: normal;
  overflow: hidden;
}

.system-inputs i svg {
  width: 23px;
  height: 23px;
}

.flow-lines {
  position: static;
  z-index: 1;
  width: calc(100% + 40px);
  max-width: none;
  height: 100%;
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
  margin-left: -20px;
  overflow: visible;
}

.flow-lines path {
  fill: none;
  opacity: 0.42;
  stroke: var(--green-strong);
  stroke-dasharray: 7 8;
  stroke-dashoffset: 24;
  stroke-linecap: round;
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
  transition: opacity 350ms ease;
}

.flow-lines.is-flowing path {
  opacity: 1;
  animation: flow-dashes 1.6s linear infinite;
}

.mobile-flow-arrow {
  display: none;
}

.system-output {
  position: static;
  z-index: 2;
  display: grid;
  width: auto;
  min-height: 0;
  align-content: center;
  justify-items: center;
  grid-column: 3;
  grid-row: 2;
  padding: 18px;
  border-radius: 22px;
  background: var(--ink);
  color: #f4fff9;
  text-align: center;
}

.system-inputs,
.flow-lines,
.system-output {
  min-width: 0;
}

.system-output > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink-deep);
}

.system-output > span img {
  width: 27px;
  height: 27px;
}

.system-output strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.15;
}

.system-output small {
  margin-top: 8px;
  color: rgba(244, 255, 249, 0.6);
}

/* Why */
.why-section {
  overflow: hidden;
  background: var(--ink-deep);
  color: #f4fff9;
}

.why-section .section-heading h2 {
  max-width: 17ch;
}

.why-orbit {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -220px;
  bottom: -240px;
  border: 70px solid rgba(8, 214, 164, 0.06);
  border-radius: 50%;
}

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

.why-card,
.why-card-raised,
.why-card-high {
  min-height: 276px;
  margin-top: 0;
  padding: 28px;
  border: 1px solid rgba(244, 255, 249, 0.13);
  border-radius: var(--radius-md);
  background: rgba(244, 255, 249, 0.045);
}

.why-card > span {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

.why-card p {
  margin-bottom: 0;
  color: rgba(244, 255, 249, 0.68);
  font-size: 0.93rem;
}

/* Packages */
.packages-section {
  background: var(--paper);
  padding-bottom: 64px;
}

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

.package-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 360px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.package-card.package-featured,
.package-card--featured {
  border-color: rgba(8, 214, 164, 0.7);
  background: linear-gradient(180deg, rgba(8, 214, 164, 0.12), var(--surface) 46%);
}

.package-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--green-strong);
  font-size: 1.3rem;
}

.package-icon svg {
  width: 30px;
  height: 30px;
  overflow: visible;
}

.package-name,
.package-kicker {
  margin-bottom: 9px;
  color: var(--green-strong);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-card h2,
.package-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.package-card ul,
.package-features {
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding: 8px 0 8px 23px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.package-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  color: var(--green-strong);
  content: "✓";
  font-weight: 800;
}

.package-card > a:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--green-strong);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 750;
}

.package-card > a.button:last-child {
  justify-content: center;
  color: var(--ink-deep);
}

.package-card > a.button--ghost:last-child {
  color: var(--text);
}

.package-fit {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.93rem;
}

.custom-proposal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  margin-top: 22px;
  padding: 32px 36px;
  border-radius: var(--radius-md);
  background: var(--ink-deep);
  color: #f4fff9;
}

.custom-proposal h2,
.custom-proposal h3 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.custom-proposal p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(244, 255, 249, 0.67);
}

/* Growth plan */
.plan-section {
  background: var(--surface-2);
  padding-top: 74px;
}

.plan-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  align-items: start;
  gap: 22px;
}

.growth-form,
.booking-form {
  padding: clamp(26px, 3.5vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.form-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 750;
}

.form-progress {
  position: relative;
  height: 6px;
  flex: 1;
  overflow: hidden;
  border-radius: 99px;
  background: var(--surface-2);
}

.form-progress i {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--lime));
  transition: width 300ms var(--ease);
}

.form-step {
  margin: 0;
  padding: 0;
  border: 0;
}

.js .form-step:not(.is-active) {
  display: none;
}

.no-js-fallback {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.no-js-fallback h3 {
  margin-bottom: 10px;
}

.no-js-fallback p {
  margin-bottom: 18px;
  color: var(--muted);
}

.js .no-js-fallback {
  display: none;
}

.no-js .growth-form,
.no-js .brief-panel {
  display: none;
}

.no-js .plan-layout {
  grid-template-columns: 1fr;
}

.form-step legend {
  width: 100%;
  margin-bottom: 9px;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.form-step > p:not(.field-label) {
  margin-bottom: 24px;
  color: var(--muted);
}

.field,
.field-row {
  margin-bottom: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-row .field {
  margin-bottom: 0;
}

.field label,
.field-label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
}

.growth-form input:not([type="hidden"]),
.growth-form select,
.growth-form textarea,
.booking-form input:not([type="hidden"]),
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: var(--paper);
  color: var(--text);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.growth-form textarea,
.booking-form textarea {
  min-height: 126px;
  resize: vertical;
}

.growth-form input:focus,
.growth-form select:focus,
.growth-form textarea:focus,
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--green-strong);
  box-shadow: 0 0 0 4px rgba(8, 214, 164, 0.13);
}

.growth-form input[aria-invalid="true"],
.growth-form select[aria-invalid="true"],
.growth-form textarea[aria-invalid="true"],
.booking-form input[aria-invalid="true"],
.booking-form select[aria-invalid="true"],
.booking-form textarea[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px var(--danger-soft);
}

.field.has-error label,
.form-step.has-error > legend,
.form-step.has-error > .field-label {
  color: var(--danger);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

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

.choice {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--paper);
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.choice:hover,
.choice.is-selected {
  border-color: var(--green-strong);
  background: rgba(8, 214, 164, 0.12);
}

.choice.is-selected {
  box-shadow: inset 0 0 0 1px var(--green-strong);
}

.choice[aria-invalid="true"],
.form-step.has-error .choice[aria-invalid="true"] {
  border-color: var(--danger);
  background: var(--danger-soft);
  box-shadow: inset 0 0 0 1px var(--danger);
}

.choice span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: var(--ink-deep);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 28px;
}

.form-disclosure,
.form-fineprint {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.form-disclosure a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

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

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

.hp-field,
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.brief-panel {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--ink-deep);
  color: #f4fff9;
  box-shadow: var(--shadow-md);
}

.brief-kicker {
  margin-bottom: 24px;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-row {
  padding: 15px 0;
  border-top: 1px solid rgba(244, 255, 249, 0.13);
}

.brief-row > span {
  display: block;
  margin-bottom: 6px;
  color: rgba(244, 255, 249, 0.55);
  font-size: 0.72rem;
}

.brief-row strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.brief-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.brief-chips span {
  padding: 5px 8px;
  border-radius: 99px;
  background: rgba(8, 214, 164, 0.16);
  color: var(--lime);
  font-size: 0.7rem;
  font-style: normal;
}

.brief-chips i {
  color: rgba(244, 255, 249, 0.66);
  font-size: 0.82rem;
}

.brief-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
  color: rgba(244, 255, 249, 0.65);
  font-size: 0.78rem;
}

.brief-note span {
  color: var(--lime);
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 22px;
  padding: 30px 34px;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: #f4fff9;
}

.booking-band h3 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
}

/* Secondary pages */
.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 78px) 0 84px;
  background:
    radial-gradient(circle at 82% 54%, rgba(8, 214, 164, 0.15), transparent 27%),
    var(--ink-deep);
  color: #f4fff9;
}

.subpage-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 255, 249, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 255, 249, 0.03) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

.subpage-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: clamp(50px, 7vw, 90px);
}

.subpage-hero h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 5.8vw, 5.55rem);
}

.subpage-hero .lead,
.booking-copy .lead {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(244, 255, 249, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.subpage-visual {
  position: relative;
  display: grid;
  min-height: 340px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(244, 255, 249, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(244, 255, 249, 0.045);
}

.subpage-visual::before {
  position: absolute;
  width: 230px;
  height: 230px;
  top: -90px;
  right: -80px;
  border: 48px solid rgba(183, 243, 74, 0.08);
  border-radius: 50%;
  content: "";
}

.subpage-visual > span:first-child {
  position: relative;
  z-index: 2;
  width: min(78%, 300px);
}

.subpage-visual .visual-browser,
.profile-card,
.review-card,
.search-card,
.social-card {
  display: flex;
  min-height: 175px;
  justify-content: center;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(244, 255, 249, 0.2);
  border-radius: 18px;
  background: #f4fff9;
  color: var(--ink-deep);
  box-shadow: 0 22px 44px rgba(0, 20, 22, 0.22);
  transform: rotate(-2deg);
}

.subpage-visual .visual-browser i {
  position: absolute;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.subpage-visual .visual-browser i:nth-child(1) { left: 20px; }
.subpage-visual .visual-browser i:nth-child(2) { left: 31px; }
.subpage-visual .visual-browser i:nth-child(3) { left: 42px; }
.subpage-visual .visual-browser b {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
}

.profile-card i,
.review-card i {
  margin: 9px 0;
  color: var(--green-strong);
  font-size: 1rem;
  font-style: normal;
  letter-spacing: 0.08em;
}

.profile-card small,
.review-card small,
.search-card small,
.social-card small {
  color: #667b7a;
}

.review-card b,
.search-card b,
.social-card b {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.message-stack {
  display: grid;
  gap: 10px;
}

.message-stack i,
.message-stack b {
  display: block;
  padding: 15px 17px;
  border: 1px solid rgba(244, 255, 249, 0.18);
  border-radius: 12px;
  background: rgba(244, 255, 249, 0.08);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-style: normal;
}

.message-stack i:nth-child(2) {
  margin-left: 18px;
}

.message-stack b {
  margin-left: 36px;
  background: var(--lime);
  color: var(--ink-deep);
}

.package-fit-map {
  position: relative;
  min-height: 340px;
  display: grid;
  align-content: center;
  gap: 14px;
  overflow: hidden;
  padding: 30px 0;
  border-block: 1px solid rgba(244, 255, 249, 0.18);
}

.package-fit-map::after {
  position: absolute;
  right: -0.04em;
  bottom: -0.1em;
  color: rgba(244, 255, 249, 0.045);
  content: "FIT";
  font-family: var(--font-display);
  font-size: clamp(8rem, 15vw, 13rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.8;
  pointer-events: none;
}

.package-fit-map__kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 5px;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-fit-map__criteria {
  position: relative;
  z-index: 1;
  display: grid;
}

.package-fit-map__criteria p {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid rgba(244, 255, 249, 0.13);
}

.package-fit-map__criteria small {
  color: rgba(244, 255, 249, 0.56);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.package-fit-map__criteria strong {
  color: #f4fff9;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: -0.035em;
}

.package-fit-map__result {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  padding: 17px 0 0 18px;
  border-left: 3px solid var(--green);
}

.package-fit-map__result > span,
.package-fit-map__result > small {
  display: block;
  color: rgba(244, 255, 249, 0.66);
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-fit-map__result > strong {
  display: block;
  margin: 3px 0 7px;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.package-fit-map__result > small {
  font-size: 0.62rem;
}

.outcome-strip {
  background: var(--green);
  color: var(--ink-deep);
}

.outcome-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outcome-strip__grid p {
  margin: 0;
  padding: 24px 30px;
  border-right: 1px solid rgba(3, 45, 48, 0.14);
}

.outcome-strip__grid p:first-child {
  padding-left: 0;
}

.outcome-strip__grid p:last-child {
  padding-right: 0;
  border-right: 0;
}

.outcome-strip strong,
.outcome-strip span {
  display: block;
}

.outcome-strip strong {
  margin-bottom: 2px;
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.outcome-strip span {
  font-size: 0.8rem;
  opacity: 0.8;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(42px, 7vw, 86px);
}

.content-grid h2 {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
}

.lead-sm {
  color: var(--muted);
  font-size: 1.05rem;
}

.problem-list {
  border-top: 1px solid var(--line);
}

.problem-list p {
  position: relative;
  margin: 0;
  padding: 18px 0 18px 29px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.problem-list p::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 5px solid rgba(8, 214, 164, 0.18);
  border-radius: 50%;
  background: var(--green-strong);
  content: "";
}

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

.deliverables-grid article {
  min-height: 222px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.deliverables-grid article > span,
.process-grid li > span {
  display: block;
  margin-bottom: 34px;
  color: var(--green-strong);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.deliverables-grid h3,
.process-grid h3 {
  margin-bottom: 9px;
  font-size: 1.18rem;
}

.deliverables-grid p,
.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-grid li {
  min-height: 226px;
  padding: 26px;
  border-top: 3px solid var(--green);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.related-services {
  padding-top: 0;
}

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

.related-grid a {
  display: flex;
  min-height: 132px;
  justify-content: space-between;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color 180ms ease, transform 200ms var(--ease);
}

.related-grid a:hover {
  border-color: var(--green-strong);
  transform: translateY(-3px);
}

.related-grid strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.related-grid span {
  color: var(--muted);
  font-size: 0.84rem;
}

/* Service pages use the same editorial rhythm as the homepage, without repeated card walls. */
body.service-page {
  --section-y: clamp(56px, 6vw, 82px);
}

body.service-page .subpage-hero {
  padding: calc(var(--header-h) + 52px) 0 58px;
}

body.service-page .subpage-hero h1 {
  max-width: 13ch;
  font-size: clamp(3.6rem, 6.4vw, 6.15rem);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

body.service-page .subpage-hero__grid {
  min-height: 390px;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.64fr);
  gap: clamp(36px, 5vw, 60px);
}

body.service-page .subpage-visual {
  min-height: 250px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.service-page .subpage-visual > span:first-child {
  display: none;
}

body.service-page .subpage-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  border: 0;
  background: none;
  color: rgba(244, 255, 249, 0.075);
  content: "01";
  font-family: var(--font-display);
  font-size: clamp(10rem, 18vw, 15rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.8;
  transform: translate(-50%, -50%);
}

body.service-page .subpage-hero--profiles .subpage-visual::before { content: "02"; }
body.service-page .subpage-hero--reviews .subpage-visual::before { content: "03"; }
body.service-page .subpage-hero--search .subpage-visual::before { content: "04"; }
body.service-page .subpage-hero--outreach .subpage-visual::before { content: "05"; }
body.service-page .subpage-hero--social .subpage-visual::before { content: "06"; }

body.service-page .outcome-strip__grid p {
  padding-block: 18px;
}

.service-problems {
  padding-bottom: 44px;
  background: var(--paper);
}

.service-deliverables {
  padding-top: 44px;
  background: var(--surface-2);
}

.service-deliverables .section-heading {
  margin-bottom: 26px;
}

.service-deliverables .deliverables-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-deliverables .deliverables-grid article {
  min-height: 0;
  padding: 24px 24px 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.service-deliverables .deliverables-grid article:nth-child(even) {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.service-deliverables .deliverables-grid article > span {
  margin-bottom: 10px;
}

.service-process {
  background: var(--ink-deep);
  color: #f4fff9;
}

.service-process .section-heading {
  margin-bottom: 34px;
}

.service-process .section-heading h2 {
  max-width: 17ch;
}

.service-process .process-grid {
  gap: 0;
  border-top: 1px solid rgba(244, 255, 249, 0.16);
}

.service-process .process-grid li {
  min-height: 0;
  padding: 30px 32px;
  border: 0;
  border-right: 1px solid rgba(244, 255, 249, 0.13);
  background: transparent;
  box-shadow: none;
}

.service-process .process-grid li:last-child {
  border-right: 0;
}

.service-process .process-grid li > span {
  margin-bottom: 16px;
  color: var(--lime);
}

.service-process .process-grid p {
  color: rgba(244, 255, 249, 0.68);
}

body.service-page .related-services {
  padding: 54px 0;
  background: var(--paper);
}

body.service-page .related-grid {
  gap: 0;
  border-top: 1px solid var(--line);
}

body.service-page .related-grid a {
  min-height: 0;
  padding: 20px 18px 20px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  transition: padding 200ms var(--ease), border-color 180ms ease;
}

body.service-page .related-grid a:hover {
  padding-left: 8px;
  border-color: var(--green-strong);
  transform: none;
}

body.service-page .page-cta {
  padding: 0;
  background: var(--green);
}

body.service-page .page-cta__inner {
  padding: 52px 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink-deep);
}

body.service-page .page-cta .eyebrow {
  color: var(--ink-deep);
}

body.service-page .page-cta .button {
  background: var(--ink-deep);
  color: #f4fff9;
}

body.service-page .page-cta .button:hover {
  background: var(--ink);
}

.page-cta {
  padding: 0 0 var(--section-y);
}

.page-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: 38px 42px;
  border-radius: var(--radius-lg);
  background: var(--ink-deep);
  color: #f4fff9;
}

.page-cta__inner h2 {
  max-width: 750px;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3.6vw, 3.2rem);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-strong);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 750;
}

/* Detailed packages */
.packages-grid--detailed .package-card {
  min-height: 540px;
}

.package-details .section-heading > p:last-child {
  max-width: 620px;
}

.custom-package .custom-proposal {
  margin-top: 0;
}

/* Booking */
.booking-hero {
  padding: calc(var(--header-h) + 70px) 0 84px;
  background: var(--surface-2);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.72fr);
  align-items: start;
  gap: clamp(42px, 7vw, 86px);
}

.booking-copy {
  padding-top: 16px;
}

.booking-copy h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 5.6vw, 5.3rem);
}

.booking-copy .lead {
  color: var(--muted);
}

.booking-expectations {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.booking-details .booking-expectations {
  margin-top: 36px;
}

.booking-expectations h2 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.booking-expectations ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-expectations li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.88rem;
}

.booking-expectations li::before {
  position: absolute;
  left: 0;
  color: var(--green-strong);
  content: "✓";
  font-weight: 800;
}

.booking-note {
  margin: 28px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--green);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.84rem;
}

.booking-form .field-row {
  grid-template-columns: 1fr 1fr;
}

/* Footer */
.site-footer {
  padding: 66px 0 22px;
  background: var(--ink-deep);
  color: #f4fff9;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.35fr) repeat(3, minmax(0, 0.75fr));
  gap: clamp(28px, 5vw, 68px);
}

.footer-brand p {
  max-width: 280px;
  margin: 20px 0 0;
  color: rgba(244, 255, 249, 0.58);
  font-size: 0.9rem;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: rgba(244, 255, 249, 0.52);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li,
.footer-grid > div:not(.footer-brand) > a {
  display: block;
  margin-bottom: 8px;
}

.footer-grid a:not(.brand) {
  color: rgba(244, 255, 249, 0.72);
  font-size: 0.84rem;
  transition: color 160ms ease;
}

.footer-grid a:not(.brand):hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 255, 249, 0.11);
  color: rgba(244, 255, 249, 0.52);
  font-size: 0.75rem;
}

.footer-bottom p,
.footer-bottom span {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

/* Progressive motion */
.js.can-observe .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

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

.js.can-observe .reveal:nth-child(2) { transition-delay: 55ms; }
.js.can-observe .reveal:nth-child(3) { transition-delay: 110ms; }
.js.can-observe .reveal:nth-child(4) { transition-delay: 165ms; }
.js.can-observe .reveal:nth-child(5) { transition-delay: 220ms; }
.js.can-observe .reveal:nth-child(6) { transition-delay: 275ms; }

.anchor-alias {
  position: absolute;
  top: calc(var(--header-h) * -1);
}

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

@keyframes flow-dashes {
  from { stroke-dashoffset: 24; }
  to { stroke-dashoffset: -21; }
}

@media (max-width: 1020px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid,
  .plan-layout {
    grid-template-columns: 1fr;
  }

  .proof-copy {
    max-width: 720px;
  }

  .growth-system {
    min-height: 410px;
  }

  .brief-panel {
    position: static;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }

  .packages-grid--detailed .package-card {
    min-height: auto;
  }

  .subpage-hero__grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .subpage-hero__grid {
    gap: 46px;
  }

  .subpage-visual {
    width: min(100%, 680px);
    min-height: 310px;
  }

  .package-fit-map {
    width: min(100%, 680px);
    min-height: 0;
  }

  body.service-page .subpage-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  body.service-page .subpage-visual {
    display: none;
  }

  .booking-layout {
    gap: 44px;
  }

  .booking-left {
    display: contents;
  }

  .booking-copy { order: 1; }
  .booking-form { order: 2; }
  .booking-details { order: 3; }

  .booking-details .booking-expectations {
    margin-top: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid a {
    overflow-wrap: anywhere;
  }

  .booking-copy {
    padding-top: 0;
  }

  .booking-form {
    width: min(100%, 680px);
  }
}

@media (max-width: 840px) {
  :root {
    --header-h: 68px;
    --shell: min(100% - 36px, 720px);
  }

  .js .menu-toggle,
  .js .nav-toggle {
    display: flex;
  }

  .button-nav {
    display: none;
  }

  .nav-mobile-cta {
    display: block;
  }

  .js .site-header .nav-links {
    position: fixed;
    z-index: 102;
    top: calc(var(--header-h) + 10px);
    right: 14px;
    left: 14px;
    display: flex;
    max-height: calc(100svh - var(--header-h) - 24px);
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    padding: 16px;
    border: 1px solid rgba(244, 255, 249, 0.14);
    border-radius: 18px;
    background: #043638;
    box-shadow: 0 20px 60px rgba(0, 15, 16, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 180ms ease, transform 220ms var(--ease);
  }

  .js .site-header .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .no-js .site-header {
    position: relative;
  }

  .no-js .site-nav {
    height: auto;
    min-height: var(--header-h);
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .no-js .site-header .nav-links {
    position: static;
    width: 100%;
    max-height: none;
    flex: 1 0 100%;
    flex-direction: row;
    flex-wrap: wrap;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 15px 12px;
    border-bottom: 1px solid rgba(244, 255, 249, 0.1);
    color: #f4fff9;
    font-family: var(--font-display);
    font-size: 1.05rem;
  }

  .nav-links .nav-mobile-cta a {
    margin-top: 12px;
    border: 0;
    border-radius: 11px;
    background: var(--green);
    color: var(--ink-deep);
    text-align: center;
  }

  .nav-links a::after {
    display: none;
  }

  .hero-title {
    font-size: clamp(5.25rem, min(22vw, 24svh), 12rem);
  }

  .hero-scroll {
    min-height: 190svh;
  }

  .hero-sticky {
    min-height: 0;
  }

  .hero-lower {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-lower .hero-actions {
    margin-top: 0;
  }

  .flight-arrow {
    top: 54%;
    left: 28%;
    width: clamp(300px, 56vw, 460px);
    transform: translate3d(
      calc(-10vw + var(--hero-progress) * 24vw),
      calc(15vh - var(--hero-progress) * 57vh),
      0
    );
  }

  .hero-destination {
    right: 24px;
    bottom: 38px;
    width: min(430px, 52vw);
  }

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

  .why-card,
  .why-card-raised,
  .why-card-high {
    min-height: 250px;
  }

  .why-card:last-child {
    grid-column: 1 / -1;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li {
    min-height: auto;
  }

  .service-process .process-grid li {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 255, 249, 0.13);
  }

  .service-process .process-grid li:last-child {
    border-bottom: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 28px);
    --section-y: 70px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .package-fit-map {
    padding: 22px 0;
  }

  .package-fit-map::after {
    font-size: 8rem;
  }

  .package-fit-map__criteria p {
    padding: 9px 0;
  }

  .proof-copy {
    margin-bottom: 0;
  }

  .section-heading h2,
  .proof-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3.4rem);
  }

  .brand {
    font-size: 1.16rem;
  }

  .brand img,
  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-name,
  .brand-word {
    width: 132px;
    height: 26px;
  }

  .hero-scroll {
    min-height: 190svh;
  }

  .hero-content {
    align-content: start;
    padding-top: calc(var(--header-h) + 58px);
    padding-bottom: 72px;
  }

  .hero-title {
    font-size: clamp(4.75rem, 26vw, 7rem);
    line-height: 0.78;
  }

  .hero-lower {
    margin-top: 26px;
  }

  .hero-lower > p {
    font-size: 0.94rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .flight-arrow {
    top: 52%;
    left: 12%;
    width: min(82vw, 330px);
    opacity: clamp(0, calc(var(--hero-progress) * 4), 1);
    transform: translate3d(
      calc(-5vw + var(--hero-progress) * 21vw),
      calc(10vh - var(--hero-progress) * 55vh),
      0
    );
  }

  .hero-destination {
    right: 14px;
    bottom: 28px;
    left: 14px;
    width: auto;
    padding: 16px;
    background: rgba(3, 45, 48, 0.94);
  }

  .hero-destination .eyebrow {
    margin-bottom: 8px;
    font-size: 0.62rem;
  }

  .hero-destination__lead {
    max-width: 34ch;
    font-size: clamp(1rem, 4.7vw, 1.18rem);
  }

  .hero-destination .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .hero-destination .button {
    width: auto;
    min-height: 42px;
    padding: 10px 11px;
    font-size: 0.68rem;
  }

  .hero-channel-strip {
    min-height: 50px;
    justify-content: flex-start;
    gap: 9px;
    padding: 0 14px;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .hero-channel-strip i {
    width: 4px;
    height: 4px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 350px;
    grid-template-rows: 128px 1fr auto;
  }

  .service-visual {
    height: 128px;
  }

  .system-cta {
    grid-template-columns: auto 1fr;
    padding: 22px;
  }

  .system-cta > b:last-child {
    display: none;
  }

  .growth-system {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 14px;
    padding: 20px 18px 18px;
  }

  .system-label {
    grid-column: 1;
    grid-row: 1;
  }

  .system-inputs {
    position: static;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 1fr);
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
  }

  .flow-lines {
    display: none;
  }

  .mobile-flow-arrow {
    position: relative;
    display: block;
    width: 38px;
    height: 46px;
    grid-column: 1;
    grid-row: 3;
    margin: 0 auto;
  }

  .mobile-flow-arrow::before {
    position: absolute;
    top: 4px;
    bottom: 10px;
    left: 50%;
    width: 3px;
    border-radius: 99px;
    background: var(--green-strong);
    content: "";
    transform: translateX(-50%);
  }

  .mobile-flow-arrow::after {
    position: absolute;
    bottom: 7px;
    left: 50%;
    width: 11px;
    height: 11px;
    border-right: 3px solid var(--green-strong);
    border-bottom: 3px solid var(--green-strong);
    content: "";
    transform: translateX(-50%) rotate(45deg);
  }

  .system-output {
    position: static;
    width: auto;
    min-height: 150px;
    grid-column: 1;
    grid-row: 4;
    transform: none;
  }

  .why-grid,
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .why-card,
  .why-card-raised,
  .why-card-high,
  .why-card:last-child {
    min-height: auto;
    grid-column: auto;
  }

  .why-card > span {
    margin-bottom: 34px;
  }

  .package-card,
  .custom-proposal,
  .booking-band {
    padding: 26px 22px;
  }

  .custom-proposal,
  .booking-band {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .growth-form,
  .booking-form {
    padding: 24px 18px;
  }

  .choice-grid,
  .choice-row,
  .intent-choices,
  .field-row,
  .booking-form .field-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-wrap: wrap;
  }

  .form-actions button {
    flex: 1 1 130px;
  }

  .subpage-hero {
    padding: calc(var(--header-h) + 42px) 0 50px;
  }

  body.service-page .subpage-hero {
    padding: calc(var(--header-h) + 42px) 0 50px;
  }

  .subpage-hero__grid {
    gap: 28px;
  }

  .subpage-hero h1,
  .booking-copy h1 {
    margin-bottom: 16px;
    font-size: clamp(2.55rem, 11.5vw, 3.8rem);
  }

  .subpage-visual {
    display: none;
  }

  .subpage-visual > span:first-child {
    width: min(82%, 290px);
  }

  .outcome-strip__grid {
    grid-template-columns: 1fr;
  }

  .outcome-strip__grid p,
  .outcome-strip__grid p:first-child,
  .outcome-strip__grid p:last-child {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(3, 45, 48, 0.13);
  }

  .outcome-strip__grid p:last-child {
    border-bottom: 0;
  }

  .deliverables-grid article {
    min-height: auto;
  }

  .service-deliverables .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .service-deliverables .deliverables-grid article,
  .service-deliverables .deliverables-grid article:nth-child(even) {
    padding: 20px 0;
    border-left: 0;
  }

  body.service-page .related-grid a {
    padding-inline: 0;
  }

  body.service-page .page-cta__inner {
    padding: 44px 0;
  }

  .page-cta__inner {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .page-cta .button {
    width: 100%;
  }

  .booking-expectations ul {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 340px) {
  .system-inputs {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
}

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

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

  .flight-arrow {
    opacity: 1;
    transform: translate3d(17vw, -40vh, 0) scale(0.98) !important;
  }

  .hero-scroll {
    min-height: 92svh;
  }

  .hero-sticky {
    position: relative;
  }

  .js.can-observe .reveal {
    opacity: 1;
    transform: none;
  }

  .flow-lines path {
    opacity: 1;
    animation: none;
    stroke-dashoffset: 0;
  }
}

@media print {
  .site-header,
  .flight-arrow,
  .motion-marquee,
  .booking-band,
  .site-footer {
    display: none !important;
  }

  body,
  .hero-scroll,
  .why-section,
  .subpage-hero {
    background: #fff !important;
    color: #000 !important;
  }
}
