:root {
  --primary: #006fff;
  --primary-dark: #0055cc;
  --secondary: #7bdfcd;
  --tertiary: #9effbe;
  --surface: #fdfdfe;
  --surface-strong: #ffffff;
  --neutral-text: #5f6368;
  --neutral-bg: #f1f3f4;
  --line-soft: #e7ecf4;
  --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.08);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  background:
    radial-gradient(circle at 10% 10%, rgba(123, 223, 205, 0.16), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(0, 111, 255, 0.09), transparent 28%),
    var(--surface);
}

::selection {
  background: rgba(0, 111, 255, 0.18);
  color: inherit;
}

.page-shell {
  position: relative;
}

.nav-shell {
  pointer-events: none;
}

.nav-shell > div {
  pointer-events: auto;
}

.nav-card {
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  padding: 0.9rem 1rem;
}

.brand-mark,
.hero-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 111, 255, 0.18);
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}

.brand-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-mark {
  width: 4.25rem;
  height: 4.25rem;
  flex-shrink: 0;
}

.nav-link {
  color: var(--neutral-text);
  transition: color 180ms ease, transform 180ms ease;
}

.nav-link:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.privacy-bg {
  background-color: var(--primary);
}

.privacy-ellipse {
  position: absolute;
  border-radius: 999px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.privacy-ellipse-1 {
  width: 150%;
  height: 980px;
  background: #3eccd5;
  filter: blur(92px);
  opacity: 0.46;
}

.privacy-ellipse-2 {
  width: 108%;
  height: 720px;
  background: #88ebc8;
  filter: blur(84px);
  opacity: 0.44;
}

.privacy-ellipse-3 {
  width: 66%;
  height: 420px;
  background: var(--tertiary);
  filter: blur(74px);
  opacity: 0.34;
}

.privacy-ellipse-4 {
  width: 22%;
  height: 260px;
  background: #ffffff;
  filter: blur(80px);
  opacity: 0.14;
}

.privacy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
}

.hero-highlight {
  color: #ffffff;
  text-shadow:
    0 0 42px rgba(123, 223, 205, 0.55),
    0 0 90px rgba(62, 204, 213, 0.26);
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.35rem;
  width: 100%;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #9effbe, #7bdfcd, #3eccd5);
  opacity: 0.76;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.hero-chip:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
}

.summary-card {
  border: 1px solid rgba(231, 236, 244, 0.94);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.9));
  border-radius: 24px;
  padding: 1rem;
}

.summary-label {
  font-size: 0.76rem;
  line-height: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(0, 111, 255, 0.72);
  margin-bottom: 0.5rem;
}

.summary-copy {
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.55;
}

.policy-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(231, 236, 244, 0.94);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.toc-title {
  color: var(--primary);
  font-size: 0.8rem;
  line-height: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.toc-link {
  display: block;
  color: var(--neutral-text);
  padding: 0.7rem 0.85rem;
  border-radius: 18px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.toc-link:hover {
  color: var(--primary);
  background: rgba(0, 111, 255, 0.06);
  transform: translateX(2px);
}

.section-kicker {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  line-height: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
  max-width: 24ch;
}

.section-copy {
  margin-top: 1.2rem;
  color: var(--neutral-text);
  font-size: 1rem;
  line-height: 1.85;
}

.policy-list {
  display: grid;
  gap: 0.9rem;
  padding-left: 1.1rem;
  color: #334155;
}

.policy-list li {
  padding-left: 0.25rem;
  line-height: 1.7;
}

.info-panel,
.ia-card {
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-radius: 28px;
  padding: 1.2rem;
}

.info-panel.compact {
  padding: 1.15rem;
}

.info-panel h3,
.ia-card h3,
.share-row h3,
.purpose-row h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.65rem;
}

.info-panel p,
.ia-card p,
.share-row p,
.purpose-row p {
  color: var(--neutral-text);
  line-height: 1.75;
}

.note-strip {
  border-radius: 26px;
  border: 1px solid rgba(0, 111, 255, 0.08);
  background: rgba(0, 111, 255, 0.05);
  padding: 1rem 1.1rem;
  color: #1e293b;
  line-height: 1.75;
}

.note-strip-strong {
  background: linear-gradient(135deg, rgba(0, 111, 255, 0.1), rgba(123, 223, 205, 0.13));
  border-color: rgba(0, 111, 255, 0.12);
}

.purpose-row,
.share-row {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.95));
}

.basis-pill {
  white-space: nowrap;
  border-radius: 999px;
  background: rgba(0, 111, 255, 0.08);
  color: var(--primary);
  font-size: 0.76rem;
  line-height: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.65rem 0.9rem;
}

.footer-card {
  margin-top: 1.25rem;
  border-radius: 34px;
  padding: 2rem;
  background: linear-gradient(145deg, #0b63dd 0%, #0a70ff 34%, #39c7d7 100%);
  box-shadow: 0 26px 64px rgba(0, 111, 255, 0.24);
  color: #ffffff;
}

.footer-kicker {
  font-size: 0.8rem;
  line-height: 1rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.9rem;
}

@media (max-width: 1024px) {
  .purpose-row,
  .share-row {
    flex-direction: column;
  }

  .basis-pill {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .nav-card {
    padding: 0.85rem 0.9rem;
    border-radius: 20px;
  }

  .brand-mark {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 18px;
  }

  .hero-chip {
    width: 100%;
    justify-content: center;
  }

  .policy-card,
  .footer-card {
    border-radius: 28px;
  }

  .info-panel,
  .ia-card,
  .summary-card,
  .purpose-row,
  .share-row,
  .note-strip {
    border-radius: 22px;
  }
}