:root {
  --ink: #07070a;
  --ink-soft: #111117;
  --paper: #f4f2ed;
  --muted: #a7a5ad;
  --line: rgba(255, 255, 255, 0.13);
  --violet: #4930ff;
  --violet-soft: #705cff;
  --acid: #dfff19;
  --max: 1440px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-160%);
}

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

.seo-breadcrumb {
  position: absolute;
  z-index: 10;
  top: 6.8rem;
  left: max(1.25rem, calc((100vw - var(--max)) / 2 + 4.5rem));
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.seo-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-breadcrumb li + li::before {
  content: "/";
  margin-right: 0.55rem;
  color: rgba(255, 255, 255, 0.35);
}

.seo-breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

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

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: 3px;
  pointer-events: none;
}

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

.policy-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) auto minmax(16rem, 1fr);
  align-items: center;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 1.75rem clamp(1.25rem, 4vw, 4.5rem);
}

.policy-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  font-size: clamp(0.9rem, 1.4vw, 1.18rem);
  font-weight: 750;
  letter-spacing: -0.03em;
}

.policy-brand__mark,
.policy-footer__mark {
  display: grid;
  place-items: center;
  width: 2.15rem;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-weight: 900;
}

.policy-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.4rem);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.policy-nav a {
  position: relative;
  padding-block: 0.6rem;
  transition: color 180ms ease;
}

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

.policy-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--acid);
}

.policy-nav-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.9rem;
  padding: 0.6rem 0.85rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
  transition:
    opacity 240ms ease,
    transform 360ms cubic-bezier(0.32, 0.94, 0.6, 1),
    visibility 240ms;
}

.policy-nav-toggle i,
.policy-nav-toggle i::before {
  display: block;
  width: 1rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}
.policy-nav-toggle i::before { transform: translateY(-0.35rem); }
[data-mobile-nav-open="true"] .policy-nav-toggle i { transform: rotate(45deg); }
[data-mobile-nav-open="true"] .policy-nav-toggle i::before { transform: rotate(-90deg); }

.policy-header__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 12.4rem;
  height: 3.65rem;
  padding: 0.35rem 0.35rem 0.35rem 1.45rem;
  color: #fff;
  background: linear-gradient(270deg, #222322 3.48%, #131311);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  font-size: 0.94rem;
  cursor: pointer;
  transition: width 600ms cubic-bezier(0.77, 0, 0.18, 1), border-color 180ms ease;
}

.policy-header__cta:hover { border-color: rgba(223, 255, 25, 0.65); }

.policy-header__cta-label {
  white-space: nowrap;
  opacity: 1;
  transition: opacity 300ms ease;
}

.policy-header__cta-mark {
  display: grid;
  place-items: center;
  flex: 0 0 2.95rem;
  width: 2.95rem;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 500ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

.policy-header__cta:hover .policy-header__cta-mark { transform: rotate(12deg); }

[data-contact-open="true"] .policy-header__cta {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 3.65rem;
  padding-left: 0.35rem;
  border-color: rgba(7, 7, 10, 0.5);
}

[data-contact-open="true"] .policy-header { z-index: 90; }

[data-contact-open="true"] .policy-brand,
[data-contact-open="true"] .policy-nav {
  opacity: 0.28;
  transition: opacity 300ms ease;
}

[data-contact-open="true"] .policy-nav-toggle {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0.75rem, 0, 0);
}

[data-contact-open="true"] .policy-header__cta-label {
  width: 0;
  overflow: hidden;
  opacity: 0;
}

.policy-contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  visibility: hidden;
  background: rgba(3, 3, 7, 0.76);
  -webkit-backdrop-filter: blur(8px) saturate(0.8);
  backdrop-filter: blur(8px) saturate(0.8);
  opacity: 0;
  cursor: pointer;
  transition: opacity 600ms cubic-bezier(0.77, 0, 0.18, 1), visibility 600ms;
}

.policy-contact-panel {
  --panel-shift-x: 0px;
  --panel-shift-y: 0px;
  --panel-shift-x-inverse: 0px;
  --panel-shift-y-inverse: 0px;
  position: fixed;
  z-index: 80;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: min(calc(100% - 2rem), clamp(44rem, 46vw, 58rem));
  overflow: hidden auto;
  color: #fff;
  background: #07070a;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 2.4rem;
  box-shadow:
    0 0 0 1px rgba(223, 255, 25, 0.04),
    -2rem 1rem 8rem rgba(0, 0, 0, 0.62);
  clip-path: none;
  transform: translate3d(105%, 0, 0) scale(0.97);
  transform-origin: right center;
  transition: transform 900ms cubic-bezier(0.77, 0, 0.18, 1);
}

.policy-contact-panel::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -11rem;
  right: -8rem;
  width: min(31rem, 54%);
  height: 24rem;
  background: var(--acid);
  border-radius: 52% 24% 58% 29%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(4rem, -2rem, 0) scale(0.86) rotate(8deg);
  transform-origin: 72% 32%;
  transition:
    opacity 720ms ease 240ms,
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

.policy-contact-panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 11%;
  right: -6rem;
  width: 22rem;
  aspect-ratio: 1;
  border: 1px solid rgba(223, 255, 25, 0.34);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(2rem, 1rem, 0) scale(0.76);
  transition:
    opacity 720ms ease 320ms,
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1) 260ms;
}

[data-contact-open="true"] .policy-contact-overlay {
  visibility: visible;
  opacity: 1;
}

[data-contact-open="true"] .policy-contact-panel {
  transform: translate3d(0, 0, 0) scale(1);
}

[data-contact-open="true"] .policy-contact-panel::before {
  opacity: 0.96;
  transform:
    translate3d(var(--panel-shift-x), var(--panel-shift-y), 0)
    rotate(-12deg)
    scale(1);
}

[data-contact-open="true"] .policy-contact-panel::after {
  opacity: 1;
  transform:
    translate3d(var(--panel-shift-x-inverse), var(--panel-shift-y-inverse), 0)
    scale(1);
}

body[data-contact-open="true"] { overflow: hidden; }

.policy-contact-panel__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 100%;
  padding: clamp(4rem, 6vh, 5rem) clamp(2rem, 3.5vw, 4rem) 1.25rem;
  opacity: 0;
  transform: translateX(-3rem);
  transition: opacity 400ms ease, transform 700ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

.policy-contact-panel__atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.policy-contact-panel__orbit {
  --orbit-radius: 12.15rem;
  position: absolute;
  right: -5rem;
  bottom: -8rem;
  width: 25rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.policy-contact-panel__orbit::before,
.policy-contact-panel__orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.policy-contact-panel__orbit::before {
  inset: 3rem;
  border: 1px solid rgba(223, 255, 25, 0.2);
}

.policy-contact-panel__orbit::after {
  top: calc(50% - 0.325rem);
  left: calc(50% - 0.325rem);
  width: 0.65rem;
  aspect-ratio: 1;
  background: var(--acid);
  transform: rotate(0deg) translateX(var(--orbit-radius));
  animation: policy-orbit-marker 7s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

[data-contact-open="true"] .policy-contact-panel__orbit::after {
  animation-play-state: running;
}

.policy-contact-panel__beam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--acid) 20%, rgba(255, 255, 255, 0.16) 72%, transparent);
  opacity: 0.75;
  transform-origin: top;
  animation: policy-beam-pulse 4.5s ease-in-out infinite;
}

[data-contact-open="true"] .policy-contact-panel__inner {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 260ms;
}

.policy-contact-panel__eyebrow,
.policy-contact-panel h2,
.policy-contact-panel__copy,
.policy-contact-panel__signals,
.policy-contact-panel__form-shell,
.policy-contact-panel__privacy {
  opacity: 0;
  transform: translate3d(0, 1.6rem, 0);
  transition:
    opacity 520ms ease,
    transform 720ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

[data-contact-open="true"] .policy-contact-panel__eyebrow,
[data-contact-open="true"] .policy-contact-panel h2,
[data-contact-open="true"] .policy-contact-panel__copy,
[data-contact-open="true"] .policy-contact-panel__signals,
[data-contact-open="true"] .policy-contact-panel__form-shell,
[data-contact-open="true"] .policy-contact-panel__privacy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-contact-open="true"] .policy-contact-panel__eyebrow { transition-delay: 260ms; }
[data-contact-open="true"] .policy-contact-panel h2 { transition-delay: 330ms; }
[data-contact-open="true"] .policy-contact-panel__copy { transition-delay: 400ms; }
[data-contact-open="true"] .policy-contact-panel__signals { transition-delay: 470ms; }
[data-contact-open="true"] .policy-contact-panel__form-shell { transition-delay: 540ms; }
[data-contact-open="true"] .policy-contact-panel__privacy { transition-delay: 610ms; }

.policy-contact-panel__intro,
.policy-contact-panel__form-shell,
.policy-contact-panel__privacy {
  position: relative;
  z-index: 1;
}

.policy-contact-panel__intro {
  display: grid;
}

.policy-contact-panel__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acid);
}

.policy-contact-panel__eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.policy-contact-panel h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.35rem, 4.55vw, 5.3rem);
  font-weight: 430;
  line-height: 0.87;
  letter-spacing: -0.075em;
  text-wrap: balance;
  color: #fff;
}

.policy-contact-panel__copy {
  max-width: 37rem;
  margin: 1.05rem 0 1.05rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.45;
}

.policy-contact-panel__signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

.policy-contact-panel__signals li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.65rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.66rem;
  line-height: 1.2;
  min-width: 0;
  width: 100%;
  transition:
    color 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease,
    transform 420ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

.policy-contact-panel__signals span {
  color: var(--acid);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.policy-contact-panel__signals li:hover {
  color: #08090d;
  background: var(--acid);
  border-color: var(--acid);
  transform: translate3d(0.4rem, 0, 0);
}

.policy-contact-panel__signals li:hover span { color: #08090d; }

.policy-contact-panel__form-shell {
  flex-shrink: 0;
  width: 100%;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition:
    opacity 520ms ease,
    transform 500ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

.policy-contact-panel__form-shell:hover {
  transform: none;
}

.policy-contact-form {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  max-width: none;
}

.policy-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 0.8rem;
}

.policy-contact-field {
  display: grid;
  gap: 0.4rem;
}

.policy-contact-field label {
  display: flex;
  align-items: flex-end;
  min-height: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.61rem;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-contact-field input,
.policy-contact-field select,
.policy-contact-field textarea {
  width: 100%;
  min-width: 0;
  min-height: 3.25rem;
  padding: 0.78rem 1rem;
  color: #fff;
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  font: inherit;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 360ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

.policy-contact-field textarea {
  min-height: 5rem;
  resize: vertical;
  line-height: 1.45;
}

.policy-contact-field input::placeholder,
.policy-contact-field textarea::placeholder { color: rgba(255, 255, 255, 0.55); }

.policy-contact-field input:hover,
.policy-contact-field select:hover,
.policy-contact-field textarea:hover {
  background: #17171d;
  border-color: rgba(223, 255, 25, 0.46);
  transform: translate3d(0, -0.12rem, 0);
}

.policy-contact-field input:focus,
.policy-contact-field select:focus,
.policy-contact-field textarea:focus {
  outline: 0;
  background: #17171d;
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(223, 255, 25, 0.12);
}

.policy-contact-form__submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.65rem;
  padding: 0.35rem 0.35rem 0.35rem 1.25rem;
  color: #fff;
  background: #161616;
  border: 0;
  border-radius: 999px;
  font-weight: 650;
  cursor: pointer;
  box-shadow: 0 1rem 2.5rem rgba(7, 7, 10, 0.18);
  transition:
    color 320ms ease,
    background 320ms ease,
    transform 420ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

.policy-contact-form__submit::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 620ms cubic-bezier(0.77, 0, 0.18, 1);
}

.policy-contact-form__submit span {
  position: relative;
  z-index: 1;
}

.policy-contact-form__submit span:last-child {
  display: grid;
  place-items: center;
  width: 2.75rem;
  aspect-ratio: 1;
  color: #161616;
  background: var(--acid);
  border-radius: 50%;
  font-size: 1.25rem;
  transition:
    color 320ms ease,
    background-color 320ms ease,
    transform 520ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

.policy-contact-form__submit:hover {
  color: #08090d;
  background: #161616;
  transform: translate3d(0, -0.2rem, 0);
}

.policy-contact-form__submit:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.policy-contact-form__submit:hover span:last-child {
  color: var(--acid);
  background: #08090d;
  transform: rotate(-42deg) scale(0.92);
}

.policy-contact-panel__status {
  min-height: 1.1rem;
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.4;
}

.policy-contact-panel__privacy {
  margin: auto 0 0;
  padding-top: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.5;
}

.policy-contact-panel__privacy a {
  color: var(--acid);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

@keyframes policy-beam-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.72); }
  50% { opacity: 0.9; transform: scaleY(1); }
}

@keyframes policy-orbit-marker {
  to { transform: rotate(360deg) translateX(var(--orbit-radius)); }
}

.policy-hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: min(760px, 88vh);
  overflow: hidden;
  padding: 10rem max(1.25rem, calc((100% - var(--max)) / 2 + 4.5rem)) 4.75rem;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.policy-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: -26%;
  right: -9%;
  width: min(58vw, 850px);
  aspect-ratio: 1;
  background: var(--violet);
  border-radius: 18% 48% 28% 62%;
  transform: rotate(19deg);
}

.policy-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 18%;
  right: 17%;
  width: clamp(9rem, 22vw, 23rem);
  aspect-ratio: 1;
  border: 1px solid rgba(223, 255, 25, 0.55);
  border-radius: 50%;
}

.policy-hero__inner {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.6rem;
  color: var(--acid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}

.policy-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(4rem, 9.8vw, 9.2rem);
  font-weight: 420;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.policy-hero h1 em {
  color: var(--violet-soft);
  font-style: normal;
}

.policy-hero__lower {
  display: grid;
  grid-template-columns: minmax(0, 38rem) auto;
  gap: 2rem;
  align-items: end;
  margin-top: 3rem;
}

.policy-hero__lede {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.8vw, 1.42rem);
  line-height: 1.55;
}

.policy-meta {
  display: flex;
  gap: 2rem;
  justify-self: end;
  margin: 0;
}

.policy-meta div { min-width: 7.5rem; }
.policy-meta dt {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.policy-meta dd { margin: 0; font-size: 0.88rem; }

.policy-layout {
  display: grid;
  grid-template-columns: minmax(13rem, 0.7fr) minmax(0, 2.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(4.5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4.5rem);
}

.policy-toc {
  position: sticky;
  top: clamp(1.5rem, 5vh, 3.5rem);
  align-self: start;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(223, 255, 25, 0.35) transparent;
}

.policy-toc__sticky { position: static; }
.policy-toc__label {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-toc ol {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-toc a {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  padding: 0.65rem 0;
  color: #807e88;
  font-size: 0.86rem;
  line-height: 1.35;
  transition: color 180ms ease;
}

.policy-toc a span {
  color: #53515a;
  font-size: 0.66rem;
}

.policy-toc a:hover,
.policy-toc a.is-active { color: var(--paper); }
.policy-toc a.is-active span { color: var(--acid); }

.policy-toc a.is-active {
  font-weight: 650;
}

.policy-toc__tools {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.policy-toc__tools button {
  padding: 0.7rem 0;
  color: #77757e;
  background: transparent;
  border: 0;
  font-size: 0.76rem;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.policy-toc__tools button:hover { color: var(--paper); }

.policy-toc__tool-status {
  min-height: 1rem;
  margin: 0;
  color: var(--acid);
  font-size: 0.66rem;
  line-height: 1.4;
}

.policy-article { min-width: 0; }

.policy-section {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  column-gap: clamp(1rem, 3vw, 3rem);
  scroll-margin-top: 2rem;
  padding: 0 0 clamp(4.5rem, 8vw, 7.5rem);
}

.policy-section:last-child { padding-bottom: 0; }

.policy-section__number {
  padding-top: 0.55rem;
  color: var(--acid);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.policy-section__body { grid-column: 2; }

.policy-section h2 {
  margin: 0 0 1.8rem;
  font-size: clamp(2.1rem, 4.8vw, 4.6rem);
  font-weight: 430;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.policy-section h3 {
  margin: 2.2rem 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 650;
}

.policy-section p,
.policy-section li {
  color: #b7b5bd;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}

.policy-section p { margin: 0 0 1rem; }
.policy-section ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.policy-section li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.5rem;
  border-top: 1px solid var(--line);
}

.policy-section li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: var(--acid);
}

.policy-section a,
.policy-note a { color: var(--paper); text-decoration: underline; text-underline-offset: 0.25em; }

.policy-note {
  margin-top: 1.5rem;
  padding: 1.35rem 1.5rem;
  color: #c9c7ce;
  background: rgba(73, 48, 255, 0.13);
  border: 1px solid rgba(112, 92, 255, 0.4);
  border-radius: 1rem;
  line-height: 1.65;
}

.policy-callout {
  --callout-panel: var(--violet);
  --callout-panel-fg: #fff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(calc(100% - 2.5rem), calc(var(--max) - 9rem));
  margin: 0 auto clamp(1.25rem, 4vw, 4.5rem);
  padding: clamp(2.25rem, 6vw, 5.5rem);
  color: var(--ink);
  background: var(--acid);
  border-radius: clamp(1.25rem, 3vw, 2.5rem);
  transform: translateZ(0);
  transition:
    color 420ms ease,
    transform 700ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

.policy-callout::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -2px;
  background: var(--callout-panel);
  transform: scaleX(0);
  transform-origin: right;
  transition:
    transform 760ms cubic-bezier(0.77, 0, 0.18, 1),
    clip-path 760ms cubic-bezier(0.77, 0, 0.18, 1);
}

.policy-callout::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -55%;
  right: -6%;
  width: 36%;
  aspect-ratio: 1;
  border: clamp(1.5rem, 4vw, 4rem) solid rgba(73, 48, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
  transition:
    transform 900ms cubic-bezier(0.32, 0.94, 0.6, 1),
    border-color 420ms ease,
    opacity 420ms ease;
}

.policy-callout:hover,
.policy-callout:focus-within {
  color: var(--callout-panel-fg);
  transform: translateY(-0.55rem);
}

.policy-callout:hover::before,
.policy-callout:focus-within::before {
  transform: scaleX(1);
}

.policy-callout:hover::after,
.policy-callout:focus-within::after {
  border-color: rgba(223, 255, 25, 0.46);
  transform: translate(-2rem, 2rem) rotate(18deg) scale(1.14);
}

.policy-callout > * {
  position: relative;
  z-index: 1;
}

.policy-callout p {
  margin: 0 0 1rem;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-callout h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 450;
  line-height: 0.93;
  letter-spacing: -0.06em;
}

.policy-callout a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0.9rem 1.15rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
}

.policy-callout a span {
  transition: transform 420ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

.policy-callout:hover a span,
.policy-callout:focus-within a span {
  transform: translateX(0.35rem);
}

/* Products: a radial product launch expands out of the command-center side. */
body[data-route="products"] .policy-callout::before {
  clip-path: circle(0 at 82% 18%);
  transform: none;
}

body[data-route="products"] .policy-callout:hover::before,
body[data-route="products"] .policy-callout:focus-within::before {
  clip-path: circle(145% at 82% 18%);
  transform: none;
}

body[data-route="products"] .policy-callout:hover::after,
body[data-route="products"] .policy-callout:focus-within::after {
  transform: translate(-4rem, 3rem) rotate(135deg) scale(1.35);
}

/* Process: the next phase rises into place like a new delivery stage. */
body[data-route="process"] .policy-callout {
  --callout-panel: #fff;
  --callout-panel-fg: var(--ink);
}

body[data-route="process"] .policy-callout::before {
  transform: scaleY(0);
  transform-origin: bottom;
}

body[data-route="process"] .policy-callout:hover::before,
body[data-route="process"] .policy-callout:focus-within::before {
  transform: scaleY(1);
}

body[data-route="process"] .policy-callout::after {
  width: 52%;
  aspect-ratio: 2.4;
  border-radius: 999px;
}

body[data-route="process"] .policy-callout:hover::after,
body[data-route="process"] .policy-callout:focus-within::after {
  border-color: rgba(73, 48, 255, 0.28);
  transform: translate(-5rem, 6rem) scaleX(1.25);
}

/* FAQ: the answer field opens around a rotating question mark. */
body[data-route="faq"] .policy-callout {
  --callout-panel: #fff;
  --callout-panel-fg: var(--ink);
}

body[data-route="faq"] .policy-callout::before {
  clip-path: inset(50% 0 50% 0);
  transform: none;
}

body[data-route="faq"] .policy-callout:hover::before,
body[data-route="faq"] .policy-callout:focus-within::before {
  clip-path: inset(0);
  transform: none;
}

body[data-route="faq"] .policy-callout::after {
  content: "?";
  top: 50%;
  right: 8%;
  display: grid;
  place-items: center;
  width: auto;
  aspect-ratio: auto;
  color: rgba(73, 48, 255, 0.2);
  border: 0;
  font-size: clamp(9rem, 22vw, 20rem);
  font-weight: 700;
  line-height: 0.7;
  transform: translateY(-50%) rotate(-14deg);
}

body[data-route="faq"] .policy-callout:hover::after,
body[data-route="faq"] .policy-callout:focus-within::after {
  color: rgba(73, 48, 255, 0.34);
  transform: translateY(-50%) rotate(7deg) scale(1.08);
}

/* Resources: a crisp diagonal page-turn reveals the next tool. */
body[data-route="resources"] .policy-callout::before {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transform: none;
}

body[data-route="resources"] .policy-callout:hover::before,
body[data-route="resources"] .policy-callout:focus-within::before {
  clip-path: polygon(-20% 0, 100% 0, 100% 100%, 20% 100%);
  transform: none;
}

body[data-route="resources"] .policy-callout::after {
  border-radius: 1.5rem;
  transform: rotate(25deg);
}

body[data-route="resources"] .policy-callout:hover::after,
body[data-route="resources"] .policy-callout:focus-within::after {
  transform: translate(-4rem, 4rem) rotate(70deg) scale(1.18);
}

/* Legal center: a measured split-panel transition keeps the tone formal. */
body[data-route="legal"] .policy-callout::before {
  transform-origin: left;
}

body[data-route="legal"] .policy-callout::after {
  border-radius: 0;
  transform: rotate(45deg);
}

body[data-route="legal"] .policy-callout:hover::after,
body[data-route="legal"] .policy-callout:focus-within::after {
  transform: translate(-4rem, 3rem) rotate(90deg) scale(1.08);
}

/* Privacy: protection closes smoothly around the content from the center. */
body[data-route="privacy"] .policy-callout::before {
  clip-path: circle(0 at 50% 50%);
  transform: none;
}

body[data-route="privacy"] .policy-callout:hover::before,
body[data-route="privacy"] .policy-callout:focus-within::before {
  clip-path: circle(100% at 50% 50%);
  transform: none;
}

body[data-route="privacy"] .policy-callout:hover::after,
body[data-route="privacy"] .policy-callout:focus-within::after {
  transform: translate(-8rem, 4rem) scale(0.78);
}

/* Terms: a precise diagonal signature sweep crosses the card. */
body[data-route="terms"] .policy-callout::before {
  clip-path: polygon(100% 0, 100% 0, 18% 100%, 18% 100%);
  transform: none;
}

body[data-route="terms"] .policy-callout:hover::before,
body[data-route="terms"] .policy-callout:focus-within::before {
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
  transform: none;
}

body[data-route="terms"] .policy-callout::after {
  width: 44%;
  border-radius: 0;
  transform: rotate(32deg);
}

body[data-route="terms"] .policy-callout:hover::after,
body[data-route="terms"] .policy-callout:focus-within::after {
  transform: translate(-4rem, 4rem) rotate(48deg) scaleY(1.25);
}

/* Cookies: a compact field of consent dots assembles on hover. */
body[data-route="cookies"] .policy-callout {
  --callout-panel: #fff;
  --callout-panel-fg: var(--ink);
}

body[data-route="cookies"] .policy-callout::after {
  top: -20%;
  right: -2%;
  width: 42%;
  border: 0;
  border-radius: 0;
  background: radial-gradient(circle, rgba(73, 48, 255, 0.28) 0 10%, transparent 11%) 0 0 / 4rem 4rem;
  opacity: 0.55;
  transform: rotate(-8deg) scale(0.75);
}

body[data-route="cookies"] .policy-callout:hover::after,
body[data-route="cookies"] .policy-callout:focus-within::after {
  opacity: 1;
  transform: translate(-2rem, 2rem) rotate(0) scale(1);
}

/* Security: a single scan plane passes across the card. */
body[data-route="security"] .policy-callout {
  --callout-panel: #17125e;
}

body[data-route="security"] .policy-callout::before {
  transform: translateX(-102%);
}

body[data-route="security"] .policy-callout:hover::before,
body[data-route="security"] .policy-callout:focus-within::before {
  transform: translateX(0);
}

body[data-route="security"] .policy-callout::after {
  top: 0;
  right: auto;
  bottom: 0;
  left: -22%;
  width: 18%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: rgba(223, 255, 25, 0.18);
  transform: skewX(-16deg);
}

body[data-route="security"] .policy-callout:hover::after,
body[data-route="security"] .policy-callout:focus-within::after {
  transform: translateX(720%) skewX(-16deg);
}

/* Accessibility: a visible focus frame expands to include the whole message. */
body[data-route="accessibility"] .policy-callout {
  --callout-panel: #fff;
  --callout-panel-fg: var(--ink);
}

body[data-route="accessibility"] .policy-callout::before {
  clip-path: inset(12% 8% round 1.2rem);
  transform: scale(0.84);
  opacity: 0;
  transition:
    transform 760ms cubic-bezier(0.32, 0.94, 0.6, 1),
    clip-path 760ms cubic-bezier(0.32, 0.94, 0.6, 1),
    opacity 360ms ease;
}

body[data-route="accessibility"] .policy-callout:hover::before,
body[data-route="accessibility"] .policy-callout:focus-within::before {
  clip-path: inset(0);
  transform: scale(1);
  opacity: 1;
}

body[data-route="accessibility"] .policy-callout::after {
  inset: 1rem;
  width: auto;
  aspect-ratio: auto;
  border-width: 2px;
  border-color: rgba(73, 48, 255, 0.35);
  border-radius: calc(clamp(1.25rem, 3vw, 2.5rem) - 0.5rem);
}

body[data-route="accessibility"] .policy-callout:hover::after,
body[data-route="accessibility"] .policy-callout:focus-within::after {
  border-color: rgba(73, 48, 255, 0.7);
  transform: none;
}

/* Guide pages each inherit the subject's visual logic. */
body[data-route="product-opportunity"] .policy-callout::before {
  transform: scaleY(0);
  transform-origin: top;
}

body[data-route="product-opportunity"] .policy-callout:hover::before,
body[data-route="product-opportunity"] .policy-callout:focus-within::before {
  transform: scaleY(1);
}

body[data-route="product-opportunity"] .policy-callout:hover::after,
body[data-route="product-opportunity"] .policy-callout:focus-within::after {
  transform: translate(-6rem, 5rem) scale(1.4);
}

body[data-route="ai-readiness"] .policy-callout {
  --callout-panel: #24206b;
}

body[data-route="ai-readiness"] .policy-callout::before {
  transform-origin: left;
}

body[data-route="ai-readiness"] .policy-callout::after {
  border-style: dashed;
}

body[data-route="ai-readiness"] .policy-callout:hover::after,
body[data-route="ai-readiness"] .policy-callout:focus-within::after {
  transform: translate(-5rem, 3rem) rotate(150deg) scale(1.12);
}

body[data-route="integration-map"] .policy-callout::before {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transform: none;
}

body[data-route="integration-map"] .policy-callout:hover::before,
body[data-route="integration-map"] .policy-callout:focus-within::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: none;
}

body[data-route="integration-map"] .policy-callout::after {
  border-radius: 0;
  transform: rotate(45deg) scale(0.7);
}

body[data-route="integration-map"] .policy-callout:hover::after,
body[data-route="integration-map"] .policy-callout:focus-within::after {
  transform: translate(-5rem, 4rem) rotate(225deg) scale(1);
}

body[data-route="project-brief"] .policy-callout {
  --callout-panel: #fff;
  --callout-panel-fg: var(--ink);
}

body[data-route="project-brief"] .policy-callout::before {
  transform: scaleY(0);
  transform-origin: bottom;
}

body[data-route="project-brief"] .policy-callout:hover::before,
body[data-route="project-brief"] .policy-callout:focus-within::before {
  transform: scaleY(1);
}

body[data-route="project-brief"] .policy-callout::after {
  border-radius: 0.35rem;
  transform: rotate(-8deg);
}

body[data-route="project-brief"] .policy-callout:hover::after,
body[data-route="project-brief"] .policy-callout:focus-within::after {
  border-color: rgba(73, 48, 255, 0.32);
  transform: translate(-5rem, 5rem) rotate(4deg) scale(1.15);
}

.policy-hub {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(4.5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4.5rem);
}

.policy-hub__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.policy-hub__intro h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 430;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.policy-hub__intro p {
  justify-self: end;
  max-width: 33rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.policy-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 21rem;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  transition: border-color 180ms ease, transform 180ms ease;
}

.policy-card:hover {
  border-color: rgba(223, 255, 25, 0.7);
  transform: translateY(-4px);
}

.policy-card:nth-child(3n + 1) { background: var(--violet); }
.policy-card:nth-child(3n + 1) .policy-card__kicker,
.policy-card:nth-child(3n + 1) p { color: rgba(255, 255, 255, 0.72); }

.policy-card__kicker {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-card h3 {
  max-width: 10ch;
  margin: auto 0 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 430;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.policy-card p {
  max-width: 30rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.policy-card__arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: grid;
  place-items: center;
  width: 2.7rem;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-size: 1.25rem;
}

.policy-footer {
  border-top: 1px solid var(--line);
  background: #050507;
}

.policy-footer__inner {
  display: grid;
  grid-template-columns: minmax(13rem, 1fr) 2fr auto;
  gap: 2rem;
  align-items: start;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 3rem clamp(1.25rem, 4vw, 4.5rem);
}

.policy-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
}

.policy-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.policy-footer nav a:hover { color: var(--paper); }

.policy-footer__meta {
  margin: 0;
  color: #75737b;
  font-size: 0.76rem;
  text-align: right;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .seo-breadcrumb { top: 5.8rem; left: 1.25rem; }
  .policy-header {
    grid-template-columns: 1fr auto;
    padding-top: 1.25rem;
  }
  .policy-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.5rem;
  }
  .policy-nav-toggle { display: inline-flex; }
  .policy-nav { display: none; }
  [data-mobile-nav-open="true"] .policy-nav {
    position: fixed;
    inset: 5.3rem 1rem auto;
    z-index: 95;
    display: grid;
    gap: 0;
    padding: 1rem;
    color: #fff;
    background: rgba(7, 7, 10, 0.98);
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.45);
  }
  [data-mobile-nav-open="true"] .policy-nav a {
    padding: 0.95rem 0.75rem;
    border-bottom: 1px solid var(--line);
  }
  [data-mobile-nav-open="true"] .policy-nav a:last-child { border-bottom: 0; }
  .policy-hero { min-height: 720px; padding-top: 8rem; }
  .policy-hero::before { width: 75vw; right: -26%; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { display: none; }
  .policy-hub__intro { grid-template-columns: 1fr; }
  .policy-hub__intro p { justify-self: start; }
  .policy-footer__inner { grid-template-columns: 1fr 1fr; }
  .policy-footer__meta { grid-column: 1 / -1; text-align: left; }
  .policy-contact-panel { width: min(100%, 42rem); }
}

@media (max-width: 640px) {
  .policy-brand { font-size: 0.82rem; }
  .policy-brand__mark { width: 1.9rem; }
  .policy-header__cta { padding-left: 0.9rem; font-size: 0.78rem; }
  .policy-header__cta {
    width: 9.5rem;
    height: 3rem;
    padding: 0.3rem 0.3rem 0.3rem 1rem;
  }
  .policy-header__cta-mark { flex-basis: 2.35rem; width: 2.35rem; }
  [data-contact-open="true"] .policy-header__cta {
    top: 1rem;
    right: 1rem;
    width: 3rem;
    padding-left: 0.3rem;
  }
  .policy-hero { min-height: 650px; padding-bottom: 3rem; }
  .policy-hero h1 { font-size: clamp(3.5rem, 17vw, 5rem); }
  .policy-hero__lower { grid-template-columns: 1fr; }
  .policy-meta { justify-self: start; flex-wrap: wrap; gap: 1rem; }
  .policy-layout { padding-top: 4rem; }
  .policy-section {
    grid-template-columns: 2.3rem minmax(0, 1fr);
    column-gap: 0.6rem;
  }
  .policy-section h2 { font-size: 2.35rem; }
  .policy-grid { grid-template-columns: 1fr; }
  .policy-card { min-height: 18rem; }
  .policy-footer__inner { grid-template-columns: 1fr; }
  .policy-footer__meta { grid-column: auto; }
  .policy-contact-form__row { grid-template-columns: 1fr; }
  .policy-contact-panel {
    top: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    width: calc(100% - 1rem);
    border-radius: 1.6rem;
    clip-path: none;
  }
  .policy-contact-panel::before {
    top: -6.5rem;
    right: -3.5rem;
    width: 15rem;
    height: 11.5rem;
  }
  .policy-contact-panel::after {
    top: 8%;
    right: -4rem;
    width: 12rem;
  }
  .policy-contact-panel__inner {
    padding: 4.75rem 1.15rem 1.25rem;
  }
  .policy-contact-panel h2 {
    max-width: 9ch;
    font-size: clamp(3.2rem, 14vw, 4.2rem);
  }
  .policy-contact-panel__copy { margin-bottom: 0.9rem; }
  .policy-contact-panel__signals {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
  }
  .policy-contact-panel__signals li { width: fit-content; }
  .policy-contact-panel__form-shell {
    padding: 0;
  }
}

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

@media print {
  body { color: #111; background: #fff; }
  .policy-header, .reading-progress, .policy-toc, .policy-callout, .policy-footer { display: none; }
  .policy-hero { min-height: 0; padding: 2rem 0; border-bottom: 2px solid #111; }
  .policy-hero::before, .policy-hero::after { display: none; }
  .policy-hero h1, .policy-hero h1 em { color: #111; font-size: 4rem; }
  .policy-hero__lede, .policy-section p, .policy-section li { color: #222; }
  .policy-layout { display: block; padding: 2rem 0; }
  .policy-section { break-inside: avoid; }
  .policy-section h2 { font-size: 2rem; }
}
