:root {
  --canvas: #f3f8f9;
  --canvas-strong: #eaf2f4;
  --paper: #ffffff;
  --paper-blue: #f6fafb;
  --ink: #102a43;
  --ink-soft: #244a68;
  --body: #526875;
  --muted: #526875;
  --blue: #356f8b;
  --teal: #3b7f80;
  --brass: #81561f;
  --brass-dark: #674315;
  --line: #cbd8dd;
  --line-soft: #dfe8eb;
  --shadow-sm: 0 10px 30px rgba(16, 42, 67, 0.08);
  --shadow-md: 0 24px 70px rgba(16, 42, 67, 0.12);
  --shadow-screen: 0 34px 84px rgba(16, 42, 67, 0.18);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --page: min(1240px, calc(100vw - 48px));
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, sans-serif;
  --home-hero-shift: 0px;
  --home-ledger-tilt: -1.2deg;
  --site-ambient-shift: 0px;
}

/* Shared contact form */
body.contact-dialog-open {
  overflow: hidden;
}

.contact-dialog {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.contact-dialog.is-open {
  visibility: visible;
  opacity: 1;
}

.contact-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 27, 45, 0.76);
  backdrop-filter: blur(9px);
}

.contact-dialog__panel {
  position: relative;
  z-index: 1;
  width: min(610px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 38px 40px 40px;
  color: var(--body);
  background: #fbfdfd;
  border: 1px solid rgba(156, 181, 191, 0.55);
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(8, 27, 45, 0.3);
  transform: translateY(16px) scale(0.985);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-dialog.is-open .contact-dialog__panel {
  transform: translateY(0) scale(1);
}

.contact-dialog__close {
  position: absolute;
  top: 17px;
  right: 19px;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 50%;
  font: inherit;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.contact-dialog__close:hover,
.contact-dialog__close:focus-visible {
  color: var(--ink);
  background: rgba(53, 111, 139, 0.08);
}

.contact-dialog__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-dialog__intro h2 {
  margin: 0 0 7px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 2.65rem);
  line-height: 1;
}

.contact-dialog__intro p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-form {
  margin-top: 27px;
}

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

.contact-form label {
  display: block;
  min-width: 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 760;
}

.contact-form label > input,
.contact-form label > select,
.contact-form label > textarea {
  display: block;
  margin-top: 7px;
}

.contact-form__optional {
  color: var(--muted);
  font-weight: 500;
}

.contact-form__wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  min-height: 98px;
  resize: vertical;
  line-height: 1.45;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8da1b2;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(53, 111, 139, 0.12);
}

.contact-form__website {
  position: absolute !important;
  left: -10000px !important;
}

.contact-form__submit {
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.contact-form__turnstile {
  width: 100%;
  margin-top: 16px;
}

.contact-form__turnstile iframe {
  max-width: 100%;
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-form__status {
  min-height: 1.4em;
  margin: 10px 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: center;
}

.contact-form__status.is-success {
  color: #246b52;
}

.contact-form__status.is-error {
  color: #a13f35;
}

@media (max-width: 600px) {
  .contact-dialog {
    align-items: end;
    padding: 12px;
  }

  .contact-dialog__panel {
    max-height: calc(100dvh - 24px);
    padding: 29px 20px 24px;
    border-radius: 12px;
  }

  .contact-dialog__close {
    top: 10px;
    right: 11px;
  }

  .contact-dialog__intro h2 {
    font-size: 2.1rem;
  }

  .contact-form {
    margin-top: 20px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .contact-form__wide {
    grid-column: auto;
  }

  .contact-form input,
  .contact-form select {
    min-height: 44px;
  }
}

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

html {
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--body);
  background: var(--canvas);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: rgba(255, 255, 255, 0.25);
  content: "";
  pointer-events: none;
}

::selection {
  color: var(--paper);
  background: var(--blue);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

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

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

h1,
h2,
h3,
.brand,
.footer-brand,
.ledger-toolbar strong {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 20ch;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6vw, 5.6rem);
  line-height: 1.01;
  text-wrap: pretty;
}

h2 {
  max-width: 20ch;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.06;
  text-wrap: pretty;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  line-height: 1.18;
}

p {
  margin-bottom: 1.15em;
}

strong {
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 90;
  height: 2px;
  background: transparent;
}

.site-progress span {
  display: block;
  width: calc(var(--home-progress, 0) * 100%);
  height: 100%;
  background: var(--brass);
  transition: width 80ms linear;
}

.site-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-ambient::before {
  position: absolute;
  top: 2vh;
  right: -2vw;
  width: min(1500px, 100vw);
  height: min(900px, 62vw);
  background: url("assets/clearwater-motion-field.jpg") center / contain no-repeat;
  content: "";
  opacity: 0.58;
  transform: translate3d(0, var(--site-ambient-shift), 0) rotate(-3deg);
  animation: ambient-drift 22s ease-in-out infinite alternate;
  will-change: transform;
}

.site-ambient__field {
  position: absolute;
  display: block;
  border: 1px solid rgba(53, 111, 139, 0.12);
  border-radius: 50%;
  opacity: 0.65;
  animation: float-field 17s ease-in-out infinite alternate;
}

.site-ambient__field--one {
  top: 16vh;
  left: -170px;
  width: 430px;
  height: 430px;
}

.site-ambient__field--two {
  top: 48vh;
  right: 4vw;
  width: 220px;
  height: 220px;
  animation-delay: -7s;
  animation-duration: 21s;
}

.site-ambient__field--three {
  right: 35vw;
  bottom: -240px;
  width: 560px;
  height: 560px;
  animation-delay: -12s;
  animation-duration: 27s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(203, 216, 221, 0.82);
  background: rgba(243, 248, 249, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner,
.page-inner {
  width: var(--page);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 28px;
}

.brand {
  margin-right: auto;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  text-decoration: none;
}

.site-nav ul,
.footer-list,
.plain-list,
.included-list,
.article-list,
.principles-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--brass);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  min-width: 64px;
  min-height: 44px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  color: var(--paper);
  background: var(--brass);
  border: 1px solid var(--brass);
  border-radius: var(--radius-sm);
  box-shadow: 0 5px 0 rgba(117, 80, 30, 0.16);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--brass-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(117, 80, 30, 0.18);
}

.button:focus-visible,
.menu-toggle:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(53, 111, 139, 0.4);
  outline-offset: 4px;
}

.button--ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.button--ghost:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.site-main {
  position: relative;
  z-index: 1;
  overflow: clip;
}

.section {
  position: relative;
  padding: clamp(88px, 10vw, 144px) 0;
}

.section + .section {
  border-top: 1px solid rgba(203, 216, 221, 0.55);
}

.section:nth-of-type(3n + 2) {
  background: rgba(234, 242, 244, 0.46);
}

.panel:first-child {
  padding-top: clamp(100px, 12vw, 176px);
  padding-bottom: clamp(86px, 10vw, 132px);
}

.panel:first-child::after {
  position: absolute;
  right: 8vw;
  bottom: 28px;
  width: min(540px, 42vw);
  height: 118px;
  background: url("assets/clearwater-motion-field.jpg") 52% 58% / 720px auto no-repeat;
  content: "";
  opacity: 0.18;
  pointer-events: none;
}

.section-kicker,
.card-kicker,
.ledger-label,
.agent-system__label {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.25;
  text-transform: uppercase;
}

.lede {
  max-width: 720px;
  color: var(--body);
  font-size: clamp(1.06rem, 1.4vw, 1.24rem);
  line-height: 1.65;
}

.muted {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 58px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -38px;
}

.section-heading .lede {
  margin-bottom: 4px;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.98fr);
  align-items: center;
  gap: clamp(52px, 7vw, 104px);
}

.home-hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding-top: clamp(72px, 9vw, 124px);
  background: transparent;
}

.home-hero .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.98fr);
}

.home-hero h1 {
  max-width: 17ch;
  font-size: clamp(3.7rem, 5.4vw, 5.9rem);
  transform: translateY(var(--home-hero-shift));
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.hero-copy > .lede {
  max-width: 660px;
}

.page-pricing .split-copy h1 {
  max-width: 18ch;
  font-size: clamp(3.2rem, 4.6vw, 4.7rem);
  text-wrap: wrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 38px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.hero-points > div {
  min-width: 0;
  padding: 18px 22px 18px 0;
  border-bottom: 1px solid var(--line);
}

.hero-points > div:nth-child(odd) {
  padding-right: 26px;
  border-right: 1px solid var(--line);
}

.hero-points > div:nth-child(even) {
  padding-left: 26px;
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  margin-bottom: 5px;
  font-size: 0.92rem;
}

.hero-points span {
  color: var(--body);
  font-size: 0.8rem;
  line-height: 1.52;
}

.operating-tape {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border: 0;
}

.operating-tape__track {
  display: flex;
  width: max-content;
  animation: tape 30s linear infinite;
}

.operating-tape span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 32px;
  color: #d9e8ec;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operating-tape span::after {
  width: 22px;
  height: 1px;
  margin-left: 32px;
  background: rgba(255, 255, 255, 0.34);
  content: "";
}

.product-stage {
  position: relative;
  min-width: 0;
  padding: 18px;
  background: #dfe9eb;
  border: 1px solid #b8c8ce;
  border-radius: 22px;
  box-shadow: var(--shadow-screen);
  isolation: isolate;
}

.product-stage::before {
  position: absolute;
  inset: 8px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  content: "";
}

.product-stage__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 20px;
  color: #f5fbfc;
  background: var(--ink);
  border-radius: 10px 10px 4px 4px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-stage__meta span:last-child {
  color: #b9dbe0;
  text-align: right;
}

.product-stage--hero {
  transform: translateY(calc(var(--home-hero-shift) * -0.3)) rotate(var(--home-ledger-tilt));
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-stage--hero.will-assemble .product-stage__meta,
.product-stage--hero.will-assemble .ledger-frame__topbar,
.product-stage--hero.will-assemble .ledger-frame__nav,
.product-stage--hero.will-assemble .ledger-toolbar,
.product-stage--hero.will-assemble .voice-call-meta,
.product-stage--hero.will-assemble .voice-line,
.product-stage--hero.will-assemble .voice-outcome {
  opacity: 0;
  transform: translateY(12px);
}

.product-stage--hero.is-assembled .product-stage__meta,
.product-stage--hero.is-assembled .ledger-frame__topbar,
.product-stage--hero.is-assembled .ledger-frame__nav,
.product-stage--hero.is-assembled .ledger-toolbar,
.product-stage--hero.is-assembled .voice-call-meta,
.product-stage--hero.is-assembled .voice-line,
.product-stage--hero.is-assembled .voice-outcome {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-stage--hero.is-assembled .ledger-frame__topbar { transition-delay: 80ms; }
.product-stage--hero.is-assembled .ledger-frame__nav { transition-delay: 160ms; }
.product-stage--hero.is-assembled .ledger-toolbar { transition-delay: 240ms; }
.product-stage--hero.is-assembled .voice-call-meta { transition-delay: 320ms; }
.product-stage--hero.is-assembled .voice-line:nth-child(1) { transition-delay: 400ms; }
.product-stage--hero.is-assembled .voice-line:nth-child(2) { transition-delay: 500ms; }
.product-stage--hero.is-assembled .voice-line:nth-child(3) { transition-delay: 600ms; }
.product-stage--hero.is-assembled .voice-outcome { transition-delay: 700ms; }

.product-stage--wide {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.product-stage--compact {
  max-width: 680px;
  justify-self: end;
}

.ledger-frame {
  overflow: hidden;
  color: var(--body);
  background: var(--paper);
  border: 1px solid #bdcbd0;
  border-radius: 4px 4px 12px 12px;
}

.ledger-frame__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px;
  color: var(--ink);
  background: #edf3f4;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
}

.ledger-frame__brand {
  color: var(--ink);
  font-weight: 780;
}

.ledger-frame__period {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.ledger-frame__body {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 440px;
}

.ledger-frame__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 12px;
  background: #f1f5f5;
  border-right: 1px solid var(--line);
}

.ledger-frame__nav span {
  padding: 9px 10px;
  color: var(--muted);
  border-left: 2px solid transparent;
  font-size: 0.72rem;
}

.ledger-frame__nav .is-active {
  color: var(--ink);
  background: #e1ecee;
  border-left-color: var(--blue);
  font-weight: 750;
}

.ledger-frame__workspace {
  min-width: 0;
  padding: 24px;
}

.ledger-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.ledger-toolbar .ledger-label {
  margin-bottom: 2px;
}

.ledger-toolbar strong {
  display: block;
  max-width: 16ch;
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  line-height: 1.04;
}

.ledger-action {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
}

.ledger-action--live {
  color: var(--paper);
  background: var(--blue);
  border-color: var(--blue);
}

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

.voice-call-meta > div {
  min-width: 0;
  padding: 12px 14px;
}

.voice-call-meta > div + div {
  border-left: 1px solid var(--line);
}

.voice-call-meta span,
.scope-summary span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.voice-call-meta strong,
.scope-summary strong {
  display: block;
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
}

.voice-transcript {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  background: var(--paper-blue);
  border: 1px solid var(--line-soft);
}

.voice-line {
  width: min(88%, 480px);
  padding: 11px 13px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.voice-line--customer {
  justify-self: end;
  background: #e8f0f2;
}

.voice-line span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.voice-line p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.48;
}

.voice-outcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 12px 14px;
  background: #e3eef0;
  border-left: 3px solid var(--blue);
}

.voice-outcome strong {
  display: block;
  font-size: 0.8rem;
}

.voice-outcome__status {
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 760;
  text-align: right;
}

.agent-system__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  column-gap: 72px;
  margin-bottom: 56px;
}

.agent-system__intro .section-kicker {
  grid-column: 1 / -1;
}

.agent-system__intro h2 {
  margin-bottom: 0;
}

.agent-system__intro .lede {
  margin-bottom: 3px;
}

.agent-system__workspace {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.agent-system__context,
.agent-system__flow {
  padding: clamp(30px, 4vw, 54px);
}

.agent-system__context {
  background: #e6eff1;
  border-right: 1px solid var(--line);
}

.agent-system__context dl,
.workflow-console__activity dl {
  margin: 26px 0;
}

.agent-system__context dl div,
.workflow-console__activity dl div {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  padding: 9px 0;
  border-bottom: 1px solid rgba(53, 111, 139, 0.18);
}

dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
}

dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 720;
  font-variant-numeric: tabular-nums;
}

.agent-system__context > p {
  margin: 0;
  font-size: 0.9rem;
}

.agent-system__flow-head,
.agent-system__result,
.agent-system__launch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.agent-system__flow-head strong {
  display: block;
  max-width: 30ch;
  color: var(--ink);
}

.agent-system__live {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 780;
}

.conversation-sequence {
  display: grid;
  gap: 0;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  counter-reset: conversation;
}

.conversation-sequence li {
  position: relative;
  padding: 18px 18px 18px 58px;
  border-top: 1px solid var(--line-soft);
  counter-increment: conversation;
}

.conversation-sequence li::before {
  position: absolute;
  top: 20px;
  left: 4px;
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 800;
  content: "0" counter(conversation);
}

.conversation-sequence span {
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversation-sequence p {
  margin: 4px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.4;
}

.agent-system__result {
  padding: 18px;
  background: var(--ink);
}

.agent-system__result strong,
.agent-system__result p,
.agent-system__result > span {
  color: var(--paper);
}

.agent-system__result .agent-system__label {
  color: #b9dbe0;
}

.agent-system__result p {
  margin: 2px 0 0;
  font-size: 0.72rem;
  opacity: 0.76;
}

.agent-system__result > span {
  font-size: 0.7rem;
  font-weight: 780;
  text-align: right;
}

.agent-system__capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.agent-system__capability {
  min-width: 0;
  padding: 26px;
  background: rgba(255, 255, 255, 0.42);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.agent-system__capability > span,
.control-strip article > span {
  display: block;
  margin-bottom: 26px;
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.agent-system__capability strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.22;
}

.agent-system__capability p {
  margin: 0;
  font-size: 0.82rem;
}

.agent-system__launch {
  margin-top: 30px;
  padding: 30px 34px;
  background: #e5eef0;
  border: 1px solid var(--line);
}

.agent-system__launch h3 {
  max-width: 22ch;
  margin: 0;
}

.agent-system__launch > p {
  max-width: 440px;
  margin: 0;
  font-size: 0.88rem;
}

.density-grid,
.grid-3,
.platform-grid,
.thesis-grid,
.principles-grid {
  display: grid;
  gap: 20px;
}

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

.density-item,
.card,
.thesis-item,
.signal-item {
  min-width: 0;
  padding: clamp(28px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.density-item {
  min-height: 270px;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.density-item:hover,
.card:hover,
.article-list > li:hover {
  z-index: 1;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.density-item h3 {
  max-width: 26ch;
}

.density-item p,
.card p {
  max-width: 54ch;
  margin-bottom: 0;
}

.how-it-works-timeline-section {
  background: rgba(255, 255, 255, 0.58);
}

.process-ledger {
  border-top: 1px solid var(--ink-soft);
}

.process-entry {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(160px, auto);
  align-items: start;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-entry__number,
.process-entry__output {
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.process-entry h3,
.process-entry p {
  margin-bottom: 4px;
}

.process-entry__output {
  color: var(--blue);
  text-align: right;
}

.cta-stack {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 38px;
  padding: 28px 30px;
  background: #e4eef0;
  border: 1px solid var(--line);
}

.cta-stack p {
  margin: 0;
}

.product-showcase {
  display: grid;
  gap: 48px;
}

.product-showcase__header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 70px;
}

.product-showcase__header h2 {
  margin-bottom: 0;
}

.product-showcase__header > p {
  margin: 0 0 5px;
}

.ledger-frame--workflow .ledger-frame__body {
  min-height: 510px;
}

.workflow-console {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.5fr);
  gap: 18px;
}

.workflow-console__stages {
  border: 1px solid var(--line);
}

.console-row {
  display: grid;
  grid-template-columns: minmax(145px, 0.72fr) minmax(250px, 1.28fr) 84px;
  align-items: center;
  min-height: 58px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.78rem;
}

.console-row--head {
  min-height: 38px;
  color: var(--muted);
  background: #eef4f5;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-row b {
  display: inline-block;
  width: 26px;
  color: var(--brass);
  font-size: 0.68rem;
}

.is-numeric {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.workflow-console__activity {
  padding: 22px;
  background: #e6eff1;
  border: 1px solid var(--line);
}

.workflow-console__activity > p {
  font-size: 0.8rem;
}

.workflow-console__activity dl div {
  grid-template-columns: 72px minmax(0, 1fr);
}

.ownership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--paper);
  border: 1px solid var(--line);
}

.ownership-panel {
  min-width: 0;
  padding: clamp(30px, 4vw, 52px);
}

.ownership-panel + .ownership-panel {
  background: #e9f1f2;
  border-left: 1px solid var(--line);
}

.plain-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
}

.plain-list li:last-child {
  border-bottom: 0;
}

.plain-list strong,
.plain-list span {
  display: block;
}

.plain-list strong {
  margin-bottom: 4px;
  color: var(--ink);
}

.plain-list span {
  color: var(--body);
  font-size: 0.86rem;
}

.control-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.control-strip article {
  min-width: 0;
  padding: 24px;
}

.control-strip article + article {
  border-left: 1px solid var(--line);
}

.control-strip article > span {
  margin-bottom: 16px;
}

.control-strip strong {
  display: block;
  margin-bottom: 7px;
  font-size: 0.88rem;
}

.control-strip p {
  margin: 0;
  font-size: 0.76rem;
}

.section--split {
  background: #e6eff1 !important;
}

.section--split .split-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
}

.split-copy h2 {
  max-width: 18ch;
}

.implementation-list {
  border-top: 1px solid var(--ink-soft);
}

.implementation-list article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 26px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(36, 74, 104, 0.25);
}

.implementation-list article > span {
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.implementation-list h3,
.implementation-list p {
  margin-bottom: 4px;
}

.implementation-list p {
  font-size: 0.88rem;
}

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

.card {
  min-height: 300px;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.card--premium:nth-child(2) {
  background: #e8f1f2;
}

.commercial-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 70px;
  margin-top: 110px;
}

.commercial-detail__intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.commercial-detail__intro h2 {
  max-width: 15ch;
}

.commercial-detail__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink-soft);
}

.detail-column {
  padding: 30px;
}

.detail-column + .detail-column {
  border-left: 1px solid var(--line);
}

.included-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  margin-top: 90px;
  padding: 48px;
  background: var(--ink);
}

.included-band h2,
.included-band .section-kicker,
.included-band li {
  color: var(--paper);
}

.included-band .section-kicker {
  opacity: 0.72;
}

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

.included-list li {
  padding: 14px 18px 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
}

.scope-sheet {
  border: 1px solid var(--line);
}

.scope-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) 52px;
  align-items: center;
  min-height: 66px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.77rem;
}

.scope-row--head {
  min-height: 38px;
  color: var(--muted);
  background: #edf3f4;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scope-row strong,
.scope-row small {
  display: block;
}

.scope-row small {
  color: var(--muted);
  line-height: 1.35;
}

.scope-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
  background: #e5eef0;
  border: 1px solid var(--line);
}

.scope-summary > div {
  min-width: 0;
  padding: 12px 14px;
}

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

.scope-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.thesis-grid {
  grid-template-columns: 1.1fr repeat(2, minmax(0, 0.95fr));
}

.thesis-item:first-child {
  background: #e2ecee;
}

.principles-grid {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 68px;
}

.principles-grid__intro h2 {
  font-size: clamp(2.15rem, 3.2vw, 3.25rem);
  text-wrap: wrap;
}

.principles-list {
  counter-reset: principle;
  border-top: 1px solid var(--ink-soft);
}

.principles-list li {
  position: relative;
  padding: 22px 0 22px 66px;
  border-bottom: 1px solid var(--line);
  counter-increment: principle;
}

.principles-list li::before {
  position: absolute;
  top: 25px;
  left: 0;
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 820;
  content: "0" counter(principle);
}

.principles-list strong,
.principles-list span {
  display: block;
}

.principles-list span {
  margin-top: 4px;
  font-size: 0.86rem;
}

.faq {
  border-top: 1px solid var(--ink-soft);
}

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

.faq summary {
  padding: 22px 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  max-width: 700px;
  padding-bottom: 18px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
  padding: clamp(36px, 4.5vw, 56px);
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow-md);
}

.cta-band h2,
.cta-band p,
.cta-band .section-kicker {
  color: var(--paper);
}

.cta-band h2 {
  max-width: 24ch;
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  line-height: 0.98;
}

.cta-band .lede {
  max-width: 62ch;
  margin-bottom: 0;
  opacity: 0.78;
}

.article-list--editorial {
  border-top: 1px solid var(--ink-soft);
}

.article-list > li {
  display: block;
  padding: 0;
  border-bottom: 1px solid var(--line);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.article-list > li > a {
  display: grid;
  grid-template-columns: 170px minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  align-items: start;
  gap: 38px;
  padding: 30px 24px;
  text-decoration: none;
}

.article-list__meta {
  color: var(--blue);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-list__title {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.18;
  text-decoration: none;
}

.article-list__summary {
  display: block;
  margin: 0;
  font-size: 0.9rem;
}

.platform-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 78px;
}

.signal-list {
  display: grid;
  gap: 14px;
}

.signal-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  padding: 26px;
}

.signal-item > span {
  color: var(--brass);
  font-size: 0.7rem;
  font-weight: 820;
}

.signal-item p {
  margin: 4px 0 0;
  font-size: 0.84rem;
}

.legal-layout {
  display: block;
}

.legal-article {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 88px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.page-article .legal-article {
  width: min(960px, 100%);
}

.legal-article h1 {
  max-width: 24ch;
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.3vw, 5rem);
  line-height: 1.02;
}

.legal-article h2 {
  max-width: 30ch;
  margin-top: 2.1em;
  margin-bottom: 0.55em;
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.12;
}

.legal-article h3 {
  margin-top: 1.8em;
}

.legal-article p,
.legal-article li {
  color: #405966;
  font-size: 1rem;
  line-height: 1.78;
}

.legal-article ul,
.legal-article ol {
  padding-left: 1.25rem;
}

.legal-article li {
  margin-bottom: 0.55rem;
  padding-left: 0.35rem;
}

.legal-article a {
  color: var(--blue);
}

.article-note,
.legal-note {
  margin: 34px 0;
  padding: 24px 26px;
  color: var(--ink-soft);
  background: #e4eef0;
  border-left: 3px solid var(--blue);
}

.article-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
}

.article-checklist li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.footer {
  position: relative;
  z-index: 2;
  color: var(--body);
  background: #e5eef0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  padding: 32px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 3px;
  font-size: 1.28rem;
}

.footer-grid .muted {
  margin: 0;
  font-size: 0.84rem;
}

.footer-list {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 8px 24px;
}

.footer-list a,
.footer-bottom a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
}

.reveal,
.site-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms ease var(--reveal-delay, var(--site-reveal-delay, 0s)),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, var(--site-reveal-delay, 0s));
}

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

@keyframes ambient-drift {
  from { transform: translate3d(-2%, var(--site-ambient-shift), 0) rotate(-4deg) scale(0.98); }
  to { transform: translate3d(3%, calc(var(--site-ambient-shift) + 30px), 0) rotate(1deg) scale(1.03); }
}

@keyframes float-field {
  from { transform: translate3d(0, -12px, 0) scale(0.97); }
  to { transform: translate3d(18px, 18px, 0) scale(1.04); }
}

@keyframes tape {
  to { transform: translateX(-50%); }
}

@media (max-width: 1120px) {
  :root {
    --page: min(100% - 40px, 1080px);
  }

  .home-hero .hero-grid,
  .hero-grid,
  .split-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: 44px;
  }

  .home-hero h1 {
    font-size: clamp(3.55rem, 6.2vw, 5.25rem);
  }

  .agent-system__capabilities,
  .control-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .control-strip article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .control-strip article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .article-list > li > a {
    grid-template-columns: 135px minmax(250px, 0.9fr) minmax(280px, 1.1fr);
    gap: 24px;
  }
}

@media (max-width: 960px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(3.2rem, 9vw, 5rem);
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header .header-inner > .button {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    padding: 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 12px 8px;
  }

  .site-nav a::after {
    bottom: 4px;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero .hero-grid,
  .hero-grid,
  .split-grid,
  .section--split .split-grid,
  .section-heading,
  .agent-system__intro,
  .commercial-detail,
  .platform-grid,
  .principles-grid,
  .product-showcase__header {
    grid-template-columns: 1fr;
  }

  .home-hero h1 {
    max-width: 18ch;
    font-size: clamp(3.7rem, 9.2vw, 5.2rem);
  }

  .section-heading,
  .agent-system__intro,
  .product-showcase__header {
    gap: 18px;
  }

  .section-heading .section-kicker,
  .agent-system__intro .section-kicker {
    grid-column: auto;
    margin-bottom: 0;
  }

  .hero-visual,
  .product-stage--compact {
    width: min(760px, 100%);
    margin: 10px auto 0;
    justify-self: center;
  }

  .agent-system__workspace {
    grid-template-columns: 1fr;
  }

  .agent-system__context {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .agent-system__launch {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .workflow-console {
    grid-template-columns: 1fr;
  }

  .commercial-detail {
    gap: 36px;
    margin-top: 80px;
  }

  .commercial-detail__intro {
    position: static;
  }

  .article-list > li > a {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .article-list__summary {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100% - 28px);
  }

  body {
    font-size: 15.5px;
  }

  h1,
  .home-hero h1 {
    max-width: none;
    font-size: clamp(2.85rem, 13vw, 4.1rem);
    line-height: 1;
  }

  h2 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }

  .section {
    padding: 76px 0;
  }

  .panel:first-child {
    padding-top: 82px;
  }

  .site-ambient::before {
    top: 2vh;
    right: -35vw;
    width: 140vw;
    height: 110vw;
    opacity: 0.18;
  }

  .hero-points,
  .density-grid,
  .grid-3,
  .agent-system__capabilities,
  .ownership-grid,
  .control-strip,
  .commercial-detail__columns,
  .included-band,
  .thesis-grid,
  .article-checklist {
    grid-template-columns: 1fr;
  }

  .hero-points > div,
  .hero-points > div:nth-child(odd),
  .hero-points > div:nth-child(even) {
    padding: 16px 0;
    border-right: 0;
  }

  .hero-points span {
    font-size: 0.86rem;
  }

  .product-stage {
    padding: 10px;
    border-radius: 16px;
  }

  .product-stage__meta {
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.56rem;
  }

  .ledger-frame__topbar {
    padding: 0 12px;
    font-size: 0.66rem;
  }

  .ledger-frame__body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ledger-frame__nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ledger-frame__nav span {
    padding: 7px 4px;
    overflow: hidden;
    border-bottom: 2px solid transparent;
    border-left: 0;
    font-size: 0.6rem;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ledger-frame__nav .is-active {
    border-bottom-color: var(--blue);
    border-left: 0;
  }

  .ledger-frame__workspace {
    padding: 14px;
  }

  .ledger-toolbar strong {
    font-size: 1.35rem;
  }

  .voice-call-meta > div {
    padding: 10px 8px;
  }

  .voice-call-meta span {
    font-size: 0.54rem;
  }

  .voice-call-meta strong {
    font-size: 0.75rem;
  }

  .voice-line {
    width: 96%;
  }

  .voice-outcome,
  .agent-system__flow-head,
  .agent-system__result,
  .cta-stack {
    align-items: flex-start;
    flex-direction: column;
  }

  .agent-system__context,
  .agent-system__flow {
    padding: 26px 20px;
  }

  .agent-system__capability,
  .control-strip article {
    padding: 24px 20px;
  }

  .control-strip article + article,
  .control-strip article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-entry {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .process-entry__output {
    grid-column: 2;
    text-align: left;
  }

  .console-row {
    grid-template-columns: minmax(110px, 0.9fr) minmax(160px, 1.1fr) 54px;
    padding: 9px;
    font-size: 0.66rem;
  }

  .ledger-frame--workflow .ledger-frame__workspace {
    overflow-x: auto;
  }

  .workflow-console__stages {
    min-width: 520px;
  }

  .ownership-panel + .ownership-panel,
  .detail-column + .detail-column {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .included-band {
    gap: 24px;
    padding: 30px 24px;
  }

  .included-list {
    grid-template-columns: 1fr;
  }

  .scope-row {
    padding: 9px;
    font-size: 0.68rem;
  }

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

  .scope-summary > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .article-list > li > a {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 8px;
  }

  .article-list__summary {
    grid-column: auto;
  }

  .article-list__title {
    font-size: 1.42rem;
  }

  .legal-article {
    padding: 34px 22px;
  }

  .legal-article h1 {
    font-size: clamp(2.75rem, 12.5vw, 4rem);
  }

  .cta-band {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

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

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

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

  .reveal,
  .site-reveal,
  .product-stage--hero.will-assemble * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Full-site premium system: distinct evidence scenes, shared rhythm */
:root {
  --section-space: clamp(84px, 8vw, 124px);
  --section-space-tight: clamp(64px, 6.5vw, 96px);
  --evidence-axis: -1.35deg;
  --evidence-border: rgba(156, 181, 191, 0.86);
  --evidence-shadow: 0 22px 54px rgba(16, 42, 67, 0.13);
}

body:not(.page-home) .site-ambient::before {
  display: block;
  top: -6vh;
  right: -16vw;
  width: min(1500px, 112vw);
  height: min(920px, 74vw);
  opacity: 0.2;
  transform: translate3d(0, var(--site-ambient-shift), 0) rotate(-4deg);
  animation: interior-field-drift 26s ease-in-out infinite alternate;
}

.section {
  padding: var(--section-space) 0;
}

.section + .section {
  border-top-color: rgba(156, 181, 191, 0.24);
}

.section:nth-of-type(3n + 2) {
  background: transparent;
}

.interior-hero.panel:first-child {
  min-height: min(810px, calc(100vh - 76px));
  padding-top: clamp(96px, 8.5vw, 132px);
  padding-bottom: clamp(78px, 7vw, 108px);
  overflow: hidden;
}

.interior-hero.panel:first-child::after {
  display: none;
}

.interior-hero__grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(590px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
}

.interior-hero__copy {
  position: relative;
  z-index: 3;
}

.interior-hero__copy h1 {
  max-width: 13.5ch;
  margin-bottom: 25px;
  font-size: clamp(3.75rem, 5.25vw, 5.25rem);
  line-height: 1.005;
  letter-spacing: -0.038em;
}

.interior-hero__copy .lede {
  max-width: 610px;
}

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

.hero-facts > div {
  min-width: 0;
  padding: 17px 15px 0;
  border-left: 1px solid var(--line);
}

.hero-facts > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts dt,
.hero-facts dd {
  display: block;
}

.hero-facts dt {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 0.64rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-facts dd {
  font-size: 0.75rem;
  line-height: 1.45;
}

.evidence-scene {
  position: relative;
  min-width: 0;
  min-height: 610px;
  isolation: isolate;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.evidence-scene::before {
  position: absolute;
  inset: 3% -12% -2% 4%;
  z-index: -2;
  background: url("assets/clearwater-motion-field.jpg") center / 112% auto no-repeat;
  content: "";
  opacity: 0.42;
  transform: translate3d(0, var(--scene-field-shift, 0px), -40px);
  animation: evidence-field 20s ease-in-out infinite alternate;
}

.evidence-scene::after {
  position: absolute;
  right: -4%;
  bottom: 8%;
  left: 5%;
  z-index: -1;
  height: 1px;
  background: rgba(53, 111, 139, 0.17);
  box-shadow:
    0 -14px 0 rgba(53, 111, 139, 0.08),
    0 -28px 0 rgba(53, 111, 139, 0.045);
  content: "";
}

.evidence-card {
  position: absolute;
  min-width: 0;
  overflow: hidden;
  color: var(--body);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--evidence-border);
  border-radius: 9px;
  box-shadow: var(--evidence-shadow);
  transform: rotate(var(--evidence-axis)) translateZ(var(--evidence-depth, 0));
  transform-origin: center;
  backface-visibility: hidden;
  transition:
    opacity 650ms ease var(--evidence-delay, 0ms),
    transform 940ms cubic-bezier(0.16, 1, 0.3, 1) var(--evidence-delay, 0ms),
    box-shadow 350ms ease;
}

.evidence-card--blue {
  background: rgba(231, 241, 244, 0.98);
}

.evidence-card--navy {
  color: #d9e9ee;
  background: var(--ink);
  border-color: rgba(16, 42, 67, 0.94);
  box-shadow: 0 28px 64px rgba(16, 42, 67, 0.22);
}

.evidence-card--navy strong {
  color: #fff;
}

.evidence-card--navy .evidence-label,
.evidence-card--navy .evidence-state,
.evidence-card--navy span {
  color: #b9d8e0;
}

.evidence-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.evidence-card--navy .evidence-card__head {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.evidence-label,
.evidence-state {
  display: block;
  color: var(--blue);
  font-size: 0.63rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.evidence-state {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.evidence-scene.will-assemble .evidence-card,
.evidence-scene.will-assemble .pricing-scene__note {
  opacity: 0;
  transform: rotate(var(--evidence-axis)) translate3d(42px, -22px, 120px);
}

.evidence-scene.is-assembled .evidence-card {
  opacity: 1;
  transform: rotate(var(--evidence-axis)) translate3d(0, 0, var(--evidence-depth, 0));
}

.evidence-scene.is-assembled .pricing-scene__note {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (hover: hover) and (pointer: fine) {
  .evidence-scene:hover .evidence-card {
    box-shadow: 0 28px 70px rgba(16, 42, 67, 0.17);
  }
}

/* How it works: report to conversation progression */
.workflow-scene__report {
  --evidence-delay: 80ms;
  --evidence-depth: 56px;
  top: 18px;
  left: 0;
  z-index: 4;
  width: 56%;
  padding: 20px;
}

.report-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px 78px;
  align-items: center;
  gap: 10px;
  min-height: 43px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
}

.report-row--head {
  min-height: 34px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.report-row span:nth-child(n + 2),
.report-row strong:last-child {
  text-align: right;
}

.workflow-scene__policy {
  --evidence-delay: 220ms;
  --evidence-depth: 42px;
  top: 28px;
  right: 0;
  z-index: 3;
  width: 39%;
  padding: 20px 22px;
}

.workflow-scene__policy > div {
  padding: 13px 0;
  border-bottom: 1px solid rgba(53, 111, 139, 0.16);
}

.workflow-scene__policy > div:last-child {
  border-bottom: 0;
}

.workflow-scene__policy strong,
.workflow-scene__policy span {
  display: block;
}

.workflow-scene__policy strong {
  margin-bottom: 3px;
  font-size: 0.78rem;
}

.workflow-scene__policy div span {
  font-size: 0.66rem;
}

.workflow-scene__call {
  --evidence-delay: 380ms;
  --evidence-depth: 26px;
  top: 296px;
  left: 0;
  z-index: 2;
  width: 69%;
  padding: 20px 22px 18px;
}

.scene-dialogue {
  padding-top: 5px;
}

.scene-dialogue p {
  margin: 0;
  padding: 11px 12px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.72rem;
  line-height: 1.5;
}

.scene-dialogue p:last-child {
  border-bottom: 0;
}

.scene-dialogue p span {
  display: block;
  margin-bottom: 3px;
  color: var(--blue);
  font-size: 0.55rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scene-dialogue__customer {
  background: #eef4f6;
}

.workflow-scene__result {
  --evidence-delay: 540ms;
  --evidence-depth: 10px;
  top: 296px;
  right: 0;
  bottom: auto;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  width: 27%;
  padding: 20px 22px;
}

.workflow-scene__result > div + div {
  margin-top: 14px;
  padding-top: 14px;
  padding-left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 0;
}

.workflow-scene__result strong,
.workflow-scene__result span {
  display: block;
}

.workflow-scene__result strong {
  margin: 5px 0 3px;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.2;
}

.workflow-scene__result div span {
  font-size: 0.62rem;
}

/* Pricing: a compact proposal deck */
.pricing-scene__profile {
  --evidence-delay: 80ms;
  --evidence-depth: 52px;
  top: 8px;
  left: 0;
  z-index: 4;
  width: 91%;
  padding: 22px;
}

.pricing-scene__title {
  display: block;
  max-width: 18ch;
  margin: 18px 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1.1;
}

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

.pricing-scene__metrics > div {
  min-width: 0;
  padding: 14px 12px 0;
  border-left: 1px solid var(--line);
}

.pricing-scene__metrics > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.pricing-scene__metrics span,
.pricing-scene__metrics strong {
  display: block;
}

.pricing-scene__metrics span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-scene__metrics strong {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 1.18rem;
  font-variant-numeric: tabular-nums;
}

.pricing-scene__coverage {
  --evidence-delay: 240ms;
  --evidence-depth: 34px;
  top: 270px;
  left: 0;
  z-index: 3;
  width: 64%;
  padding: 20px 22px;
}

.coverage-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 43px;
  border-bottom: 1px solid rgba(53, 111, 139, 0.16);
  font-size: 0.69rem;
}

.coverage-row strong {
  color: var(--blue);
  font-size: 0.63rem;
  text-transform: uppercase;
}

.pricing-scene__terms {
  --evidence-delay: 400ms;
  --evidence-depth: 18px;
  top: 270px;
  right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  width: 31%;
  padding: 20px 22px;
}

.pricing-scene__terms > div {
  min-width: 0;
}

.pricing-scene__terms > div + div {
  margin-top: 15px;
  padding-top: 15px;
  padding-left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 0;
}

.pricing-scene__terms span,
.pricing-scene__terms strong {
  display: block;
}

.pricing-scene__terms span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-scene__terms strong {
  margin-top: 6px;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.22;
}

.pricing-scene__note {
  --evidence-delay: 560ms;
  position: absolute;
  top: 520px;
  bottom: auto;
  left: 0;
  z-index: 3;
  width: 32%;
  padding: 14px 16px;
  background: rgba(244, 248, 249, 0.94);
  border-top: 1px solid rgba(156, 181, 191, 0.42);
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.06);
  backdrop-filter: blur(7px);
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 600ms ease var(--evidence-delay),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--evidence-delay);
}

.pricing-scene__note span,
.pricing-scene__note strong {
  display: block;
}

.pricing-scene__note span {
  margin-bottom: 4px;
  color: var(--brass);
  font-size: 0.6rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-scene__note strong {
  font-size: 0.72rem;
  line-height: 1.45;
}

/* About: conversation, interpretation, then handoff */
.about-scene__conversation {
  --evidence-delay: 80ms;
  --evidence-depth: 48px;
  top: 24px;
  left: 0;
  z-index: 3;
  width: 90%;
  padding: 21px 22px 18px;
}

.about-scene__interpretation {
  --evidence-delay: 260ms;
  --evidence-depth: 28px;
  top: 290px;
  right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 78%;
  padding: 20px 22px;
}

.about-scene__interpretation > .evidence-label {
  grid-column: 1 / -1;
  margin-bottom: 11px;
}

.about-scene__interpretation > div {
  min-width: 0;
  padding-left: 16px;
  border-left: 1px solid rgba(53, 111, 139, 0.18);
}

.about-scene__interpretation > div:first-of-type {
  padding-left: 0;
  border-left: 0;
}

.about-scene__interpretation span,
.about-scene__interpretation strong {
  display: block;
}

.about-scene__interpretation div span {
  color: var(--blue);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-scene__interpretation strong {
  margin-top: 5px;
  font-size: 0.72rem;
  line-height: 1.35;
}

.about-scene__handoff {
  --evidence-delay: 460ms;
  --evidence-depth: 12px;
  top: 452px;
  left: 8%;
  z-index: 1;
  width: 70%;
  padding: 22px 24px;
}

.about-scene__handoff > strong {
  display: block;
  max-width: 29ch;
  margin: 17px 0 5px;
  font-family: var(--display);
  font-size: 1.28rem;
  line-height: 1.18;
}

.about-scene__handoff > p {
  margin: 0;
  color: #c8dce2;
  font-size: 0.68rem;
}

/* Lower-page compositions */
.how-it-works-timeline-section {
  background: rgba(255, 255, 255, 0.44);
}

.how-it-works-timeline-section .timeline-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 78px;
}

.process-ledger {
  border-top-color: var(--ink);
}

.process-entry {
  grid-template-columns: 56px minmax(0, 1fr) 150px;
  padding: 25px 0;
}

.product-showcase-section {
  background: #edf4f6 !important;
}

.outcome-ledger {
  margin-top: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.outcome-ledger__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
  background: var(--ink);
}

.outcome-ledger__head strong,
.outcome-ledger__head span {
  display: block;
  color: #fff;
}

.outcome-ledger__head .evidence-label {
  margin-bottom: 4px;
  color: #b9d8e0;
}

.outcome-ledger__head > span {
  color: #c3dce3;
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
}

.outcome-ledger__rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 28px 30px;
  border-bottom: 1px solid var(--line);
}

.outcome-ledger__rail span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--rail-size);
  min-width: 165px;
  padding: 8px 12px;
  color: var(--ink-soft);
  background: #dcebee;
  border-left: 2px solid var(--blue);
  font-size: 0.72rem;
}

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

.outcome-ledger__records article {
  min-width: 0;
  padding: 28px 30px;
}

.outcome-ledger__records article + article {
  border-left: 1px solid var(--line);
}

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

.outcome-ledger__records span {
  color: var(--brass);
  font-size: 0.61rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.outcome-ledger__records strong {
  margin: 9px 0 5px;
  font-family: var(--display);
  font-size: 1.2rem;
}

.outcome-ledger__records p {
  margin: 0;
  font-size: 0.76rem;
}

.commercial-sequence {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(52px, 7vw, 104px);
}

.commercial-sequence__intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.commercial-sequence__intro h2 {
  max-width: 13ch;
}

.commercial-sequence__steps {
  border-top: 1px solid var(--ink);
}

.commercial-sequence__steps article {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 22px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.commercial-sequence__steps article > span {
  padding-top: 3px;
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.commercial-sequence__steps .card-kicker {
  margin-bottom: 5px;
}

.commercial-sequence__steps h3 {
  margin-bottom: 7px;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
}

.commercial-sequence__steps p:last-child {
  max-width: 58ch;
  margin-bottom: 0;
}

.company-thesis {
  background: rgba(255, 255, 255, 0.42) !important;
}

.about-category-heading {
  margin-top: clamp(64px, 7vw, 96px);
}

.about-principles {
  margin-top: clamp(72px, 8vw, 112px);
  padding-top: clamp(54px, 6vw, 78px);
  border-top: 1px solid var(--line);
}

.founder-note {
  margin: clamp(48px, 6vw, 72px) 0 0;
  padding: 28px 30px;
  color: var(--ink-soft);
  background: #d7e7ea;
  border: 1px solid rgba(94, 140, 155, 0.28);
  border-left: 4px solid var(--brass);
  box-shadow: 0 18px 42px rgba(16, 42, 67, 0.08);
}

.founder-note p:first-child {
  margin-bottom: 8px;
}

.founder-note strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.2rem;
}

.about-cta {
  width: min(900px, 100%);
  margin-top: 24px;
  padding: 18px 22px;
}

.about-cta .lede {
  max-width: 54ch;
  font-size: 1rem;
  line-height: 1.55;
}

.company-thesis__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(56px, 8vw, 118px);
}

.belief-ledger {
  border-top: 1px solid var(--ink);
}

.belief-ledger article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.belief-ledger article > span {
  color: var(--brass);
  font-size: 0.7rem;
  font-weight: 820;
}

.belief-ledger strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 1.25rem;
}

.belief-ledger p {
  max-width: 56ch;
  margin: 0;
  font-size: 0.84rem;
}

/* Resources: editorial evidence rather than product UI */
.resources-hero {
  display: grid;
  grid-template-columns: minmax(410px, 0.94fr) minmax(500px, 1.06fr);
  align-items: center;
  gap: clamp(56px, 8vw, 118px);
}

.resources-hero__copy h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(3.75rem, 5.25vw, 5.2rem);
  line-height: 1.01;
  letter-spacing: -0.038em;
}

.featured-note {
  position: relative;
  min-height: 440px;
  padding: clamp(34px, 4vw, 52px);
  overflow: hidden;
  color: var(--body);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transform: rotate(-0.8deg);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms ease;
}

.featured-note::before {
  position: absolute;
  right: -22%;
  bottom: -4%;
  width: 95%;
  height: 58%;
  background: url("assets/clearwater-motion-field.jpg") center / cover no-repeat;
  content: "";
  opacity: 0.34;
}

.featured-note:hover {
  box-shadow: 0 32px 78px rgba(16, 42, 67, 0.16);
  transform: rotate(-0.3deg) translateY(-4px);
}

.featured-note__eyebrow,
.featured-note__link {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-note > strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 15ch;
  margin: 25px 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.featured-note > p {
  position: relative;
  z-index: 1;
  max-width: 49ch;
  font-size: 0.88rem;
}

.featured-note__record {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.featured-note__record span {
  padding: 12px 9px;
  color: var(--ink-soft);
  border-left: 1px solid var(--line);
  font-size: 0.58rem;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.featured-note__record span:first-child {
  border-left: 0;
}

.featured-note__link {
  color: var(--brass);
}

.library-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 44px;
}

.library-heading h2,
.library-heading p {
  margin-bottom: 0;
}

.library-heading > p {
  max-width: 55ch;
  font-size: 0.9rem;
}

.article-list__meta small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.article-list > li {
  background: transparent;
}

.article-list > li > a {
  padding-top: 34px;
  padding-bottom: 34px;
}

.article-list > li:hover {
  background: rgba(255, 255, 255, 0.66);
  box-shadow: none;
  transform: translateX(5px);
}

/* Article and legal reading templates */
.page-article .panel:first-child,
.page-legal .panel:first-child {
  padding-top: clamp(80px, 8vw, 116px);
}

.article-layout--with-toc {
  display: grid;
  grid-template-columns: 210px minmax(0, 820px);
  align-items: start;
  justify-content: center;
  gap: clamp(42px, 6vw, 88px);
}

.article-toc {
  position: sticky;
  top: 112px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.article-toc > span {
  display: block;
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 0.64rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-toc a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
  text-decoration: none;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--ink);
}

.page-article .legal-article {
  width: 100%;
  margin: 0;
  padding: clamp(42px, 6vw, 76px);
  box-shadow: 0 18px 54px rgba(16, 42, 67, 0.08);
}

.article-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
  padding-bottom: 16px;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
  font-size: 0.65rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-article .legal-article h1 {
  max-width: 17ch;
  font-size: clamp(3rem, 4.8vw, 4.55rem);
}

.page-article .legal-article > p:first-of-type {
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.65;
}

.page-article .legal-article h2 {
  scroll-margin-top: 110px;
}

.article-related {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  margin-top: 22px;
  padding: 30px 34px;
  color: #dbe9ed;
  background: var(--ink);
}

.article-related span,
.article-related strong {
  display: block;
}

.article-related span {
  color: #b9d8e0;
  font-size: 0.63rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-related strong {
  margin-top: 5px;
  color: #fff;
  font-family: var(--display);
  font-size: 1.25rem;
}

.article-related a {
  color: #fff;
  text-decoration: none;
}

.article-related .article-related__action {
  min-height: 46px;
  padding: 12px 18px;
  color: #fff;
  background: var(--brass);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 5px 0 rgba(4, 22, 35, 0.28);
}

.article-related .article-related__action:hover {
  color: var(--ink);
  background: #fff;
  transform: translateY(-2px);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-section-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 28px 0 8px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-section-index a {
  color: var(--ink-soft);
  font-size: 0.72rem;
  text-decoration: none;
}

/* Homepage lower sections inherit the same authored density */
.page-home .section--agent-system,
.page-home .section--industries,
.page-home .section--questions,
.page-home .section--cta {
  padding-top: var(--section-space-tight);
  padding-bottom: var(--section-space-tight);
}

.page-home .agent-system__capabilities {
  background: rgba(255, 255, 255, 0.35);
}

.page-home .density-item,
.page-home .agent-system__capability {
  background: rgba(255, 255, 255, 0.5);
}

.page-home .cta-band::after {
  position: absolute;
  right: -4%;
  bottom: -72%;
  width: 68%;
  height: 175%;
  background: url("assets/clearwater-motion-field.jpg") center / cover no-repeat;
  content: "";
  opacity: 0.08;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.16) 24%, #000 66%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.16) 24%, #000 66%);
}

.page-home .cta-band > * {
  position: relative;
  z-index: 1;
}

@keyframes interior-field-drift {
  from { transform: translate3d(-12px, calc(var(--site-ambient-shift) - 6px), 0) rotate(-4deg); }
  to { transform: translate3d(18px, calc(var(--site-ambient-shift) + 10px), 0) rotate(-2.5deg); }
}

@keyframes evidence-field {
  from { transform: translate3d(-8px, -5px, -40px); }
  to { transform: translate3d(12px, 8px, -40px); }
}

@media (max-width: 1180px) {
  .interior-hero__grid,
  .resources-hero {
    grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
    gap: 38px;
  }

  .interior-hero__copy h1,
  .resources-hero__copy h1 {
    font-size: clamp(3.45rem, 5vw, 4.7rem);
  }

  .evidence-scene {
    min-height: 585px;
  }

  .pricing-scene {
    min-height: 650px;
  }
}

@media (max-width: 960px) {
  .interior-hero.panel:first-child {
    min-height: auto;
  }

  .interior-hero__grid,
  .resources-hero,
  .how-it-works-timeline-section .timeline-header,
  .commercial-sequence,
  .company-thesis__grid,
  .library-heading {
    grid-template-columns: 1fr;
  }

  .interior-hero__copy h1,
  .resources-hero__copy h1 {
    max-width: 15ch;
  }

  .evidence-scene {
    width: min(720px, 100%);
    margin: 12px auto 0;
  }

  .pricing-scene {
    min-height: 720px;
  }

  .pricing-scene__note {
    top: 560px;
    right: auto;
    bottom: auto;
    left: 0;
    width: 90%;
  }

  .commercial-sequence__intro {
    position: static;
  }

  .commercial-sequence {
    gap: 44px;
  }

  .resources-hero {
    gap: 56px;
  }

  .featured-note {
    width: min(720px, 100%);
  }

  .article-layout--with-toc {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    order: 2;
  }

  .article-toc > span {
    grid-column: 1 / -1;
  }

  .article-related {
    grid-column: 1;
  }
}

@media (max-width: 720px) {
  :root {
    --section-space: 72px;
    --section-space-tight: 62px;
  }

  .interior-hero.panel:first-child {
    padding-top: 78px;
    padding-bottom: 66px;
  }

  .interior-hero__copy h1,
  .resources-hero__copy h1 {
    max-width: none;
    font-size: clamp(2.75rem, 12vw, 3.75rem);
    line-height: 1.01;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts > div,
  .hero-facts > div:first-child {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .evidence-scene {
    min-height: 520px;
  }

  .evidence-scene::before {
    inset: 2% -18% 0 -15%;
    opacity: 0.26;
  }

  .evidence-card {
    transform: none;
  }

  .evidence-scene.will-assemble .evidence-card {
    transform: translate3d(20px, -12px, 60px);
  }

  .evidence-scene.is-assembled .evidence-card {
    transform: translate3d(0, 0, 0);
  }

  .workflow-scene {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    min-height: 0;
  }

  .workflow-scene__report,
  .workflow-scene__policy,
  .workflow-scene__call,
  .workflow-scene__result {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .workflow-scene__report {
    align-self: flex-start;
    width: 92%;
    padding: 15px;
  }

  .workflow-scene__policy {
    align-self: flex-end;
    width: 84%;
    padding: 14px 16px;
  }

  .workflow-scene__policy > div {
    padding: 8px 0;
  }

  .workflow-scene__call {
    align-self: flex-start;
    width: 100%;
    padding: 15px;
  }

  .scene-dialogue p {
    padding: 8px;
    font-size: 0.64rem;
  }

  .workflow-scene__result {
    align-self: flex-end;
    grid-template-columns: 1.15fr 0.85fr;
    width: 92%;
    padding: 14px;
  }

  .workflow-scene__result > div + div {
    margin-top: 0;
    padding-top: 0;
    padding-left: 12px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .workflow-scene__result strong {
    font-size: 0.82rem;
  }

  .report-row {
    grid-template-columns: minmax(0, 1fr) 34px 65px;
    gap: 7px;
    min-height: 36px;
    font-size: 0.61rem;
  }

  .pricing-scene {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    min-height: 0;
  }

  .pricing-scene__profile {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    order: 1;
    width: 96%;
    padding: 16px;
  }

  .pricing-scene__title {
    margin: 12px 0;
    font-size: 1.28rem;
  }

  .pricing-scene__metrics > div {
    padding: 10px 7px 0;
  }

  .pricing-scene__metrics strong {
    font-size: 0.9rem;
  }

  .pricing-scene__coverage {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    order: 2;
    width: 88%;
    padding: 14px 16px;
  }

  .coverage-row {
    min-height: 36px;
    font-size: 0.62rem;
  }

  .pricing-scene__terms {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    order: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 90%;
    padding: 15px;
  }

  .pricing-scene__terms strong {
    font-size: 0.8rem;
  }

  .pricing-scene__terms > div + div {
    margin-top: 0;
    padding-top: 0;
    padding-left: 14px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .pricing-scene__note {
    position: relative;
    box-sizing: border-box;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    order: 4;
    width: 100%;
  }

  .about-scene {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    min-height: 0;
  }

  .about-scene__conversation,
  .about-scene__interpretation,
  .about-scene__handoff {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .about-scene__conversation {
    align-self: flex-start;
    width: 100%;
    padding: 15px;
  }

  .about-scene__interpretation {
    align-self: flex-end;
    width: 96%;
    padding: 14px;
  }

  .about-scene__interpretation > div {
    padding-left: 9px;
  }

  .about-scene__interpretation strong {
    font-size: 0.61rem;
  }

  .about-scene__handoff {
    align-self: flex-start;
    width: 92%;
    padding: 16px;
  }

  .about-scene__handoff > strong {
    font-size: 1rem;
  }

  .process-entry {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .process-entry__output {
    grid-column: 2;
  }

  .outcome-ledger__head {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .outcome-ledger__rail {
    padding: 22px;
  }

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

  .outcome-ledger__records article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .commercial-sequence__steps article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
  }

  .company-thesis__grid {
    gap: 44px;
  }

  .about-principles {
    margin-top: 68px;
    padding-top: 48px;
  }

  .about-cta {
    width: 100%;
  }

  .featured-note {
    min-height: 400px;
    padding: 30px 24px;
  }

  .featured-note > strong {
    font-size: 2.35rem;
  }

  .featured-note__record {
    grid-template-columns: 1fr;
  }

  .featured-note__record span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .featured-note__record span:first-child {
    border-top: 0;
  }

  .library-heading {
    gap: 18px;
  }

  .article-layout--with-toc {
    gap: 26px;
  }

  .article-toc {
    grid-template-columns: 1fr;
  }

  .article-toc > span {
    grid-column: auto;
  }

  .article-related {
    grid-template-columns: 1fr;
    padding: 25px 24px;
  }

  .article-eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .page-article .legal-article h1 {
    max-width: none;
    font-size: clamp(2.6rem, 11.5vw, 3.7rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.page-home) .site-ambient::before,
  .evidence-scene::before {
    animation: none !important;
  }

  .evidence-scene.will-assemble .evidence-card,
  .evidence-scene.is-assembled .evidence-card,
  .evidence-scene.will-assemble .pricing-scene__note,
  .evidence-scene.is-assembled .pricing-scene__note {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Premium voice-to-record system */
:root {
  --page: min(1380px, calc(100vw - 64px));
  --shadow-screen: 0 30px 80px rgba(16, 42, 67, 0.14);
}

body {
  background-color: #f4f8f9;
}

.site-ambient__field {
  display: none;
}

.section + .section {
  border-top-color: rgba(156, 181, 191, 0.26);
}

.section:nth-of-type(3n + 2) {
  background: transparent;
}

.home-hero {
  min-height: min(980px, calc(100vh - 78px));
  padding-top: clamp(60px, 7vw, 108px);
  padding-bottom: clamp(72px, 8vw, 116px);
}

.home-hero .hero-grid {
  grid-template-columns: minmax(440px, 0.86fr) minmax(620px, 1.14fr);
  gap: clamp(42px, 5vw, 76px);
}

.home-hero h1 {
  max-width: 18ch;
  font-size: clamp(3.35rem, 4.3vw, 4.85rem);
  line-height: 1.01;
  letter-spacing: -0.035em;
}

.hero-copy > .lede {
  max-width: 620px;
}

.record-assembly {
  --assembly-scroll: 0px;
  position: relative;
  min-width: 0;
  min-height: 720px;
  perspective: 1500px;
  perspective-origin: 72% 42%;
  transform-style: preserve-3d;
}

.record-assembly::before {
  position: absolute;
  top: 74px;
  right: -18%;
  bottom: 30px;
  left: 25%;
  z-index: -2;
  background: url("assets/clearwater-motion-field.jpg") 50% 52% / 115% auto no-repeat;
  content: "";
  opacity: 0.34;
  transform: translate3d(0, calc(var(--assembly-scroll) * -0.1), -80px);
}

.record-assembly::after {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 100px;
  z-index: -1;
  height: 1px;
  background: rgba(53, 111, 139, 0.22);
  box-shadow:
    0 -12px 0 rgba(53, 111, 139, 0.08),
    0 -24px 0 rgba(53, 111, 139, 0.045);
  content: "";
  transform: translateZ(-50px);
}

.record-assembly__signal {
  position: absolute;
  top: 178px;
  right: -8%;
  left: 68px;
  z-index: -1;
  width: calc(108% - 68px);
  height: 360px;
  opacity: 0.7;
  pointer-events: none;
}

.record-assembly__label {
  position: absolute;
  left: 0;
  z-index: 8;
  width: 102px;
  padding-right: 8px;
  color: var(--blue);
  background: rgba(244, 248, 249, 0.9);
  font-size: 0.61rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.record-assembly__label::after {
  display: block;
  width: 58px;
  height: 1px;
  margin-top: 8px;
  background: rgba(129, 86, 31, 0.68);
  content: "";
}

.record-assembly__label--invoice { top: 44px; }
.record-assembly__label--call { top: 185px; }
.record-assembly__label--promise { top: 432px; }
.record-assembly__label--action { top: 525px; }
.record-assembly__label--record { top: 630px; }

.record-plane {
  --plane-shift: 0px;
  position: absolute;
  right: 0;
  left: 116px;
  z-index: var(--plane-index);
  opacity: 1;
  transform: translate3d(0, calc(var(--plane-shift) + var(--assembly-scroll)), var(--plane-depth));
  transform-style: preserve-3d;
  transition:
    opacity 620ms ease var(--plane-delay),
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1) var(--plane-delay);
  will-change: transform;
}

.record-plane__surface {
  display: grid;
  align-items: center;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  color: var(--body);
  background: rgba(255, 255, 255, 0.965);
  border: 1px solid rgba(166, 187, 195, 0.82);
  border-radius: 8px;
  box-shadow:
    0 3px 8px rgba(16, 42, 67, 0.06),
    0 18px 42px rgba(16, 42, 67, 0.11);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.record-plane__surface > div {
  min-width: 0;
}

.record-plane span {
  display: block;
  color: var(--blue);
  font-size: 0.6rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.record-plane strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.15;
}

.record-plane__metric {
  height: 100%;
  padding-left: 20px;
  border-left: 1px solid var(--line-soft);
}

.record-plane--invoice {
  --plane-depth: 76px;
  --plane-delay: 120ms;
  --plane-index: 5;
  top: 24px;
  height: 94px;
}

.record-plane--invoice .record-plane__surface {
  grid-template-columns: minmax(0, 1.6fr) minmax(122px, 0.72fr) minmax(96px, 0.52fr);
  padding: 18px 22px;
}

.record-plane--conversation {
  --plane-depth: 60px;
  --plane-delay: 280ms;
  --plane-index: 4;
  top: 132px;
  height: 276px;
}

.record-plane--conversation .record-plane__surface {
  grid-template-columns: minmax(0, 1fr) 150px;
}

.record-conversation {
  min-width: 0;
  height: 100%;
  padding: 16px 18px 14px;
}

.record-conversation__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line-soft);
}

.record-conversation__header span:last-child {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  text-transform: none;
}

.record-conversation__line {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line-soft);
}

.record-conversation__line--customer {
  background: #eef4f6;
}

.record-conversation__line span {
  font-size: 0.54rem;
}

.record-conversation__line p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.42;
}

.record-conversation__status {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 22px;
  background: #f3f8fa;
  border-left: 1px solid var(--line-soft);
}

.record-conversation__status strong {
  font-size: 1.25rem;
}

.record-conversation__wave {
  width: 100%;
  height: 44px;
  margin-top: 24px;
}

.record-plane--promise,
.record-plane--action {
  height: 82px;
}

.record-plane--promise {
  --plane-depth: 44px;
  --plane-delay: 460ms;
  --plane-index: 3;
  top: 420px;
  right: 4%;
}

.record-plane--action {
  --plane-depth: 28px;
  --plane-delay: 620ms;
  --plane-index: 2;
  top: 514px;
  right: 6%;
}

.record-plane--promise .record-plane__surface,
.record-plane--action .record-plane__surface {
  grid-template-columns: minmax(0, 1fr) 160px;
  padding: 15px 20px;
}

.record-plane--final {
  --plane-depth: 12px;
  --plane-delay: 780ms;
  --plane-index: 1;
  top: 610px;
  right: 8%;
  height: 92px;
}

.record-plane--final .record-plane__surface {
  grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(82px, 0.62fr));
  padding: 15px 20px;
  color: #dcebf0;
  background: var(--ink);
  border-color: rgba(16, 42, 67, 0.9);
  box-shadow:
    0 5px 10px rgba(16, 42, 67, 0.11),
    0 24px 54px rgba(16, 42, 67, 0.22);
}

.record-plane--final span {
  color: #a8cbd5;
}

.record-plane--final strong {
  color: #ffffff;
}

.record-plane--final .record-plane__metric {
  border-left-color: rgba(255, 255, 255, 0.16);
}

.record-assembly.will-assemble .record-plane {
  opacity: 0;
  transform: translate3d(42px, -24px, 170px);
}

.record-assembly.will-assemble .record-assembly__label {
  opacity: 0;
  transform: translateX(-10px);
}

.record-assembly.is-assembled .record-plane {
  opacity: 1;
  transform: translate3d(0, calc(var(--plane-shift) + var(--assembly-scroll)), var(--plane-depth));
}

.record-assembly.is-assembled .record-assembly__label {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 500ms ease 900ms,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1) 900ms;
}

.product-stage {
  background: rgba(226, 236, 239, 0.88);
  border-color: rgba(157, 181, 190, 0.76);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 28px 72px rgba(16, 42, 67, 0.14);
}

.product-stage__meta {
  color: #ffffff;
  background: var(--ink);
}

.product-stage__meta span:last-child {
  color: #c5dfe5;
}

.product-stage.depth-stage {
  perspective: 1400px;
  transform-style: preserve-3d;
}

.product-stage.depth-stage .product-stage__meta,
.product-stage.depth-stage .ledger-frame {
  backface-visibility: hidden;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-stage.depth-stage .product-stage__meta {
  transform: translate3d(0, var(--depth-meta-shift, 0px), 26px);
}

.product-stage.depth-stage .ledger-frame {
  transform: translate3d(0, var(--depth-frame-shift, 0px), 8px);
}

@media (hover: hover) and (pointer: fine) {
  .product-stage.depth-stage:hover .product-stage__meta {
    transform: translate3d(0, -3px, 34px);
  }

  .product-stage.depth-stage:hover .ledger-frame {
    transform: translate3d(0, 2px, 2px);
  }
}

.ownership-panel,
.detail-column,
.density-item,
.signal-item,
.legal-article {
  background: rgba(255, 255, 255, 0.58);
}

.ownership-panel strong,
.plain-list strong {
  color: var(--ink);
}

@media (max-width: 1180px) {
  :root {
    --page: min(100% - 40px, 1140px);
  }

  .home-hero .hero-grid {
    grid-template-columns: minmax(400px, 0.82fr) minmax(560px, 1.18fr);
    gap: 34px;
  }

  .record-assembly {
    min-height: 684px;
  }

  .record-plane {
    left: 108px;
  }

  .record-plane--conversation {
    height: 264px;
  }

  .record-plane--promise { top: 408px; }
  .record-plane--action { top: 500px; }
  .record-plane--final { top: 594px; }
  .record-assembly__label--promise { top: 420px; }
  .record-assembly__label--action { top: 512px; }
  .record-assembly__label--record { top: 612px; }
}

@media (max-width: 960px) {
  .home-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero h1 {
    max-width: 16ch;
  }

  .record-assembly {
    width: min(760px, 100%);
    min-height: 700px;
    margin: 8px auto 0;
  }

  .record-plane {
    left: 116px;
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100% - 28px);
  }

  .home-hero {
    padding-top: 78px;
  }

  .home-hero h1 {
    max-width: none;
    font-size: clamp(2.7rem, 12vw, 4rem);
    line-height: 1.01;
  }

  .record-assembly {
    min-height: 570px;
    perspective: 1100px;
  }

  .record-assembly__label {
    display: none;
  }

  .record-assembly__signal {
    top: 146px;
    left: -8%;
    width: 116%;
    height: 250px;
  }

  .record-plane {
    --plane-depth: 0px;
    right: 0;
    left: 0;
  }

  .record-plane span {
    font-size: 0.48rem;
  }

  .record-plane strong {
    font-size: 0.82rem;
  }

  .record-plane__metric {
    padding-left: 9px;
  }

  .record-plane--invoice {
    top: 4px;
    height: 74px;
  }

  .record-plane--invoice .record-plane__surface {
    grid-template-columns: minmax(0, 1.45fr) minmax(82px, 0.68fr) 62px;
    padding: 12px;
  }

  .record-plane--conversation {
    top: 90px;
    height: 246px;
  }

  .record-plane--conversation .record-plane__surface {
    grid-template-columns: minmax(0, 1fr) 92px;
  }

  .record-conversation {
    padding: 10px;
  }

  .record-conversation__line {
    padding: 7px 8px;
  }

  .record-conversation__line p {
    font-size: 0.56rem;
  }

  .record-conversation__status {
    padding: 12px;
  }

  .record-conversation__status strong {
    font-size: 0.96rem;
  }

  .record-conversation__wave {
    margin-top: 16px;
  }

  .record-plane--promise,
  .record-plane--action {
    right: 2%;
    height: 66px;
  }

  .record-plane--promise { top: 348px; }
  .record-plane--action { top: 426px; }

  .record-plane--promise .record-plane__surface,
  .record-plane--action .record-plane__surface {
    grid-template-columns: minmax(0, 1fr) 92px;
    padding: 10px 12px;
  }

  .record-plane--final {
    top: 504px;
    right: 3%;
    height: 64px;
  }

  .record-plane--final .record-plane__surface {
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(52px, 0.6fr));
    padding: 9px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .record-assembly::before,
  .record-plane__surface {
    animation: none !important;
  }

  .record-assembly.will-assemble .record-plane,
  .record-assembly.is-assembled .record-plane,
  .record-assembly.will-assemble .record-assembly__label,
  .record-assembly.is-assembled .record-assembly__label {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
  }
}

/* Faithful angled voice-to-record scene */
.site-ambient::before {
  display: none;
}

.home-hero {
  position: relative;
  display: block;
  isolation: isolate;
  min-height: 980px;
  overflow: hidden;
}

.home-hero.panel:first-child {
  padding-top: clamp(112px, 10vw, 148px);
}

.home-hero::before {
  position: absolute;
  top: -90px;
  right: -4%;
  z-index: -2;
  width: 78%;
  height: 72%;
  background: url("assets/clearwater-motion-field.jpg") 50% 42% / cover no-repeat;
  content: "";
  opacity: 0.42;
  transform: translate3d(var(--hero-field-x, 0), var(--hero-field-y, 0), 0);
  animation: hero-field-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.home-hero::after {
  position: absolute;
  right: 0;
  bottom: 108px;
  left: 42%;
  z-index: -2;
  height: 1px;
  background: rgba(53, 111, 139, 0.16);
  box-shadow:
    0 -14px 0 rgba(53, 111, 139, 0.08),
    0 -28px 0 rgba(53, 111, 139, 0.045),
    0 -42px 0 rgba(53, 111, 139, 0.025);
  content: "";
}

@keyframes hero-field-drift {
  from {
    transform: translate3d(-14px, -6px, 0);
  }

  to {
    transform: translate3d(18px, 10px, 0);
  }
}

.home-hero .hero-grid {
  position: relative;
  z-index: 2;
  align-items: start;
}

.home-hero .hero-copy {
  padding-bottom: 28px;
}

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

.home-hero .hero-points > div,
.home-hero .hero-points > div:nth-child(odd),
.home-hero .hero-points > div:nth-child(even) {
  padding: 18px 16px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.home-hero .hero-points > div:first-child {
  padding-left: 0;
}

.home-hero .hero-points > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-hero .hero-points strong {
  font-size: 0.78rem;
  line-height: 1.35;
}

.home-hero .hero-points span {
  font-size: 0.7rem;
  line-height: 1.5;
}

.record-assembly {
  min-height: 720px;
  perspective: none;
  margin-bottom: -104px;
  transform: translateY(-104px);
  transform-style: flat;
}

.home-hero .record-assembly {
  transform: translateY(-104px);
}

.record-assembly::before,
.record-assembly::after {
  display: none;
}

.record-assembly__signal {
  top: 214px;
  right: -12%;
  left: 72px;
  z-index: 0;
  width: calc(112% - 72px);
  height: 300px;
  opacity: 0.6;
  transform: rotate(1.9deg);
}

.record-assembly__stack {
  position: absolute;
  top: 8px;
  right: 14px;
  bottom: 0;
  left: 118px;
  z-index: 4;
  transform: rotate(2.15deg);
  transform-origin: 52% 42%;
  transform-style: preserve-3d;
}

.record-assembly__deck {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: record-deck-breathe 8s 2.4s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes record-deck-breathe {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -5px, 12px);
  }
}

.record-assembly__label {
  left: 0;
  width: 104px;
  background: transparent;
}

.record-assembly__label::after {
  width: 70px;
}

.record-assembly__label--invoice { top: 54px; }
.record-assembly__label--call { top: 196px; }
.record-assembly__label--promise { top: 458px; }
.record-assembly__label--action { top: 566px; }
.record-assembly__label--record { top: 674px; }

.record-plane {
  --card-depth: 0px;
  --enter-x: 70px;
  --enter-y: 50px;
  --enter-z: 80px;
  right: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  transform: translate3d(0, 0, var(--card-depth));
  transition:
    opacity 580ms ease var(--plane-delay),
    transform 1050ms cubic-bezier(0.16, 1, 0.3, 1) var(--plane-delay);
}

.record-plane__surface {
  border-color: rgba(145, 170, 181, 0.88);
  border-radius: 7px;
  box-shadow:
    7px 8px 0 rgba(145, 170, 181, 0.2),
    0 18px 44px rgba(16, 42, 67, 0.15);
}

.record-plane--invoice {
  --card-depth: 0px;
  --enter-x: 88px;
  --enter-y: -84px;
  --enter-z: 190px;
  top: 16px;
  height: 96px;
}

.record-plane--conversation {
  --card-depth: 0px;
  --enter-x: 118px;
  --enter-y: -18px;
  --enter-z: 150px;
  top: 128px;
  height: 286px;
}

.record-plane--promise {
  --card-depth: 0px;
  --enter-x: 96px;
  --enter-y: 38px;
  --enter-z: 112px;
  top: 430px;
  right: 0;
  height: 102px;
}

.record-plane--action {
  --card-depth: 0px;
  --enter-x: 74px;
  --enter-y: 78px;
  --enter-z: 74px;
  top: 544px;
  right: 0;
  height: 102px;
}

.record-plane--final {
  --card-depth: 0px;
  --enter-x: 52px;
  --enter-y: 116px;
  --enter-z: 42px;
  top: 658px;
  right: 0;
  height: 112px;
}

.record-plane--promise .record-plane__surface,
.record-plane--action .record-plane__surface {
  padding: 17px 22px;
}

.record-plane--final .record-plane__surface {
  padding: 16px 22px;
}

.record-assembly.will-assemble .record-plane {
  opacity: 0;
  transform: translate3d(var(--enter-x), var(--enter-y), var(--enter-z)) scale(0.965);
}

.record-assembly.is-assembled .record-plane {
  opacity: 1;
  transform: translate3d(0, 0, var(--card-depth)) scale(1);
}

.record-assembly.is-assembled .record-plane__surface {
  animation: record-surface-settle 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes record-surface-settle {
  0% {
    box-shadow:
      16px 20px 0 rgba(145, 170, 181, 0.08),
      0 40px 90px rgba(16, 42, 67, 0.08);
  }

  100% {
    box-shadow:
      7px 8px 0 rgba(145, 170, 181, 0.2),
      0 18px 44px rgba(16, 42, 67, 0.15);
  }
}

.record-plane--final .record-plane__surface {
  box-shadow:
    7px 8px 0 rgba(16, 42, 67, 0.22),
    0 25px 58px rgba(16, 42, 67, 0.28);
}

.home-hero + .operating-tape {
  display: none;
}

@media (max-width: 1180px) {
  .record-assembly__stack {
    left: 102px;
  }

  .record-assembly__label {
    width: 90px;
  }

  .record-assembly__label::after {
    width: 58px;
  }
}

@media (max-width: 960px) {
  .home-hero {
    min-height: auto;
  }

  .home-hero::before {
    width: 110%;
    height: 44%;
  }

  .record-assembly {
    min-height: 790px;
    margin-bottom: 0;
    transform: none;
  }

  .home-hero .record-assembly {
    transform: none;
  }

  .record-assembly__stack {
    right: 12px;
    left: 124px;
  }

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

  .home-hero .hero-points > div,
  .home-hero .hero-points > div:nth-child(odd),
  .home-hero .hero-points > div:nth-child(even) {
    padding: 18px 22px 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-hero .hero-points > div:nth-child(odd) {
    padding-right: 26px;
    border-right: 1px solid var(--line);
  }

  .home-hero .hero-points > div:nth-child(even) {
    padding-left: 26px;
  }

  .home-hero .hero-points strong {
    font-size: 0.92rem;
  }

  .home-hero .hero-points span {
    font-size: 0.8rem;
  }

}

@media (max-width: 720px) {
  .home-hero.panel:first-child {
    padding-top: 78px;
  }

  .home-hero::after {
    display: none;
  }

  .record-assembly {
    min-height: 608px;
  }

  .record-assembly__signal {
    top: 158px;
    right: -8%;
    left: -8%;
    width: 116%;
    height: 270px;
    transform: rotate(0.8deg);
  }

  .record-assembly__stack {
    top: 8px;
    right: 4px;
    left: 4px;
    transform: rotate(0.8deg);
  }

  .record-plane--invoice {
    top: 0;
    height: 74px;
  }

  .record-plane--conversation {
    top: 88px;
    height: 252px;
  }

  .record-plane--promise {
    top: 354px;
    height: 70px;
  }

  .record-plane--action {
    top: 438px;
    height: 70px;
  }

  .record-plane--final {
    top: 522px;
    height: 72px;
  }

  .record-plane--promise .record-plane__surface,
  .record-plane--action .record-plane__surface,
  .record-plane--final .record-plane__surface {
    padding: 10px 12px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .home-hero::before,
  .record-assembly__deck,
  .record-plane__surface {
    animation: none !important;
  }

  .record-assembly.will-assemble .record-plane,
  .record-assembly.is-assembled .record-plane {
    opacity: 1 !important;
    transform: translate3d(0, 0, var(--card-depth)) !important;
  }
}
