:root {
  --pink: #ff6f91;
  --violet: #8b5cf6;
  --teal: #2dd4bf;
  --dark: #0f172a;
  --text: #334155;
  --bg: #f8fafc;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
header {
  background: radial-gradient(circle at 20% 20%, rgba(45,212,191,.2), transparent 45%),
              linear-gradient(135deg, rgba(255,111,145,.18), rgba(139,92,246,.28));
  color: var(--dark);
  padding: 48px 16px 64px;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.logo { font-weight: 700; font-size: 20px; color: var(--dark); }
.logo span:nth-child(1) { color: var(--pink); }
.logo span:nth-child(2) { color: var(--violet); }
.logo span:nth-child(3) { color: var(--teal); }
.nav-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.nav-actions a {
  border: 1px solid rgba(15,23,42,.2);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.nav-actions a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15,23,42,.1);
}
.hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin: 12px 0;
  line-height: 1.1;
  color: var(--dark);
}
.hero-content p { color: #475569; max-width: 640px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,111,145,.12);
  color: var(--pink);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
main {
  margin-top: -48px;
  padding-bottom: 80px;
}
.legal-card {
  background: white;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(15,23,42,.08);
  padding: 48px;
}
section + section { margin-top: 40px; }
section h2 {
  margin: 0 0 12px;
  font-size: 24px;
  color: var(--dark);
}
section h3 {
  margin: 24px 0 8px;
  font-size: 18px;
  color: #0f172a;
}
section p { margin: 0 0 12px; color: #475569; }
section ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: #475569;
}
section li { margin-bottom: 6px; }
.section-number {
  font-weight: 700;
  color: var(--violet);
  margin-right: 8px;
}
.contact-box {
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 20px;
  padding: 24px;
  background: rgba(139,92,246,.04);
  display: grid;
  gap: 8px;
}
.contact-label { font-weight: 600; color: var(--dark); }
footer {
  text-align: center;
  padding: 32px 16px 48px;
  color: #64748b;
  font-size: 14px;
}
footer a {
  color: var(--violet);
  font-weight: 600;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--dark);
}
.back-link span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(15,23,42,.12);
}
@media (max-width: 640px) {
  .legal-card { padding: 32px 20px; }
  .navbar { flex-direction: column; align-items: flex-start; }
  .nav-actions { width: 100%; }
  .nav-actions a { flex: 1 1 auto; text-align: center; }
}
