:root {
  --ink: #071713;
  --ink-soft: #0d241e;
  --ink-lift: #14342b;
  --paper: #f4f6f0;
  --paper-deep: #e8ece4;
  --white: #ffffff;
  --accent: #c9f36b;
  --accent-bright: #ddff91;
  --mint: #51d3a6;
  --blue: #9fbfff;
  --amber: #f2b765;
  --text: #12211c;
  --muted: #63706b;
  --muted-light: #aab6b1;
  --line: rgba(18, 33, 28, 0.14);
  --line-light: rgba(255, 255, 255, 0.13);
  --shadow-sm: 0 16px 45px rgba(7, 23, 19, 0.08);
  --shadow-lg: 0 35px 100px rgba(1, 12, 9, 0.32);
  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 26px;
}

@property --score-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow,
.mini-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
  color: #517064;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 62px;
}

.section-heading h2,
.cadence-copy h2,
.difference-heading h2,
.faq-heading h2,
.contact-copy h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading > p:last-child,
.split-heading > p,
.cadence-copy > p,
.faq-heading > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.section-heading:not(.split-heading) > p:last-child {
  max-width: 650px;
  margin-top: 24px;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(48px, 8vw, 130px);
}

.split-heading > p {
  padding-bottom: 5px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button span {
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

.button:hover span {
  transform: translate(2px, -2px);
}

.button-accent {
  border-color: var(--accent);
  background: linear-gradient(115deg, var(--accent) 0%, var(--accent-bright) 45%, #b8eb58 100%);
  background-size: 220% 220%;
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(201, 243, 107, 0.11);
  animation: accentSurfaceShift 8s ease-in-out infinite;
}

.button-accent:hover {
  border-color: var(--accent-bright);
  background: var(--accent-bright);
  box-shadow: 0 10px 35px rgba(201, 243, 107, 0.2);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.button-outline {
  border-color: rgba(18, 33, 28, 0.3);
  background: transparent;
  color: var(--text);
}

.button-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--ink-lift);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
}

.text-link-light {
  color: var(--accent);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.js .reveal-group .reveal:nth-child(2) { transition-delay: 70ms; }
.js .reveal-group .reveal:nth-child(3) { transition-delay: 140ms; }
.js .reveal-group .reveal:nth-child(4) { transition-delay: 210ms; }
.js .reveal-group .reveal:nth-child(5) { transition-delay: 280ms; }
.js .reveal-group .reveal:nth-child(6) { transition-delay: 350ms; }
.js .reveal-group .reveal:nth-child(7) { transition-delay: 420ms; }

/* Navigation */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: var(--white);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.nav::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  content: "";
  transition: background 220ms ease;
}

.nav.scrolled,
.nav.menu-active {
  border-color: transparent;
  background: rgba(7, 23, 19, 0.91);
  box-shadow: 0 12px 35px rgba(0, 8, 6, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav.scrolled::after,
.nav.menu-active::after {
  background: rgba(255, 255, 255, 0.11);
}

.nav-inner {
  display: flex;
  width: min(1380px, calc(100% - 64px));
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 33px;
  height: 33px;
  overflow: visible;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.brand-mark path:last-child {
  stroke-width: 1.75;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-mono);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.19em;
}

.brand-descriptor {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.055em;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links .nav-cta {
  min-height: 40px;
  padding: 11px 16px;
  border: 1px solid rgba(201, 243, 107, 0.55);
  border-radius: 6px;
  color: var(--accent);
}

.nav-links .nav-cta:hover {
  background: var(--accent);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 1.5px;
  background: var(--white);
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 930px;
  overflow: hidden;
  padding: 170px 0 0;
  background:
    radial-gradient(circle at 78% 25%, rgba(81, 211, 166, 0.09), transparent 28%),
    linear-gradient(145deg, #071713 0%, #081c17 48%, #071713 100%);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.21;
  background-image:
    linear-gradient(rgba(201, 243, 107, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 243, 107, 0.12) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 75%, transparent 100%);
}

.hero-grid::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 25%, transparent 75%, var(--ink) 100%);
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: 70px;
  right: -250px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(201, 243, 107, 0.1);
  box-shadow: inset 0 0 120px rgba(81, 211, 166, 0.03);
  animation: heroGlowDrift 13s ease-in-out infinite alternate;
}

.hero-glow-two {
  right: 40px;
  bottom: 130px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(159, 191, 255, 0.09);
  animation: heroGlowDrift 10s 1.2s ease-in-out infinite alternate-reverse;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(450px, 0.85fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.hero-copy {
  padding-bottom: 48px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}

.status-dot {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(201, 243, 107, 0.08);
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(201, 243, 107, 0.35);
  border-radius: 50%;
  animation: statusPulse 2.4s ease-out infinite;
  content: "";
}

@keyframes statusPulse {
  0% { opacity: 0.8; transform: scale(0.65); }
  75%, 100% { opacity: 0; transform: scale(1.55); }
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.7rem, 6.1vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.068em;
  line-height: 0.92;
}

.hero h1 span {
  color: var(--accent);
}

.hero-lede {
  max-width: 660px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.72;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.82rem;
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-check {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(201, 243, 107, 0.36);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

.hero-visual {
  position: relative;
  padding: 24px 0 76px;
}

.program-brief {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  background: rgba(246, 248, 243, 0.96);
  box-shadow: var(--shadow-lg);
  color: var(--text);
  transform: rotate(1deg);
}

.program-brief::before {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(rgba(7, 23, 19, 0.025) 1px, transparent 1px);
  background-size: 100% 28px;
  pointer-events: none;
  content: "";
}

.brief-topbar,
.brief-score-row,
.brief-section-title,
.priority-item,
.brief-footer {
  position: relative;
  z-index: 1;
}

.brief-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.brief-kicker,
.brief-section-title,
.brief-footer span,
.score-copy .mini-label {
  color: #728078;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.brief-topbar h2 {
  margin-top: 4px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.brief-status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgba(18, 33, 28, 0.12);
  border-radius: 5px;
  color: #416257;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brief-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #58b88f;
  animation: briefStatusPulse 2.1s ease-in-out infinite;
}

.brief-score-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.score-ring {
  --score-angle: 244.8deg;
  position: relative;
  display: grid;
  width: 91px;
  height: 91px;
  flex: 0 0 auto;
  place-content: center;
  border-radius: 50%;
  background: conic-gradient(var(--mint) 0 var(--score-angle), #dce3dc var(--score-angle) 360deg);
  text-align: center;
}

.js .score-ring {
  animation:
    scoreRingLoad 1.2s 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both,
    scoreRingBreathe 4.2s 1.5s ease-in-out infinite;
}

.score-ring::after {
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: #f5f7f2;
  content: "";
}

.score-ring span,
.score-ring small {
  position: relative;
  z-index: 1;
}

.score-ring span {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.score-ring small {
  margin-top: 2px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.48rem;
}

.score-copy strong {
  display: block;
  margin-top: 5px;
  font-size: 0.92rem;
}

.score-copy p {
  max-width: 220px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.brief-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: 25px 0 18px;
  background: rgba(18, 33, 28, 0.11);
}

.brief-section-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}

.priority-item {
  display: grid;
  grid-template-columns: 23px 1fr 58px;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(18, 33, 28, 0.08);
}

.priority-number {
  color: #89958e;
  font-family: var(--font-mono);
  font-size: 0.56rem;
}

.priority-copy strong {
  display: block;
  overflow: hidden;
  font-size: 0.7rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.progress {
  height: 3px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 10px;
  background: #dce3dc;
}

.progress span {
  position: relative;
  display: block;
  width: var(--progress);
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(90deg, #3fbd91, var(--mint), #8ce8c4);
  background-size: 180% 100%;
  transform-origin: left;
}

.progress span::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.72) 48%, transparent 100%);
  content: "";
  transform: translateX(-125%);
  animation: progressSignal 3.1s 1.6s ease-in-out infinite;
}

.priority-item:nth-child(2) .progress span::after { animation-delay: 2.05s; }
.priority-item:nth-child(3) .progress span::after { animation-delay: 2.5s; }

.js .program-brief .progress span {
  animation: progressIn 1.1s 500ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes progressIn {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.priority-owner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: #6d7a73;
  font-family: var(--font-mono);
  font-size: 0.54rem;
}

.state {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.state-good { background: var(--mint); }
.state-watch { background: var(--amber); }

.brief-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 24px -28px -28px;
  background: rgba(18, 33, 28, 0.1);
}

.brief-footer div {
  padding: 14px 12px;
  background: #edf1eb;
  text-align: center;
}

.brief-footer span,
.brief-footer strong {
  display: block;
}

.brief-footer strong {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 0.67rem;
}

.visual-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  width: max-content;
  max-width: calc(100% - 24px);
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  background: rgba(13, 36, 30, 0.92);
  box-shadow: 0 18px 45px rgba(0, 10, 8, 0.26);
  color: rgba(255, 255, 255, 0.73);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.visual-note span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 5px;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 600;
}

.visual-note-top {
  top: -2px;
  right: auto;
  left: 50%;
  transform-origin: center;
  transform: translateX(-50%) rotate(-2deg);
}

.visual-note-bottom {
  right: auto;
  left: 50%;
  bottom: 32px;
  transform-origin: center;
  transform: translateX(-50%) rotate(1.7deg);
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 45px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.market-list {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
}

.market-list span {
  position: relative;
  padding-left: 16px;
}

.market-list span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  transform: translateY(-50%);
}

/* Outcomes */
.outcomes-section {
  padding: 135px 0 150px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.outcome-card {
  position: relative;
  min-height: 285px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.32);
  transition: background 220ms ease, transform 220ms ease;
}

.outcome-card:hover {
  z-index: 2;
  background: var(--white);
  transform: translateY(-5px);
}

.outcome-card-accent {
  background: linear-gradient(125deg, var(--accent), var(--accent-bright), #b9ea5e);
  background-size: 220% 220%;
  animation: accentSurfaceShift 11s ease-in-out infinite;
}

.outcome-card-accent:hover {
  background: var(--accent-bright);
}

.card-index {
  color: #69776f;
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.outcome-card h3 {
  margin-top: 82px;
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.outcome-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.outcome-card-accent p {
  color: rgba(7, 23, 19, 0.68);
}

/* Services */
.services-section {
  padding: 145px 0;
  background: var(--white);
}

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

.service-row {
  display: grid;
  grid-template-columns: 78px minmax(300px, 0.95fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 32px;
  padding: 40px 10px 40px 0;
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease, padding 220ms ease;
}

.service-row:hover {
  padding-right: 24px;
  padding-left: 18px;
  background: #f7f9f4;
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #315f4d;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.service-row:hover .service-icon {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-number {
  color: #738078;
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.service-copy h3 {
  margin-top: 9px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.service-copy p {
  max-width: 540px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  color: #315f4d;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.service-link span {
  color: #739489;
  font-size: 0.83rem;
  transition: transform 180ms ease;
}

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

.service-deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 20px;
  list-style: none;
}

.service-deliverables li {
  position: relative;
  padding-left: 16px;
  color: #435049;
  font-size: 0.77rem;
  line-height: 1.45;
}

.service-deliverables li::before {
  position: absolute;
  top: 0.54em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6dbb97;
  content: "";
}

/* Method */
.method-section {
  position: relative;
  overflow: hidden;
  padding: 145px 0;
  background: var(--ink);
  color: var(--white);
}

.method-orbit {
  position: absolute;
  border: 1px solid rgba(201, 243, 107, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.method-orbit-one {
  top: -430px;
  right: -350px;
  width: 900px;
  height: 900px;
  animation: methodOrbitFloat 19s ease-in-out infinite alternate;
}

.method-orbit-two {
  top: -225px;
  right: -145px;
  width: 490px;
  height: 490px;
  animation: methodOrbitFloat 14s 1.5s ease-in-out infinite alternate-reverse;
}

.section-heading-light .eyebrow,
.method-section .eyebrow {
  color: var(--accent);
}

.section-heading-light > p {
  color: var(--muted-light);
}

.operating-system {
  --system-node-size: 52px;
  --system-node-radius: 26px;
  --system-day-line: 15px;
  --system-day-gap: 18px;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 72px;
}

.system-rail {
  position: absolute;
  top: calc(var(--system-day-line) + var(--system-day-gap) + var(--system-node-radius));
  right: calc(25% - var(--system-node-radius));
  left: var(--system-node-radius);
  z-index: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
  pointer-events: none;
  transform: translateY(-50%);
}

.system-rail span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--mint));
  background-size: 220% 100%;
  transform-origin: left center;
}

.system-rail span::after {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(201, 243, 107, 0.12), 0 0 22px rgba(201, 243, 107, 0.45);
  content: "";
  opacity: 0;
  transform: translate(-50%, -50%);
}

.system-step {
  position: relative;
  z-index: 1;
  padding-right: 32px;
}

.system-step:nth-of-type(1) { --stage-delay: 140ms; }
.system-step:nth-of-type(2) { --stage-delay: 460ms; }
.system-step:nth-of-type(3) { --stage-delay: 780ms; }
.system-step:nth-of-type(4) { --stage-delay: 1100ms; }

.system-day {
  display: block;
  margin-bottom: var(--system-day-gap);
  color: #778b83;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: var(--system-day-line);
}

.system-node {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--system-node-size);
  height: var(--system-node-size);
  place-items: center;
  border: 1px solid rgba(201, 243, 107, 0.5);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 6px var(--ink);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.66rem;
}

.system-node::after {
  position: absolute;
  inset: -1px;
  border: 1px solid var(--accent);
  border-radius: inherit;
  content: "";
  opacity: 0;
}

.system-copy {
  padding-top: 24px;
}

.system-copy h3 {
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.system-copy p {
  min-height: 94px;
  margin-top: 10px;
  color: var(--muted-light);
  font-size: 0.84rem;
  line-height: 1.6;
}

.system-copy > span {
  display: block;
  margin-top: 18px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.59rem;
  letter-spacing: 0.04em;
}

.js .operating-system .system-rail span {
  transform: scaleX(0);
}

.js .operating-system .system-step {
  opacity: 0.24;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .operating-system .system-copy > span {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.js .operating-system.is-active .system-rail span {
  animation:
    systemRailDraw 1.35s 130ms cubic-bezier(0.3, 0.75, 0.2, 1) forwards,
    systemRailFlow 3.8s 1.45s linear infinite;
}

.js .operating-system.is-active .system-rail span::after {
  animation: systemSignal 1.35s 130ms cubic-bezier(0.3, 0.75, 0.2, 1) both;
}

.js .operating-system.is-active .system-step {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--stage-delay);
}

.js .operating-system.is-active .system-node {
  animation: systemNodeActivate 520ms var(--stage-delay) cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.js .operating-system.is-active .system-node::after {
  animation: systemNodeRing 720ms var(--stage-delay) ease-out both;
}

.js .operating-system.is-active .system-copy > span {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(var(--stage-delay) + 180ms);
}

@keyframes systemRailDraw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes systemSignal {
  0% { left: 0; opacity: 0; }
  8% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@keyframes systemNodeActivate {
  0% {
    border-color: rgba(201, 243, 107, 0.5);
    background: var(--ink);
    color: var(--accent);
    box-shadow: 0 0 0 6px var(--ink);
    transform: scale(0.86);
  }
  55% {
    border-color: var(--accent-bright);
    box-shadow: 0 0 0 6px var(--ink), 0 0 0 13px rgba(201, 243, 107, 0.1), 0 0 28px rgba(201, 243, 107, 0.22);
    transform: scale(1.06);
  }
  100% {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--ink);
    box-shadow: 0 0 0 6px var(--ink), 0 0 0 10px rgba(201, 243, 107, 0.07);
    transform: scale(1);
  }
}

@keyframes systemNodeRing {
  0% { opacity: 0; transform: scale(0.8); }
  35% { opacity: 0.75; }
  100% { opacity: 0; transform: scale(1.7); }
}

.roadmap-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.55fr);
  margin-top: 110px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
}

.roadmap-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 46px 40px;
  border-right: 1px solid var(--line-light);
  background:
    linear-gradient(rgba(201, 243, 107, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 243, 107, 0.045) 1px, transparent 1px),
    #0d261f;
  background-size: 34px 34px;
}

.roadmap-intro h3 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.roadmap-intro > p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted-light);
  font-size: 0.9rem;
}

.roadmap-intro .text-link {
  margin-top: auto;
  padding-top: 48px;
}

.engagement-included {
  margin-top: auto;
  padding-top: 48px;
}

.engagement-included span,
.engagement-included strong {
  display: block;
}

.engagement-included span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.engagement-included strong {
  max-width: 250px;
  margin-top: 8px;
  color: #d3ded8;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.5;
}

.roadmap-workspace {
  min-width: 0;
}

.roadmap-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line-light);
}

.roadmap-tabs button {
  min-height: 62px;
  border: 0;
  border-right: 1px solid var(--line-light);
  background: transparent;
  color: #80928a;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 180ms ease, color 180ms ease;
}

.roadmap-tabs button:last-child {
  border-right: 0;
}

.roadmap-tabs button:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.roadmap-tabs button[aria-selected="true"] {
  background: linear-gradient(115deg, var(--accent), var(--accent-bright), #b8eb58);
  background-size: 220% 220%;
  color: var(--ink);
  animation: accentSurfaceShift 8s ease-in-out infinite;
}

.roadmap-panel {
  min-height: 410px;
  padding: 42px 44px;
}

.roadmap-panel[hidden] {
  display: none;
}

.roadmap-phase-head > span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.roadmap-phase-head h4 {
  margin-top: 8px;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.roadmap-phase-head p {
  margin-top: 8px;
  color: var(--muted-light);
  font-size: 0.87rem;
}

.roadmap-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
}

.roadmap-columns .mini-label {
  color: #70877e;
}

.roadmap-columns ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  list-style: none;
}

.roadmap-columns li {
  position: relative;
  padding-left: 17px;
  color: #d5ded9;
  font-size: 0.79rem;
}

.roadmap-columns li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.roadmap-columns div:last-child p {
  margin-top: 16px;
  color: #d5ded9;
  font-size: 0.79rem;
  line-height: 1.7;
}

/* Plans */
.plans-section {
  padding: 145px 0 125px;
}

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

.plan-card {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.plan-card:hover {
  border-color: rgba(18, 33, 28, 0.34);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.plan-card-featured {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 55px rgba(7, 23, 19, 0.14);
}

.plan-card-featured:hover {
  border-color: var(--ink-lift);
}

.recommended {
  position: absolute;
  top: 0;
  right: 32px;
  padding: 8px 12px;
  border-radius: 0 0 5px 5px;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.plan-label {
  color: #62736b;
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.plan-card-featured .plan-label {
  color: var(--accent);
}

.plan-top h3 {
  margin-top: 18px;
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.plan-timing {
  margin-top: 10px;
  color: #50625a;
  font-family: var(--font-mono);
  font-size: 0.67rem;
}

.plan-card-featured .plan-timing {
  color: #91a29a;
}

.plan-top > p:last-child {
  max-width: 500px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.plan-card-featured .plan-top > p:last-child {
  color: var(--muted-light);
}

.plan-best-for {
  min-height: 77px;
  margin-top: 28px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #52615a;
  font-size: 0.75rem;
  line-height: 1.5;
}

.plan-best-for span {
  display: block;
  margin-bottom: 5px;
  color: #75827b;
  font-family: var(--font-mono);
  font-size: 0.53rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.plan-card-featured .plan-best-for {
  border-color: var(--line-light);
  color: #cfdbd5;
}

.plan-card-featured .plan-best-for span {
  color: #82958c;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: #3f4d46;
  font-size: 0.82rem;
}

.check-list li::before {
  position: absolute;
  top: 0.14em;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1px solid rgba(18, 33, 28, 0.22);
  border-radius: 50%;
  color: #33785c;
  content: "✓";
  font-family: var(--font-mono);
  font-size: 0.52rem;
}

.plan-card-featured .check-list li {
  color: #d1dcd7;
}

.plan-card-featured .check-list li::before {
  border-color: rgba(201, 243, 107, 0.38);
  color: var(--accent);
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.plan-card-featured .button-accent {
  box-shadow: none;
}

.plan-note {
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.plan-note a {
  color: var(--text);
  font-weight: 600;
  text-underline-offset: 3px;
}

/* Cadence */
.cadence-section {
  padding: 140px 0;
  background: var(--white);
}

.cadence-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(500px, 1.15fr);
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.cadence-copy {
  position: sticky;
  top: 130px;
}

.cadence-copy > p {
  margin-top: 25px;
}

.cadence-promise {
  margin-top: 42px;
  padding: 24px;
  border-left: 3px solid var(--accent);
  background: var(--paper);
}

.cadence-promise span,
.cadence-frequency {
  color: #6c7a73;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.cadence-promise strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  line-height: 1.5;
}

.cadence-board {
  position: relative;
}

.cadence-line {
  position: absolute;
  top: 12px;
  bottom: 14px;
  left: 6px;
  width: 1px;
  background: var(--line);
}

.cadence-board article {
  position: relative;
  padding: 0 0 44px 46px;
}

.cadence-board article:last-child {
  padding-bottom: 0;
}

.cadence-dot {
  position: absolute;
  top: 8px;
  left: 0;
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #497765;
  box-shadow: 0 0 0 1px #497765;
}

.cadence-board article:first-of-type .cadence-dot {
  background: var(--accent);
  box-shadow: 0 0 0 1px #83a43b, 0 0 0 7px rgba(201, 243, 107, 0.12);
}

.cadence-board h3 {
  margin-top: 7px;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.cadence-board p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Toolkit */
.toolkit-section {
  padding: 145px 0;
  background: var(--paper-deep);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.tool-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.24);
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.tool-card:hover {
  z-index: 2;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-4px);
}

.tool-format {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #718078;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 600;
}

.tool-card:hover .tool-format {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--accent);
}

.tool-number {
  color: #728078;
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.tool-card h3 {
  max-width: 270px;
  margin-top: 70px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.tool-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
  transition: color 200ms ease;
}

.tool-card:hover p {
  color: var(--muted-light);
}

.tool-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  color: #3b5c4f;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  transition: color 200ms ease;
}

.tool-card:hover .tool-link {
  color: var(--accent);
}

.tool-link span {
  font-size: 1rem;
}

.toolkit-sequence {
  display: flex;
  min-height: 115px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 25px 30px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.35);
}

.toolkit-sequence .mini-label {
  color: #748178;
}

.toolkit-sequence strong {
  display: block;
  margin-top: 7px;
  font-size: 0.94rem;
}

/* Difference */
.difference-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 145px 0;
  background: linear-gradient(125deg, #b9ea5e 0%, var(--accent) 38%, var(--accent-bright) 68%, #a8dc50 100%);
  background-size: 240% 240%;
  color: var(--ink);
  animation: greenBackdropShift 14s ease-in-out infinite;
}

.difference-section::before {
  position: absolute;
  z-index: -2;
  inset: -25%;
  background-image:
    radial-gradient(circle at 20% 35%, rgba(255, 255, 255, 0.34), transparent 24%),
    radial-gradient(circle at 82% 68%, rgba(7, 23, 19, 0.12), transparent 22%),
    linear-gradient(rgba(7, 23, 19, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 23, 19, 0.06) 1px, transparent 1px);
  background-size: auto, auto, 52px 52px, 52px 52px;
  content: "";
  animation: greenGridDrift 24s linear infinite;
}

.difference-section::after {
  position: absolute;
  z-index: -1;
  top: -210px;
  right: -140px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(7, 23, 19, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 75px rgba(7, 23, 19, 0.025),
    0 0 0 150px rgba(7, 23, 19, 0.018);
  content: "";
  animation: greenOrbFloat 11s ease-in-out infinite alternate;
}

.difference-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(460px, 1fr);
  gap: clamp(70px, 11vw, 160px);
}

.difference-heading .eyebrow {
  color: rgba(7, 23, 19, 0.57);
}

.difference-points {
  border-top: 1px solid rgba(7, 23, 19, 0.2);
}

.difference-points article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(7, 23, 19, 0.2);
}

.difference-points article > span {
  padding-top: 4px;
  color: rgba(7, 23, 19, 0.53);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
}

.difference-points h3 {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.difference-points p {
  margin-top: 7px;
  color: rgba(7, 23, 19, 0.68);
  font-size: 0.89rem;
  line-height: 1.65;
}

/* FAQ */
.faq-section {
  padding: 145px 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(500px, 1fr);
  gap: clamp(70px, 10vw, 150px);
}

.faq-heading > p {
  margin-top: 24px;
  font-size: 0.9rem;
}

.faq-heading a {
  color: #376853;
  text-underline-offset: 3px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 22px;
  align-items: center;
  gap: 25px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1px;
  background: var(--text);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 48px 26px 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 145px 0;
  background: var(--ink);
  color: var(--white);
}

.contact-glow {
  position: absolute;
  bottom: -440px;
  left: -260px;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(201, 243, 107, 0.08);
  border-radius: 50%;
  box-shadow: inset 0 0 180px rgba(81, 211, 166, 0.025);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(310px, 0.7fr) minmax(520px, 1.05fr);
  align-items: start;
  gap: clamp(70px, 10vw, 145px);
}

.contact-copy .eyebrow {
  color: var(--accent);
}

.contact-copy > p {
  margin-top: 26px;
  color: var(--muted-light);
}

.next-steps {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.next-steps .mini-label {
  color: #71877e;
}

.next-steps ol {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  list-style: none;
}

.next-steps li {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 12px;
}

.next-steps li > span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(201, 243, 107, 0.28);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.54rem;
}

.next-steps li p {
  padding-top: 2px;
  color: #c2cec8;
  font-size: 0.84rem;
}

.contact-email {
  display: block;
  margin-top: 45px;
  color: var(--accent);
  font-size: 0.95rem;
  text-decoration: none;
}

.contact-email span {
  display: block;
  margin-bottom: 5px;
  color: #75877f;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 30px 80px rgba(0, 10, 8, 0.2);
}

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

.form-field {
  margin-bottom: 19px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #b7c4be;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font-size: 0.86rem;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-field input,
.form-field select {
  height: 49px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 130px;
  padding: 13px 14px;
  resize: vertical;
}

.form-field select {
  color-scheme: dark;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #72837b;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(201, 243, 107, 0.65);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 3px rgba(201, 243, 107, 0.08);
}

.form-verification {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  align-items: center;
  gap: 24px;
  margin: 2px 0 22px;
  padding: 16px;
  border: 1px solid rgba(201, 243, 107, 0.18);
  border-radius: 7px;
  background: rgba(201, 243, 107, 0.035);
}

.form-verification-copy span {
  display: block;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-verification-copy p,
.form-verification-noscript {
  margin-top: 6px;
  color: #82958c;
  font-size: 0.69rem;
  line-height: 1.5;
}

.turnstile-widget {
  width: 100%;
  min-height: 65px;
}

.turnstile-widget iframe {
  max-width: 100%;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 6px;
}

.form-submit-row p {
  color: #71847b;
  font-size: 0.69rem;
  line-height: 1.45;
}

.form-status {
  min-height: 20px;
  margin-top: 15px;
  color: var(--accent);
  font-size: 0.78rem;
}

.form-status.error {
  color: #ff9c87;
}

.contact-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.contact-form.is-sending .button {
  cursor: wait;
  opacity: 0.7;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: #04100d;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 55px;
  min-height: 170px;
}

.brand-footer .brand-mark {
  width: 38px;
  height: 38px;
}

.footer-top > p {
  color: #7f9289;
  font-size: 0.86rem;
}

.footer-cta {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-cta span {
  margin-left: 8px;
}

.footer-bottom {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #61736a;
  font-family: var(--font-mono);
  font-size: 0.59rem;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: #82958c;
  text-decoration: none;
  transition: color 160ms ease;
}

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

/* Service detail pages */
.service-detail-page {
  background: var(--paper);
}

.detail-hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  padding: 142px 0 95px;
  background:
    radial-gradient(circle at 80% 20%, rgba(81, 211, 166, 0.11), transparent 27%),
    linear-gradient(145deg, #071713 0%, #0a211a 52%, #071713 100%);
  color: var(--white);
}

.detail-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(201, 243, 107, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 243, 107, 0.13) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 76%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 76%, transparent);
}

.detail-hero::after {
  position: absolute;
  top: -120px;
  right: -180px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(201, 243, 107, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(201, 243, 107, 0.018);
  content: "";
  animation: heroGlowDrift 15s ease-in-out infinite alternate;
}

.detail-hero .container {
  position: relative;
  z-index: 2;
}

.detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 66px;
  color: #7d9188;
  font-family: var(--font-mono);
  font-size: 0.61rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.detail-breadcrumb a {
  color: #a7b7b0;
  text-decoration: none;
}

.detail-breadcrumb a:hover {
  color: var(--accent);
}

.detail-breadcrumb i {
  color: #50665c;
  font-style: normal;
}

.detail-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.58fr);
  align-items: end;
  gap: clamp(60px, 9vw, 135px);
}

.detail-hero-copy {
  min-width: 0;
}

.detail-hero-copy .eyebrow {
  color: var(--accent);
}

.detail-hero-copy h1 {
  max-width: 850px;
  font-size: clamp(3.6rem, 6.4vw, 6.9rem);
  font-weight: 500;
  letter-spacing: -0.067em;
  line-height: 0.93;
}

.detail-hero-copy h1 span {
  color: var(--accent);
}

.detail-hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  line-height: 1.72;
}

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

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  list-style: none;
}

.detail-tags li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  color: #91a49b;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.detail-brief-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 70px rgba(0, 10, 7, 0.22);
  backdrop-filter: blur(10px);
}

.detail-brief-card::before {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background: linear-gradient(135deg, rgba(201, 243, 107, 0.08), transparent 48%);
  content: "";
}

.detail-brief-card > * {
  position: relative;
}

.detail-brief-card .mini-label {
  color: var(--accent);
}

.detail-brief-card h2 {
  margin-top: 13px;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.detail-brief-card > p {
  margin-top: 12px;
  color: #aebdb6;
  font-size: 0.82rem;
}

.detail-brief-list {
  display: grid;
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 7px;
  background: var(--line-light);
  list-style: none;
}

.detail-brief-list li {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 10px;
  padding: 12px;
  background: rgba(7, 23, 19, 0.88);
  color: #d3ddd8;
  font-size: 0.72rem;
}

.detail-brief-list span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.55rem;
}

.detail-brief-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #80938a;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.035em;
}

.detail-brief-foot i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(201, 243, 107, 0.08);
  animation: briefStatusPulse 2.1s ease-in-out infinite;
}

.detail-proof-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  color: var(--white);
}

.detail-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.detail-proof-grid article {
  min-height: 125px;
  padding: 27px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-proof-grid article:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-proof-grid span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.detail-proof-grid strong {
  display: block;
  margin-top: 9px;
  font-size: 0.9rem;
  font-weight: 500;
}

.detail-section {
  padding: 130px 0;
  background: var(--white);
}

.detail-section-alt {
  background: var(--paper);
}

.detail-two-col {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(500px, 1fr);
  gap: clamp(65px, 10vw, 155px);
}

.detail-side-heading {
  align-self: start;
}

.detail-side-heading h2,
.detail-centered-heading h2 {
  font-size: clamp(2.35rem, 4.3vw, 4.35rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.detail-prose > p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.detail-prose > p + p {
  margin-top: 22px;
}

.detail-answer {
  margin-top: 36px;
  padding: 26px;
  border-left: 3px solid var(--accent);
  background: #f1f5ed;
}

.detail-answer .mini-label {
  color: #64756c;
}

.detail-answer strong {
  display: block;
  margin-top: 9px;
  font-size: 1.04rem;
  line-height: 1.55;
}

.detail-centered-heading {
  max-width: 800px;
  margin-bottom: 58px;
}

.detail-centered-heading > p:last-child {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1rem;
}

.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-card {
  min-height: 290px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  transition: background 200ms ease, transform 200ms ease;
}

.detail-card:hover {
  z-index: 2;
  background: var(--white);
  transform: translateY(-4px);
}

.detail-card > span {
  color: #687970;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
}

.detail-card h3 {
  margin-top: 62px;
  font-size: 1.34rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.detail-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.65;
}

.detail-process-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--ink);
  color: var(--white);
}

.detail-process-section .detail-centered-heading .eyebrow {
  color: var(--accent);
}

.detail-process-section .detail-centered-heading > p:last-child {
  color: var(--muted-light);
}

.detail-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.detail-process-grid article {
  min-height: 275px;
  padding: 27px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.detail-process-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(201, 243, 107, 0.38);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.6rem;
}

.detail-process-grid h3 {
  margin-top: 58px;
  font-size: 1.3rem;
  font-weight: 500;
}

.detail-process-grid p {
  margin-top: 11px;
  color: var(--muted-light);
  font-size: 0.8rem;
  line-height: 1.65;
}

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

.detail-fit-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.52);
}

.detail-fit-grid span {
  color: #547365;
  font-family: var(--font-mono);
  font-size: 0.57rem;
  font-weight: 600;
}

.detail-fit-grid h3 {
  margin-top: 10px;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.detail-fit-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}

.detail-faq-section {
  padding: 130px 0;
  background: var(--white);
}

.detail-faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.55fr) minmax(500px, 1fr);
  gap: clamp(60px, 9vw, 140px);
}

.detail-faq-layout .faq-list details p {
  max-width: 720px;
}

.detail-cta-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background: linear-gradient(125deg, #b8eb58, var(--accent), var(--accent-bright), #a8dc50);
  background-size: 240% 240%;
  color: var(--ink);
  animation: greenBackdropShift 14s ease-in-out infinite;
}

.detail-cta-section::before {
  position: absolute;
  inset: -30%;
  opacity: 0.55;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.5), transparent 24%),
    linear-gradient(rgba(7, 23, 19, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 23, 19, 0.06) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
  content: "";
  animation: greenGridDrift 24s linear infinite;
}

.detail-cta-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
}

.detail-cta-layout h2 {
  max-width: 760px;
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.detail-cta-layout p {
  max-width: 670px;
  margin-top: 18px;
  color: rgba(7, 23, 19, 0.68);
  font-size: 1rem;
}

.detail-cta-layout .button-dark {
  min-width: 210px;
}

@media (max-width: 920px) {
  .detail-hero {
    min-height: auto;
    padding-top: 125px;
  }

  .detail-breadcrumb {
    margin-bottom: 48px;
  }

  .detail-hero-layout,
  .detail-two-col,
  .detail-faq-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .detail-hero-copy h1 {
    max-width: 760px;
    font-size: clamp(3.6rem, 10.8vw, 6.2rem);
  }

  .detail-brief-card {
    width: min(100%, 610px);
  }

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

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

  .detail-cta-layout {
    grid-template-columns: 1fr;
  }

  .detail-cta-layout .button-dark {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .detail-hero {
    padding: 112px 0 72px;
  }

  .detail-breadcrumb {
    margin-bottom: 38px;
  }

  .detail-hero-copy h1 {
    font-size: clamp(2.85rem, 13vw, 4.6rem);
  }

  .detail-hero-copy > p:not(.eyebrow) {
    margin-top: 24px;
    font-size: 0.98rem;
  }

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

  .detail-brief-card {
    padding: 24px 20px;
  }

  .detail-proof-grid {
    grid-template-columns: 1fr;
  }

  .detail-proof-grid article,
  .detail-proof-grid article:first-child {
    min-height: 95px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .detail-section,
  .detail-process-section,
  .detail-faq-section {
    padding: 90px 0;
  }

  .detail-side-heading h2,
  .detail-centered-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .detail-card-grid,
  .detail-process-grid,
  .detail-fit-grid {
    grid-template-columns: 1fr;
  }

  .detail-card,
  .detail-process-grid article {
    min-height: 240px;
  }

  .detail-card h3,
  .detail-process-grid h3 {
    margin-top: 42px;
  }

  .detail-cta-section {
    padding: 85px 0;
  }

  .detail-cta-layout .button-dark {
    width: 100%;
  }
}

/* 404 */
.not-found-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.not-found {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 48px));
  text-align: center;
}

.not-found-code {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.not-found h1 {
  margin-top: 25px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.not-found p {
  max-width: 460px;
  margin: 18px auto 30px;
  color: var(--muted-light);
}

/* Ambient interface motion */
@keyframes accentSurfaceShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes heroGlowDrift {
  0% { opacity: 0.65; transform: translate3d(0, 0, 0) scale(0.98); }
  100% { opacity: 1; transform: translate3d(-22px, 16px, 0) scale(1.04); }
}

@keyframes briefStatusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(81, 211, 166, 0); opacity: 0.75; }
  50% { box-shadow: 0 0 0 5px rgba(81, 211, 166, 0.13); opacity: 1; }
}

@keyframes scoreRingLoad {
  from { --score-angle: 0deg; }
  to { --score-angle: 244.8deg; }
}

@keyframes scoreRingBreathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(81, 211, 166, 0); }
  50% { box-shadow: 0 0 0 7px rgba(81, 211, 166, 0.08); }
}

@keyframes progressSignal {
  0%, 18% { transform: translateX(-125%); }
  62%, 100% { transform: translateX(125%); }
}

@keyframes methodOrbitFloat {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(0.97); }
  100% { transform: translate3d(-34px, 25px, 0) rotate(7deg) scale(1.04); }
}

@keyframes systemRailFlow {
  from { background-position: 0% 50%; }
  to { background-position: 220% 50%; }
}

@keyframes greenBackdropShift {
  0%, 100% { background-position: 0% 45%; }
  50% { background-position: 100% 55%; }
}

@keyframes greenGridDrift {
  from { transform: translate3d(0, 0, 0) rotate(0.001deg); }
  to { transform: translate3d(52px, 52px, 0) rotate(0.001deg); }
}

@keyframes greenOrbFloat {
  0% { opacity: 0.45; transform: translate3d(0, 0, 0) scale(0.94); }
  100% { opacity: 0.85; transform: translate3d(-50px, 40px, 0) scale(1.08); }
}

/* Responsive */
@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 6.7vw, 5.8rem);
  }

  .service-row {
    grid-template-columns: 68px minmax(270px, 0.9fr) minmax(280px, 0.75fr);
    gap: 24px;
  }

  .roadmap-intro {
    padding: 40px 32px;
  }

  .roadmap-panel {
    padding: 38px 34px;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 40px, 760px);
  }

  .nav-inner {
    width: calc(100% - 40px);
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 100px 42px 50px;
    background: rgba(7, 23, 19, 0.98);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.15rem;
    letter-spacing: -0.02em;
  }

  .nav-links .nav-cta {
    min-height: 48px;
    margin-top: 14px;
    padding: 14px 18px;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
  }

  .hero {
    min-height: auto;
    padding-top: 145px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 35px;
  }

  .hero-copy {
    min-width: 0;
    padding-bottom: 20px;
  }

  .hero h1 {
    max-width: 690px;
    font-size: clamp(4rem, 11vw, 6.4rem);
  }

  .hero-lede {
    max-width: 670px;
  }

  .hero-visual {
    width: min(100%, 590px);
    min-width: 0;
    margin-left: auto;
  }

  .program-brief {
    min-width: 0;
  }

  .hero-bottom {
    min-height: 135px;
    margin-top: 15px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .split-heading > p {
    max-width: 620px;
  }

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

  .service-row {
    grid-template-columns: 68px 1fr;
    align-items: start;
  }

  .service-deliverables {
    grid-column: 2;
    margin-top: 5px;
  }

  .service-row:hover {
    padding-right: 16px;
    padding-left: 12px;
  }

  .operating-system {
    grid-template-columns: repeat(2, 1fr);
    gap: 55px 20px;
  }

  .system-rail {
    display: none;
  }

  .system-copy p {
    min-height: auto;
  }

  .roadmap-shell {
    grid-template-columns: 1fr;
  }

  .roadmap-intro {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .roadmap-intro .text-link {
    margin-top: 30px;
    padding-top: 0;
  }

  .engagement-included {
    margin-top: 30px;
    padding-top: 0;
  }

  .plan-card {
    min-height: 600px;
  }

  .cadence-layout,
  .difference-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .cadence-copy {
    position: static;
  }

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

  .difference-heading h2 {
    max-width: 660px;
  }

  .contact-copy {
    max-width: 650px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
    gap: 25px;
    padding: 42px 0;
  }

  .footer-top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 76px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .nav-inner {
    width: calc(100% - 28px);
    min-height: 72px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand-name {
    font-size: 0.86rem;
  }

  .brand-descriptor {
    font-size: 0.47rem;
  }

  .nav-links {
    padding-inline: 28px;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-grid {
    background-size: 48px 48px;
  }

  .hero h1 {
    overflow-wrap: normal;
    font-size: clamp(2.8rem, 13.4vw, 4.8rem);
  }

  .hero-lede {
    margin-top: 25px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .hero-proof {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    padding: 52px 0 62px;
  }

  .program-brief {
    padding: 21px;
    transform: none;
  }

  .brief-score-row {
    gap: 15px;
  }

  .score-ring {
    width: 78px;
    height: 78px;
  }

  .priority-item {
    grid-template-columns: 20px 1fr 48px;
  }

  .brief-footer {
    margin: 22px -21px -21px;
  }

  .brief-footer div {
    padding-inline: 5px;
  }

  .visual-note {
    display: flex;
    min-height: 38px;
    padding: 6px 12px 6px 6px;
    font-size: 0.54rem;
  }

  .visual-note-top {
    top: 7px;
  }

  .visual-note-bottom {
    bottom: 8px;
  }

  .hero-bottom {
    display: block;
    padding: 28px 0 34px;
  }

  .market-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
  }

  .section-heading,
  .split-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .cadence-copy h2,
  .difference-heading h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .outcomes-section,
  .services-section,
  .method-section,
  .plans-section,
  .cadence-section,
  .toolkit-section,
  .difference-section,
  .faq-section,
  .contact-section {
    padding: 95px 0;
  }

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

  .outcome-card {
    min-height: 235px;
  }

  .outcome-card h3 {
    margin-top: 55px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 4px;
  }

  .service-icon {
    width: 54px;
    height: 54px;
  }

  .service-deliverables {
    grid-column: 1;
    grid-template-columns: 1fr;
    margin-top: 5px;
  }

  .service-row:hover {
    padding: 30px 12px;
  }

  .operating-system {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .system-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 18px;
    padding-right: 0;
  }

  .system-day {
    grid-column: 1 / -1;
  }

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

  .system-copy > span {
    margin-top: 12px;
  }

  .roadmap-shell {
    margin-top: 75px;
    border-radius: 16px;
  }

  .roadmap-intro {
    padding: 32px 24px;
  }

  .roadmap-tabs button {
    min-height: 58px;
    padding-inline: 4px;
    font-size: 0.55rem;
  }

  .roadmap-panel {
    min-height: 0;
    padding: 32px 24px;
  }

  .roadmap-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .plan-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .plan-card .button {
    margin-top: 5px;
  }

  .cadence-board article {
    padding-left: 36px;
  }

  .tool-card {
    min-height: 290px;
  }

  .tool-card h3 {
    margin-top: 52px;
  }

  .toolkit-sequence {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
  }

  .difference-layout,
  .faq-layout,
  .contact-layout {
    gap: 52px;
  }

  .difference-points article {
    grid-template-columns: 32px 1fr;
    gap: 13px;
  }

  .faq-list summary {
    gap: 14px;
    font-size: 0.92rem;
  }

  .faq-list details p {
    padding-right: 8px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-verification {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-submit-row .button {
    width: 100%;
  }

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

  .footer-top > p {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 25px 0;
  }

  .footer-links {
    gap: 14px 20px;
  }
}

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

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

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