:root {
  --pink: #ff0a78;
  --pink-light: #ff5ca8;
  --black: #0b0b0c;
  --white: #fff;
  --grey: #a3a3a3;
  --line: rgba(255, 255, 255, .16);
  --pad: clamp(20px, 4vw, 72px);
  --display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
::selection { color: var(--white); background: var(--pink); }
a { color: inherit; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.policy-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--pad);
  color: var(--black);
}
.policy-logo { display: inline-flex; align-items: center; }
.policy-logo img {
  display: block;
  width: 112px;
  height: auto;
  max-width: 112px;
  max-height: 44px;
  object-fit: contain;
}
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.back-link:hover { color: var(--black); background: var(--white); transform: translateY(-1px); }

main { background: var(--black); }
.policy-hero {
  position: relative;
  min-height: min(800px, 88svh);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 130px var(--pad) 72px;
  color: var(--black);
  background: var(--pink);
  overflow: hidden;
}
.policy-hero::before,
.policy-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.policy-hero::before {
  left: -25vw;
  bottom: -33vw;
  width: 76vw;
  height: 76vw;
  background: radial-gradient(circle at 55% 42%, rgba(255,255,255,.34), rgba(255,255,255,0) 63%);
  filter: blur(20px);
  opacity: .38;
}
.policy-hero::after {
  top: -20vw;
  right: -19vw;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle at 40% 45%, rgba(255,255,255,.52), rgba(255,255,255,0) 62%);
  filter: blur(16px);
  opacity: .46;
}
.policy-hero > * { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}
h1 {
  max-width: 1320px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(66px, 9.3vw, 158px);
  font-weight: 600;
  line-height: .78;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
h1 span,
h1 em { display: block; }
h1 em {
  color: var(--white);
  font-style: italic;
  font-weight: 500;
  padding-right: .12em;
}
.updated {
  margin: 34px 0 0;
  font-size: 13px;
  letter-spacing: -.01em;
}

.policy-card {
  width: 100%;
  margin: 0;
  padding: 26px var(--pad) 100px;
  color: var(--white);
  background: var(--black);
}
.policy-card section {
  display: grid;
  grid-template-columns: minmax(250px, .7fr) minmax(0, 1.8fr);
  column-gap: clamp(40px, 8vw, 150px);
  padding: 58px 0 64px;
  border-top: 1px solid var(--line);
}
.policy-card section:last-child { border-bottom: 1px solid var(--line); }
.policy-card section > *:not(h2) { grid-column: 2; }
h2 {
  grid-column: 1;
  grid-row: 1 / span 20;
  align-self: start;
  position: sticky;
  top: 32px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 56px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
h3 {
  margin: 30px 0 12px;
  color: var(--pink);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .07em;
  text-transform: uppercase;
}
h3:first-of-type { margin-top: 2px; }
p {
  max-width: 900px;
  margin: 0 0 17px;
  color: #d8d8d8;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  letter-spacing: -.015em;
}
strong { color: var(--white); }
ul {
  max-width: 900px;
  margin: 0 0 20px;
  padding-left: 20px;
  color: #d8d8d8;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
}
li + li { margin-top: 8px; }
.policy-card a {
  color: var(--white);
  text-decoration-color: var(--pink);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.policy-card a:hover { color: var(--pink); }
code {
  padding: 2px 5px;
  color: var(--black);
  background: var(--pink);
  border-radius: 4px;
  font-size: .9em;
  overflow-wrap: anywhere;
}
.table-wrap {
  max-width: 100%;
  margin: 22px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}
table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 13px; }
th, td { padding: 15px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { color: var(--black); background: var(--pink); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }
.note { padding: 16px 18px; color: var(--white); background: rgba(255,255,255,.06); border-radius: 12px; font-size: 13px; }

.policy-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
  gap: 36px;
  padding: 48px var(--pad);
  color: var(--white);
  background: var(--black);
}
.policy-footer-brand img {
  display: block;
  width: 120px;
  height: auto;
  max-width: 120px;
  max-height: 48px;
  object-fit: contain;
}
.policy-footer p {
  margin: 0;
  color: var(--white);
  font-size: 12px;
  line-height: 1.35;
}
.policy-footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.policy-footer a { text-decoration: none; }
.policy-footer a:hover { color: var(--pink); }
.policy-copyright { justify-self: end; text-align: right; }

@media (max-width: 900px) {
  .policy-card section {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .policy-card section > *:not(h2), h2 { grid-column: 1; }
  h2 { grid-row: auto; position: static; max-width: 720px; }
  .policy-footer { grid-template-columns: 1fr 1fr; align-items: start; }
  .policy-copyright { justify-self: start; text-align: left; }
}

@media (max-width: 680px) {
  :root { --pad: 17px; }
  .policy-header { padding-top: 15px; padding-bottom: 15px; }
  .policy-logo img { width: 92px; max-width: 92px; max-height: 36px; }
  .back-link { min-height: 35px; padding: 8px 12px; font-size: 10px; }
  .policy-hero { min-height: 520px; padding-top: 92px; padding-bottom: 44px; }
  .eyebrow { margin-bottom: 22px; font-size: 9px; }
  h1 { font-size: clamp(48px, 15.2vw, 66px); line-height: .8; }
  .updated { margin-top: 25px; font-size: 10px; }
  .policy-card { padding-top: 8px; padding-bottom: 62px; }
  .policy-card section { gap: 22px; padding: 38px 0 42px; }
  h2 { font-size: 34px; }
  h3 { margin-top: 24px; font-size: 11px; }
  p, ul { font-size: 13px; line-height: 1.5; }
  .policy-footer { grid-template-columns: 1fr; gap: 20px; padding-top: 38px; padding-bottom: 38px; }
  .policy-footer-brand img { width: 100px; max-width: 100px; max-height: 39px; }
  .policy-footer p { font-size: 10px; }
  .policy-footer-links { font-size: 11px; }
}

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