:root {
  --ink: #1412b8;
  --sky: #4eb2f3;
  --ink-soft: #263763;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  color: var(--ink);
  font-family: "Quicksand", "Avenir Next", "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(236, 248, 255, 0.9) 0%, rgba(255, 255, 255, 0.96) 20%, #fff 58%, #f7fcff 100%);
}

.privacy-page {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: clamp(28px, 5.1svh, 54px) clamp(24px, 5.3vw, 106px) clamp(64px, 8vw, 120px);
  background:
    linear-gradient(180deg, rgba(236, 248, 255, 0.9) 0%, rgba(255, 255, 255, 0.96) 20%, #fff 58%, #f7fcff 100%);
}

.privacy-page::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: min(360px, 38vw);
  background: url("assets/mountain-footer.png") bottom center / cover no-repeat;
  opacity: 0.14;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 42%);
  mask-image: linear-gradient(180deg, transparent 0, #000 42%);
}

.privacy-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.privacy-brand {
  display: inline-flex;
  color: var(--ink);
  font-size: clamp(2.45rem, 3.05vw, 3.8rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  text-decoration: none;
  text-shadow: 0 8px 16px rgba(31, 131, 220, 0.08);
}

.privacy-brand span:last-child {
  color: var(--sky);
}

.privacy-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 40px);
}

.privacy-nav a {
  position: relative;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.16vw, 1.36rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.privacy-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.privacy-nav a:hover::after,
.privacy-nav a:focus-visible::after,
.privacy-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.privacy-hero,
.privacy-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.privacy-hero {
  margin-top: clamp(70px, 9vw, 130px);
}

.eyebrow,
.updated {
  margin: 0;
  color: var(--sky);
  font-size: clamp(0.95rem, 1vw, 1.12rem);
  font-weight: 700;
  text-transform: uppercase;
}

.privacy-hero h1 {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(3.4rem, 6.8vw, 8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 820px;
  margin: 26px 0 0;
  color: rgba(20, 18, 184, 0.84);
  font-size: clamp(1.12rem, 1.35vw, 1.46rem);
  font-weight: 600;
  line-height: 1.55;
}

.updated {
  margin-top: 22px;
  color: var(--ink-soft);
}

.privacy-content {
  margin-top: clamp(46px, 6vw, 86px);
}

.privacy-content section {
  padding: clamp(26px, 3vw, 44px) 0;
  border-top: 1px solid rgba(78, 178, 243, 0.34);
}

.privacy-content h2,
.privacy-content h3,
.privacy-content p,
.privacy-content ul {
  margin-top: 0;
}

.privacy-content h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.25vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
}

.privacy-content h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
}

.privacy-content p,
.privacy-content li {
  color: rgba(18, 24, 74, 0.86);
  font-size: clamp(1rem, 1.08vw, 1.13rem);
  font-weight: 600;
  line-height: 1.72;
}

.privacy-content a {
  color: var(--ink);
  font-weight: 700;
}

.contact-line {
  font-size: clamp(1.12rem, 1.3vw, 1.42rem);
}

.privacy-content ul {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
  padding-left: 1.2em;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 34px;
}

.data-grid div {
  padding-top: 16px;
  border-top: 4px solid rgba(78, 178, 243, 0.68);
}

.data-grid p {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .privacy-page {
    padding-right: 24px;
    padding-left: 24px;
  }

  .privacy-header {
    align-items: flex-start;
    gap: 18px;
  }

  .privacy-brand {
    font-size: clamp(2rem, 9.2vw, 2.75rem);
  }

  .privacy-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
  }

  .privacy-nav a {
    font-size: 1rem;
  }

  .privacy-hero {
    margin-top: 70px;
  }

  .data-grid {
    grid-template-columns: 1fr;
  }
}
