:root {
  --navy-950: #081d2c;
  --navy-900: #0c2b41;
  --navy-800: #123b58;
  --navy-700: #1c4b68;
  --teal-700: #06717c;
  --teal-600: #078491;
  --teal-100: #dff3f3;
  --coral-600: #d85f42;
  --coral-100: #ffede7;
  --ink: #12212d;
  --ink-muted: #5b6974;
  --canvas: #f5f8fa;
  --mist: #edf4f5;
  --surface: #ffffff;
  --line: #d8e2e7;
  --line-strong: #b8c8d0;
  --shadow-sm: 0 8px 24px rgba(8, 29, 44, 0.08);
  --shadow-lg: 0 24px 64px rgba(8, 29, 44, 0.18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --content: 1200px;
  --gutter: max(24px, calc((100vw - var(--content)) / 2));
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 5.5rem;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--teal-700);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #5fc3ca;
  outline-offset: 3px;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: Manrope, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 17ch;
  font-size: clamp(2.65rem, 5.2vw, 4.9rem);
}

h2 {
  max-width: 20ch;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
  max-width: 68ch;
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 226, 231, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav-wrap,
.site-footer-inner {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy-900);
  font-family: Manrope, Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.brand::before {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  border: 3px solid var(--teal-600);
  border-radius: 4px 9px 4px 4px;
  content: "";
}

.brand-logo-link {
  gap: 0;
}

.brand-logo-link::before {
  display: none;
}

.brand-logo {
  display: block;
  width: clamp(9.5rem, 12vw, 11rem);
  height: auto;
}

.brand-wordmark {
  gap: 0.25rem;
}

.brand-wordmark::before {
  display: none;
}

.brand-wordmark span:last-child {
  color: var(--teal-600);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.8rem;
  border-radius: 9px;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--mist);
  color: var(--navy-900);
}

.nav-toggle {
  min-width: 48px;
  min-height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--navy-900);
  font-weight: 700;
}

.nav-cta,
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.3rem;
  border: 1px solid var(--teal-600);
  border-radius: 11px;
  background: var(--teal-600);
  color: var(--surface);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(7, 132, 145, 0.2);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.site-nav .nav-cta {
  min-height: 44px;
  margin-left: 0.45rem;
  padding: 0.6rem 1rem;
  border-color: var(--teal-600);
  background: transparent;
  color: var(--teal-700);
  box-shadow: none;
}

.nav-cta:hover,
.button:hover {
  border-color: var(--teal-700);
  background: var(--teal-700);
  color: var(--surface);
  box-shadow: 0 10px 26px rgba(7, 113, 124, 0.24);
  transform: translateY(-1px);
}

.site-nav .nav-cta:hover {
  border-color: var(--teal-700);
  background: var(--teal-100);
  color: var(--navy-900);
  box-shadow: none;
  transform: none;
}

.button.secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--navy-900);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: var(--navy-800);
  background: var(--mist);
}

.site-main {
  width: 100%;
  overflow: clip;
}

.hero,
.band {
  display: grid;
  grid-template-columns:
    minmax(24px, 1fr)
    minmax(0, var(--content))
    minmax(24px, 1fr);
}

.hero > *,
.band > * {
  width: 100%;
  grid-column: 2;
}

.hero {
  position: relative;
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(26, 164, 174, 0.22), transparent 28rem),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: rgba(255, 255, 255, 0.82);
}

.hero::after {
  position: absolute;
  right: -7rem;
  bottom: -10rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero h1,
.hero h2,
.hero h3 {
  color: var(--surface);
}

.hero .eyebrow {
  color: #80d9de;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(600px, 1.2fr);
  grid-template-areas:
    "copy visual"
    "terms terms";
  column-gap: clamp(2.5rem, 4.5vw, 4.75rem);
  row-gap: clamp(1.75rem, 3vw, 2.5rem);
  align-items: stretch;
}

.hero-copy {
  max-width: 780px;
}

.hero-home {
  grid-template-columns:
    minmax(24px, 1fr)
    minmax(0, 1440px)
    minmax(24px, 1fr);
  padding-top: clamp(6rem, 9vw, 8.5rem);
  padding-bottom: clamp(5.75rem, 8.5vw, 8rem);
}

.hero-copy-stack {
  display: flex;
  grid-area: copy;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.75rem);
  justify-content: center;
}

.hero-heading {
  max-width: 760px;
  text-align: center;
}

.hero-heading h1 {
  max-width: 14.5ch;
  margin-inline: auto;
  font-size: clamp(3.25rem, 4vw, 4.75rem);
  font-weight: 800;
  line-height: 1.08;
}

.hero-heading .eyebrow {
  margin-bottom: 1.25rem;
}

.hero-support .lead {
  margin-top: 0;
  margin-bottom: 2.4rem;
  margin-inline: auto;
  text-align: center;
}

.hero-support .hero-actions {
  align-items: center;
  flex-direction: column;
  gap: 1.35rem;
}

.hero-support .hero-actions > div {
  width: 100%;
  text-align: center;
}

.lead {
  max-width: 58ch;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  color: var(--ink-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.55;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.hero-actions .button {
  min-width: 244px;
  min-height: 60px;
  padding: 0.95rem 1.6rem;
  font-size: 1.05rem;
}

.hero .text-link {
  color: var(--surface);
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.hero .text-link:hover {
  color: #a7eef1;
}

.action-note {
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.hero .action-note {
  max-width: none;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.hero-visual,
.work-visual,
.deliverables-visual,
.card-media {
  margin: 0;
}

.hero-visual {
  position: relative;
  width: 100%;
  grid-area: visual;
  align-self: start;
  padding: 0.75rem 0.75rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.hero-visual::before {
  position: absolute;
  top: -0.8rem;
  right: 1.5rem;
  width: 7rem;
  height: 1.7rem;
  border-radius: 3px;
  background: var(--coral-600);
  content: "";
  opacity: 0.9;
}

.hero-product-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 19px;
  background: var(--mist);
}

.hero-product-stage img {
  display: block;
  object-fit: cover;
}

.lead-area-visual {
  align-self: center;
}

.lead-area-visual .hero-product-stage {
  aspect-ratio: 16 / 11;
}

.lead-area-visual .hero-product-main {
  object-position: center;
}

.area-visual-label {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(8, 29, 44, 0.78);
  color: var(--surface);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-product-main {
  width: 100%;
  height: 100%;
}

.hero-product-piece {
  position: absolute;
  overflow: hidden;
  border: 6px solid var(--surface);
  border-radius: 9px;
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(8, 29, 44, 0.3);
}

.hero-product-interior {
  top: 6%;
  right: 3%;
  width: 34%;
  aspect-ratio: 4 / 3;
}

.hero-product-plan {
  right: 24%;
  bottom: 5%;
  width: 25%;
  aspect-ratio: 4 / 3;
  transform: rotate(-2deg);
}

.hero-product-plan img {
  width: 420%;
  max-width: none;
  height: auto;
  transform: translate(-40%, -16%);
}

.hero-product-leavebehind {
  right: 3%;
  bottom: 3%;
  width: 24%;
  aspect-ratio: 4 / 5;
  object-position: 100% 50%;
  transform: rotate(2deg);
}

.terms-bar {
  display: grid;
  grid-area: terms;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.term {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 1.25rem;
  text-align: left;
}

.term-icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(128, 217, 222, 0.48);
  border-radius: 50%;
  color: #80d9de;
}

.term-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.term-content {
  display: block;
}

.term + .term {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.term strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--surface);
  font-family: Manrope, Arial, sans-serif;
  font-size: 1rem;
}

.term span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  line-height: 1.45;
}

.term > .term-icon {
  display: inline-grid;
  align-items: center;
  justify-items: center;
  color: #80d9de;
  font-size: 1rem;
  line-height: 1;
}

.term > .term-icon svg {
  display: block;
}

.page-hero {
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.page-hero .hero-copy {
  max-width: 850px;
}

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
}

.band {
  position: relative;
  padding-top: clamp(4.5rem, 7vw, 7rem);
  padding-bottom: clamp(4.5rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.band-cool {
  background: var(--mist);
}

.band-alert {
  border-color: #f3c7ba;
  background: var(--coral-100);
}

.section-intro {
  max-width: 820px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-intro h2 + p,
.section-intro .eyebrow + h2 {
  margin-top: 1.2rem;
}

.section-intro .eyebrow + h2 {
  margin-top: 0;
}

.section-intro p {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.two-up,
.authority-grid,
.outcome-grid,
.friction-grid,
.package-grid,
.step-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.authority-block:last-child {
  grid-column: 1 / -1;
}

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

.friction-grid,
.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.authority-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-flow,
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.work-step-card,
.principle-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.work-step-card {
  border-top: 4px solid var(--teal-600);
}

.work-step-number,
.principle-number {
  display: block;
  margin-bottom: auto;
  color: var(--teal-700);
  font-family: Manrope, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.work-step-card strong,
.principle-card strong {
  display: block;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--navy-900);
  font-family: Manrope, Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.3;
}

.work-step-card p,
.principle-card p {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.trust-grid > div {
  min-height: 132px;
  padding: 1.4rem;
}

.trust-grid > div + div {
  border-left: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 0.55rem;
  color: var(--navy-900);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.35;
}

.trust-grid span {
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.scope-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.scope-panel h3 {
  color: var(--surface);
}

.scope-panel .eyebrow {
  color: #80d9de;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.16);
}

.scope-grid > div {
  min-height: 150px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
}

.scope-grid strong,
.scope-grid span {
  display: block;
}

.scope-grid strong {
  margin-bottom: 0.5rem;
  color: var(--surface);
  font-family: Manrope, Arial, sans-serif;
}

.scope-grid span {
  font-size: 0.88rem;
  line-height: 1.5;
}

.card,
.authority-block,
.outcome,
.package,
.friction-line {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 2rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover,
.card:focus-within {
  box-shadow: 0 18px 42px rgba(8, 29, 44, 0.13);
  transform: translateY(-3px);
}

.card-media {
  position: relative;
  margin: -2rem -2rem 1.6rem;
  overflow: hidden;
  background: var(--navy-900);
}

.card-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 400ms ease;
}

.card:hover .card-media img {
  transform: scale(1.025);
}

.card-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(8, 29, 44, 0.75));
  content: "";
  pointer-events: none;
}

.card-media figcaption {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  z-index: 1;
  color: var(--surface);
  font-size: 0.75rem;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p,
.authority-block p,
.outcome p,
.package p,
.friction-line p {
  color: var(--ink-muted);
}

.card a {
  align-self: flex-start;
  margin-top: auto;
}

.authority-block,
.package,
.friction-line {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.authority-block {
  overflow: hidden;
  padding: 0;
  border-top: 4px solid var(--teal-600);
}

.authority-media {
  aspect-ratio: 2 / 1;
  margin: 0;
  overflow: hidden;
  background: var(--navy-900);
}

.authority-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 400ms ease;
}

.authority-block:hover .authority-media img {
  transform: scale(1.025);
}

.authority-content {
  padding: clamp(1.35rem, 2.6vw, 1.8rem);
}

.authority-block strong,
.outcome strong,
.package strong,
.friction-line strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--navy-900);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.35;
}

.authority-block p:last-child,
.outcome p:last-child,
.package p:last-child,
.friction-line p:last-child {
  margin-bottom: 0;
}

.outcome {
  position: relative;
  min-height: 220px;
  padding: 1.5rem;
  overflow: hidden;
}

.outcome-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(23, 126, 137, 0.35);
  border-radius: 50%;
  background: rgba(23, 126, 137, 0.08);
  color: var(--teal-700);
}

.outcome-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.numbered-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.numbered-list li {
  position: relative;
  min-width: 0;
  min-height: 230px;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--canvas);
  counter-increment: item;
}

.band-cool .numbered-list li {
  background: var(--surface);
}

.numbered-list li::before {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  color: var(--teal-700);
  content: counter(item, decimal-leading-zero);
  font-family: Manrope, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.problem-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(23, 126, 137, 0.35);
  border-radius: 50%;
  background: rgba(23, 126, 137, 0.08);
  color: var(--teal-700);
}

.problem-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.section-cta {
  width: 100%;
  max-width: none;
  display: flex;
  justify-content: center;
  margin: 2.75rem auto 0;
}

.section-cta .button {
  min-width: 220px;
}

.numbered-list strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--navy-900);
  font-family: Manrope, Arial, sans-serif;
}

.numbered-list p {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.callout {
  max-width: 900px;
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--canvas);
}

.callout p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.callout p + p {
  margin-top: 1.05rem;
}

.callout.alert {
  border-color: #efb8a8;
  border-left-color: var(--coral-600);
  background: var(--coral-100);
}

.band-alert .callout.alert {
  background: var(--surface);
}

.step {
  min-height: 270px;
  padding: 1.8rem;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.73);
  counter-increment: step;
}

.step-grid {
  counter-reset: step;
}

.step::before {
  display: block;
  margin-bottom: 2.25rem;
  color: #72d5da;
  content: "0" counter(step);
  font-family: Manrope, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.step h3 {
  margin-bottom: 0.8rem;
  color: var(--surface);
}

.step p {
  margin-bottom: 0;
  color: inherit;
}

.step-grid + .final-actions,
.final-actions {
  margin-top: 2rem;
}

.deliverables-visual,
.work-visual {
  margin-top: 3rem;
}

.deliverables-visual {
  max-width: 980px;
}

.deliverables-visual img,
.work-visual img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.deliverables-visual figcaption,
.work-visual figcaption {
  margin-top: 0.7rem;
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.pricing-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.pricing-table th,
.pricing-table td {
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 700;
}

.pricing-table td {
  color: var(--ink-muted);
}

.pricing-table thead {
  background: var(--mist);
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.under-table {
  margin: 1.75rem 0 0;
  color: var(--ink-muted);
}

.pricing-terms {
  margin-top: 2rem;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 1.5rem;
}

.catalog-item {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--canvas);
}

.catalog-item h3 {
  margin-bottom: 0.8rem;
}

.catalog-item p {
  color: var(--ink-muted);
}

.catalog-item .price {
  margin: auto 0 0;
  padding-top: 1.5rem;
  color: var(--teal-700);
  font-family: Manrope, Arial, sans-serif;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.service-packages {
  margin-top: 1.5rem;
}

.service-packages .package {
  min-height: 190px;
  display: flex;
  flex-direction: column;
}

.story p {
  max-width: 74ch;
  font-size: 1.08rem;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.66fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.form-layout aside .friction-grid {
  grid-template-columns: 1fr;
}

.field {
  margin-bottom: 1.35rem;
}

.field label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

/* Application form: the multi-select block and its checkboxes. */
fieldset.field {
  min-width: 0;
  padding: 1.1rem 1.15rem 0.6rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
}

fieldset.field legend {
  padding: 0 0.4rem;
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 700;
}

fieldset.field label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

fieldset.field input[type="checkbox"] {
  width: 1.15rem;
  min-height: 0;
  height: 1.15rem;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  accent-color: var(--teal-600);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal-600);
}

.field-error,
.success-message {
  display: none;
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
}

.field-error {
  color: #9f3f29;
  font-weight: 700;
}

.form.is-error .field-error {
  display: block;
}

.form.is-error .field input[aria-invalid="true"] {
  border: 2px solid var(--coral-600);
}

.form-submit {
  width: 100%;
}

.turnstile-widget {
  margin: 1.5rem 0;
}

.form.is-submitting .form-submit {
  border-color: var(--navy-900);
  background: var(--navy-900);
  cursor: wait;
}

.form.is-submitting .form-submit::after {
  content: " ...";
}

.form.is-success .success-message {
  display: block;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--mist);
  color: var(--navy-900);
  font-weight: 700;
}

.form.is-success .form-fields,
.form.is-success .form-submit {
  display: none;
}

.cookie-notice {
  position: fixed;
  z-index: 20;
  right: 1.25rem;
  bottom: 1.25rem;
  width: min(31rem, calc(100% - 2.5rem));
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.cookie-notice p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cookie-notice a,
.cookie-settings {
  color: var(--teal-700);
  font-weight: 700;
}

.cookie-settings {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-notice-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-notice .button {
  min-width: 6.5rem;
  padding: 0.7rem 1rem;
}

.site-footer {
  border-top: 5px solid var(--teal-600);
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer-inner {
  padding: 4rem 0;
}

.site-footer .brand {
  color: var(--surface);
}

.footer-wordmark {
  gap: 0;
}

.footer-wordmark::before {
  display: none;
}

.footer-wordmark-text {
  display: inline-flex;
  gap: 0.25rem;
}

.footer-wordmark-text span:last-child {
  color: var(--teal-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.5fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.footer-title {
  margin-bottom: 0.7rem;
  color: var(--surface);
  font-family: Manrope, Arial, sans-serif;
  font-weight: 700;
}

.footer-copy {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.88rem;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.88rem;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.32);
  text-underline-offset: 0.2em;
}

.footer-legal-link:hover {
  color: var(--surface);
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "support"
      "visual"
      "terms";
  }

  .hero-copy-stack {
    display: contents;
  }

  .hero-copy {
    max-width: 860px;
  }

  .hero-heading {
    max-width: 980px;
    grid-area: heading;
  }

  .hero-support {
    max-width: 720px;
    grid-area: support;
  }

  .hero-support .lead {
    margin-top: 0;
  }

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

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

@media (max-width: 860px) {
  .nav-wrap {
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 24px;
    left: 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-cta {
    min-height: 48px;
    margin: 0;
    padding: 0 1rem;
  }

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

  .term:nth-child(3) {
    border-left: 0;
  }

  .term:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .authority-grid,
  .authority-grid-three,
  .work-flow,
  .principles-grid,
  .package-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

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

  .trust-grid > div:nth-child(3) {
    border-left: 0;
  }

  .trust-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .scope-grid > div {
    min-height: 0;
  }

  .numbered-list,
  .step-grid,
  .friction-grid {
    grid-template-columns: 1fr;
  }

  .numbered-list li,
  .step {
    min-height: 0;
  }

  .catalog {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 18px;
  }

  .nav-wrap,
  .site-footer-inner {
    width: calc(100% - 36px);
  }

  .site-nav {
    right: 18px;
    left: 18px;
  }

  .hero,
  .band {
    grid-template-columns: 18px minmax(0, 1fr) 18px;
  }

  .hero {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero-heading h1 {
    font-size: clamp(2.85rem, 11vw, 4rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .hero-layout {
    gap: 2rem;
  }

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

  .hero-actions > *,
  .hero-actions .button,
  .final-actions .button {
    width: 100%;
  }

  .hero .text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .hero-visual {
    padding: 0.4rem;
    border-radius: var(--radius-md);
  }

  .hero-visual::before {
    top: -0.55rem;
    right: 1rem;
    width: 5rem;
    height: 1.2rem;
  }

  .hero-product-stage {
    aspect-ratio: 4 / 3;
    border-radius: 13px;
  }

  .hero-product-piece {
    border-width: 4px;
    border-radius: 7px;
  }

  .two-up,
  .outcome-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div + div,
  .trust-grid > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .band {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .card {
    padding: 1.35rem;
  }

  .card-media {
    margin: -1.35rem -1.35rem 1.35rem;
  }

  .outcome {
    min-height: 0;
  }

  .numbered-list li,
  .authority-block,
  .package,
  .friction-line,
  .step,
  .catalog-item,
  .work-step-card,
  .principle-card {
    padding: 1.35rem;
  }

  .catalog-item,
  .work-step-card,
  .principle-card {
    min-height: 0;
  }

  .numbered-list li::before {
    top: 1.35rem;
    right: 1.35rem;
  }

  .step::before {
    margin-bottom: 1.35rem;
  }

  .pricing-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table {
    min-width: 0;
  }

  .pricing-table tr {
    margin-bottom: 0.8rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
  }

  .pricing-table th,
  .pricing-table td {
    padding: 1rem 1.1rem;
    border: 0;
  }

  .pricing-table th {
    padding-bottom: 0.2rem;
  }

  .pricing-table td {
    padding-top: 0.3rem;
  }

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

@media (max-width: 500px) {
  .terms-bar {
    grid-template-columns: 1fr;
  }

  .term + .term,
  .term:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .term {
    min-height: 0;
    padding: 1.15rem 1.25rem;
  }
}

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

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


/* ---------------------------------------------------------------------------
   Added 21 September 2026 with the lead generation rebuild.
   The hero lost its product image, the boundaries section has four cards
   instead of three, and the fit section needs two readable columns.
   --------------------------------------------------------------------------- */

.hero-textonly .hero-layout {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "copy"
    "terms";
  row-gap: clamp(2.5rem, 5vw, 4rem);
}

.hero-textonly .hero-heading,
.hero-textonly .hero-support {
  max-width: 46rem;
}

.hero-textonly .hero-support .hero-actions {
  align-items: flex-start;
}

.hero-textonly .hero-support .hero-actions > div {
  width: auto;
  text-align: left;
}

.hero-textonly {
  padding-bottom: clamp(3.5rem, 5vw, 5rem);
}

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

.fit-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2.5rem;
}

.fit-column {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.fit-column.fit-column-no {
  border-color: #efb8a8;
  background: var(--coral-100);
}

.fit-column .eyebrow {
  margin-bottom: 1.1rem;
}

.fit-column.fit-column-no .eyebrow {
  color: var(--coral-600);
}

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

.fit-list li {
  position: relative;
  margin-bottom: 0.95rem;
  padding-left: 1.8rem;
  font-size: 1.02rem;
  line-height: 1.55;
}

.fit-list li:last-child {
  margin-bottom: 0;
}

.fit-list li::before {
  position: absolute;
  top: 0.55rem;
  left: 0.4rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--teal-600);
  content: "";
}

.fit-column-no .fit-list li::before {
  background: var(--coral-600);
}

@media (max-width: 860px) {
  .principles-grid-four,
  .fit-columns {
    grid-template-columns: 1fr;
  }
}


/* ---------------------------------------------------------------------------
   "Why lead gen usually fails" problem section, added 21 September 2026.
   Five cards in one row on a laptop, then 3, 2 and 1 as the screen narrows.
   --------------------------------------------------------------------------- */

.fail-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0;
}

.fail-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid #f3cfc3;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.fail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.35rem;
  border-radius: 50%;
  background: var(--coral-100);
  color: var(--coral-600);
}

.fail-card .fail-icon svg {
  display: block;
  width: 1.65rem;
  min-width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fail-card strong {
  color: var(--navy-900);
  font-family: Manrope, Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.25;
}

.fail-card p {
  margin: 0;
  color: var(--ink-soft, #4a5a66);
  font-size: 0.95rem;
  line-height: 1.5;
}

.fail-close {
  max-width: 46rem;
  margin: 2.5rem auto 0;
  text-align: center;
  color: var(--navy-900);
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .fail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

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

@media (max-width: 480px) {
  .fail-grid { grid-template-columns: 1fr; }
}

/* FAQ accordion, added 21 September 2026 */
.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 900px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--navy-800);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--navy-900);
  color: #fff;
  font-family: Manrope, Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "";
  flex: none;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: -0.3rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  margin-top: 0.3rem;
  transform: rotate(-135deg);
}

.faq-item summary:hover {
  background: var(--navy-800);
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--teal-600);
  outline-offset: -3px;
}

.faq-item p {
  margin: 0;
  padding: 1.1rem 1.4rem 1.25rem;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .faq-item summary,
  .faq-item p {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .faq-item summary {
    font-size: 1rem;
  }
}
