:root {
  --bg: #07110f;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.64);
  --muted-low: rgba(255, 255, 255, 0.42);
  --panel: rgba(255, 255, 255, 0.06);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.16);
  --green: #68f2a0;
  --purple: #9b7cff;
  --max: 1120px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Google Sans Flex", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(104, 242, 160, 0.16), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(155, 124, 255, 0.2), transparent 32%),
    linear-gradient(145deg, #07110f 0%, #111827 52%, #1b1230 100%);
  color: var(--text);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.policy-header {
  position: fixed;
  top: 26px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 48px), var(--max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.policy-brand {
  display: inline-flex;
  align-items: center;
  width: 116px;
}

.policy-brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.header-link {
  min-height: 38px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 560;
}

.policy-main {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 154px 0 72px;
}

.policy-hero {
  max-width: 840px;
  margin-bottom: 54px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1;
  font-weight: 560;
  color: var(--muted-low);
}

.policy-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  font-weight: 690;
  letter-spacing: 0;
}

.policy-hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 28px 0 0;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--muted);
}

.policy-card {
  padding: 46px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(104, 242, 160, 0.09), transparent 34%),
    radial-gradient(circle at 86% 76%, rgba(155, 124, 255, 0.12), transparent 38%),
    var(--panel);
  backdrop-filter: blur(24px);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.24);
}

.policy-section {
  max-width: 920px;
  scroll-margin-top: 120px;
}

.policy-section h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 0.98;
  font-weight: 660;
  letter-spacing: 0;
}

.policy-section > p {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.58;
  color: var(--muted);
}

.email-link {
  width: fit-content;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  font-size: 15px;
  font-weight: 620;
  transition: transform 0.25s ease, background 0.25s ease;
}

.email-link:hover,
.inline-email:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.policy-divider {
  height: 1px;
  margin: 54px 0;
  background: var(--border);
}

.policy-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.policy-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.policy-grid span {
  display: block;
  margin-bottom: 22px;
  font-size: 12px;
  color: var(--muted-low);
}

.policy-grid h3 {
  margin: 0 0 16px;
  font-size: 21px;
  line-height: 1.12;
  font-weight: 620;
  letter-spacing: 0;
}

.policy-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.policy-grid p + p {
  margin-top: 14px;
}

.inline-email {
  width: fit-content;
  min-height: 38px;
  margin-top: 18px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}

.developer-note {
  margin: 0;
  color: var(--muted-low) !important;
}

.policy-footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 42px 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
}

.policy-footer p,
.policy-footer span {
  margin: 0;
  color: var(--muted-low);
  font-size: 13px;
}

@media (max-width: 760px) {
  .policy-header {
    top: 20px;
    width: calc(100% - 36px);
  }

  .policy-brand {
    width: 104px;
  }

  .header-link {
    min-height: 36px;
    padding: 0 14px;
  }

  .policy-main {
    width: calc(100% - 36px);
    padding-top: 126px;
  }

  .policy-hero h1 {
    font-size: clamp(42px, 13vw, 66px);
    letter-spacing: 0;
  }

  .policy-card {
    padding: 30px;
    border-radius: 28px;
  }

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

  .policy-grid article {
    min-height: auto;
  }

  .policy-footer {
    width: calc(100% - 36px);
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .policy-header,
  .policy-main,
  .policy-footer {
    width: calc(100% - 28px);
  }

  .policy-card {
    padding: 24px;
  }

  .email-link,
  .inline-email {
    width: 100%;
    justify-content: center;
  }
}