@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --paper: #f3f2ec;
  --paper-deep: #e8e7df;
  --ink: #11130f;
  --ink-soft: #5f6259;
  --line: rgba(17, 19, 15, 0.14);
  --cyan: #18bfd5;
  --cyan-dark: #087c8c;
  --pink: #e943a9;
  --violet: #7952f2;
  --night: #080d13;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 700;
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(17, 19, 15, 0.09);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  flex: 0 0 auto;
}

.header-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.header-links > a:first-child,
.footer-links a {
  color: var(--ink-soft);
}

.header-links > a:first-child:hover,
.footer-links a:hover {
  color: var(--ink);
}

.header-cta {
  padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}

.header-cta:hover {
  background: var(--ink);
  color: white;
}

.policy-hero {
  position: relative;
  overflow: hidden;
  padding: 178px 0 110px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 45%),
    var(--paper);
}

.hero-glow {
  position: absolute;
  top: 65px;
  right: -8vw;
  width: min(72vw, 920px);
  aspect-ratio: 1.25;
  background:
    radial-gradient(circle at 42% 42%, rgba(121, 82, 242, 0.2), transparent 29%),
    radial-gradient(circle at 63% 46%, rgba(24, 191, 213, 0.23), transparent 34%),
    radial-gradient(circle at 42% 62%, rgba(233, 67, 169, 0.14), transparent 31%);
  filter: blur(58px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.68fr;
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(24, 191, 213, 0.14);
}

.hero-copy h1 {
  margin-top: 25px;
  font-size: clamp(72px, 9vw, 124px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.84;
}

.hero-copy h1 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(100deg, #df2d9c 4%, #7952f2 50%, #0faac4 96%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lede {
  max-width: 650px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.55;
}

.policy-date {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.privacy-seal {
  position: relative;
  width: min(100%, 400px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border: 1px solid rgba(17, 19, 15, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.25);
}

.privacy-seal::before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(17, 19, 15, 0.1);
  border-radius: 50%;
}

.privacy-seal svg {
  width: 31%;
  fill: rgba(243, 242, 236, 0.62);
  stroke: var(--ink);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-seal svg path:last-child {
  fill: none;
  stroke: var(--cyan-dark);
  stroke-width: 6;
}

.seal-orbit {
  position: absolute;
  border: 1px solid rgba(17, 19, 15, 0.1);
  border-radius: 50%;
}

.seal-orbit-one {
  inset: 29%;
}

.seal-orbit-two {
  inset: -8%;
  border-style: dashed;
  opacity: 0.55;
}

.summary-band {
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}

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

.summary-grid > div {
  min-height: 180px;
  padding: 34px 36px;
  border-left: 1px solid var(--line);
}

.summary-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.summary-grid span,
.section-number {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.summary-grid h2 {
  margin-top: 26px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.summary-grid p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.45;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 720px);
  justify-content: space-between;
  gap: 80px;
  padding-block: 110px 140px;
}

.policy-nav {
  position: sticky;
  top: 28px;
  align-self: start;
  padding-top: 3px;
}

.policy-nav > p {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.policy-nav ol {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: policy-links;
}

.policy-nav li {
  counter-increment: policy-links;
  border-top: 1px solid var(--line);
}

.policy-nav li:last-child {
  border-bottom: 1px solid var(--line);
}

.policy-nav a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 4px;
  padding: 11px 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
  transition: color 150ms ease, transform 150ms ease;
}

.policy-nav a::before {
  content: "0" counter(policy-links);
  color: #94978f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.policy-nav a:hover {
  color: var(--ink);
  transform: translateX(3px);
}

.policy-content > section {
  scroll-margin-top: 28px;
  padding-top: 62px;
  border-top: 1px solid var(--line);
}

.policy-content > section:first-child {
  padding-top: 0;
  border-top: 0;
}

.policy-content > section + section {
  margin-top: 70px;
}

.policy-content h2 {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 51px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.policy-content h3 {
  margin-top: 32px;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.policy-content h2 + p,
.policy-content h3 + p,
.policy-content p + p,
.policy-content ul + p {
  margin-top: 22px;
}

.policy-content p,
.policy-content li {
  color: var(--ink-soft);
}

.policy-content strong {
  color: var(--ink);
}

.policy-content ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.policy-content li {
  position: relative;
  padding: 15px 0 15px 28px;
  border-top: 1px solid var(--line);
}

.policy-content li:last-child {
  border-bottom: 1px solid var(--line);
}

.policy-content li::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.data-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.data-list > div {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.data-list h3 {
  margin-top: 0;
  font-size: 17px;
}

.data-list p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
}

.note-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  margin-top: 28px;
  padding: 25px;
  border-radius: 16px;
  background: var(--night);
}

.note-card svg {
  width: 30px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.note-card p {
  color: #aeb8c2;
  font-size: 15px;
}

.note-card strong {
  color: white;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-links a:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.contact-links span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: 15px;
}

.site-footer {
  padding-block: 30px;
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-inner p {
  color: var(--ink-soft);
  font-size: 13px;
}

.footer-links {
  justify-content: flex-end;
  gap: 20px;
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 300px;
    gap: 45px;
  }

  .hero-copy h1 {
    font-size: clamp(66px, 10vw, 92px);
  }

  .policy-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 50px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .header-inner {
    min-height: 72px;
  }

  .header-links > a:first-child {
    display: none;
  }

  .policy-hero {
    padding: 132px 0 75px;
  }

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

  .privacy-seal {
    width: min(74vw, 330px);
    grid-row: 1;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-copy h1 {
    font-size: clamp(65px, 20vw, 96px);
  }

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

  .summary-grid > div,
  .summary-grid > div:last-child {
    min-height: 0;
    padding: 27px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .summary-grid > div:last-child {
    border-bottom: 0;
  }

  .summary-grid h2 {
    margin-top: 12px;
  }

  .policy-layout {
    display: block;
    padding-block: 75px 95px;
  }

  .policy-nav {
    position: static;
    margin-bottom: 70px;
  }

  .policy-nav ol {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
  }

  .policy-nav li,
  .policy-nav li:last-child {
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .data-list > div {
    min-height: 0;
  }

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

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

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

  .brand span {
    max-width: 105px;
    line-height: 1.05;
  }

  .header-cta {
    padding: 8px 12px;
    font-size: 12px;
  }

  .policy-hero {
    padding-top: 120px;
  }

  .privacy-seal {
    width: min(72vw, 280px);
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(61px, 20vw, 82px);
  }

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

  .policy-nav ol {
    grid-template-columns: 1fr;
  }

  .policy-content > section + section {
    margin-top: 58px;
  }

  .policy-content > section {
    padding-top: 50px;
  }

  .policy-content h2 {
    font-size: 36px;
  }

  .data-list > div {
    padding: 23px;
  }

  .note-card {
    grid-template-columns: 1fr;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

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

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

  .footer-inner p {
    grid-column: auto;
    grid-row: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
