:root {
  --ink: #0a1d26;
  --ink-soft: #31464f;
  --navy: #082e4c;
  --navy-deep: #061e32;
  --blue: #0c6f9f;
  --teal: #00a895;
  --teal-dark: #007f72;
  --mint: #dff5f0;
  --ice: #eef7fa;
  --paper: #fbfcfb;
  --white: #ffffff;
  --line: #d7e2e5;
  --warning: #ffdf9d;
  --shadow: 0 22px 70px rgba(5, 34, 52, 0.11);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --max: 1120px;
  --gutter: clamp(20px, 4vw, 64px);
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --section-space: clamp(80px, 8.5vw, 124px);
  --section-space-lg: clamp(110px, 11vw, 170px);
  --measure: 68ch;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { transform: none; }
.container { width: min(var(--max), calc(100% - 2 * var(--gutter))); margin-inline: auto; }
.narrow { max-width: 790px; }
.section { padding: var(--section-space) 0; }
.section-sm { padding: clamp(56px, 6vw, 72px) 0; }
.section-ice { background: var(--ice); }
.section-dark { color: var(--white); background: var(--navy-deep); }
.section-dark p, .section-dark .eyebrow { color: #c7d9e1; }
.grid { display: grid; gap: clamp(18px, 2vw, 24px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(40px, 5.5vw, 72px); align-items: center; }
.stack { display: grid; gap: 22px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(251, 252, 251, .92);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 35px rgba(5, 34, 52, .06); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--blue));
  font-size: 20px;
  font-weight: 700;
}
.brand-word { color: var(--navy); font-size: 27px; font-weight: 500; letter-spacing: -.055em; }
.site-nav { display: flex; align-items: center; gap: clamp(3px, .6vw, 10px); }
.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  color: #28404a;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--teal-dark); background: var(--mint); }
.site-nav .nav-cta { margin-left: 8px; padding: 11px 16px; color: var(--white); background: var(--navy); }
.site-nav .nav-cta:hover { color: var(--white); background: var(--blue); }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; text-wrap: balance; }
h1 { max-width: 870px; margin-bottom: 26px; font-size: clamp(2.7rem, 5vw, 4.7rem); }
h2 { margin-bottom: 24px; font-size: clamp(2rem, 3.4vw, 3.45rem); }
h3 { margin-bottom: 12px; font-size: 1.38rem; }
.page-hero h1 { font-size: clamp(2.7rem, 4.6vw, 4.25rem); }
.lead { max-width: 760px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.7vw, 1.22rem); line-height: 1.65; }
.section-head { max-width: 820px; margin-bottom: clamp(40px, 5vw, 56px); }
.section-head p { color: var(--ink-soft); font-size: 1.15rem; }
.accent { color: var(--teal-dark); }
.text-link { color: var(--teal-dark); font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.text-link:hover { color: var(--blue); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 88px;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -240px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,149,.14), rgba(0,168,149,0) 68%);
}
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 62px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.9rem, 5vw, 4.8rem); }
.hero-copy .lead { max-width: 720px; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--teal-dark); }
.btn-primary:hover { background: #006d63; }
.btn-secondary { color: var(--navy); border-color: #a9bec6; background: transparent; }
.btn-secondary:hover { border-color: var(--navy); background: var(--white); }
.btn-light { color: var(--navy); background: var(--white); }
.btn-ghost-light { color: var(--white); border-color: #617a88; }
.trust-line { display: flex; align-items: center; gap: 12px; margin-top: 30px; color: #405760; font-size: .94rem; font-weight: 650; }
.trust-line::before { content: ""; width: 34px; height: 2px; background: var(--teal); }
.hero-visual {
  position: relative;
  min-height: 510px;
  padding: 28px;
  display: grid;
  align-content: center;
  overflow: hidden;
  border-radius: 32px;
  color: var(--white);
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 42px 42px;
}
.flow-card { position: relative; z-index: 1; padding: 23px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(6,30,50,.78); backdrop-filter: blur(10px); }
.flow-card + .flow-card { margin-top: 18px; }
.flow-label { display: flex; align-items: center; gap: 9px; color: #afd0d9; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.flow-label::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 6px rgba(0,168,149,.15); }
.flow-title { margin: 12px 0 0; font-size: 1.07rem; font-weight: 700; }
.flow-arrow { position: relative; z-index: 1; height: 36px; display: grid; place-items: center; color: var(--teal); font-size: 22px; }
.hero-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.principle { padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.66); }
.principle strong { display: block; color: var(--navy); font-size: .88rem; }
.principle span { display: block; margin-top: 3px; color: var(--ink-soft); font-size: .78rem; line-height: 1.45; }

.card {
  height: 100%;
  padding: clamp(24px, 2.7vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(5, 34, 52, .045);
}
.card p { margin-bottom: 0; color: var(--ink-soft); }
.card-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--navy);
  background: var(--mint);
  font-weight: 900;
}
.card-number { margin-bottom: 26px; color: var(--teal-dark); font-size: .82rem; font-weight: 850; letter-spacing: .11em; }
.card-link { display: inline-flex; margin-top: 24px; color: var(--teal-dark); font-weight: 800; text-decoration: none; }
.card-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.dark-card { border-color: #294454; color: var(--white); background: #0d334a; box-shadow: none; }
.dark-card p { color: #c9d9df; }
.dark-card .card-number { color: #64ddcd; }

.compare { display: grid; grid-template-columns: 1fr 56px 1fr; gap: 18px; align-items: stretch; }
.compare-panel { padding: clamp(24px, 3vw, 32px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.compare-panel.before { background: #f4f1ef; }
.compare-panel.after { border-color: #abdcd4; background: var(--mint); }
.compare-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; font-weight: 800; }
.process-chain { display: grid; gap: 11px; }
.process-item { position: relative; padding: 12px 14px 12px 40px; border-radius: 10px; background: rgba(255,255,255,.74); font-size: .92rem; }
.process-item::before { content: ""; position: absolute; left: 16px; top: 19px; width: 8px; height: 8px; border-radius: 50%; background: #82939a; }
.after .process-item::before { background: var(--teal-dark); }
.compare-arrow { display: grid; place-items: center; color: var(--teal-dark); font-size: 30px; }

.step-list { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border-radius: var(--radius); overflow: hidden; background: var(--line); }
.step { padding: clamp(26px, 3vw, 34px) clamp(22px, 2.5vw, 28px); background: var(--white); }
.step strong { display: block; margin-bottom: 14px; color: var(--teal-dark); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.step p { margin: 0; color: var(--ink-soft); font-size: .94rem; }
.offer-card { display: flex; flex-direction: column; }
.offer-card ul { padding-left: 19px; color: var(--ink-soft); }
.offer-card .card-link { margin-top: auto; padding-top: 16px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.pill { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #38505a; background: var(--white); font-size: .82rem; font-weight: 700; }

.product-panel { padding: clamp(32px, 6vw, 68px); border-radius: 32px; color: var(--white); background: linear-gradient(135deg, var(--navy-deep), #0a4964); box-shadow: var(--shadow); }
.product-panel .eyebrow { color: #6be3d3; }
.product-panel p { color: #c7dbe2; }
.modules { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 40px; }
.module { padding: 18px 15px; border: 1px solid rgba(255,255,255,.14); border-radius: 13px; background: rgba(255,255,255,.055); }
.module strong { display: block; color: #7ee6da; font-size: .88rem; }
.module span { display: block; margin-top: 6px; color: #c8dbe2; font-size: .78rem; line-height: 1.45; }

.photo-frame { position: relative; min-height: 500px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.photo-frame img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.photo-caption { position: absolute; inset: auto 20px 20px; padding: 16px 18px; border-radius: 13px; color: var(--white); background: rgba(6,30,50,.85); backdrop-filter: blur(12px); font-size: .86rem; }
.quote { padding: 26px 0 26px 28px; border-left: 4px solid var(--teal); color: var(--navy); font-size: 1.32rem; font-weight: 700; line-height: 1.45; }
.check-list { padding: 0; display: grid; gap: 13px; list-style: none; }
.check-list li { position: relative; padding-left: 31px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-dark); font-weight: 900; }
.warning-box { padding: 26px; border: 1px solid #e6c57f; border-radius: 16px; background: #fff8e9; }
.warning-box strong { color: #6f4b00; }

.case-study { display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--white); }
.case-image { min-height: 470px; }
.case-image img { width: 100%; height: 100%; object-fit: cover; }
.case-content { padding: clamp(34px, 5vw, 64px); }
.case-content .check-list { margin-top: 25px; }

.cta-band { padding: 80px 0; color: var(--white); background: var(--navy-deep); }
.cta-band h2 { max-width: 820px; }
.cta-band p { max-width: 730px; color: #c7d9e1; font-size: 1.12rem; }

.page-hero { position: relative; padding: clamp(76px, 8vw, 96px) 0 clamp(68px, 7vw, 84px); overflow: hidden; background: linear-gradient(180deg, var(--ice), var(--paper)); }
.page-hero .lead { max-width: 820px; }
.page-hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.page-hero-meta span { padding: 9px 13px; border: 1px solid #c7dade; border-radius: 999px; color: #29434d; background: rgba(255,255,255,.7); font-size: .84rem; font-weight: 700; }
.detail-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.detail-row { display: grid; grid-template-columns: 190px 1fr; gap: 30px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.detail-row strong { color: var(--navy); }
.detail-row p { margin: 0; color: var(--ink-soft); }
.timeline { display: grid; gap: 16px; }
.timeline-item { display: grid; grid-template-columns: 56px 1fr; gap: 20px; }
.timeline-number { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--teal-dark); font-weight: 900; }
.timeline-content { padding: 8px 0 28px; border-bottom: 1px solid var(--line); }
.timeline-content p { margin: 0; color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(42px, 6vw, 70px); align-items: start; }
.contact-card { padding: 32px; border-radius: var(--radius); color: var(--white); background: var(--navy-deep); }
.contact-card a { color: #7ee6da; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: #29414b; font-size: .87rem; font-weight: 750; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #b7c9ce;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
}
.field select { min-height: 49px; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #a43b35; box-shadow: 0 0 0 3px rgba(164, 59, 53, .12); }
.field textarea { min-height: 150px; resize: vertical; }
.field-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.form-note { margin: 0; color: var(--ink-soft); font-size: .78rem; }
.form-status { min-height: 1.5em; margin: 8px 0 0; color: var(--teal-dark); font-size: .9rem; font-weight: 700; }
.form-status[data-state="error"] { color: #a43b35; }
.form-status a { color: inherit; }
.contact-form button:disabled { cursor: wait; opacity: .68; transform: none; }

/* Conversational homepage */
.conversation-hero {
  min-height: calc(100vh - 82px);
  min-height: calc(100svh - 82px);
  padding: clamp(92px, 9vw, 118px) 0 clamp(84px, 8vw, 104px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 86% 12%, rgba(0,168,149,.12), transparent 28%),
    linear-gradient(180deg, var(--paper), #f7fbfa);
}
.conversation-hero-inner { max-width: 900px; }
.conversation-hero h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.4vw, 5.15rem);
}
.conversation-subline {
  max-width: 790px;
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.45vw, 2.2rem);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -.025em;
}
.conversation-hero .lead { max-width: 650px; }
.hero-trust {
  max-width: 760px;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(10, 29, 38, .13);
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 650;
  line-height: 1.55;
}
.quiet-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 4px;
  color: var(--ink-soft);
  font-weight: 720;
  text-decoration: none;
}
.quiet-link:hover { color: var(--teal-dark); }
.question-scene {
  padding: clamp(84px, 7vw, 112px) 0;
  display: grid;
  align-items: center;
}
.question-scene-tint { background: var(--ice); }
.question-inner {
  max-width: 960px;
  margin-inline: auto;
  padding-right: clamp(0px, 6vw, 96px);
}
.question-inner-right {
  margin-inline: auto;
  padding-right: 0;
  padding-left: clamp(0px, 6vw, 96px);
}
.question-number {
  margin-bottom: 30px;
  display: block;
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .14em;
}
.question-inner h2 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(2.25rem, 3.2vw, 3.35rem);
}
.question-inner p {
  max-width: 60ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.15rem;
}
@media (min-width: 861px) {
  .conversation-hero-inner,
  .question-inner {
    text-align: center;
  }
  .conversation-hero h1,
  .conversation-subline,
  .conversation-hero .lead,
  .hero-trust,
  .question-inner h2,
  .question-inner p {
    margin-inline: auto;
  }
  .conversation-hero .hero-actions {
    justify-content: center;
  }
  .question-inner,
  .question-inner-right {
    max-width: 900px;
    padding-inline: 0;
  }
}
.turning-point {
  padding: var(--section-space-lg) 0;
  color: var(--white);
  background: var(--navy-deep);
  text-align: center;
}
.narrow-center { max-width: 860px; text-align: center; }
.turning-point .eyebrow { color: #76dfd3; }
.turning-point h2 { margin-bottom: 26px; }
.turning-statement {
  margin-bottom: 0;
  color: #c6d8df;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.5;
}
.conversation-split {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(56px, 8vw, 96px);
  align-items: start;
}
.conversation-copy { max-width: 610px; padding-top: 45px; }
.conversation-copy > p:not(.lead) { color: var(--ink-soft); font-size: 1.05rem; }
.decision-section { padding: clamp(100px, 9vw, 138px) 0; }
.decision-head { max-width: 920px; margin-bottom: 64px; }
.decision-list { border-top: 1px solid #294654; }
.decision-row {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: baseline;
  border-bottom: 1px solid #294654;
}
.decision-row span { color: #6fe0d2; font-size: .8rem; font-weight: 850; letter-spacing: .12em; }
.decision-row p {
  max-width: 890px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 650;
  line-height: 1.42;
}
.decision-note { max-width: 720px; margin: 48px 0 0 70px; color: #bcd0d8 !important; }
.prompt-example { max-width: 1050px; }
.prompt-example > h2 { max-width: 940px; }
.simple-flow {
  margin: 58px 0 34px;
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr;
  align-items: center;
}
.simple-flow > div {
  min-height: 150px;
  padding: 26px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
}
.simple-flow span { margin-bottom: 8px; color: var(--teal-dark); font-size: .76rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.simple-flow strong { color: var(--navy); font-size: 1rem; line-height: 1.45; }
.simple-flow i { color: var(--teal-dark); font-size: 21px; font-style: normal; text-align: center; }
.prompt-answer { max-width: 760px; color: var(--ink-soft); font-size: 1.15rem; }
.integration-section { background: var(--paper); }
.integration-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.integration-path {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.integration-path > span {
  display: block;
  margin-bottom: 24px;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.integration-path ol {
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
  counter-reset: integration-step;
}
.integration-path li {
  position: relative;
  padding: 14px 0 14px 44px;
  border-bottom: 1px solid var(--line);
  counter-increment: integration-step;
}
.integration-path li:last-child { border-bottom: 0; }
.integration-path li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink-soft);
  background: var(--white);
  content: counter(integration-step);
  font-size: .74rem;
  font-weight: 800;
}
.integration-path-muted { color: var(--ink-soft); background: #f3f6f6; }
.integration-path-active { border-color: rgba(0, 168, 149, .3); background: var(--mint); }
.integration-path-active li::before { color: var(--white); background: var(--teal-dark); }
.case-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: start;
}
.case-feature-copy h2 { max-width: 820px; }
.case-detail { padding: 24px 0; border-top: 1px solid var(--line); }
.case-detail strong { display: block; margin-bottom: 8px; color: var(--navy); }
.case-detail p { margin: 0; color: var(--ink-soft); }
.case-status { margin: 6px 0 0; color: var(--ink-soft); font-size: .94rem; }
.case-principles {
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy-deep);
}
.case-principles .eyebrow { color: #76dfd3; }
.case-principles .check-list { margin-bottom: 30px; }
.case-principles .check-list li { color: #d7e6eb; }
.case-principles .check-list li::before { color: #76dfd3; }
.case-principles .btn { width: 100%; }
.human-control {
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid rgba(118, 223, 211, .3);
  border-radius: var(--radius-sm);
  background: rgba(0, 168, 149, .1);
}
.human-control span { display: block; margin-bottom: 8px; color: #76dfd3; font-size: .75rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.human-control strong { color: var(--white); line-height: 1.5; }
.experience-home { background: var(--white); }
.competency-cloud { margin: 30px 0 6px; display: flex; flex-wrap: wrap; gap: 9px; }
.competency-cloud span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--navy); background: var(--paper); font-size: .8rem; font-weight: 720; }
.career-section { border-block: 1px solid var(--line); background: var(--paper); }
.career-path { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.career-path span { padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--navy); background: var(--white); font-size: .88rem; font-weight: 750; }
.career-path i { color: var(--teal-dark); font-style: normal; }
.trust-conversation {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 100px;
  align-items: center;
}
.trust-photo { height: 520px; overflow: hidden; border-radius: 24px; }
.trust-photo img { width: 100%; height: 100%; object-fit: cover; }
.trust-conversation h2 { max-width: 720px; }
.trust-conversation p:not(.eyebrow) { max-width: 670px; }
.final-question {
  padding: var(--section-space-lg) 0;
  background:
    radial-gradient(circle at 50% 0, rgba(0,168,149,.13), transparent 38%),
    var(--paper);
}
.final-question h2 { max-width: 800px; margin-inline: auto; }
.final-question p:not(.eyebrow) { max-width: 720px; margin: 0 auto; color: var(--ink-soft); font-size: 1.1rem; }
.centered-actions { justify-content: center; }

.legal { padding: 78px 0 110px; }
.legal h1 { font-size: clamp(2.7rem, 5vw, 4.5rem); }
.legal h2 { margin-top: 46px; font-size: 1.65rem; }
.legal h3 { margin-top: 28px; font-size: 1.15rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal a { color: var(--teal-dark); }

.site-footer { padding: 62px 0 28px; color: #d4e0e4; background: #041723; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; }
.footer-brand p { max-width: 360px; color: #aebfc6; font-size: .92rem; }
.footer-title { margin-bottom: 14px; color: var(--white); font-size: .82rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #b8c8ce; font-size: .9rem; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { margin-top: 48px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #203641; color: #8fa5ae; font-size: .78rem; }

[data-reveal] { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .site-nav { gap: 2px; }
  .site-nav a { padding-inline: 8px; font-size: 13px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .modules { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .section { padding: clamp(72px, 10vw, 88px) 0; }
  .menu-button { display: grid; place-items: center; }
  .site-nav {
    position: fixed;
    inset: 82px 0 auto;
    height: calc(100dvh - 82px);
    padding: 26px var(--gutter);
    display: none;
    align-content: start;
    background: var(--paper);
    overflow-y: auto;
  }
  .site-nav[data-open="true"] { display: grid; }
  .site-nav a { min-height: 48px; padding: 13px 16px; display: flex; align-items: center; font-size: 1rem; }
  .site-nav .nav-cta { margin: 8px 0 0; }
  .hero-grid, .split, .contact-grid, .case-study { grid-template-columns: 1fr; }
  .split > .photo-frame:first-child { order: 2; }
  .hero { padding-top: 72px; }
  .hero-visual { min-height: 430px; }
  .hero-principles { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .step-list { grid-template-columns: repeat(2, 1fr); }
  .modules { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .compare-arrow { transform: rotate(90deg); }
  .case-content { order: 1; }
  .case-image { order: 2; }
  .case-image { min-height: 390px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .conversation-hero { min-height: auto; padding: 96px 0 104px; }
  .question-scene { padding: 80px 0; }
  .question-inner, .question-inner-right { margin-inline: auto; padding-inline: 0; }
  .turning-point { padding: 130px 0; }
  .conversation-split, .trust-conversation { grid-template-columns: 1fr; gap: 52px; }
  .integration-compare, .case-feature { grid-template-columns: 1fr; }
  .conversation-copy { padding-top: 0; }
  .simple-flow { grid-template-columns: 1fr; gap: 12px; }
  .simple-flow i { transform: rotate(90deg); }
  .career-path { display: grid; grid-template-columns: 1fr; }
  .career-path i { transform: rotate(90deg); text-align: center; }
  .trust-photo { width: min(430px, 100%); height: 480px; }
  .trust-photo { order: 2; }
}

@media (max-width: 580px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .hero { padding: 58px 0 64px; }
  h1, .hero-copy h1 { font-size: clamp(2.15rem, 10vw, 2.75rem); }
  h2 { font-size: clamp(1.85rem, 8.5vw, 2.3rem); }
  .page-hero h1 { font-size: clamp(2rem, 9vw, 2.4rem); }
  .hero-actions .btn, .button-row .btn { width: 100%; }
  .hero-visual { min-height: 400px; padding: 18px; border-radius: 22px; }
  .grid-2, .grid-3, .grid-4, .step-list, .modules, .contact-form { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .product-panel { border-radius: 22px; }
  .photo-frame { min-height: 390px; }
  .detail-row { grid-template-columns: 1fr; gap: 5px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { display: grid; }
  .conversation-hero { padding: 76px 0 86px; }
  .conversation-hero h1 { font-size: clamp(2.4rem, 11.5vw, 3.15rem); }
  .conversation-subline { font-size: 1.35rem; }
  .conversation-hero .hero-actions { display: grid; }
  .conversation-hero .quiet-link { justify-content: center; }
  .hero-trust { margin-top: 20px; }
  .question-scene { padding: 72px 0; }
  .question-inner h2 { font-size: clamp(1.95rem, 8.8vw, 2.4rem); }
  .turning-point, .final-question { padding: 110px 0; }
  .decision-section { padding: 100px 0; }
  .decision-row { grid-template-columns: 42px 1fr; }
  .decision-note { margin-left: 0; }
  .trust-photo { height: 410px; }
}

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