*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B2A;
  --ink: #1C2B3A;
  --steel: #3A5068;
  --mist: #7A93A8;
  --fog: #C8D6E0;
  --cloud: #EEF3F7;
  --white: #FAFCFE;
  --accent: #2563EB;
  --accent-light: #DBEAFE;
  --radius: 4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.legal-nav {
  position: sticky; top: 0;
  background: rgba(250,252,254,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--fog);
  padding: 0 5%;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.legal-nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  text-decoration: none;
}
.legal-nav-brand span { color: var(--accent); }
.legal-back {
  font-size: 0.875rem;
  color: var(--steel);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.375rem;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--navy); }
.legal-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 5% 5rem;
}
.legal-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem;
}
.legal-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--navy);
  margin-bottom: 0.5rem; letter-spacing: -0.02em;
}
.legal-date {
  font-size: 0.875rem; color: var(--steel);
  margin-bottom: 3rem; padding-bottom: 2rem;
  border-bottom: 1px solid var(--fog);
}
.legal-container h2 {
  font-size: 1.0625rem; font-weight: 600;
  color: var(--navy); margin: 2.5rem 0 0.75rem;
}
.legal-container p {
  color: var(--steel); margin-bottom: 1rem; font-size: 0.9375rem; line-height: 1.7;
}
.legal-container ul {
  color: var(--steel); padding-left: 1.5rem;
  margin-bottom: 1rem; font-size: 0.9375rem; line-height: 1.7;
}
.legal-container li { margin-bottom: 0.375rem; }
.legal-highlight {
  background: var(--cloud);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 6px 6px 0;
  margin: 1.5rem 0;
}
.legal-highlight p { margin: 0; }
.legal-footer {
  background: var(--navy);
  padding: 2rem 5%;
  text-align: center;
  color: #7A93A8;
  font-size: 0.8125rem;
}
.legal-footer strong { color: var(--fog); }
.legal-footer a { color: #7A93A8; text-decoration: none; }
.legal-footer a:hover { color: var(--fog); }
.deletion-step {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; background: var(--cloud);
  border-radius: 8px; margin-bottom: 0.875rem;
}
.deletion-step-num {
  width: 32px; height: 32px;
  background: var(--navy); color: white;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}
.deletion-step-title { font-weight: 600; color: var(--navy); font-size: 0.9375rem; margin-bottom: 0.25rem; }
.deletion-step-body { color: var(--steel); font-size: 0.875rem; line-height: 1.6; }
.deletion-cta {
  background: #F0FDF4; border: 1.5px solid #16A34A;
  border-radius: 8px; padding: 1.5rem;
  margin: 2rem 0; text-align: center;
}
.deletion-cta p { margin: 0 0 1rem; }
.deletion-cta a {
  display: inline-block; background: var(--navy); color: white;
  padding: 0.75rem 2rem; border-radius: 4px;
  text-decoration: none; font-weight: 600; font-size: 0.9375rem;
}
