:root {
  --black: #000;
  --carbon: #111;
  --surface: #171717;
  --green: #7ee62a;
  --white: #fff;
  --muted: rgba(255,255,255,.62);
  --line: rgba(255,255,255,.12);
  --display: "Inter Tight", "Inter", sans-serif;
  --body: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.policy-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 82px;
  padding: 18px clamp(22px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.84);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: 116px;
  height: auto;
}

.back-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}

.back-link:hover { color: var(--green); }

.policy-shell {
  width: min(1320px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 820px);
  justify-content: space-between;
  gap: clamp(48px, 8vw, 128px);
  padding: clamp(58px, 8vw, 120px) 0;
}

.policy-aside {
  position: sticky;
  top: 126px;
  align-self: start;
  display: grid;
  gap: 18px;
}

.eyebrow {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.policy-aside p {
  margin: 0;
  max-width: 220px;
  color: rgba(255,255,255,.78);
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.policy-aside a {
  width: max-content;
  color: rgba(255,255,255,.42);
  font-size: 11px;
  text-decoration: none;
}

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

.policy-content h1 {
  margin: 0 0 28px;
  max-width: 760px;
  font-family: var(--display);
  font-size: clamp(42px, 6.5vw, 84px);
  line-height: .92;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.policy-content h2 {
  scroll-margin-top: 112px;
  margin: clamp(68px, 9vw, 112px) 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -.04em;
}

.policy-content h2::first-letter { color: var(--green); }

.policy-content h3 {
  margin: 34px 0 14px;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  letter-spacing: -.01em;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.policy-content p { margin: 0 0 18px; }
.policy-content ul { margin: 10px 0 24px; padding-left: 20px; }
.policy-content li { margin: 5px 0; padding-left: 5px; }
.policy-content li::marker { color: var(--green); }
.policy-content strong { color: rgba(255,255,255,.9); }

.policy-content a {
  color: var(--white);
  text-decoration-color: var(--green);
  text-underline-offset: 3px;
}

.policy-content blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--green);
  background: var(--surface);
}

.policy-content blockquote p { margin: 0; }

.loading {
  min-height: 50vh;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.loading span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.2s infinite alternate;
}

.loading span:nth-child(2) { animation-delay: .2s; }
.loading span:nth-child(3) { animation-delay: .4s; }
.loading p { margin: 0 0 0 8px; font-size: 12px; }

.policy-error {
  padding: 28px;
  border: 1px solid rgba(126,230,42,.35);
  background: var(--surface);
}

.policy-error h1 { font-size: clamp(30px, 5vw, 54px); }

.policy-footer {
  min-height: 110px;
  margin: 0 clamp(22px, 4vw, 64px);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.36);
  font-size: 11px;
}

@keyframes pulse {
  to { opacity: .24; transform: translateY(-4px); }
}

@media (max-width: 760px) {
  .policy-header { min-height: 70px; }
  .brand img { width: 96px; }
  .policy-shell {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 42px;
  }
  .policy-aside { position: static; }
  .policy-aside p { max-width: 300px; }
  .policy-content h1 { font-size: clamp(38px, 13vw, 62px); }
  .policy-content h2 { margin-top: 62px; }
  .policy-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .loading span { animation: none; }
}
