:root {
  color-scheme: light;
  --background: #f5fafb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #11181b;
  --secondary: #526166;
  --line: rgba(17, 24, 27, 0.10);
  --accent: #06a8bf;
  --accent-dark: #007f95;
  --accent-soft: #dff7fa;
  --success: #0b9b66;
  --shadow: 0 22px 70px rgba(35, 77, 88, 0.12);
  --radius-large: 28px;
  --radius-medium: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 2%, rgba(6, 168, 191, 0.16), transparent 32rem),
    linear-gradient(180deg, #f8fcfd 0%, var(--background) 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: #005f70;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 252, 253, 0.82);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.header-inner,
.page,
.footer-inner {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 27px;
  height: 21px;
  border: 4px solid var(--accent);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: 13px;
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  content: "";
}

.brand-mark::before {
  left: -4px;
}

.brand-mark::after {
  right: -4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  padding: 8px 11px;
  border-radius: 10px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(6, 168, 191, 0.10);
}

.nav .language-link {
  min-width: 38px;
  border: 1px solid var(--line);
  text-align: center;
  background: rgba(255, 255, 255, 0.68);
}

.page {
  padding-block: 76px 90px;
}

.hero {
  max-width: 760px;
  margin-bottom: 46px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
}

.privacy-page h1 {
  font-size: clamp(40px, 6vw, 60px);
}

h2 {
  margin-bottom: 14px;
  font-size: 29px;
  font-weight: 760;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 750;
}

.lede {
  max-width: 670px;
  margin: 0;
  color: var(--secondary);
  font-size: 22px;
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: var(--surface-strong);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 7px 22px rgba(35, 77, 88, 0.07);
}

.button.primary {
  border-color: var(--accent);
  color: white;
  background: var(--accent-dark);
}

.button:hover {
  transform: translateY(-1px);
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--secondary);
  font-size: 15px;
  font-weight: 650;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(11, 155, 102, 0.10);
}

.language-section {
  scroll-margin-top: 100px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 100%;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--surface);
  box-shadow: 0 11px 38px rgba(35, 77, 88, 0.07);
}

.card p,
.card ul {
  margin-bottom: 0;
  color: var(--secondary);
  font-size: 15px;
}

.card ul {
  padding-left: 20px;
}

.card li + li {
  margin-top: 4px;
}

.privacy-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 52px;
  align-items: start;
}

.privacy-article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.privacy-intro {
  padding: 42px 46px 34px;
  color: white;
  background: linear-gradient(135deg, #087f94 0%, #05a7bf 100%);
}

.privacy-intro h1 {
  margin-bottom: 14px;
}

.privacy-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.privacy-content {
  padding: 18px 46px 42px;
}

.policy-section {
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}

.policy-section:last-child {
  border-bottom: 0;
}

.policy-section p:first-of-type {
  margin-top: 0;
}

.policy-section p:last-child,
.policy-section ol:last-child {
  margin-bottom: 0;
}

.policy-section p,
.policy-section li {
  color: #344247;
}

.policy-section li + li {
  margin-top: 5px;
}

.toc {
  position: sticky;
  top: 100px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.70);
}

.toc strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding-block: 5px;
  color: var(--secondary);
  font-size: 14px;
  text-decoration: none;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
}

.footer-inner {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--secondary);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--secondary);
  text-decoration: none;
}

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

  .privacy-shell {
    grid-template-columns: 1fr;
  }

  .toc {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .header-inner,
  .page,
  .footer-inner {
    width: min(100% - 28px, 1080px);
  }

  .header-inner {
    min-height: 64px;
  }

  .nav a:not([aria-current="page"]):not(.language-link) {
    display: none;
  }

  .page {
    padding-block: 48px 64px;
  }

  h1 {
    font-size: 42px;
  }

  .lede {
    font-size: 19px;
  }

  .section-heading,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    padding-block: 28px;
  }

  .privacy-intro,
  .privacy-content {
    padding-inline: 24px;
  }

  .privacy-intro {
    padding-block: 31px 27px;
  }
}

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

  .button:hover {
    transform: none;
  }
}
