:root {
  --background: #F2F5F7;
  --surface: #F7F9FB;
  --ink: #111111;
  --logo-ink: #292C2E;
  --muted: #65707A;
  --hairline: rgba(17, 17, 17, 0.13);
  --subtle-hairline: rgba(17, 17, 17, 0.07);
  --instrument-dark: #171820;
  --accent: #7B8FA8;
  --outer: clamp(24px, 4.5vw, 76px);
  --section-y: clamp(72px, 7vw, 112px);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.homepage {
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.site-header,
.site-footer,
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 28px);
  width: min(1440px, calc(100% - (var(--outer) * 2)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: 68px;
  align-items: center;
  border-bottom: 1px solid var(--hairline);
  background: color-mix(in srgb, var(--background), transparent 6%);
}

.brand {
  grid-column: span 2;
  display: block;
  width: clamp(190px, 18vw, 300px);
  height: 54px;
}

.brand::after {
  display: none;
}

.brand-logo {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: url("assets/doidom-logo-v3.svg") center / contain no-repeat;
}

.site-header nav {
  grid-column: 3 / -1;
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 1.8vw, 30px);
}

.editorial-link {
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1;
  transition: transform 220ms var(--ease), color 220ms var(--ease);
}

.editorial-link:hover {
  color: var(--muted);
  transform: translateY(-1px);
}

.technical-label,
.section-index span {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  width: 100%;
  padding: clamp(52px, 7vw, 110px) 0 var(--section-y);
  padding-inline: max(var(--outer), calc((100vw - 1440px) / 2));
  align-content: start;
  overflow: hidden;
}

.hero-meta {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: clamp(18px, 4vw, 68px);
  color: var(--muted);
}

.hero-title {
  position: relative;
  z-index: 2;
  grid-column: 1 / 8;
  margin-top: clamp(36px, 6.8vw, 92px);
  overflow: hidden;
}

.hero-wordmark {
  display: block;
  width: min(100%, 1120px);
  height: auto;
  opacity: 0;
  transform: translateY(105%);
  animation: title-rise 900ms var(--ease) 120ms forwards;
}

.hero-intro {
  position: relative;
  z-index: 2;
  grid-column: 1 / 7;
  margin-top: clamp(38px, 5vw, 76px);
}

.hero-knob {
  position: absolute;
  inset: 0;
  left: auto;
  width: min(1440px, calc(100% - var(--outer) - var(--outer)));
  z-index: 1;
  margin: 0;
  pointer-events: none;
}

.hero-knob-stack {
  position: absolute;
  left: 88.2%;
  top: 47.6%;
  width: clamp(480px, 57%, 820px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.hero-knob-stack img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
}

.hero-knob-radial {
  z-index: 0;
  top: -32%;
  left: -57%;
  width: 150%;
  opacity: 0.18;
  filter: blur(35px) saturate(0.75);
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(circle closest-side, #000 40%, transparent 100%);
  mask-image: radial-gradient(circle closest-side, #000 40%, transparent 100%);
}

.hero-knob-rotor {
  z-index: 1;
  inset: 0;
  width: 100%;
  transform-origin: 50% 50%;
  -webkit-mask-image: radial-gradient(circle closest-side, #000 97%, transparent 100%);
  mask-image: radial-gradient(circle closest-side, #000 97%, transparent 100%);
  animation: hero-knob-oscillation 10s ease-in-out infinite;
  will-change: transform;
}

.hero-knob-face {
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 78%;
  transform: translate(-50%, -50%);
  -webkit-mask-image: radial-gradient(circle closest-side, #000 84%, transparent 90%);
  mask-image: radial-gradient(circle closest-side, #000 84%, transparent 90%);
}

@keyframes hero-knob-oscillation {
  0%, 100% { transform: rotate(63.73deg); }
  50% { transform: rotate(114.47deg); }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .homepage .hero-title,
  .homepage .hero-intro {
    max-width: 50vw;
  }

}

@media (max-width: 820px) {
  .hero-knob {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    width: 100%;
    height: clamp(300px, 64vw, 480px);
    margin-top: 24px;
  }

  .hero-knob-stack {
    left: 78%;
    top: 50%;
    width: clamp(360px, 92vw, 570px);
  }
}

@media (max-width: 520px) {
  .hero-knob {
    height: clamp(290px, 80vw, 390px);
  }

  .hero-knob-stack {
    left: 76%;
    width: clamp(340px, 105vw, 480px);
  }
}

.hero-intro p {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero-intro .hero-thesis {
  color: var(--muted);
  font-size: clamp(1.65rem, 2.4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.08;
}

.hero-thesis span {
  color: var(--logo-ink);
}

.hero-intro .hero-subcopy {
  max-width: 34rem;
  margin-top: 18px;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.45;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 22px;
  margin-top: 26px;
}

.hero-intro .hero-finality {
  flex-basis: 100%;
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-conversion-actions {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px 30px;
}

.hero-conversion-actions > div {
  display: grid;
  gap: 8px;
}

.hero-intro .cta-microcopy {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.hero-primary-action {
  font-weight: 650;
}

.hero-primary-action::after {
  transform: scaleX(1);
}

.text-action {
  position: relative;
  padding-bottom: 5px;
  font-size: 0.95rem;
}

.text-action::after,
.editorial-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.text-action:hover::after,
.editorial-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.buy-link {
  color: var(--accent);
}

.product-stage {
  grid-column: 1 / -1;
  position: relative;
  margin: clamp(56px, 8vw, 120px) 0 0;
  opacity: 0;
  transform: translateY(34px) scale(1.04);
  animation: product-enter 1150ms var(--ease) 360ms forwards;
}

.product-stage img {
  width: 112%;
  max-width: none;
  margin-left: -6%;
  border-radius: 6px;
}

.product-stage figcaption {
  position: absolute;
  right: 0;
  bottom: -28px;
  color: var(--muted);
}

.editorial-section,
.inspection,
.audio-proof,
.license {
  position: relative;
  padding: var(--section-y) 0;
}

.editorial-section::before,
.inspection::before,
.audio-proof::before,
.license::before {
  content: "";
  grid-column: 1 / -1;
  width: var(--line-progress, 0%);
  height: 1px;
  margin-bottom: clamp(44px, 6vw, 80px);
  background: var(--hairline);
  transition: width 900ms var(--ease);
}

.is-visible::before {
  --line-progress: 100%;
}

.section-index {
  grid-column: 1 / 4;
}

.section-index p {
  margin: 0 0 36px;
  color: var(--muted);
}

.section-index span {
  display: block;
  margin-bottom: 44px;
  color: var(--accent);
}

.section-index p:last-child {
  max-width: 19rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

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

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.8vw, 6.5rem);
  font-weight: 590;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.02rem;
  font-weight: 620;
}

p {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.25vw, 1.2rem);
  line-height: 1.55;
}

.homepage p:not(.technical-label) {
  color: color-mix(in srgb, var(--ink), var(--muted) 44%);
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  line-height: 1.75;
}

.homepage .hero-intro > p:first-child {
  color: var(--muted);
  line-height: 1.2;
}

.homepage .hero-intro .hero-subcopy {
  line-height: 1.7;
}

.pov h2 {
  grid-column: 6 / -1;
  max-width: 9ch;
}

.section-lead {
  grid-column: 4 / 12;
}

.section-lead h2 {
  max-width: 10ch;
}

.section-lead p {
  max-width: 38rem;
  margin: 28px 0 0;
}

.principle .section-lead {
  grid-column: 4 / 11;
}

.principle .section-lead h2 {
  max-width: 9ch;
}

.system-map {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 34px);
  margin-top: clamp(76px, 9vw, 130px);
  padding-top: 36px;
}

.system-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 1px;
  overflow: hidden;
  background: var(--subtle-hairline);
}

.system-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1100ms var(--ease);
}

.is-visible .system-line::after {
  transform: scaleX(1);
}

.system-map article {
  position: relative;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.system-map article::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--background);
}

.is-visible .system-map article {
  opacity: 1;
  transform: translateY(0);
}

.is-visible .system-map article:nth-of-type(2) { transition-delay: 120ms; }
.is-visible .system-map article:nth-of-type(3) { transition-delay: 240ms; }
.is-visible .system-map article:nth-of-type(4) { transition-delay: 360ms; }
.is-visible .system-map article:nth-of-type(5) { transition-delay: 480ms; }

.system-map article span,
.callout span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
}

.system-map p {
  max-width: 17rem;
  margin-bottom: 0;
  font-size: 0.96rem;
}

.inspection-copy {
  grid-column: 5 / -1;
  margin-bottom: clamp(70px, 9vw, 128px);
}

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

.inspection-copy p {
  max-width: 38rem;
  margin-top: 28px;
}

.inspection-stage {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 28px);
  align-items: start;
}

.inspection-image {
  grid-column: 1 / 9;
  position: sticky;
  top: 96px;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 2556 / 1416;
  border-radius: 4px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  --inspect-zoom: 1;
  --inspect-origin-x: 50%;
  --inspect-origin-y: 50%;
}

.inspection-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(var(--inspect-zoom));
  transform-origin: var(--inspect-origin-x) var(--inspect-origin-y);
  transition: transform 520ms var(--ease), transform-origin 520ms var(--ease);
}

.inspection-image figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 7px 9px;
  background: color-mix(in srgb, var(--surface), transparent 14%);
  color: var(--muted);
  backdrop-filter: blur(10px);
}

.callout-list {
  grid-column: 9 / -1;
  display: grid;
  gap: clamp(56px, 8vw, 110px);
  padding-top: 8px;
}

.callout {
  position: relative;
  max-width: 22rem;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease), border-color 220ms var(--ease);
  outline: none;
}

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

.callout:hover,
.callout:focus-visible,
.callout.is-active {
  border-color: var(--ink);
}

.callout::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.callout:hover::after,
.callout:focus-visible::after,
.callout.is-active::after {
  opacity: 1;
  transform: scale(1);
}

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

.audio-header {
  grid-column: 4 / 11;
}

.audio-proof-label {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
}

.audio-header h2 {
  max-width: 9ch;
  font-size: clamp(3.5rem, 6.4vw, 7.6rem);
}

.audio-header p {
  max-width: 42rem;
  margin-top: 28px;
}

.audio-example {
  grid-column: 2 / 12;
  margin-top: clamp(54px, 7vw, 100px);
}

.audio-example + .audio-example {
  margin-top: clamp(72px, 9vw, 126px);
}

.audio-example-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.7fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.audio-example-heading p {
  max-width: 30rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.audio-console {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 54px);
  background: var(--instrument-dark);
  color: var(--surface);
}

.track-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(248, 246, 241, 0.66);
}

.ab-control {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(120px, max-content);
  gap: clamp(16px, 3vw, 30px);
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(248, 246, 241, 0.16);
  background: rgba(248, 246, 241, 0.06);
}

.ab-play-control {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(248, 246, 241, 0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--surface);
  cursor: pointer;
}

.ab-slider-wrap {
  display: grid;
  gap: 10px;
}

.ab-labels {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(248, 246, 241, 0.72);
}

.ab-slider-wrap input {
  width: 100%;
  accent-color: var(--surface);
}

.ab-current {
  color: var(--surface);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audio-console p {
  grid-column: 2;
  margin: 0;
  color: rgba(248, 246, 241, 0.64);
  font-size: 0.92rem;
}

.blind-vote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px;
  border: 1px solid rgba(248, 246, 241, 0.16);
}

.blind-vote p {
  grid-column: auto;
  margin: 0;
}

.blind-vote-actions {
  display: flex;
  gap: 10px;
}

.blind-vote-actions button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(248, 246, 241, 0.32);
  background: transparent;
  color: var(--surface);
  font: inherit;
  cursor: pointer;
}

.blind-vote-actions button:hover:not(:disabled),
.blind-vote-actions button:focus-visible {
  background: var(--surface);
  color: var(--instrument-dark);
}

.blind-vote-actions button:disabled {
  cursor: default;
  opacity: 0.38;
}

.listen-notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(248, 246, 241, 0.18);
}

.listen-notes li {
  padding: 18px 18px 0 0;
  color: rgba(248, 246, 241, 0.72);
  font-size: 0.9rem;
  line-height: 1.35;
}

.trust .section-lead h2 {
  max-width: 9ch;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 590;
  line-height: 0.92;
  overflow: hidden;
  transform: translateY(18px);
  clip-path: inset(0 0 100% 0);
  transition: transform 760ms var(--ease), clip-path 760ms var(--ease);
}

.trust.is-visible .section-lead h2 {
  transform: translateY(0);
  clip-path: inset(0);
}

.trust-list {
  grid-column: 5 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: clamp(54px, 7vw, 100px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hairline);
}

.trust-list li {
  min-height: 118px;
  padding: 22px 28px 24px 0;
  border-bottom: 1px solid var(--hairline);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.trust.is-visible .trust-list li {
  opacity: 1;
  transform: translateY(0);
}

.trust-list li:nth-child(odd) {
  border-right: 1px solid var(--hairline);
}

.trust-list li:nth-child(even) {
  padding-left: 28px;
}

.trust.is-visible .trust-list li:nth-child(2) { transition-delay: 70ms; }
.trust.is-visible .trust-list li:nth-child(3) { transition-delay: 140ms; }
.trust.is-visible .trust-list li:nth-child(4) { transition-delay: 210ms; }
.trust.is-visible .trust-list li:nth-child(5) { transition-delay: 280ms; }
.trust.is-visible .trust-list li:nth-child(6) { transition-delay: 350ms; }

.trust-list span {
  display: block;
  margin-bottom: 20px;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(0.63rem, 0.72vw, 0.75rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-list strong {
  display: block;
  max-width: 22rem;
  color: var(--ink);
  font-size: clamp(1.38rem, 2vw, 1.875rem);
  font-weight: 590;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.mix-perspective {
  position: relative;
  padding: var(--section-y) 0;
}

.mix-perspective::before {
  content: "";
  grid-column: 1 / -1;
  width: var(--line-progress, 0%);
  height: 1px;
  margin-bottom: clamp(38px, 5vw, 64px);
  background: var(--hairline);
  transition: width 900ms var(--ease);
}

.mix-copy {
  grid-column: 4 / 10;
}

.mix-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.6rem, 4.8vw, 5.7rem);
}

.mix-copy p {
  max-width: 38rem;
  margin: 26px 0 0;
}

.mix-copy p:last-child {
  color: var(--ink);
  font-weight: 600;
}

.mix-flow {
  grid-column: 4 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(44px, 6vw, 76px);
  border-top: 1px solid var(--hairline);
}

.mix-flow span {
  position: relative;
  padding: 18px 18px 0 0;
  color: var(--muted);
}

.mix-flow span::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--background);
}

.license-statement {
  grid-column: 1 / 7;
}

.license-statement h2 {
  max-width: 10ch;
}

.license-statement p {
  max-width: 30rem;
  margin-top: 28px;
}

.license-details {
  grid-column: 8 / -1;
  display: grid;
  gap: 30px;
}

.license-details article {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hairline);
}

.license-details .pricing-card {
  padding-bottom: 0;
  border-bottom: 0;
}

.trial-entry {
  padding: 0 0 30px;
  border-bottom: 1px solid var(--hairline);
}

.trial-entry .license-action {
  display: block;
  width: max-content;
  margin-top: 14px;
  color: var(--accent);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.trial-entry .trial-disclosure {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.8rem;
}

.pricing-card--primary {
  padding: 30px 0 38px !important;
  border-bottom: 1px solid var(--ink) !important;
}

.pricing-card--secondary {
  padding-top: 4px;
  color: var(--muted);
}

.license-details .pricing-card--secondary strong {
  font-size: clamp(2rem, 3.1vw, 3.5rem);
}

.social-proof[hidden] {
  display: none;
}

.testimonial-list {
  margin-top: clamp(38px, 5vw, 70px);
  border-top: 1px solid var(--hairline);
}

.testimonial-list blockquote {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(12rem, 0.6fr);
  gap: 28px;
  margin: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
}

.testimonial-list p,
.testimonial-list footer {
  margin: 0;
}

.testimonial-list p {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.25;
}

.testimonial-list footer {
  align-self: end;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-list cite {
  color: var(--ink);
  font-style: normal;
}

.license-action {
  display: inline-block;
  margin-top: 22px;
}

.license-details strong {
  display: block;
  margin: 16px 0 12px;
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  font-weight: 590;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.license-details .pricing-period {
  font-size: 0.28em;
  letter-spacing: -0.01em;
}

.license-details p {
  max-width: 28rem;
  margin: 0;
}

.license-details .pricing-licence {
  margin-top: -4px;
  color: var(--ink);
  font-size: 1rem;
}

.license-details .pricing-includes {
  margin-top: 28px;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0 26px;
}

.license-details .trial-reassurance {
  max-width: 34rem;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.license-details ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hairline);
}

.license-details li {
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--muted);
}

.lead-capture {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--hairline);
}

.lead-copy {
  grid-column: 4 / 8;
}

.lead-copy h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(2.4rem, 4.3vw, 5.2rem);
  font-weight: 590;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.lead-copy p {
  max-width: 27rem;
  margin: 28px 0 0;
}

.lead-form {
  grid-column: 9 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 0;
  border-top: 1px solid var(--hairline);
}

.lead-form input[type="email"],
.lead-form button {
  min-height: 66px;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.lead-form input[type="email"] {
  min-width: 0;
  padding: 0 20px 0 0;
}

.lead-form input[type="email"]::placeholder {
  color: color-mix(in srgb, var(--muted), transparent 18%);
}

.lead-form button {
  padding: 0 0 0 28px;
  border-left: 1px solid var(--hairline);
  cursor: pointer;
}

.lead-form button:hover {
  color: var(--muted);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.portal-page {
  min-height: calc(100vh - 164px);
}

.portal-page[data-portal-state="loading"] .portal-hero,
.portal-page[data-portal-state="loading"] .portal-panel {
  visibility: hidden;
}

.portal-page [hidden] {
  display: none !important;
}

.device-page {
  min-height: calc(100vh - 86px);
  padding: clamp(72px, 11vw, 160px) 0 var(--section-y);
  align-content: start;
}

.device-copy {
  grid-column: 1 / 7;
}

.device-copy h1 {
  max-width: 9ch;
  margin: clamp(64px, 10vw, 132px) 0 28px;
  font-size: clamp(4rem, 8.2vw, 9rem);
  font-weight: 590;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.device-copy p:not(.technical-label) {
  max-width: 34rem;
}

.device-copy code {
  font-family: var(--mono);
  font-size: 0.85em;
}

.device-card {
  grid-column: 7 / -1;
  display: grid;
  align-self: end;
  gap: 24px;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid var(--hairline);
  background: var(--surface);
}

.device-card label,
.device-card legend {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.device-card > div:not(.device-actions) {
  display: grid;
  gap: 10px;
}

.device-card input[type="email"],
.device-card input[type="password"],
.device-card input[name="code"] {
  width: 100%;
  min-height: 54px;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.device-card input[name="code"] {
  font-family: var(--mono);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.device-card fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.device-card legend {
  margin-bottom: 12px;
}

.device-license-choice {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--hairline);
  color: var(--ink);
  font-family: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.device-license-choice span,
.device-license-choice small {
  display: block;
}

.device-license-choice small,
.device-list small {
  margin-top: 5px;
  color: var(--muted);
}

.device-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.device-error,
.device-notice {
  margin-top: 22px;
  padding-left: 14px;
  border-left: 2px solid currentColor;
}

.device-error { color: #8b2d24; }

.device-list {
  grid-column: 7 / -1;
  margin-top: 24px;
}

.device-list h2 {
  margin: 0;
  font-size: 1.4rem;
}

.device-list ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.device-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--hairline);
}

.portal-hero {
  min-height: clamp(680px, calc(100vh - 68px), 900px);
  padding: clamp(58px, 8vw, 128px) 0 var(--section-y);
  align-content: start;
}

.portal-kicker {
  grid-column: 1 / -1;
  display: flex;
  gap: clamp(22px, 4vw, 70px);
  color: var(--muted);
}

.portal-title {
  grid-column: 1 / 7;
  margin-top: clamp(86px, 13vw, 190px);
}

.portal-title h1 {
  max-width: 8.5ch;
  margin: 0;
  font-size: clamp(4rem, 8.5vw, 9.5rem);
  font-weight: 590;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.portal-title p {
  max-width: 32rem;
  margin: 34px 0 0;
}

.portal-form {
  grid-column: 7 / -1;
  align-self: end;
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid var(--hairline);
  background: var(--surface);
}

.portal-mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 42px;
  border: 1px solid var(--hairline);
}

.portal-mode a {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.portal-mode a + a {
  border-left: 1px solid var(--hairline);
}

.portal-mode a.is-active {
  background: var(--ink);
  color: var(--surface);
}

.form-row {
  display: grid;
  gap: 10px;
}

.form-row label {
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-row input {
  width: 100%;
  min-height: 52px;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1.05rem;
  outline: none;
}

.form-row input:focus {
  border-color: var(--ink);
}

.form-row input::placeholder {
  color: color-mix(in srgb, var(--muted), transparent 34%);
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-link {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.checkbox-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.checkbox-line input {
  width: 14px;
  height: 14px;
  accent-color: var(--ink);
}

.portal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.portal-submit {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  margin-top: 6px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--surface);
  font: inherit;
  font-size: clamp(0.95rem, 1.35vw, 1rem);
  font-weight: 600;
  line-height: 1.05;
  cursor: pointer;
  transition: background 220ms var(--ease), color 220ms var(--ease);
}

.portal-submit:hover {
  background: transparent;
  color: var(--ink);
}

.portal-submit-secondary {
  background: transparent;
  color: var(--ink);
}

.portal-submit-secondary:hover {
  background: var(--ink);
  color: var(--surface);
}

.portal-note {
  margin: 0;
  font-size: 0.88rem;
}

.portal-panel {
  padding: 0 0 var(--section-y);
}

.portal-panel::before {
  content: "";
  grid-column: 1 / -1;
  width: var(--line-progress, 0%);
  height: 1px;
  margin-bottom: clamp(44px, 6vw, 80px);
  background: var(--hairline);
  transition: width 900ms var(--ease);
}

.account-preview {
  grid-column: 5 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline);
}

.account-preview article {
  min-height: 250px;
  padding: 26px clamp(18px, 2.5vw, 34px) 30px 0;
  border-bottom: 1px solid var(--hairline);
}

.account-preview article[hidden] {
  display: none;
}

.account-preview article + article {
  padding-left: clamp(18px, 2.5vw, 34px);
  border-left: 1px solid var(--hairline);
}

.account-preview strong {
  display: block;
  margin: 54px 0 18px;
  font-size: clamp(1.9rem, 3vw, 3.4rem);
  font-weight: 590;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.account-preview p {
  margin: 0;
  font-size: 0.98rem;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 28px;
}

[data-license-details] {
  align-items: stretch;
  flex-direction: column;
}

[data-license-details] code {
  overflow-wrap: anywhere;
  font-family: var(--mono);
  font-size: 0.78rem;
}

[data-license-details] > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.75rem;
}

[data-license-details] [data-deactivation-error] {
  flex-basis: 100%;
  margin-top: 0;
}

.dashboard-login {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  margin: 32px 0;
}

.readiness-ready,
.readiness-missing {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.readiness-ready {
  color: #35735a;
}

.readiness-missing {
  color: #a14747;
}

.dashboard-login label {
  flex-basis: 100%;
  font-family: var(--mono);
  font-size: 0.72rem;
}

.dashboard-login input,
.dashboard-login button {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--hairline);
  background: transparent;
  font: inherit;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: var(--hairline);
}

.dashboard-grid article {
  padding: 24px;
  background: var(--surface);
}

.dashboard-grid h2 {
  margin: 0 0 22px;
  font-size: 1.4rem;
}

.dashboard-grid p {
  margin: 8px 0;
  font-family: var(--mono);
  font-size: 0.72rem;
}

.site-footer {
  min-height: 96px;
  align-items: center;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
}

.site-footer span {
  grid-column: 1 / 4;
}

.site-footer nav {
  grid-column: 6 / -1;
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.site-footer a {
  justify-self: end;
}

.policy-page {
  min-height: calc(100vh - 164px);
  padding: clamp(84px, 12vw, 168px) 0 var(--section-y);
}

.policy-copy {
  grid-column: 5 / -1;
  max-width: 760px;
}

.policy-copy h1 {
  max-width: 8ch;
  margin: 0 0 clamp(48px, 8vw, 96px);
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 590;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.policy-copy h2 {
  margin: clamp(42px, 6vw, 70px) 0 14px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 590;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.policy-copy p {
  max-width: 42rem;
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

@keyframes title-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes product-enter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.custom-chat {
  position: fixed;
  right: 22px;
  bottom: var(--chat-bottom-offset, 22px);
  z-index: 50;
  color: var(--ink);
}

.chat-toggle,
.chat-close,
.chat-form button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.chat-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 126px;
  height: 42px;
  padding: 0 13px;
  border: 1px solid var(--hairline);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.chat-toggle:hover,
.chat-toggle:focus-visible {
  border-color: var(--ink);
}

.chat-toggle-mark {
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.custom-chat.is-open .chat-toggle-mark {
  transform: rotate(45deg);
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 54px;
  width: min(380px, calc(100vw - 32px));
  background: var(--surface);
  border: 1px solid var(--hairline);
  box-shadow: none;
}

.chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--hairline);
}

.chat-header p,
.chat-message span,
.chat-form span {
  margin: 0 0 4px;
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.chat-header strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
}

.chat-presence {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.chat-close {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 300px;
  min-height: 150px;
  overflow: auto;
  padding: 18px;
  border-bottom: 1px solid var(--hairline);
}

.chat-empty {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.chat-message {
  max-width: 86%;
}

.chat-message p {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--hairline);
  background: var(--background);
  font-size: 0.92rem;
  line-height: 1.35;
}

.chat-message.is-agent {
  justify-self: start;
}

.chat-message.is-visitor {
  justify-self: end;
  text-align: right;
}

.chat-message.is-visitor p {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
  text-align: left;
}

.chat-form {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.chat-identity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.chat-form label {
  display: grid;
  gap: 6px;
}

.chat-form input,
.chat-form textarea {
  width: 100%;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  padding: 10px;
  resize: vertical;
}

.chat-form input:focus,
.chat-form textarea:focus {
  outline: 1px solid var(--accent);
  outline-offset: 0;
}

.chat-form button {
  justify-self: start;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--surface);
  padding: 10px 18px;
  font-weight: 650;
}

.chat-status {
  min-height: 1em;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .site-header,
  .site-footer,
  .editorial-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .section-index,
  .license-statement,
  .license-details {
    grid-column: 1 / -1;
  }

  .hero-title,
  .hero-intro,
  .pov h2,
  .section-lead,
  .principle .section-lead,
  .inspection-copy,
  .audio-header,
  .mix-copy,
  .mix-flow,
  .trust-list,
  .portal-title,
  .portal-form,
  .account-preview,
  .device-copy,
  .device-card,
  .device-list,
  .lead-copy,
  .lead-form {
    grid-column: 1 / -1;
  }

  .homepage .hero-title,
  .homepage .hero-intro {
    grid-column: 1 / 5;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 86px;
    align-items: center;
    column-gap: 16px;
  }

  .brand {
    grid-column: 1;
    width: min(190px, 34vw);
  }

  .site-header nav {
    grid-column: 2;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: clamp(12px, 2.5vw, 22px);
    white-space: nowrap;
  }

  .portal-form {
    margin-top: 62px;
  }

  .device-card {
    margin-top: 54px;
  }

  .lead-form {
    margin-top: 54px;
  }

  .account-preview {
    grid-template-columns: 1fr;
  }

  .account-preview article + article {
    padding-left: 0;
    border-left: 0;
  }

  .system-map {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 70px;
    padding: 0 0 0 28px;
  }

  .system-line {
    inset: 0 auto 0 0;
    width: 1px;
    height: 100%;
  }

  .system-line::after {
    transform: scaleY(0);
    transform-origin: top;
  }

  .is-visible .system-line::after {
    transform: scaleY(1);
  }

  .system-map article::before {
    top: 2px;
    left: -32px;
  }

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

  .inspection-image,
  .callout-list,
  .audio-example,
  .audio-console {
    grid-column: 1 / -1;
  }

  .inspection-image {
    position: relative;
    top: auto;
  }

  .callout-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 36px;
  }

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

  .audio-example-heading,
  .testimonial-list blockquote {
    grid-template-columns: 1fr;
  }

  .audio-console p,
  .listen-notes {
    grid-column: 1;
  }

  .ab-control {
    grid-template-columns: 1fr;
  }

  .ab-play-control {
    width: 68px;
    height: 68px;
  }

  .blind-vote,
  .blind-vote-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .listen-notes,
  .mix-flow,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .mix-flow {
    gap: 28px;
    padding-left: 28px;
    border-top: 0;
    border-left: 1px solid var(--hairline);
  }

  .mix-flow span {
    padding: 0;
  }

  .mix-flow span::before {
    top: 2px;
    left: -33px;
  }

  .trust-list li,
  .trust-list li:nth-child(even),
  .trust-list li:nth-child(odd) {
    padding-left: 0;
    border-right: 0;
  }

  .trust-list strong {
    max-width: none;
  }

  .site-footer span,
  .site-footer nav,
  .policy-copy {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --outer: 18px;
    --section-y: 64px;
  }

  .site-header {
    min-height: 62px;
  }

  .brand {
    width: clamp(112px, 34vw, 150px);
    height: 46px;
  }

  .site-header nav {
    display: flex;
    gap: clamp(9px, 3vw, 16px);
  }

  .site-header nav .editorial-link {
    font-size: clamp(0.7rem, 3.2vw, 0.82rem);
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-wordmark {
    width: 100%;
  }

  .hero-intro {
    margin-top: 28px;
  }

  .hero-intro .hero-thesis {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
  }

  .hero-intro .hero-subcopy {
    font-size: clamp(0.94rem, 3.8vw, 1.05rem);
  }

  .product-stage img {
    width: 150%;
    margin-left: -25%;
  }

  .section-index p:last-child {
    max-width: none;
  }

  h2 {
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }

  .pov h2,
  .section-lead h2,
  .inspection-copy h2,
  .audio-header h2,
  .license-statement h2 {
    max-width: 8.8ch;
  }

  .callout-list,
  .license-details ul {
    grid-template-columns: 1fr;
  }

  .track-meta {
    flex-direction: column;
  }

  .portal-kicker,
  .form-options {
    flex-direction: column;
    align-items: flex-start;
  }

  .portal-title h1 {
    font-size: clamp(3.7rem, 18vw, 5.8rem);
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .portal-actions {
    grid-template-columns: 1fr;
  }

  .lead-form button {
    padding-left: 0;
    border-left: 0;
  }

  .mix-copy h2 {
    max-width: 9.5ch;
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .mix-copy p {
    max-width: none;
  }

  .custom-chat {
    right: 14px;
    bottom: var(--chat-bottom-offset, 14px);
  }

  .chat-toggle {
    min-width: 116px;
    height: 40px;
  }

  .chat-panel {
    bottom: 52px;
    width: calc(100vw - 28px);
  }

  .chat-identity {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  [data-reveal],
  .product-stage,
  .hero-wordmark,
  .hero-knob-rotor,
  .system-map article,
  .trust .section-lead h2,
  .trust-list li,
  .callout {
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  .hero-knob-rotor {
    animation: none;
    transform: rotate(63.73deg);
  }
}
