:root {
  --ink: #091526;
  --ink-soft: #14233a;
  --canvas: #f6f8fc;
  --canvas-soft: #edf2f9;
  --surface: #ffffff;
  --blue: #2f6fec;
  --blue-dark: #2458bd;
  --blue-soft: #dce8ff;
  --text: #101b2d;
  --muted: #5f6d82;
  --muted-dark: #9facbf;
  --line: rgba(9, 21, 38, 0.13);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 80px rgba(18, 44, 82, 0.14);
  --font: "DM Sans", "Avenir Next", sans-serif;
  --page: min(92vw, 1560px);
  --reading: 66ch;
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

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

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h1 {
  max-width: 15ch;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 4.4vw, 5rem);
  line-height: 1;
}

h1 em {
  display: block;
  color: var(--blue);
  font-style: normal;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 3.6vw, 4.2rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  line-height: 1.08;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 180ms var(--ease);
}

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

.scroll-progress {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid rgba(9, 21, 38, 0.08);
  background: rgba(246, 248, 252, 0.9);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav-shell {
  width: var(--page);
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: center;
}

.brand {
  justify-self: start;
}

.brand img,
.site-footer img {
  width: 138px;
  height: auto;
}

.main-nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.main-nav a {
  position: relative;
  color: #415068;
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 240ms var(--ease), transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.header-cta:hover {
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(47, 111, 236, 0.22);
  transform: translateY(-2px);
}

.section-shell,
.hero-shell,
.trust-strip,
.footer-shell {
  width: var(--page);
  margin-right: auto;
  margin-left: auto;
}

.section-space {
  padding-top: clamp(88px, 7vw, 124px);
  padding-bottom: clamp(96px, 8vw, 140px);
}

.hero {
  position: relative;
  padding-top: clamp(72px, 6vw, 108px);
  background:
    radial-gradient(circle at 82% 20%, rgba(47, 111, 236, 0.09), transparent 28%),
    var(--canvas);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
  gap: clamp(60px, 8vw, 150px);
  align-items: center;
}

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

.kicker,
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(47, 111, 236, 0.1);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: #4e5e75;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 240ms var(--ease), color 240ms var(--ease), border-color 240ms var(--ease), transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

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

.button:active,
.header-cta:active,
.outcome-link:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 36px rgba(47, 111, 236, 0.2);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 20px 46px rgba(47, 111, 236, 0.28);
}

.text-action {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 12px 4px;
  color: #314158;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.text-action span {
  transition: transform 240ms var(--ease);
}

.text-action:hover span {
  transform: translateY(4px);
}

.text-action-dark:hover span {
  transform: translate(4px, -4px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 28px 0 0;
  padding: 0;
  color: #728096;
  font-size: 0.78rem;
  list-style: none;
}

.hero-trust li {
  position: relative;
  padding-left: 16px;
}

.hero-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.hero-visual {
  --pointer-x: 0deg;
  --pointer-y: 0deg;
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(47, 111, 236, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: min(38vw, 620px);
  aspect-ratio: 1;
  animation: orbit-drift 12s ease-in-out infinite alternate;
}

.orbit-two {
  width: min(29vw, 460px);
  aspect-ratio: 1;
  border-style: dashed;
  animation: orbit-spin 34s linear infinite;
}

.journey-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 540px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 36px 90px rgba(18, 44, 82, 0.22);
  transform: rotateX(var(--pointer-y)) rotateY(var(--pointer-x));
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
  overflow: hidden;
}

.journey-panel::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 236, 0.34), transparent 68%);
  pointer-events: none;
}

.panel-bar {
  position: relative;
  z-index: 1;
  min-height: 72px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
  color: #dbe5f5;
  font-size: 0.76rem;
  font-weight: 600;
}

.panel-bar > div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #74a4ff;
  box-shadow: 0 0 0 7px rgba(116, 164, 255, 0.12);
  animation: live-pulse 2.2s ease-in-out infinite;
}

.panel-time {
  color: #8190a7;
  font-variant-numeric: tabular-nums;
}

.conversation {
  position: relative;
  z-index: 1;
  padding: 36px 30px 30px;
}

.message {
  width: 86%;
  padding: 18px 20px;
  border-radius: 18px;
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
}

.conversation.is-changing .message,
.conversation.is-changing .outcome-row {
  opacity: 0;
  transform: translateY(8px);
}

.message p {
  margin: 4px 0 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.message-label {
  color: #8998ae;
  font-size: 0.68rem;
  font-weight: 600;
}

.message-client {
  margin-left: auto;
  background: #1b2a42;
}

.message-business {
  border: 1px solid rgba(116, 164, 255, 0.26);
  background: rgba(47, 111, 236, 0.12);
}

.flow-connector {
  width: 1px;
  height: 34px;
  margin: 0 0 0 30px;
  background: linear-gradient(to bottom, rgba(116, 164, 255, 0.2), #74a4ff);
}

.flow-connector span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #74a4ff;
  transform: translate(-3px, 26px);
}

.message-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.message-options span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #dce7f8;
  font-size: 0.68rem;
}

.outcome-row {
  margin-top: 30px;
  padding-top: 24px;
  display: flex;
  gap: 14px;
  align-items: center;
  border-top: 1px solid var(--line-dark);
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
}

.outcome-icon {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  font-weight: 700;
}

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

.outcome-row strong {
  font-size: 0.82rem;
}

.outcome-row span {
  margin-top: 2px;
  color: #8998ae;
  font-size: 0.68rem;
}

.panel-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
}

.panel-metrics div {
  padding: 20px 26px;
}

.panel-metrics div + div {
  border-left: 1px solid var(--line-dark);
}

.panel-metrics span,
.panel-metrics strong {
  display: block;
}

.panel-metrics span {
  margin-bottom: 4px;
  color: #8190a7;
  font-size: 0.66rem;
}

.panel-metrics strong {
  color: #e9f0fb;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}

.trust-strip {
  margin-top: clamp(70px, 8vw, 120px);
  padding: 26px 0;
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip > span {
  color: #69778d;
  font-size: 0.78rem;
  font-weight: 500;
}

.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  margin: 0;
  padding: 0;
  color: #26364d;
  font-size: 0.82rem;
  font-weight: 600;
  list-style: none;
}

.problems {
  margin-top: clamp(72px, 7vw, 112px);
  background: var(--canvas-soft);
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 132px;
}

.sticky-copy h2 {
  max-width: 10ch;
}

.sticky-copy > p:last-child,
.section-heading > p:last-child,
.journey-copy > p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.problem-stack {
  display: grid;
  gap: 22px;
}

.problem-item {
  position: relative;
  min-height: 290px;
  padding: clamp(28px, 4vw, 54px);
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  border: 1px solid rgba(9, 21, 38, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.64);
}

.problem-item-wide {
  min-height: 340px;
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(18, 44, 82, 0.08);
}

.problem-item-offset {
  width: 88%;
  margin-left: auto;
}

.problem-number,
.outcome-index {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.problem-moment,
.outcome-tag {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-item h3 {
  max-width: 15ch;
}

.problem-item div > p:last-child {
  max-width: 55ch;
  margin-bottom: 0;
  color: var(--muted);
}

.problem-item blockquote {
  grid-column: 2;
  align-self: end;
  margin-bottom: 0;
  padding: 18px 20px;
  border-left: 2px solid var(--blue);
  background: var(--canvas-soft);
  color: #35455d;
  font-size: 0.9rem;
  font-style: normal;
}

.section-heading {
  max-width: 1120px;
  margin-bottom: clamp(56px, 6vw, 88px);
}

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

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

.outcome-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(46px, 5vw, 74px) 0;
  border-bottom: 1px solid var(--line);
}

.outcome-copy {
  max-width: 760px;
}

.outcome-copy h3 {
  max-width: 23ch;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
}

.outcome-copy > p:not(.outcome-tag) {
  max-width: 61ch;
  color: var(--muted);
}

.implementation-note {
  display: inline-block;
  margin-top: 14px;
  color: #708097;
  font-size: 0.76rem;
}

.outcome-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.outcome-link span {
  transition: transform 240ms var(--ease);
}

.outcome-link:hover span {
  transform: translate(4px, -4px);
}

.journey-section {
  position: relative;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 28%, rgba(47, 111, 236, 0.28), transparent 24%);
  background-size: 72px 72px, 72px 72px, auto;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
  pointer-events: none;
}

.journey-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(80px, 12vw, 190px);
  align-items: center;
}

.section-label-light {
  color: #8cb3ff;
}

.journey-copy h2 {
  max-width: 11ch;
}

.journey-copy > p:last-child {
  color: var(--muted-dark);
}

.journey-steps {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-steps::before {
  content: "";
  position: absolute;
  top: 44px;
  bottom: 44px;
  left: 25px;
  width: 1px;
  background: linear-gradient(to bottom, #74a4ff, rgba(116, 164, 255, 0.15));
}

.journey-steps li {
  position: relative;
  min-height: 142px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-dark);
}

.journey-steps li > span {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(116, 164, 255, 0.42);
  border-radius: 50%;
  background: var(--ink);
  color: #9fc0ff;
  font-size: 0.7rem;
  font-weight: 700;
}

.journey-steps strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.journey-steps p {
  max-width: 42ch;
  margin-bottom: 0;
  color: var(--muted-dark);
}

.case-study {
  background: var(--canvas-soft);
}

.case-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.case-window {
  border: 1px solid rgba(9, 21, 38, 0.12);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
}

.case-window:hover {
  box-shadow: 0 40px 100px rgba(18, 44, 82, 0.2);
  transform: rotate(0deg) translateY(-6px);
}

.window-bar {
  min-height: 48px;
  padding: 0 16px;
  display: flex;
  gap: 7px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.window-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8d0dc;
}

.window-bar p {
  margin: 0 0 0 10px;
  color: #7a879a;
  font-size: 0.68rem;
}

.case-window img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}

.case-copy h2 {
  max-width: 10ch;
}

.case-copy > p:not(.section-label) {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.case-principle {
  margin: 28px 0;
  padding: 22px 0 22px 24px;
  border-left: 2px solid var(--blue);
  color: #35455d !important;
  font-weight: 500;
}

.section-heading-narrow h2 {
  max-width: 11ch;
}

.method-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.method-line::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 25%;
  height: 2px;
  background: var(--blue);
}

.method-line li {
  min-height: 248px;
  padding: 34px clamp(22px, 3vw, 42px) 42px 0;
}

.method-line li + li {
  padding-left: clamp(22px, 3vw, 42px);
  border-left: 1px solid var(--line);
}

.method-line span,
.method-line strong {
  display: block;
}

.method-line span {
  margin-bottom: 48px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
}

.method-line strong {
  margin-bottom: 12px;
  font-size: 1.32rem;
  font-weight: 600;
}

.method-line p {
  max-width: 30ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.starting-points {
  margin-top: clamp(60px, 8vw, 120px);
  padding: clamp(34px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 120px);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
}

.starting-points h3 {
  max-width: 12ch;
}

.starting-points dl {
  margin-bottom: 0;
}

.starting-points dl div {
  padding: 18px 0;
  display: flex;
  gap: 24px;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
}

.starting-points dt {
  color: #b8c3d3;
}

.starting-points dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.questions {
  background: var(--canvas-soft);
}

.questions-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.questions-layout > div:first-child {
  position: sticky;
  top: 132px;
}

.questions-layout h2 {
  max-width: 10ch;
}

.question-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 54px;
}

.question-grid article {
  min-height: 184px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.question-grid h3 {
  max-width: 18ch;
  font-size: 1.45rem;
}

.question-grid p {
  max-width: 42ch;
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta {
  padding: clamp(36px, 5vw, 76px);
  background: var(--canvas-soft);
}

.final-shell {
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 160px) clamp(24px, 8vw, 130px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.18), transparent 25%),
    var(--blue);
  color: #fff;
  text-align: center;
}

.final-shell .section-label {
  justify-content: center;
}

.final-shell h2 {
  max-width: 13ch;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(3rem, 4.6vw, 5.2rem);
}

.final-shell > p:not(.section-label) {
  max-width: 650px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.final-actions {
  justify-content: center;
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  box-shadow: 0 16px 36px rgba(9, 21, 38, 0.18);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.button-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.final-shell small {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.site-footer {
  padding: 70px 0 32px;
  background: var(--ink);
  color: #aeb9c9;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
}

.site-footer img {
  filter: invert(1);
}

.site-footer div > p {
  margin: 18px 0 0;
  font-size: 0.8rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: start;
}

.site-footer nav a {
  font-size: 0.74rem;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer nav a:hover {
  color: #fff;
}

.copyright {
  grid-column: 1 / -1;
  margin: 22px 0 0 !important;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.7rem !important;
}

.button:focus-visible,
.header-cta:focus-visible,
.main-nav a:focus-visible,
.text-action:focus-visible,
.outcome-link:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid #76a4ff;
  outline-offset: 4px;
}

.has-motion [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.has-motion [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes orbit-drift {
  from { transform: translate(-12px, -8px) scale(0.98); }
  to { transform: translate(12px, 12px) scale(1.03); }
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(116, 164, 255, 0.1); }
  50% { box-shadow: 0 0 0 10px rgba(116, 164, 255, 0.02); }
}

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-shell,
  .problem-layout,
  .journey-layout,
  .case-shell,
  .questions-layout {
    grid-template-columns: 1fr;
  }

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

  h1 {
    max-width: 14ch;
  }

  .hero-visual {
    min-height: 520px;
  }

  .journey-panel {
    width: min(86vw, 620px);
  }

  .orbit-one {
    width: min(70vw, 650px);
  }

  .orbit-two {
    width: min(55vw, 500px);
  }

  .sticky-copy,
  .questions-layout > div:first-child {
    position: static;
  }

  .sticky-copy h2,
  .questions-layout h2,
  .journey-copy h2,
  .case-copy h2 {
    max-width: 14ch;
  }

  .problem-stack {
    grid-template-columns: 1fr 1fr;
  }

  .problem-item-wide {
    grid-column: 1 / -1;
  }

  .problem-item-offset {
    width: auto;
  }

  .case-window {
    max-width: 900px;
  }
}

@media (max-width: 900px) {
  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .outcome-link {
    grid-column: 2;
    justify-self: start;
  }

  .method-line {
    grid-template-columns: 1fr 1fr;
  }

  .method-line::before {
    width: 50%;
  }

  .method-line li:nth-child(3) {
    border-left: 0;
  }

  .method-line li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .starting-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --page: min(90vw, 560px);
  }

  html {
    scroll-padding-top: 78px;
  }

  .nav-shell {
    min-height: 68px;
    gap: 16px;
  }

  .brand img {
    width: 112px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.68rem;
  }

  .section-space {
    padding-top: 92px;
    padding-bottom: 112px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-shell {
    gap: 48px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 12.4vw, 3.4rem);
    line-height: 1;
  }

  h1 em {
    display: inline;
  }

  h2 {
    font-size: clamp(2.45rem, 11.5vw, 3.2rem);
    line-height: 1.02;
  }

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

  .kicker,
  .section-label {
    margin-bottom: 18px;
    font-size: 0.66rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

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

  .text-action {
    justify-content: center;
  }

  .hero-trust {
    display: grid;
    gap: 8px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .journey-panel {
    width: 100%;
    border-radius: 22px;
  }

  .conversation {
    padding: 28px 18px 24px;
  }

  .message {
    width: 92%;
    padding: 16px;
  }

  .message p {
    font-size: 0.84rem;
  }

  .message-options span {
    font-size: 0.62rem;
  }

  .panel-metrics div {
    padding: 16px 18px;
  }

  .trust-strip {
    margin-top: 52px;
    padding: 22px 0;
  }

  .trust-strip ul {
    display: grid;
    gap: 8px;
  }

  .problems {
    margin-top: 72px;
  }

  .problem-layout {
    gap: 48px;
  }

  .problem-stack {
    grid-template-columns: 1fr;
  }

  .problem-item,
  .problem-item-wide {
    min-height: auto;
    padding: 28px 22px;
    grid-template-columns: 34px 1fr;
  }

  .problem-item blockquote {
    padding: 16px;
  }

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

  .outcome-card {
    grid-template-columns: 34px 1fr;
    gap: 18px;
    padding: 52px 0;
  }

  .outcome-copy h3 {
    font-size: 2.1rem;
  }

  .outcome-link {
    white-space: normal;
  }

  .journey-layout {
    gap: 54px;
  }

  .journey-steps li {
    grid-template-columns: 44px 1fr;
    gap: 20px;
  }

  .journey-steps::before {
    left: 21px;
  }

  .journey-steps li > span {
    width: 44px;
    height: 44px;
  }

  .case-shell {
    gap: 54px;
  }

  .case-window {
    border-radius: 14px;
    transform: none;
  }

  .method-line {
    grid-template-columns: 1fr;
  }

  .method-line::before {
    width: 100%;
  }

  .method-line li,
  .method-line li + li {
    min-height: auto;
    padding: 28px 0 34px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .method-line li:first-child {
    border-top: 0;
  }

  .method-line span {
    margin-bottom: 28px;
  }

  .starting-points {
    padding: 34px 24px;
    border-radius: 22px;
  }

  .starting-points dl div {
    display: grid;
    gap: 4px;
  }

  .starting-points dd {
    text-align: left;
  }

  .questions-layout {
    gap: 48px;
  }

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

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

  .final-cta {
    padding: 18px;
  }

  .final-shell {
    padding: 72px 22px;
    border-radius: 24px;
  }

  .final-shell h2 {
    font-size: clamp(2.8rem, 13vw, 3.8rem);
  }

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

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

  .site-footer nav {
    display: grid;
  }

  .copyright {
    grid-column: 1;
  }
}

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

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

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