:root {
  --bg: #090713;
  --bg-deep: #05030b;
  --panel: rgba(14, 12, 30, 0.86);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f5ff;
  --muted: #c7bfdc;
  --accent: #ff4f93;
  --accent-strong: #6cc6ff;
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.36);
  --max: 960px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 79, 147, 0.22), transparent 20%),
    radial-gradient(circle at 85% 12%, rgba(108, 198, 255, 0.18), transparent 18%),
    linear-gradient(180deg, #110b21 0%, var(--bg) 36%, var(--bg-deep) 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 4, 14, 0.78), rgba(6, 4, 14, 0.9)),
    url("./images/hero-model.jpg") center top / cover no-repeat;
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
}

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

.policy-shell {
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.policy-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 0 0 24px 24px;
  background: rgba(8, 8, 18, 0.88);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.policy-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.policy-brand img {
  width: 92px;
  height: 56px;
  object-fit: contain;
}

.policy-brand strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
}

.policy-brand span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-back {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
}

.policy-hero,
.policy-content,
.policy-links {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.policy-hero {
  padding: 28px;
}

.policy-eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.policy-hero h1,
.policy-content h2 {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.03em;
}

.policy-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.98;
}

.policy-hero p,
.policy-content p,
.policy-content li {
  color: var(--muted);
  line-height: 1.75;
}

.policy-content {
  padding: 10px 24px 24px;
}

.policy-section {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.policy-content h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.policy-content ul {
  margin: 0;
  padding-left: 18px;
}

.policy-links {
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.policy-links a {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .policy-shell {
    padding-top: 12px;
  }

  .policy-topbar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
  }

  .policy-brand {
    justify-content: center;
  }

  .policy-back {
    width: 100%;
  }

  .policy-hero,
  .policy-content,
  .policy-links {
    border-radius: 22px;
  }

  .policy-hero,
  .policy-content,
  .policy-links {
    padding-left: 18px;
    padding-right: 18px;
  }

  .policy-links a {
    flex: 1 1 calc(50% - 10px);
  }
}
