:root {
  --blue-950: #031b5c;
  --blue-900: #022e97;
  --blue-700: #056cff;
  --blue-600: #027be3;
  --blue-100: #e0edff;
  --blue-50: #f4f8ff;
  --accent: #EE2F5C;
  --slate-950: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --line: #dbe4ef;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--slate-950);
  background:
    radial-gradient(circle at top left, rgba(5, 108, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
}

.privacy-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0;
}

.hero {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.56);
  background:
    radial-gradient(circle at top right, rgba(238, 47, 92, 0.24), transparent 28%),
    radial-gradient(circle at top left, rgba(0, 170, 255, 0.46), transparent 34%),
    linear-gradient(135deg, var(--blue-950) 0%, var(--blue-900) 56%, var(--blue-700) 100%);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  min-height: 300px;
  padding: 42px;
}

.hero-content::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 280px;
  height: 280px;
  border: 42px solid rgba(255,255,255,0.08);
  transform: rotate(30deg);
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
}

.brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo {
  width: 92px;
  height: 92px;
  padding: 10px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.28);
}

.brand-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.70);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 24px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(25px, 4vw, 42px);
  line-height: 1.04;
  font-weight: 950;
}

.hero-copy p {
  margin: 0;
  color: rgba(255,255,255,0.84);
  font-size: 15px;
  line-height: 1.6;
}

.hero-copy .updated {
  margin-top: 16px;
  color: #ebe69c;
  font-size: 13px;
  font-weight: 850;
}

.content-card {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.content-card article {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.055);
  padding: 24px;
}

.content-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--blue-900);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
}

.content-card h3::before {
  content: "";
  width: 7px;
  height: 28px;
  background: linear-gradient(180deg, var(--blue-700), var(--accent));
}

.content-card p {
  margin: 0;
  color: var(--slate-700);
  font-size: 15px;
  line-height: 1.72;
}

.content-card p + p {
  margin-top: 10px;
}

.content-card strong {
  color: var(--blue-900);
  font-weight: 900;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 20px 22px;
  color: var(--slate-500);
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--line);
  font-size: 13px;
}

footer strong {
  color: var(--blue-900);
  letter-spacing: 0.14em;
}

@media (max-width: 760px) {
  .privacy-page {
    width: min(100% - 20px, 1120px);
    padding: 10px 0 20px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }

  .brand-logo {
    width: 72px;
    height: 72px;
  }

  .hero-copy {
    padding: 18px;
  }

  .content-card article {
    padding: 18px;
  }

  footer {
    flex-direction: column;
  }
}
