:root {
  --bg: #06060f;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.88);
  --muted: rgba(255, 255, 255, 0.58);
  --soft: rgba(255, 255, 255, 0.34);
  --accent: #a78bfa;
  --accent-2: #60a5fa;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: radial-gradient(circle at top, rgba(124, 58, 237, 0.12), transparent 32%), var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.legal-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 24px 72px;
}

.legal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
}

.home-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.hero {
  padding: 30px 0 18px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.meta-card,
.content-card {
  margin-top: 24px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

.meta-card {
  padding: 20px 22px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.meta-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-item span,
.meta-item a {
  color: var(--muted);
  text-decoration: none;
  line-height: 1.65;
  font-size: 14px;
}

.content-card {
  padding: 28px 26px 30px;
}

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

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

.section h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.3;
}

.section p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
}

.section ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.section li {
  margin-bottom: 10px;
  line-height: 1.8;
  font-size: 15px;
}

.note,
.contact-card {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(124, 58, 237, 0.09);
  border: 1px solid rgba(124, 58, 237, 0.18);
  color: #ddd6fe;
  font-size: 14px;
  line-height: 1.75;
}

.timeline-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-table th,
.timeline-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.65;
}

.timeline-table th {
  background: rgba(124, 58, 237, 0.18);
  color: var(--white);
}

.timeline-table td {
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--soft);
  font-size: 13px;
}

@media (max-width: 720px) {
  .legal-shell {
    padding: 24px 18px 56px;
  }

  .content-card,
  .meta-card {
    border-radius: 20px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .section h2 {
    font-size: 20px;
  }
}
