:root {
  --navy-950: #05191e;
  --navy-900: #07252c;
  --navy-800: #0a3942;
  --teal-700: #0f5e6f;
  --teal-500: #2584b0;
  --green-600: #178744;
  --lime-400: #b7ef5a;
  --paper: #f7f5ed;
  --paper-cool: #eff8f5;
  --white: #ffffff;
  --ink: #082f37;
  --ink-soft: #496870;
  --line: rgba(8, 47, 55, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 80px rgba(5, 39, 47, 0.16);
  --shadow-soft: 0 14px 42px rgba(5, 39, 47, 0.09);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 96px; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 1%, rgba(37, 132, 176, 0.12), transparent 31rem),
    radial-gradient(circle at 95% 24%, rgba(183, 239, 90, 0.12), transparent 27rem),
    linear-gradient(180deg, #fbfdf9 0%, var(--paper) 49%, #f1faf8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, summary { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--navy-950);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--lime-400);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: -999px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 999px;
}

.skip-link:focus { left: 1rem; }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(calc(100% - 2rem), 790px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.section-compact { padding: 4.5rem 0; }
.section-paper { background: rgba(255, 255, 255, 0.48); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 25, 30, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.brand img {
  width: 136px;
  aspect-ratio: 798 / 401;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.brand-lockup {
  display: grid;
  padding-left: 0.8rem;
  border-left: 1px solid var(--line-dark);
  line-height: 1.1;
}

.brand-lockup strong {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-lockup small {
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 670;
}

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

.language-link {
  padding: 0.43rem 0.62rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--white);
}

.language-picker {
  position: relative;
  flex: 0 0 auto;
}

.language-picker summary {
  display: flex;
  min-width: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.43rem 0.62rem;
  color: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 850;
}

.language-picker summary::-webkit-details-marker { display: none; }
.language-picker summary::after { content: "▾"; font-size: 0.72rem; }
.language-picker[open] summary::after { content: "▴"; }

.language-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  z-index: 120;
  display: grid;
  min-width: 190px;
  gap: 0.2rem;
  padding: 0.55rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.language-menu a {
  padding: 0.58rem 0.65rem;
  border-radius: 10px;
  white-space: nowrap;
  font-size: 0.8rem;
}

.language-menu a:hover,
.language-menu a[aria-current="page"] {
  color: var(--teal-700);
  background: var(--paper-cool);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0.55rem;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
  border-radius: 10px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 820;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::after { content: "→"; transition: transform 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button:hover::after { transform: translateX(3px); }

.button-primary {
  color: var(--navy-950);
  background: var(--lime-400);
  box-shadow: 0 15px 36px rgba(183, 239, 90, 0.18);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-dark);
}

.button-ink {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--teal-700));
  box-shadow: 0 16px 36px rgba(7, 57, 66, 0.18);
}

.button-quiet {
  color: var(--teal-700);
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--line);
}

.button-small {
  min-height: 42px;
  padding: 0.61rem 0.88rem;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 25%, rgba(37, 132, 176, 0.32), transparent 34rem),
    radial-gradient(circle at 60% 100%, rgba(183, 239, 90, 0.11), transparent 30rem),
    linear-gradient(137deg, var(--navy-950), var(--navy-900) 57%, #0b4550);
  padding: 4.5rem 0 4.2rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 94%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  gap: 3rem;
  align-items: center;
}

.hero-grid > * { min-width: 0; }

.hero h1 {
  max-width: 14ch;
  font-size: clamp(3.45rem, 5.2vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

/* The primary message must remain visible while scripts and fonts initialize. */
.hero .reveal {
  opacity: 1;
  transform: none;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.045em;
}

.hero .eyebrow,
.dark-section .eyebrow,
.final-cta .eyebrow { color: var(--lime-400); }

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

h1 {
  max-width: 12ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.7vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.28rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.04rem, 1.55vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.65rem;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
}

.trust-line span {
  position: relative;
  padding: 0 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 680;
}

.trust-line span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime-400);
  font-weight: 900;
}

.decision-board {
  position: relative;
  overflow: hidden;
  padding: 1.15rem;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.board-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.9rem;
  padding: 0.2rem 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.01em;
}

.preview-note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 600;
  text-align: right;
}

.output-list {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
}

.output-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.output-item:last-child { padding-bottom: 0; border-bottom: 0; }
.output-item div { display: grid; gap: 0.14rem; }
.output-item strong { font-size: 0.9rem; line-height: 1.3; }
.output-item small { color: var(--ink-soft); font-size: 0.76rem; line-height: 1.45; }

.output-type {
  padding: 0.35rem 0.45rem;
  color: var(--teal-700);
  background: var(--paper-cool);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.66rem;
  font-weight: 850;
  text-align: center;
}

.output-foot {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.deadline-note {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.deadline-note summary { color: var(--ink); font-weight: 780; }
.deadline-note p { margin: 0.75rem 0 0; font-size: 0.82rem; }
.deadline-note a { color: var(--teal-700); text-decoration: underline; text-underline-offset: 0.15em; }

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--lime-400);
}

.live-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-400);
  box-shadow: 0 0 0 6px rgba(183, 239, 90, 0.11);
}

.board-panel {
  padding: 1.2rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
}

.matrix-head,
.matrix-row {
  display: grid;
  grid-template-columns: 1fr 0.75fr 62px;
  gap: 0.7rem;
  align-items: center;
}

.matrix-head {
  padding: 0 0.55rem 0.55rem;
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.matrix-row {
  margin-top: 0.48rem;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  font-size: 0.8rem;
  font-weight: 760;
}

.status {
  display: inline-flex;
  justify-content: center;
  padding: 0.26rem 0.38rem;
  border-radius: 999px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.status-ready { color: #0e6334; background: #dff7e9; }
.status-review { color: #8b5500; background: #fff0cf; }
.status-blocked { color: #9d2b2b; background: #ffe2e2; }

.board-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.board-path span {
  position: relative;
  padding: 0.62rem 0.45rem;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  font-size: 0.69rem;
  font-weight: 800;
  text-align: center;
}

.signal-bar {
  position: relative;
  z-index: 2;
  color: var(--navy-950);
  background: var(--lime-400);
}

.signal-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 1.4rem;
  align-items: center;
  min-height: 86px;
}

.signal-grid strong {
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.signal-grid strong small {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  opacity: 0.72;
}

.signal-item {
  padding-left: 1rem;
  border-left: 1px solid rgba(5, 25, 30, 0.2);
}

.signal-item b,
.signal-item span { display: block; }
.signal-item b { font-size: 1rem; }
.signal-item span { margin-top: 0.1rem; font-size: 0.78rem; }
.signal-item a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
.signal-item a:hover { text-decoration-thickness: 2px; }

.section-heading {
  max-width: 820px;
  margin-bottom: 2.6rem;
}

.section-heading p,
.lead {
  max-width: 710px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.value-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, 0.8fr);
  gap: 1rem;
}

.value-card {
  min-height: 230px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.value-card:first-child {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--teal-700));
}

.value-card:first-child p { color: rgba(255, 255, 255, 0.72); }
.value-card p { color: var(--ink-soft); }

.value-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1.35rem;
  color: var(--navy-950);
  background: var(--lime-400);
  border-radius: 13px;
  font-weight: 900;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  display: flex;
  min-height: 555px;
  flex-direction: column;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.service-card.featured {
  border-color: rgba(23, 135, 68, 0.33);
  box-shadow: 0 24px 60px rgba(23, 135, 68, 0.13);
}

.service-topline {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.service-code {
  color: var(--green-600);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.015em;
}

.service-badge {
  padding: 0.3rem 0.52rem;
  color: #0c6234;
  background: #dff7e9;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 850;
}

.service-card h3 { font-size: 1.55rem; }
.service-card > p { color: var(--ink-soft); }

.price-line {
  display: grid;
  gap: 0.4rem;
  margin: 0.55rem 0 1rem;
}

.price-line strong {
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-line span { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.4; }

.deliverable-list,
.scope-list {
  display: grid;
  gap: 0.62rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.deliverable-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.deliverable-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 900;
}

.service-note {
  margin-top: auto;
  margin-bottom: 1rem;
  padding: 0.85rem;
  color: var(--ink-soft);
  background: var(--paper-cool);
  border-radius: 13px;
  font-size: 0.78rem;
}

.service-details { margin-bottom: 1rem; }
.service-details summary { display: none; }
.service-details .deliverable-list { margin-top: 0.2rem; }
.service-details .service-note { margin-bottom: 0; }
.service-card .button { align-self: flex-start; margin-top: auto; }

.examples-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(37, 132, 176, 0.1), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(239, 248, 245, 0.7));
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.example-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1rem;
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.example-topline {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--green-600);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.02em;
}

.example-topline span:last-child { color: var(--ink-soft); }
.example-card h3 { font-size: 1.55rem; }
.example-brief { min-height: 116px; margin: 0; color: var(--ink-soft); font-size: 0.9rem; }

.example-preview {
  padding: 1.05rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--teal-700));
  border-radius: var(--radius-md);
}

.example-preview-head {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line-dark);
}

.example-preview-head span {
  color: var(--lime-400);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.example-preview-head strong { font-size: 1rem; }

.example-preview ul {
  display: grid;
  gap: 0.55rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.example-preview li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
}

.example-preview li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--lime-400);
}

.example-value {
  flex: 1;
  padding-left: 0.9rem;
  border-left: 3px solid var(--lime-400);
}

.example-value strong { color: var(--teal-700); font-size: 0.82rem; }
.example-value p { margin: 0.25rem 0 0; color: var(--ink-soft); font-size: 0.86rem; }

.example-meta {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0.65rem;
  padding: 0.8rem;
  color: var(--ink-soft);
  background: var(--paper-cool);
  border-radius: 12px;
  font-size: 0.78rem;
}

.example-meta span,
.example-meta b { display: block; }
.example-meta b { color: var(--ink); font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.08em; }
.example-card .button { align-self: flex-start; }

.examples-disclaimer {
  margin: 1.2rem 0 0;
  padding: 1rem 1.15rem;
  color: var(--ink-soft);
  border: 1px dashed rgba(15, 94, 111, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.additional-details > summary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0.72rem 1rem;
  color: var(--teal-700);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 820;
}

.additional-details[open] > summary { margin-bottom: 1.2rem; }
.additional-details .desk-note { margin-bottom: 0; }

.secondary-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.55rem;
  border-top: 3px solid var(--teal-500);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.secondary-card p { flex: 1; color: var(--ink-soft); }
.secondary-card strong { color: var(--teal-700); }
.secondary-card .button { margin-top: 0.4rem; }

.desk-note {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1.3rem 1.45rem;
  border: 1px dashed rgba(15, 94, 111, 0.32);
  border-radius: var(--radius-md);
  background: rgba(239, 248, 245, 0.72);
}

.desk-note p { max-width: 780px; margin: 0; color: var(--ink-soft); }

.dark-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 132, 176, 0.24), transparent 30rem),
    var(--navy-950);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-card {
  min-height: 220px;
  padding: 1.4rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.process-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1.2rem;
  color: var(--navy-950);
  background: var(--lime-400);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.process-card p { color: rgba(255, 255, 255, 0.67); }

.boundary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.boundary-card {
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.scope-list li {
  position: relative;
  padding: 0.72rem 0 0.72rem 1.6rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.scope-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 900;
}

.boundary-card.exclusions .scope-list li::before {
  content: "–";
  color: #9d2b2b;
}

.faq-list { display: grid; gap: 0.75rem; }

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  position: relative;
  padding: 1.2rem 3.5rem 1.2rem 1.25rem;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal-700);
  font-size: 1.3rem;
}

.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 1.25rem 1.25rem; margin: 0; color: var(--ink-soft); }

.final-cta {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 30%, rgba(183, 239, 90, 0.17), transparent 30rem),
    linear-gradient(135deg, var(--teal-700), var(--navy-900));
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-grid h2 { max-width: 13ch; }
.cta-grid p { max-width: 700px; color: rgba(255, 255, 255, 0.72); }

.cta-aside {
  min-width: 280px;
  padding: 1.25rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.cta-aside strong,
.cta-aside span { display: block; }
.cta-aside span { margin-top: 0.35rem; color: rgba(255, 255, 255, 0.66); font-size: 0.84rem; }
.cta-aside .button { width: 100%; margin-top: 1rem; }

.site-footer {
  padding: 3rem 0 2rem;
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 0.7fr);
  gap: 2rem;
}

.footer-copy { max-width: 410px; margin-top: 1rem; font-size: 0.88rem; }
.footer-links { display: grid; align-content: start; gap: 0.55rem; font-size: 0.86rem; }
.footer-links strong { color: var(--white); margin-bottom: 0.3rem; }
.footer-links a:hover { color: var(--lime-400); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.76rem;
}

.formal-link { text-decoration: underline; text-underline-offset: 0.18em; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

/* Intake and formal pages */
.inner-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(37, 132, 176, 0.28), transparent 27rem),
    var(--navy-950);
  padding: 3.8rem 0 3.2rem;
}

.inner-hero h1 { max-width: 16ch; font-size: clamp(2.7rem, 5.3vw, 4.3rem); line-height: 1; text-wrap: balance; }
.inner-hero .lead { color: rgba(255, 255, 255, 0.72); }

.intake-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.intake-aside {
  position: sticky;
  top: 98px;
  padding: 1.4rem;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.intake-aside h2 {
  font-size: 1.28rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.intake-aside ol { display: grid; gap: 0.75rem; padding-left: 1.25rem; }
.intake-aside p { color: rgba(255, 255, 255, 0.68); font-size: 0.84rem; }

.safe-note {
  padding: 0.9rem;
  color: var(--navy-950) !important;
  background: var(--lime-400);
  border-radius: 13px;
  font-weight: 780;
}

.intake-form {
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.35rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.form-intro { padding-bottom: 0.5rem; border-bottom: 1px solid var(--line); }
.form-intro p { color: var(--ink-soft); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field { display: grid; gap: 0.38rem; }
.field-full { grid-column: 1 / -1; }

.field label,
.field-label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
}

.field textarea { min-height: 135px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal-500);
  outline: 3px solid var(--teal-700);
  outline-offset: 2px;
  box-shadow: none;
}

.field-hint { color: var(--ink-soft); font-size: 0.73rem; }

.checkbox-row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.95rem;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper-cool);
  font-size: 0.83rem;
}

.checkbox-row input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 0.15rem; }
.checkbox-row a { color: var(--teal-700); text-decoration: underline; }
.bot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 0.5rem;
}

.microcopy { color: var(--ink-soft); font-size: 0.78rem; }

.thank-you-card {
  margin-top: 4rem;
  margin-bottom: 6rem;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.thank-you-card h1 { max-width: 15ch; font-size: clamp(3rem, 6vw, 5.5rem); }

.formal-hero {
  color: var(--white);
  background: var(--navy-950);
  padding: 4.8rem 0 3.5rem;
}

.formal-hero h1 { max-width: none; font-size: clamp(3rem, 6vw, 5.5rem); }
.formal-hero .lead { color: rgba(255, 255, 255, 0.7); }

.formal-shell {
  width: min(calc(100% - 2rem), 880px);
  margin: 4rem auto 6rem;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.83);
  box-shadow: var(--shadow-soft);
}

.formal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.formal-nav a {
  padding: 0.5rem 0.75rem;
  color: var(--teal-700);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
}

.formal-section + .formal-section {
  margin-top: 3.2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.formal-section h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
.formal-section h3 { margin-top: 1.8rem; }
.formal-section p,
.formal-section li { color: var(--ink-soft); }
.formal-section a { color: var(--teal-700); text-decoration: underline; }
.version-note { margin-top: 2rem; color: var(--ink-soft); font-size: 0.75rem; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .decision-board { max-width: 650px; }
  .services-grid { grid-template-columns: 1fr; }
  .examples-grid { grid-template-columns: 1fr; }
  .example-brief { min-height: 0; }
  .service-card { min-height: auto; }
  .service-note { margin-top: 1rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-card:first-child { grid-column: 1 / -1; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-aside { max-width: 440px; }
}

@media (max-width: 780px) {
  .section { padding: 4rem 0; }
  .section-compact { padding: 3.5rem 0; }
  .nav { min-height: 68px; }
  .brand img { width: 124px; }
  .brand-lockup { display: none; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 68px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 1rem;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links > a { padding: 0.8rem 0.9rem; }
  .nav-links > a:not(.button):hover { color: var(--teal-700); }
  .language-link { color: var(--teal-700); border-color: var(--line); }
  .language-picker { width: 100%; }
  .language-picker summary {
    justify-content: space-between;
    color: var(--teal-700);
    border-color: var(--line);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
  }
  .language-menu {
    position: static;
    min-width: 0;
    margin-top: 0.4rem;
    box-shadow: none;
  }
  .nav-links .button { color: var(--navy-950); }
  .hero { padding: 3.5rem 0 3rem; }
  h1 { font-size: clamp(2.55rem, 11vw, 3rem); line-height: 1.03; letter-spacing: -0.035em; }
  .hero h1 { max-width: 100%; font-size: clamp(2.55rem, 11vw, 3rem); line-height: 1.03; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { margin-bottom: 1.25rem; }
  .output-item { grid-template-columns: 76px minmax(0, 1fr); }
  .preview-note { max-width: 120px; }
  .signal-grid { grid-template-columns: 1fr; padding: 1.2rem 0; }
  .signal-item { padding: 0.7rem 0 0; border-left: 0; border-top: 1px solid rgba(5, 25, 30, 0.2); }
  .value-grid,
  .examples-grid,
  .secondary-grid,
  .boundary-grid,
  .footer-grid,
  .form-grid { grid-template-columns: 1fr; }
  .value-card:first-child { grid-column: auto; }
  .desk-note { align-items: flex-start; flex-direction: column; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .intake-layout { grid-template-columns: 1fr; padding-top: 2rem; }
  .intake-form { order: 1; }
  .intake-aside { order: 2; }
  .intake-aside { position: static; }
  .field-full { grid-column: auto; }
  .matrix-head,
  .matrix-row { grid-template-columns: 1fr 58px; }
  .matrix-head span:nth-child(2),
  .matrix-row span:nth-child(2) { display: none; }
  .service-card { min-height: 0; padding: 1.3rem; }
  .service-details summary {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
    color: var(--teal-700);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-weight: 780;
    list-style-position: inside;
  }
  .service-details[open] summary { margin-bottom: 1rem; }
  [data-compact-example] .example-preview,
  [data-compact-example] .example-value { display: none; }
  [data-compact-example] .example-brief {
    min-height: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  [data-compact-example] { gap: 0.75rem; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .button { width: 100%; }
  .deadline-note a,
  .footer-links a { display: inline-flex; min-height: 44px; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
