:root {
  color-scheme: light;
  --ink: #14232f;
  --muted: #526473;
  --line: #d7e2e7;
  --paper: #ffffff;
  --wash: #efffff;
  --brand: #00c8c7;
  --brand-dark: #007f82;
  --navy: #0c3441;
  --shadow: 0 18px 50px rgba(12, 52, 65, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(0, 252, 251, 0.28), transparent 27rem),
    linear-gradient(180deg, #f4ffff 0, #f8fbfc 35rem, #eef4f6 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.65;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #005e61;
}

a:focus-visible {
  border-radius: 0.2rem;
  outline: 3px solid rgba(0, 127, 130, 0.3);
  outline-offset: 3px;
}

.site-header {
  border-bottom: 1px solid rgba(12, 52, 65, 0.12);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  width: min(1120px, calc(100% - 2rem));
  min-height: 4.75rem;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-link img {
  display: block;
  width: 132px;
  height: auto;
}

.language-link {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  background: var(--paper);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.language-link:hover {
  border-color: var(--brand);
  background: var(--wash);
  color: var(--navy);
}

.page-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0 5rem;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 127, 130, 0.15);
  border-radius: 1.4rem;
  padding: clamp(2rem, 5vw, 4.25rem);
  background: linear-gradient(135deg, #ffffff 0%, #eaffff 100%);
  box-shadow: var(--shadow);
}

.hero::after {
  position: absolute;
  top: -5rem;
  right: -4rem;
  width: 17rem;
  height: 17rem;
  border: 2.6rem solid rgba(0, 200, 199, 0.11);
  border-radius: 50%;
  content: "";
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.2;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  letter-spacing: -0.045em;
}

.hero__lede {
  max-width: 760px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.92rem;
  list-style: none;
}

.meta-list strong {
  color: var(--ink);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.summary-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
}

.summary-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.summary-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.deletion-callout {
  display: flex;
  margin-top: 1.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  background: var(--navy);
  color: #ffffff;
}

.deletion-callout p {
  margin: 0;
}

.deletion-callout strong {
  display: block;
  margin-bottom: 0.1rem;
}

.button {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  background: var(--brand);
  color: #082f38;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.button:hover {
  background: #5dffff;
  color: #082f38;
}

.content-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 3rem;
  align-items: start;
}

.toc {
  position: sticky;
  top: 1.5rem;
  border-left: 3px solid var(--brand);
  padding-left: 1rem;
}

.toc h2 {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc li + li {
  margin-top: 0.45rem;
}

.toc a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.toc a:hover {
  color: var(--brand-dark);
}

.policy {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: clamp(1.4rem, 4vw, 3.25rem);
  background: var(--paper);
  box-shadow: 0 12px 35px rgba(12, 52, 65, 0.06);
}

.policy section {
  scroll-margin-top: 1.5rem;
}

.policy section + section {
  margin-top: 2.8rem;
  border-top: 1px solid var(--line);
  padding-top: 2.8rem;
}

.policy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.025em;
}

.policy h3 {
  margin: 1.6rem 0 0.45rem;
  font-size: 1.05rem;
}

.policy p {
  margin: 0.8rem 0;
}

.policy ul {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
}

.policy li + li {
  margin-top: 0.55rem;
}

.note {
  border-left: 4px solid var(--brand);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 0.95rem 1.1rem;
  background: var(--wash);
}

.contact-card {
  border-radius: 1rem;
  padding: 1.25rem;
  background: #eff8f9;
}

.contact-card p {
  margin: 0.25rem 0;
}

.site-footer {
  padding: 0 0 2.5rem;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

@media (max-width: 820px) {
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .deletion-callout {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
    columns: 2;
  }

  .toc h2 {
    column-span: all;
  }
}

@media (max-width: 520px) {
  .site-header__inner,
  .page-shell {
    width: min(100% - 1.2rem, 1120px);
  }

  .page-shell {
    padding-top: 1rem;
  }

  .hero {
    border-radius: 1rem;
    padding: 1.5rem;
  }

  .hero::after {
    display: none;
  }

  .meta-list {
    display: block;
  }

  .meta-list li + li {
    margin-top: 0.3rem;
  }

  .toc {
    columns: 1;
  }

  .policy {
    border-radius: 1rem;
  }
}

@media print {
  body {
    background: #ffffff;
  }

  .site-header,
  .summary-grid,
  .deletion-callout,
  .toc,
  .site-footer {
    display: none;
  }

  .page-shell {
    width: 100%;
    padding: 0;
  }

  .hero,
  .policy {
    border: 0;
    padding: 0;
    box-shadow: none;
  }

  .content-layout {
    display: block;
    margin-top: 2rem;
  }

  .policy section + section {
    break-before: auto;
  }

  a {
    color: inherit;
    text-decoration: none;
  }
}
