:root {
  color-scheme: light;
  --ink: #102a33;
  --muted: #526a72;
  --teal: #087c82;
  --teal-dark: #055d62;
  --aqua: #dff4f2;
  --mist: #f4f8f7;
  --line: #d5e2df;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 42, 51, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal-dark); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: .7rem 1rem;
  border-radius: .5rem;
}

.skip-link:focus { top: 1rem; }

.site-header {
  min-height: 76px;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 55% 45% 58% 42% / 65% 45% 55% 35%;
  font-size: .9rem;
  font-weight: 800;
}

nav { display: flex; align-items: center; gap: clamp(.8rem, 2.5vw, 2rem); }

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 650;
}

nav a:hover, nav a:focus-visible, nav a[aria-current="page"] { color: var(--teal-dark); }

main { min-height: calc(100vh - 160px); }

.hero {
  padding: clamp(4.5rem, 10vw, 9rem) clamp(1.25rem, 9vw, 9rem) clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 86% 18%, rgba(8, 124, 130, .22), transparent 24rem),
    linear-gradient(145deg, #f8fbfa 0%, #e4f5f2 100%);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1, h2 { margin-top: 0; line-height: 1.12; letter-spacing: -.035em; }

h1 { max-width: 900px; margin-bottom: 1.4rem; font-size: clamp(2.7rem, 7vw, 6rem); }

h2 { margin-bottom: .7rem; font-size: clamp(1.35rem, 2.5vw, 2rem); }

p { margin-top: 0; }

.lead { max-width: 720px; margin-bottom: 2rem; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .75rem 1.3rem;
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  box-shadow: 0 10px 25px rgba(8, 124, 130, .22);
}

.button:hover, .button:focus-visible { background: var(--teal-dark); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-card { min-height: 300px; padding: clamp(2rem, 5vw, 4.5rem); background: var(--white); }
.feature-card p { max-width: 30rem; color: var(--muted); }
.feature-number { display: block; margin-bottom: 3.5rem; color: var(--teal); font-size: .78rem; font-weight: 800; letter-spacing: .12em; }

.support-panel {
  margin: clamp(2rem, 6vw, 6rem);
  padding: clamp(2rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  background: var(--ink);
  color: var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.support-panel .eyebrow { color: #8be1d9; }
.resource-links { display: grid; }
.resource-links a { padding: 1.1rem 0; display: flex; justify-content: space-between; gap: 1rem; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.2); text-decoration: none; }
.resource-links a:first-child { border-top: 1px solid rgba(255,255,255,.2); }

.document-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(230px, .7fr) minmax(0, 1.5fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.document-summary { position: sticky; top: 2rem; align-self: start; }
.document-summary h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.document-summary p { color: var(--muted); }
.text-link { font-weight: 750; text-decoration: none; }

.policy-content { padding: clamp(1.5rem, 4vw, 4rem); background: var(--white); border: 1px solid var(--line); border-radius: 1.2rem; box-shadow: var(--shadow); }
.policy-content section { padding: 0 0 1.6rem; margin: 0 0 1.8rem; border-bottom: 1px solid var(--line); }
.policy-content section:last-child { margin-bottom: 0; padding-bottom: 0; border: 0; }
.policy-content h2 { font-size: 1.35rem; }
.policy-content p, .policy-content li { color: #334e57; }
.policy-content li + li { margin-top: .5rem; }

.deletion-shell { max-width: 1180px; margin: 0 auto; padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 5vw, 5rem); }
.deletion-intro { max-width: 860px; margin-bottom: clamp(3rem, 7vw, 6rem); }
.deletion-intro h1 { font-size: clamp(2.5rem, 6vw, 5.2rem); }
.steps-card { padding: clamp(1.5rem, 4vw, 3.5rem); background: var(--aqua); border: 1px solid #bee2de; border-radius: 1.2rem; }
.steps { padding: 0; margin: 2rem 0 0; display: grid; gap: 1.2rem; list-style: none; }
.steps li { display: grid; grid-template-columns: 2.6rem 1fr; gap: 1rem; align-items: start; }
.steps li > span { width: 2.4rem; height: 2.4rem; display: grid; place-items: center; background: var(--teal); color: var(--white); border-radius: 50%; font-weight: 800; }
.steps strong { display: block; margin-bottom: .15rem; }
.steps p { color: var(--muted); margin: 0; }
.deletion-details { margin: clamp(3rem, 6vw, 5rem) 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.deletion-details article { padding: 1.6rem; background: var(--white); border: 1px solid var(--line); border-radius: 1rem; }
.deletion-details h2 { font-size: 1.2rem; }
.deletion-details p, .privacy-note { color: var(--muted); }

footer {
  min-height: 84px;
  padding: 1.5rem clamp(1.25rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: .9rem;
}

footer a { color: inherit; }

@media (max-width: 820px) {
  .site-header { padding-block: .85rem; align-items: flex-start; flex-direction: column; gap: .75rem; }
  nav { width: 100%; overflow-x: auto; padding-bottom: .2rem; }
  .feature-grid, .support-panel, .document-shell, .deletion-details { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .feature-number { margin-bottom: 2rem; }
  .support-panel { margin-inline: 1rem; }
  .document-summary { position: static; }
}

@media (max-width: 540px) {
  .hero { padding-top: 4rem; }
  h1 { font-size: 2.55rem; }
  nav { gap: 1rem; }
  nav a { white-space: nowrap; font-size: .86rem; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
