:root {
  color-scheme: light dark;
  --ink: #0d1012;
  --charcoal: #171b1e;
  --charcoal-raised: #20252a;
  --paper: #f2f3ef;
  --white: #ffffff;
  --text-dark: #171a1c;
  --muted-dark: #5e666a;
  --muted-light: #a8afb2;
  --line-dark: #30363a;
  --line-light: #d4d8d4;
  --cyan: #55b8c5;
  --coral: #e66b5b;
  --ochre: #e4b64b;
  --sage: #71a873;
  --violet: #8d78b8;
  --content: 1280px;
  --reading: 760px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  border-bottom: 1px solid transparent;
  transition: background-color 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled,
.site-header.header-solid {
  background: rgba(13, 16, 18, 0.94);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 48px), var(--content));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 17px;
  font-weight: 680;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #d7dcde;
  font-size: 14px;
  font-weight: 540;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.locale-link {
  padding-left: 26px;
  border-left: 1px solid var(--line-dark);
  color: var(--muted-light) !important;
}

.menu-button {
  display: none;
  min-width: 64px;
  height: 38px;
  padding: 0 12px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
}

.hero {
  position: relative;
  height: 88dvh;
  min-height: 720px;
  max-height: 900px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #242a2d;
  opacity: 0.7;
  z-index: -1;
}

.hero::before {
  left: calc(50% - 320px);
}

.hero::after {
  right: calc(50% - 320px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 48px), 820px);
  margin: 0 auto;
  padding-top: 126px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 680;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: 96px;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin: 22px auto 0;
  color: #c7cdcf;
  font-size: 22px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: transform 180ms var(--ease), background-color 180ms ease,
    border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--white);
}

.button-primary:hover {
  background: var(--cyan);
}

.button-secondary {
  color: var(--white);
  background: var(--charcoal);
  border-color: var(--line-dark);
}

.button-secondary:hover {
  border-color: #5b6569;
}

.button-muted {
  color: #dce0e1;
  background: transparent;
  border-color: var(--line-dark);
  cursor: default;
}

.hero-stage {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -400px;
  width: min(84vw, 1280px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid #3a4246;
  border-radius: 8px;
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.54);
  transform: translateX(-50%);
  transform-origin: 50% 68%;
  transition: transform 360ms var(--ease);
  will-change: transform;
}

.hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-rail {
  color: var(--white);
  background: var(--charcoal);
  border-bottom: 1px solid var(--line-dark);
}

.proof-rail-inner {
  width: min(100%, var(--content));
  min-height: 110px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  padding: 27px 30px 22px;
  border-right: 1px solid var(--line-dark);
}

.proof-item:first-child {
  border-left: 1px solid var(--line-dark);
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-size: 15px;
  font-weight: 680;
}

.proof-item span {
  margin-top: 4px;
  color: var(--muted-light);
  font-size: 13px;
}

.section {
  position: relative;
  padding: 120px 24px;
}

.section-light {
  color: var(--text-dark);
  background: var(--paper);
}

.section-white {
  color: var(--text-dark);
  background: var(--white);
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-charcoal {
  color: var(--white);
  background: var(--charcoal);
}

.section-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 3fr 5fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.section-heading h2,
.closing h2,
.page-title {
  margin: 0;
  font-size: 56px;
  font-weight: 730;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 650px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 20px;
  line-height: 1.55;
}

.section-dark .section-heading p,
.section-charcoal .section-heading p {
  color: var(--muted-light);
}

.depth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  min-height: 600px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.halo-lab {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
}

.halo-lab::before,
.halo-lab::after {
  content: "";
  position: absolute;
  background: #2b3134;
}

.halo-lab::before {
  width: 1px;
  height: 100%;
}

.halo-lab::after {
  width: 100%;
  height: 1px;
}

.halo-demo {
  position: relative;
  width: min(76%, 500px);
  aspect-ratio: 1;
}

.halo-ring {
  position: absolute;
  inset: calc((100% - var(--size)) / 2);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  opacity: 0.42;
  transform: scale(0.985);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease),
    filter 320ms var(--ease);
  -webkit-mask: radial-gradient(
    circle,
    transparent calc(50% - 17px),
    #000 calc(50% - 16px),
    #000 calc(50% + 16px),
    transparent calc(50% + 17px)
  );
  mask: radial-gradient(
    circle,
    transparent calc(50% - 17px),
    #000 calc(50% - 16px),
    #000 calc(50% + 16px),
    transparent calc(50% + 17px)
  );
}

.halo-ring:nth-child(1) {
  --size: 100%;
  background: conic-gradient(var(--cyan) 0 42%, #2c3235 42% 43%, var(--coral) 43% 66%, #2c3235 66% 67%, var(--ochre) 67% 84%, #2c3235 84% 85%, var(--sage) 85% 100%);
}

.halo-ring:nth-child(2) {
  --size: 82%;
  background: conic-gradient(var(--coral) 0 31%, #2c3235 31% 32%, var(--ochre) 32% 58%, #2c3235 58% 59%, var(--violet) 59% 78%, #2c3235 78% 79%, var(--cyan) 79% 100%);
}

.halo-ring:nth-child(3) {
  --size: 64%;
  background: conic-gradient(var(--ochre) 0 36%, #2c3235 36% 37%, var(--sage) 37% 62%, #2c3235 62% 63%, var(--cyan) 63% 83%, #2c3235 83% 84%, var(--coral) 84% 100%);
}

.halo-ring:nth-child(4) {
  --size: 46%;
  background: conic-gradient(var(--sage) 0 48%, #2c3235 48% 50%, var(--violet) 50% 76%, #2c3235 76% 78%, var(--ochre) 78% 100%);
}

.halo-ring:nth-child(5) {
  --size: 28%;
  background: conic-gradient(var(--violet) 0 54%, #2c3235 54% 57%, var(--cyan) 57% 100%);
}

.halo-ring.is-active {
  z-index: 2;
  opacity: 1;
  filter: saturate(1.12) brightness(1.12);
  transform: scale(1.025);
}

.halo-core {
  position: absolute;
  inset: 43%;
  display: grid;
  place-items: center;
  color: #dce1e2;
  background: #090b0c;
  border: 1px solid #394044;
  border-radius: 50%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
}

.depth-copy {
  padding: 68px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.depth-counter {
  color: var(--muted-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.depth-copy h3 {
  min-height: 84px;
  margin: 20px 0 12px;
  font-size: 36px;
  line-height: 1.16;
}

.depth-copy > p {
  min-height: 108px;
  margin: 0;
  color: var(--muted-dark);
}

.depth-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 34px;
  border: 1px solid var(--line-light);
  border-radius: 7px;
  overflow: hidden;
}

.depth-tabs button {
  height: 44px;
  padding: 0;
  color: var(--muted-dark);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-light);
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.depth-tabs button:last-child {
  border-right: 0;
}

.depth-tabs button.is-active {
  color: var(--white);
  background: var(--charcoal-raised);
}

.product-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: center;
}

.product-band + .product-band {
  margin-top: 140px;
}

.product-band.reverse {
  grid-template-columns: 1.18fr 0.82fr;
}

.product-band.reverse .product-copy {
  order: 2;
}

.product-copy h3 {
  margin: 0 0 18px;
  font-size: 40px;
  line-height: 1.12;
}

.product-copy p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 18px;
}

.product-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-media {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(17, 21, 23, 0.15);
}

.product-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: center;
}

.privacy-statement h2 {
  max-width: 720px;
  margin: 0;
  font-size: 58px;
  line-height: 1.04;
}

.privacy-statement p {
  max-width: 650px;
  margin: 28px 0 32px;
  color: var(--muted-light);
  font-size: 19px;
}

.privacy-ledger {
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.privacy-ledger > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.privacy-ledger dt {
  color: var(--muted-light);
}

.privacy-ledger dd {
  margin: 0;
  color: var(--sage);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
}

.source-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.source-layout h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.08;
}

.source-copy p {
  color: var(--muted-dark);
  font-size: 19px;
}

.source-meta {
  border-top: 1px solid var(--line-light);
}

.source-meta div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
}

.source-meta strong {
  font-size: 14px;
}

.source-meta span {
  color: var(--muted-dark);
}

.closing {
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
  border-top: 1px solid var(--line-dark);
}

.closing-inner {
  width: min(calc(100% - 48px), 900px);
}

.closing h2 {
  font-size: 68px;
}

.closing p {
  max-width: 620px;
  margin: 22px auto 30px;
  color: var(--muted-light);
  font-size: 19px;
}

.site-footer {
  color: var(--muted-light);
  background: #090b0c;
  border-top: 1px solid var(--line-dark);
}

.footer-inner {
  width: min(calc(100% - 48px), var(--content));
  min-height: 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand span {
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

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

/* Document pages */
.document-page {
  color: var(--text-dark);
  background: var(--paper);
}

.page-hero {
  padding: 168px 24px 84px;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.page-hero-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.page-hero .eyebrow {
  margin-bottom: 20px;
}

.page-title {
  max-width: 920px;
  font-size: 72px;
}

.page-summary {
  max-width: 720px;
  margin: 24px 0 0;
  color: #c7cdcf;
  font-size: 20px;
}

.page-meta {
  display: flex;
  gap: 28px;
  margin-top: 34px;
  color: var(--muted-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
}

.document-layout {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px minmax(0, var(--reading));
  gap: 90px;
  padding: 84px 0 120px;
  justify-content: center;
}

.document-nav {
  position: sticky;
  top: 104px;
  align-self: start;
  padding-top: 8px;
}

.document-nav strong {
  display: block;
  margin-bottom: 16px;
  color: var(--muted-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.document-nav a {
  display: block;
  padding: 8px 0;
  color: var(--muted-dark);
  font-size: 14px;
  text-decoration: none;
}

.document-nav a:hover {
  color: var(--text-dark);
}

.document-body {
  min-width: 0;
}

.document-body section {
  scroll-margin-top: 110px;
}

.document-body section + section {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--line-light);
}

.document-body h2 {
  margin: 0 0 20px;
  font-size: 32px;
  line-height: 1.2;
}

.document-body h3 {
  margin: 36px 0 12px;
  font-size: 20px;
}

.document-body p,
.document-body li {
  color: #3f4649;
}

.document-body ul {
  padding-left: 22px;
}

.document-body li + li {
  margin-top: 10px;
}

.policy-promise {
  margin-bottom: 64px;
  padding: 28px 0 28px 26px;
  border-left: 4px solid var(--sage);
}

.policy-promise strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.policy-promise p {
  margin: 0;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  font-size: 18px;
  font-weight: 660;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 4px;
  color: var(--muted-dark);
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 44px 26px 0;
}

.contact-panel {
  margin-top: 72px;
  padding: 38px 40px;
  color: var(--white);
  background: var(--charcoal-raised);
  border-radius: 8px;
}

.contact-panel h2 {
  margin-bottom: 10px;
}

.contact-panel p {
  color: #cbd0d2;
}

.contact-panel a {
  color: var(--cyan);
  font-weight: 650;
}

.legal-note {
  font-size: 14px;
  color: var(--muted-dark);
}

.not-found {
  min-height: calc(100dvh - 150px);
  display: grid;
  place-items: center;
  padding: 100px 24px;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-size: 72px;
}

.not-found p {
  color: var(--muted-light);
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 76px;
  }

  .hero-stage {
    bottom: -250px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading h2,
  .closing h2 {
    font-size: 50px;
  }

  .depth-layout,
  .product-band,
  .product-band.reverse,
  .privacy-grid,
  .source-layout {
    gap: 54px;
  }

  .depth-copy {
    padding: 46px 40px;
  }

  .privacy-statement h2 {
    font-size: 48px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 64px;
  }

  .nav-shell {
    width: min(calc(100% - 32px), var(--content));
  }

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

  .nav-links {
    position: fixed;
    inset: 64px 0 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 24px;
    color: var(--white);
    background: var(--ink);
  }

  .menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 18px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--line-dark);
  }

  .locale-link {
    padding-left: 0;
    border-left: 0;
  }

  .hero {
    height: 88dvh;
    min-height: 720px;
    max-height: 780px;
  }

  .hero-copy {
    width: min(calc(100% - 32px), 680px);
    padding-top: 108px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .hero-stage {
    bottom: -430px;
    width: 1120px;
    max-width: none;
  }

  .proof-rail-inner {
    grid-template-columns: 1fr 1fr;
  }

  .proof-item:nth-child(3) {
    border-left: 1px solid var(--line-dark);
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .section {
    padding: 88px 20px;
  }

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

  .section-heading h2,
  .closing h2 {
    font-size: 42px;
  }

  .section-heading p {
    font-size: 18px;
  }

  .depth-layout,
  .product-band,
  .product-band.reverse,
  .privacy-grid,
  .source-layout {
    grid-template-columns: 1fr;
  }

  .depth-layout {
    min-height: 0;
  }

  .halo-lab {
    min-height: 520px;
  }

  .depth-copy {
    padding: 46px 0;
  }

  .product-band + .product-band {
    margin-top: 100px;
  }

  .product-band.reverse .product-copy {
    order: initial;
  }

  .product-copy h3 {
    font-size: 34px;
  }

  .privacy-statement h2,
  .source-layout h2 {
    font-size: 42px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 0;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .page-hero {
    padding: 132px 20px 64px;
  }

  .page-title {
    font-size: 54px;
  }

  .document-layout {
    width: min(calc(100% - 40px), var(--reading));
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0 88px;
  }

  .document-nav {
    position: static;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line-light);
  }

  .document-nav a {
    display: inline-block;
    margin-right: 18px;
  }
}

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

  .hero {
    min-height: 700px;
    max-height: 740px;
  }

  .hero::before {
    left: 22%;
  }

  .hero::after {
    right: 22%;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 300px);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-stage {
    bottom: -300px;
    width: 880px;
    transform: translateX(-43%);
  }

  .proof-item {
    min-height: 104px;
    padding: 20px 18px;
  }

  .proof-item strong {
    font-size: 14px;
  }

  .section-heading h2,
  .closing h2,
  .privacy-statement h2,
  .source-layout h2 {
    font-size: 36px;
  }

  .section-heading p,
  .privacy-statement p,
  .source-copy p {
    font-size: 17px;
  }

  .halo-lab {
    min-height: 390px;
  }

  .halo-demo {
    width: 86%;
  }

  .halo-ring {
    -webkit-mask: radial-gradient(
      circle,
      transparent calc(50% - 12px),
      #000 calc(50% - 11px),
      #000 calc(50% + 11px),
      transparent calc(50% + 12px)
    );
    mask: radial-gradient(
      circle,
      transparent calc(50% - 12px),
      #000 calc(50% - 11px),
      #000 calc(50% + 11px),
      transparent calc(50% + 12px)
    );
  }

  .depth-copy h3 {
    min-height: 72px;
    font-size: 30px;
  }

  .depth-copy > p {
    min-height: 130px;
  }

  .product-band,
  .product-band.reverse {
    gap: 32px;
  }

  .product-copy h3 {
    font-size: 30px;
  }

  .product-media {
    margin-right: -20px;
    margin-left: -20px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .product-media img {
    aspect-ratio: 4 / 3;
    object-position: 47% center;
  }

  .privacy-grid,
  .source-layout {
    gap: 54px;
  }

  .source-meta div {
    grid-template-columns: 112px 1fr;
    gap: 18px;
  }

  .page-title,
  .not-found h1 {
    font-size: 46px;
  }

  .page-summary {
    font-size: 17px;
  }

  .page-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .contact-panel {
    padding: 28px 24px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
