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

:root {
  --ink: #0D0D0B;
  --ink-60: rgba(13,13,11,0.6);
  --ink-20: rgba(13,13,11,0.2);
  --ink-08: rgba(13,13,11,0.08);
  --cream: #F7F6F3;
  --lime: #C9F542;
  --lime-pale: rgba(201,245,66,0.15);
  --white: #ffffff;
}

html {
  width: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: .5;
}

nav {
  height: 64px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 11, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  letter-spacing: -.02em;
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

.nav-back {
  font-size: 13px;
  color: rgba(247,246,243,0.55);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s;
}

.nav-back:hover { color: var(--cream); }

main.policy-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 168px 32px 100px;
}

.policy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}

.policy-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--lime);
}

.policy-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 16px;
}

.policy-updated {
  font-size: 14px;
  color: rgba(247,246,243,0.4);
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.policy-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--cream);
  margin-top: 48px;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.policy-content h2 .num {
  color: var(--lime);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
}

.policy-content p {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(247,246,243,0.65);
  margin-bottom: 14px;
}

.policy-content strong {
  color: var(--cream);
  font-weight: 500;
}

.policy-content ul {
  list-style: none;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-content li {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(247,246,243,0.65);
  padding-left: 22px;
  position: relative;
}

.policy-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.policy-content a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 32px;
  margin-top: 56px;
}

.policy-card p {
  margin-bottom: 8px;
}

.policy-card p:last-child { margin-bottom: 0; }

footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.02em;
}

.footer-copy {
  font-size: 12px;
  color: rgba(247,246,243,0.3);
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  color: rgba(247,246,243,0.35);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover { color: var(--cream); }

@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-back {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    font-size: 0;
    line-height: 1;
  }
  .nav-back::before {
    content: "\2190";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 18px;
    line-height: 1;
    transform: translateY(-1px);
  }
  main.policy-main { padding: 140px 20px 80px; }
  footer {
    padding: 32px 20px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 18px;
  }

  .footer-logo { justify-content: center; }

  .footer-copy {
    max-width: 260px;
    line-height: 1.5;
    order: 3;
  }

  .footer-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    justify-items: center;
  }

  .footer-links li:last-child {
    grid-column: 1 / -1;
  }

  .footer-links a {
    display: block;
    padding: 8px 10px;
    font-size: 13px;
    line-height: 1.35;
  }
}
