:root {
  color-scheme: light;
  --canvas: #f7fafa;
  --surface: #ffffff;
  --ink: #102a28;
  --ink-strong: #061f24;
  --muted: #5f716d;
  --brand: #08705f;
  --brand-strong: #055447;
  --brand-deep: #003c3b;
  --brand-soft: #d1f1eb;
  --mint: #e8f8f5;
  --blue-soft: #eaf3ff;
  --lilac-soft: #f4f0ff;
  --coral: #be432f;
  --coral-soft: #fff0ec;
  --border: #dde8e6;
  --border-strong: #c5d4d1;
  --shadow-sm: 0 12px 34px rgba(12, 34, 55, 0.08);
  --shadow-lg: 0 28px 80px rgba(12, 34, 55, 0.13);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max-width: 1180px;
  --header-height: 80px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

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

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(221, 232, 230, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221, 232, 230, 0.22) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 70%);
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  content: "";
  pointer-events: none;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand-strong);
}

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

button {
  font: inherit;
}

:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgba(10, 132, 255, 0.62);
  outline-offset: 3px;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(221, 232, 230, 0.92);
  background: rgba(247, 250, 250, 0.96);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  color: var(--ink-strong);
  font-size: 1.34rem;
  font-weight: 760;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.brand--footer img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

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

.site-nav > a:not(.button) {
  position: relative;
  padding-block: 12px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
  transition: transform 180ms ease, top 180ms ease;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button--primary {
  background: var(--brand);
  box-shadow: 0 9px 22px rgba(8, 112, 95, 0.18);
  color: #fff;
}

.button--primary:hover {
  background: var(--brand-strong);
  box-shadow: 0 13px 28px rgba(8, 112, 95, 0.24);
  color: #fff;
}

.button--secondary {
  border-color: var(--brand);
  background: transparent;
  color: var(--brand);
}

.button--secondary:hover {
  background: var(--mint);
  color: var(--brand-strong);
}

.button--quiet {
  border-color: var(--border);
  background: var(--surface);
  color: var(--ink);
}

.button--quiet:hover {
  border-color: var(--border-strong);
  color: var(--brand-strong);
}

.button--small {
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 70px;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: -10%;
  width: 46vw;
  height: 46vw;
  max-width: 680px;
  max-height: 680px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
  opacity: 0.82;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(46px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
}

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

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(3.25rem, 5.5vw, 5.3rem);
  font-weight: 790;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-lede {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.65vw, 1.34rem);
  line-height: 1.54;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
  list-style: none;
}

.trust-line li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-line li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.trajectory {
  position: relative;
  min-height: 610px;
  border: 1px solid rgba(197, 212, 209, 0.78);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
}

.trajectory-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px 8px;
}

.trajectory-label {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trajectory-title {
  margin: 0;
  color: var(--ink-strong);
  font-size: 1.38rem;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.trajectory-date {
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.trajectory-canvas {
  position: relative;
  min-height: 480px;
  margin: 0 24px 24px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--canvas);
}

.trajectory-path {
  position: absolute;
  inset: 12px 34px 18px 24px;
  width: calc(100% - 58px);
  height: calc(100% - 30px);
  color: var(--brand);
  overflow: visible;
}

.trajectory-path .path-base {
  fill: none;
  stroke: var(--border);
  stroke-linecap: round;
  stroke-width: 4;
}

.trajectory-path .path-active {
  fill: none;
  stroke: currentColor;
  stroke-dasharray: 820;
  stroke-dashoffset: 820;
  stroke-linecap: round;
  stroke-width: 4;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.trajectory.is-visible .path-active {
  stroke-dashoffset: 0;
}

.trajectory-node {
  position: absolute;
  display: grid;
  width: min(220px, 43%);
  min-height: 84px;
  padding: 14px 15px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  cursor: pointer;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.trajectory-node:hover,
.trajectory-node[aria-pressed="true"] {
  border-color: var(--brand);
  box-shadow: 0 16px 40px rgba(8, 112, 95, 0.15);
  transform: translateY(-3px);
}

.trajectory-node:nth-of-type(1) {
  top: 34px;
  left: 26px;
}

.trajectory-node:nth-of-type(2) {
  top: 135px;
  right: 24px;
}

.trajectory-node:nth-of-type(3) {
  top: 248px;
  left: 42px;
}

.trajectory-node:nth-of-type(4) {
  top: 350px;
  right: 36px;
}

.trajectory-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--mint);
  color: var(--brand);
}

.trajectory-node:nth-of-type(2) .trajectory-icon {
  background: var(--blue-soft);
  color: #2466d1;
}

.trajectory-node:nth-of-type(3) .trajectory-icon {
  background: var(--lilac-soft);
  color: #7457d9;
}

.trajectory-node:nth-of-type(4) .trajectory-icon {
  background: var(--coral-soft);
  color: var(--coral);
}

.trajectory-node strong,
.trajectory-node small {
  display: block;
}

.trajectory-node strong {
  font-size: 0.93rem;
  line-height: 1.25;
}

.trajectory-node small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.trajectory-detail {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
}

.trajectory-detail strong,
.trajectory-detail span {
  display: block;
}

.trajectory-detail strong {
  font-size: 0.86rem;
}

.trajectory-detail span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.trajectory-detail .button {
  flex: 0 0 auto;
}

.proof-strip {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  display: flex;
  min-height: 120px;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--border);
}

.proof-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--mint);
  color: var(--brand);
}

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

.proof-item strong {
  font-size: 0.92rem;
  line-height: 1.3;
}

.proof-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.section {
  padding: 110px 0;
}

.section--compact {
  padding: 76px 0;
}

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

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

.section-heading h2,
.split-copy h2,
.legal-hero h1,
.support-hero h1,
.open-hero h1 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.section-heading p,
.split-copy > p,
.legal-hero p,
.support-hero p,
.open-hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.split {
  display: grid;
  align-items: center;
  gap: clamp(46px, 8vw, 110px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split--top {
  align-items: start;
}

.feature-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.feature-list li {
  padding: 18px 18px 18px 0;
  border-top: 1px solid var(--border);
  font-weight: 650;
}

.feature-list li:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--border);
}

.feature-list span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 450;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-weight: 720;
  text-decoration: none;
}

.section-link .icon {
  transition: transform 180ms ease;
}

.section-link:hover .icon {
  transform: translateX(4px);
}

.record-board {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.record-board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.record-board-header strong {
  font-size: 1.06rem;
}

.record-board-header span {
  color: var(--muted);
  font-size: 0.82rem;
}

.record-row {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid var(--border);
  grid-template-columns: 46px 1fr auto;
}

.record-row-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--mint);
  color: var(--brand);
}

.record-row:nth-child(3) .record-row-icon {
  background: var(--blue-soft);
  color: #2466d1;
}

.record-row:nth-child(4) .record-row-icon {
  background: var(--lilac-soft);
  color: #7457d9;
}

.record-row:nth-child(5) .record-row-icon {
  background: var(--coral-soft);
  color: var(--coral);
}

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

.record-row small {
  margin-top: 2px;
  color: var(--muted);
}

.record-row > span:last-child {
  color: var(--muted);
  font-size: 0.8rem;
}

.privacy-band {
  position: relative;
  overflow: hidden;
  background: var(--brand-deep);
  color: #fff;
}

.privacy-band::after {
  position: absolute;
  right: -130px;
  bottom: -190px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(209, 241, 235, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(209, 241, 235, 0.05), 0 0 0 140px rgba(209, 241, 235, 0.03);
  content: "";
}

.privacy-band .split {
  position: relative;
  z-index: 1;
}

.privacy-band h2 {
  color: #fff;
}

.privacy-band .split-copy > p {
  color: #c5d4d1;
}

.privacy-band .section-link {
  color: #a9eee2;
}

.privacy-demo {
  overflow: hidden;
  border: 1px solid rgba(209, 241, 235, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.privacy-demo-controls {
  display: grid;
  padding: 8px;
  border-bottom: 1px solid rgba(209, 241, 235, 0.18);
  grid-template-columns: repeat(3, 1fr);
}

.privacy-demo-controls button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: #c5d4d1;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.privacy-demo-controls button[aria-pressed="true"] {
  background: #d1f1eb;
  color: var(--brand-deep);
}

.privacy-demo-controls .icon {
  width: 18px;
  height: 18px;
}

.privacy-demo-stage {
  position: relative;
  height: 236px;
  margin: 0 22px;
}

.privacy-device,
.privacy-action,
.privacy-shield {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  border-radius: 22px;
  transform: translateY(-50%);
  transition: opacity 280ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.privacy-device {
  left: 8%;
  width: 98px;
  height: 132px;
  border: 1px solid rgba(209, 241, 235, 0.3);
  background: rgba(209, 241, 235, 0.1);
  color: #a9eee2;
}

.privacy-device .icon {
  width: 46px;
  height: 70px;
}

.privacy-action,
.privacy-shield {
  right: 8%;
  width: 76px;
  height: 76px;
  background: #d1f1eb;
  color: var(--brand-deep);
}

.privacy-action .icon,
.privacy-shield .icon {
  width: 34px;
  height: 34px;
}

.privacy-flow {
  position: absolute;
  top: 50%;
  left: 39%;
  color: #a9eee2;
  opacity: 0.28;
  transform: translateY(-50%);
}

.privacy-flow .icon {
  width: 60px;
  height: 24px;
}

.privacy-demo[data-state="local"] .privacy-flow,
.privacy-demo[data-state="local"] .privacy-action,
.privacy-demo:not([data-state="local"]) .privacy-shield,
.privacy-demo[data-state="export"] .privacy-action--delete,
.privacy-demo[data-state="delete"] .privacy-action--export {
  opacity: 0;
  transform: translateY(-50%) scale(0.72);
}

.privacy-demo:not([data-state="local"]) .privacy-flow {
  opacity: 1;
}

.privacy-demo[data-state="delete"] .privacy-flow {
  color: #ff9d8f;
}

.privacy-demo-copy {
  min-height: 112px;
  padding: 22px 26px 24px;
  border-top: 1px solid rgba(209, 241, 235, 0.18);
}

.privacy-demo-copy h3 {
  margin: 0;
  color: #fff;
  font-size: 1.12rem;
}

.privacy-demo-copy p {
  margin: 7px 0 0;
  color: #c5d4d1;
  font-size: 0.86rem;
}

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

.routine-list::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 19px;
  width: 2px;
  background: var(--border);
  content: "";
}

.routine-list li {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 0 0 28px;
  grid-template-columns: 40px 1fr;
}

.routine-list li:last-child {
  padding-bottom: 0;
}

.routine-dot {
  position: relative;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 6px solid var(--canvas);
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 760;
}

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

.routine-list strong {
  padding-top: 5px;
  font-size: 1.03rem;
}

.routine-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.report-preview {
  position: relative;
  max-width: 470px;
  margin-inline: auto;
  padding: 34px 34px 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.report-preview::before {
  position: absolute;
  z-index: -1;
  inset: 20px -18px -18px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--mint);
  content: "";
}

.report-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.report-logo img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.report-preview h3 {
  margin: 28px 0 6px;
  font-size: 1.6rem;
  letter-spacing: -0.035em;
}

.report-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.report-summary {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.report-summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
}

.report-summary span:last-child {
  color: var(--muted);
  text-align: right;
}

.report-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.76rem;
}

.app-actions {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  grid-template-columns: repeat(4, 1fr);
}

.app-action {
  position: relative;
  min-height: 190px;
  padding: 27px;
  color: var(--ink);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.app-action + .app-action {
  border-left: 1px solid var(--border);
}

.app-action:hover {
  background: var(--mint);
  color: var(--ink-strong);
}

.app-action .proof-icon {
  margin-bottom: 28px;
}

.app-action strong,
.app-action span {
  display: block;
}

.app-action strong {
  font-size: 1rem;
}

.app-action span {
  max-width: 220px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

.app-action .icon--arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: var(--brand);
}

.app-note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.handoff-section {
  overflow: hidden;
  padding: 92px 0;
  border-block: 1px solid var(--border);
  background: #f2fbf9;
}

.handoff-heading {
  margin-bottom: 42px;
}

.handoff-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2.5rem, 4.2vw, 3.6rem);
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.handoff-heading p {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 690;
  letter-spacing: -0.025em;
}

.handoff-layout {
  display: grid;
  align-items: stretch;
  gap: 34px;
  grid-template-columns: 292px minmax(330px, 1fr) 278px;
}

.handoff-destinations {
  padding-right: 30px;
  border-right: 1px solid var(--border-strong);
}

.handoff-group + .handoff-group {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-strong);
}

.handoff-group h3 {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 790;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.handoff-destination-list {
  display: grid;
  gap: 3px;
}

.handoff-destination {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 47px;
  align-items: center;
  gap: 12px;
  padding: 8px 11px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.89rem;
  font-weight: 620;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  grid-template-columns: 24px 1fr 18px;
}

.handoff-destination::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 3px;
  border-radius: 99px;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: scaleY(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.handoff-destination > .icon:first-child {
  width: 22px;
  height: 22px;
}

.handoff-chevron {
  width: 17px;
  height: 17px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.handoff-destination:hover {
  background: rgba(209, 241, 235, 0.58);
  color: var(--brand-strong);
}

.handoff-destination:active {
  transform: scale(0.985);
}

.handoff-destination.is-selected,
.handoff-destination[aria-pressed="true"] {
  background: var(--brand-strong);
  color: #fff;
  box-shadow: 0 12px 28px rgba(5, 84, 71, 0.16);
}

.handoff-destination.is-selected::before,
.handoff-destination[aria-pressed="true"]::before {
  opacity: 1;
  transform: scaleY(1);
}

.handoff-destination.is-selected .handoff-chevron,
.handoff-destination[aria-pressed="true"] .handoff-chevron {
  opacity: 1;
  transform: none;
}

.handoff-preview {
  display: flex;
  min-width: 0;
  padding: 22px 10px 8px;
  flex-direction: column;
}

.handoff-preview-heading {
  display: grid;
  align-items: center;
  gap: 20px;
  grid-template-columns: 72px 1fr;
}

.handoff-preview-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 22px;
  background: var(--brand-strong);
  color: #fff;
  box-shadow: 0 16px 34px rgba(5, 84, 71, 0.18);
}

.handoff-preview-icon .icon {
  width: 39px;
  height: 39px;
}

.handoff-preview-heading h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(1.85rem, 3.1vw, 2.8rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.handoff-preview-heading p {
  max-width: 530px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.handoff-trajectory {
  width: 100%;
  height: 154px;
  margin: 22px 0 20px;
  overflow: visible;
}

.handoff-path-base,
.handoff-path-active {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.handoff-path-base {
  stroke: #c3e8e2;
}

.handoff-path-active {
  stroke: var(--brand);
  stroke-dasharray: 12 10;
  animation: handoff-flow 4.8s linear infinite;
}

.handoff-trajectory circle {
  fill: #fff;
  stroke: var(--brand);
  stroke-width: 4;
}

.handoff-trajectory .handoff-path-focus {
  fill: #ff806e;
  stroke: #fff;
  filter: drop-shadow(0 0 7px rgba(190, 67, 47, 0.35));
}

@keyframes handoff-flow {
  to { stroke-dashoffset: -44; }
}

.handoff-action {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}

.handoff-action .icon {
  width: 19px;
  height: 19px;
}

.handoff-privacy {
  display: grid;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.8rem;
  grid-template-columns: 38px 1fr;
}

.handoff-privacy .icon {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.handoff-privacy p,
.handoff-mobile-fallback {
  margin: 0;
}

.handoff-mobile-fallback {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
}

.handoff-qr {
  display: flex;
  align-items: center;
  padding: 26px 22px 22px;
  border: 1px solid #b8dcd6;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
  flex-direction: column;
}

.handoff-phone-icon {
  width: 27px;
  height: 27px;
  color: var(--brand);
}

.handoff-qr h3 {
  margin: 10px 0 0;
  color: var(--ink-strong);
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.handoff-qr-frame {
  display: grid;
  width: min(100%, 218px);
  aspect-ratio: 1;
  margin-top: 20px;
  place-items: center;
  padding: 13px;
  border: 1px solid #b8dcd6;
  border-radius: 18px;
  background: #fff;
}

.handoff-qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}

.handoff-qr > p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.48;
}

.handoff-copy-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  padding: 7px 10px;
  border: 0;
  background: transparent;
  color: var(--brand-strong);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 720;
}

.handoff-copy-link .icon {
  width: 18px;
  height: 18px;
}

.handoff-copy-status {
  min-height: 1.2em;
  margin-top: 0 !important;
  color: var(--brand) !important;
}

.handoff-qr .handoff-qr-note {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.handoff-preview.is-changing .handoff-preview-heading,
.handoff-preview.is-changing .handoff-trajectory {
  animation: handoff-change 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes handoff-change {
  from { opacity: 0.45; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  color: var(--ink-strong);
  font-size: 1.02rem;
  font-weight: 680;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 4px;
  color: var(--brand);
  content: "+";
  font-size: 1.45rem;
  font-weight: 420;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details > div {
  max-width: 800px;
  padding: 0 44px 24px 0;
  color: var(--muted);
}

.cta-band {
  padding: 72px 0;
  background: var(--brand-soft);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.cta-inner p {
  margin: 13px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 58px 0 38px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(250px, 1.4fr) repeat(3, minmax(130px, 0.6fr));
}

.footer-about p {
  max-width: 340px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-column h2 {
  margin: 0 0 13px;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--brand);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-bottom p {
  max-width: 720px;
  margin: 0;
}

.page-shell {
  min-height: 70vh;
}

.legal-hero,
.support-hero,
.open-hero {
  padding: 82px 0 60px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.legal-hero-inner,
.support-hero-inner,
.open-hero-inner {
  max-width: 820px;
}

.page-meta {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.legal-layout,
.support-layout {
  display: grid;
  align-items: start;
  gap: 70px;
  padding: 72px 0 110px;
  grid-template-columns: 240px minmax(0, 760px);
}

.page-toc {
  position: sticky;
  top: 112px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.page-toc h2 {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.page-toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
}

.page-toc a:hover {
  color: var(--brand);
}

.legal-content,
.support-content {
  min-width: 0;
}

.legal-content section,
.support-content section {
  padding: 0 0 46px;
  scroll-margin-top: 112px;
}

.legal-content section + section,
.support-content section + section {
  padding-top: 46px;
  border-top: 1px solid var(--border);
}

.legal-content h2,
.support-content h2 {
  margin: 0 0 16px;
  color: var(--ink-strong);
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.legal-content h3,
.support-content h3 {
  margin: 27px 0 8px;
  color: var(--ink-strong);
  font-size: 1.06rem;
}

.legal-content p,
.support-content p {
  margin: 0 0 16px;
  color: #344744;
}

.legal-content ul,
.support-content ul,
.legal-content ol,
.support-content ol {
  margin: 12px 0 18px;
  padding-left: 24px;
  color: #344744;
}

.legal-content li + li,
.support-content li + li {
  margin-top: 8px;
}

.notice {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  grid-template-columns: 36px 1fr;
}

.notice--important {
  border-color: #efd7cf;
  background: var(--coral-soft);
}

.notice .proof-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
}

.notice p {
  margin: 0;
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.contact-card h2 {
  margin: 0;
  font-size: 1.45rem;
}

.contact-card p {
  margin: 10px 0 20px;
  color: var(--muted);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 720;
}

.steps {
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 0 0 25px 54px;
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  content: counter(steps);
  font-size: 0.86rem;
  font-weight: 760;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}

.open-panel {
  max-width: 720px;
  margin: 62px auto 100px;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.open-panel-logo {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 21px;
}

.open-panel h2 {
  margin: 0;
  font-size: 1.85rem;
  letter-spacing: -0.04em;
}

.open-panel p {
  max-width: 540px;
  margin: 13px auto 25px;
  color: var(--muted);
}

.open-options {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  grid-template-columns: repeat(2, 1fr);
}

.open-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 660;
  text-align: left;
  text-decoration: none;
}

.open-option:hover {
  border-color: var(--brand);
  background: var(--mint);
  color: var(--ink-strong);
}

.not-found {
  display: grid;
  min-height: 72vh;
  place-items: center;
  padding: 80px 20px;
  text-align: center;
}

.not-found-inner {
  max-width: 620px;
}

.not-found-code {
  margin: 0;
  color: var(--brand);
  font-size: clamp(4rem, 13vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.not-found h1 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.05em;
}

.not-found p {
  margin: 16px auto 28px;
  color: var(--muted);
}

.app-dialog {
  width: min(calc(100% - 32px), 460px);
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.app-dialog::backdrop {
  background: rgba(6, 31, 36, 0.48);
}

.dialog-inner {
  padding: 28px;
}

.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.dialog-header h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.dialog-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.dialog-inner p {
  margin: 15px 0 0;
  color: var(--muted);
}

.dialog-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .hero-grid {
    gap: 46px;
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  }

  .trajectory-node {
    width: min(205px, 45%);
  }

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

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

  .proof-item:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .app-actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-action:nth-child(3) {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .app-action:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .handoff-layout {
    gap: 26px;
    grid-template-columns: 260px minmax(320px, 1fr) 244px;
  }

  .handoff-destinations {
    padding-right: 22px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 3px;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav > a:not(.button) {
    padding: 12px 10px;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

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

  .hero h1 {
    max-width: 740px;
  }

  .trajectory {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .split-visual--first {
    order: -1;
  }

  .legal-layout,
  .support-layout {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .page-toc {
    position: static;
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }

  .handoff-layout {
    max-width: 760px;
    margin-inline: auto;
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .handoff-qr {
    display: none;
  }

  .handoff-mobile-fallback {
    display: block;
  }
}

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

  body::before {
    background-size: 48px 48px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 48px 0 50px;
  }

  .hero::after {
    top: 38%;
    right: -35%;
    width: 92vw;
    height: 92vw;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .hero-lede {
    font-size: 1.06rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trajectory {
    min-height: 670px;
    border-radius: 24px;
  }

  .trajectory-header {
    padding: 24px 20px 8px;
  }

  .trajectory-canvas {
    min-height: 548px;
    margin: 0 13px 13px;
  }

  .trajectory-path {
    inset: 18px 8px 90px;
    width: calc(100% - 16px);
    height: calc(100% - 108px);
  }

  .trajectory-node {
    width: calc(100% - 42px);
    min-height: 76px;
  }

  .trajectory-node:nth-of-type(1) {
    top: 24px;
    left: 18px;
  }

  .trajectory-node:nth-of-type(2) {
    top: 124px;
    right: 18px;
  }

  .trajectory-node:nth-of-type(3) {
    top: 224px;
    left: 18px;
  }

  .trajectory-node:nth-of-type(4) {
    top: 324px;
    right: 18px;
  }

  .trajectory-detail {
    right: 14px;
    bottom: 14px;
    left: 14px;
    align-items: stretch;
    flex-direction: column;
  }

  .trajectory-detail .button {
    width: 100%;
  }

  .proof-grid,
  .app-actions,
  .open-options {
    grid-template-columns: 1fr;
  }

  .proof-item + .proof-item,
  .proof-item:nth-child(3),
  .app-action + .app-action,
  .app-action:nth-child(3) {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section--compact {
    padding: 58px 0;
  }

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

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

  .feature-list li,
  .feature-list li:nth-child(even) {
    padding: 15px 0;
    border-left: 0;
  }

  .record-board {
    padding: 20px;
  }

  .record-row {
    grid-template-columns: 42px 1fr;
  }

  .record-row > span:last-child {
    display: none;
  }

  .report-preview {
    padding: 26px 22px;
  }

  .handoff-heading {
    margin-bottom: 30px;
  }

  .handoff-heading h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .handoff-layout {
    display: block;
  }

  .handoff-destinations {
    padding-right: 0;
    border-right: 0;
  }

  .handoff-group + .handoff-group {
    margin-top: 18px;
    padding-top: 17px;
  }

  .handoff-destination-list {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .handoff-destination {
    min-height: 64px;
    gap: 9px;
    padding: 10px 10px;
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    grid-template-columns: 23px 1fr;
  }

  .handoff-destination::before {
    top: 0;
    bottom: 0;
    width: 4px;
  }

  .handoff-chevron {
    display: none;
  }

  .handoff-preview {
    margin-top: 28px;
    padding: 24px 20px 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-sm);
  }

  .handoff-preview-heading {
    gap: 15px;
    grid-template-columns: 60px 1fr;
  }

  .handoff-preview-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .handoff-preview-icon .icon {
    width: 32px;
    height: 32px;
  }

  .handoff-preview-heading h3 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .handoff-preview-heading p {
    font-size: 0.86rem;
  }

  .handoff-trajectory {
    height: 112px;
    margin: 17px 0;
  }

  .handoff-action {
    min-height: 54px;
  }

  .cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-inner .button {
    width: 100%;
  }

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

  .footer-about,
  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-hero,
  .support-hero,
  .open-hero {
    padding: 58px 0 44px;
  }

  .legal-layout,
  .support-layout {
    padding: 48px 0 78px;
  }

  .open-panel {
    margin: 40px auto 72px;
    padding: 30px 20px;
    border-radius: 24px;
  }

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

@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;
  }

  .trajectory-path .path-active {
    stroke-dashoffset: 0;
  }

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

@media print {
  .site-header,
  .site-footer,
  .page-toc,
  .cta-band,
  .button,
  .app-dialog {
    display: none !important;
  }

  body,
  .legal-hero,
  .support-hero {
    background: #fff;
  }

  .legal-layout,
  .support-layout {
    display: block;
    padding: 28px 0;
  }

  .legal-content,
  .support-content {
    max-width: none;
  }
}
