:root {
  color-scheme: light;
  --ink: #10243a;
  --muted: #5d7186;
  --line: #d8e6f3;
  --blue: #1478b8;
  --blue-deep: #0c5f98;
  --blue-soft: #e5f3ff;
  --sky: #f2f8fd;
  --mint: #e9f8ef;
  --green: #198754;
  --white: #ffffff;
  --shadow: 0 18px 52px rgba(28, 83, 125, 0.10);
  --radius: 26px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  background: #edf5fb;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(112, 195, 255, 0.24), transparent 31rem),
    radial-gradient(circle at 91% 16%, rgba(123, 226, 174, 0.15), transparent 27rem),
    linear-gradient(180deg, #f7fbff 0%, #edf5fb 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(20, 120, 184, 0.35);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

.site-header {
  padding: 24px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(145deg, #2b98d9, #0f6ca8);
  box-shadow: 0 8px 20px rgba(15, 108, 168, 0.24);
  font-size: 21px;
  font-weight: 800;
}

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

.nav-links a {
  padding: 9px 13px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.hero {
  overflow: hidden;
  position: relative;
  padding: clamp(54px, 8vw, 96px);
  border-radius: 34px;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.98), rgba(242,249,255,0.94)),
    var(--white);
  box-shadow: var(--shadow);
}

.hero::after {
  position: absolute;
  width: 310px;
  height: 310px;
  top: -125px;
  right: -80px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(52, 155, 219, 0.15), rgba(72, 199, 142, 0.10));
  content: "";
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

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

.lede {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(20, 120, 184, 0.24);
}

.button-primary:hover {
  color: var(--white);
  background: var(--blue-deep);
}

.button-secondary {
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0 0;
}

.fact {
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 28px rgba(28, 83, 125, 0.07);
}

.fact dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.fact dd {
  margin: 0;
  font-size: 17px;
  font-weight: 780;
}

.section {
  padding: clamp(64px, 9vw, 104px) 0 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 30px;
}

.section h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-heading p,
.card p,
.step p,
.policy-section p,
.policy-section li {
  color: var(--muted);
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card,
.step,
.policy-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 38px rgba(28, 83, 125, 0.08);
}

.card {
  padding: 28px;
}

.card-number,
.step-number {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 11px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 850;
}

.card h3,
.step h3 {
  margin-bottom: 8px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.card p,
.step p {
  margin-bottom: 0;
}

.format-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.format-list li {
  padding: 5px 9px;
  border-radius: 999px;
  color: #34566f;
  background: var(--sky);
  font-size: 12px;
  font-weight: 750;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  padding: 28px;
}

.step-number {
  color: var(--green);
  background: var(--mint);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 0 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 26px rgba(28, 83, 125, 0.06);
}

summary {
  cursor: pointer;
  padding: 20px 28px 20px 0;
  font-weight: 760;
}

details p {
  max-width: 800px;
  margin-bottom: 22px;
  color: var(--muted);
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(30px, 6vw, 54px);
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(135deg, #1478b8, #0b659f);
  box-shadow: 0 18px 46px rgba(20, 120, 184, 0.22);
}

.contact-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 40px);
}

.contact-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-panel .button {
  flex: 0 0 auto;
  color: var(--blue-deep);
  background: var(--white);
}

.policy-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 30px;
  align-items: start;
}

.policy-card {
  padding: clamp(28px, 5vw, 58px);
}

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

.policy-section h2 {
  font-size: 27px;
}

.policy-section h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.policy-section ul {
  padding-left: 22px;
}

.policy-aside {
  position: sticky;
  top: 24px;
  padding: 24px;
  border-radius: 22px;
  background: var(--blue-soft);
}

.policy-aside strong,
.policy-aside span {
  display: block;
}

.policy-aside strong:not(:first-child) {
  margin-top: 18px;
}

.policy-aside span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.policy-aside a {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
}

.site-footer {
  padding: 72px 0 34px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(93, 113, 134, 0.18);
  color: var(--muted);
  font-size: 14px;
}

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

.footer-links a {
  color: var(--muted);
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.redirect-card {
  max-width: 520px;
  padding: 48px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

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

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

  .policy-wrap {
    grid-template-columns: 1fr;
  }

  .policy-aside {
    position: static;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 24px), var(--content));
  }

  .site-header {
    padding: 15px 0;
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links a:first-child {
    display: none;
  }

  .hero {
    padding: 42px 24px;
    border-radius: 26px;
  }

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

  .contact-panel,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-panel .button {
    width: 100%;
  }
}

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