@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --background: #f7fbff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --border: rgba(15, 23, 42, 0.1);
  --text: #14233c;
  --muted: #56657d;
  --primary: #2f6bff;
  --primary-dark: #0d1b47;
  --accent: #16c4d6;
  --shadow: 0 30px 70px -52px rgba(13, 27, 71, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 8% -10%, rgba(122, 166, 242, 0.3), transparent 34%),
    radial-gradient(circle at 92% -8%, rgba(24, 196, 214, 0.2), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #f3f8ff 48%, #edf4ff 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(80px);
}

body::before {
  top: 8rem;
  left: -8rem;
  width: 18rem;
  height: 18rem;
  background: rgba(122, 166, 242, 0.22);
}

body::after {
  right: -8rem;
  bottom: 5rem;
  width: 22rem;
  height: 22rem;
  background: rgba(22, 196, 214, 0.18);
}

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

img {
  display: block;
  max-width: 100%;
}

.policy-page {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.policy-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, #6d2ff2 0%, #3657ff 45%, #14c3d5 100%);
}

.policy-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 26px 26px;
}

.policy-banner-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem 1rem;
  padding: 0.8rem 0;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.policy-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.policy-banner-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.policy-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--border);
  background: rgba(248, 251, 255, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  min-height: 4.9rem;
  padding: 0.65rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand img {
  height: 2.5rem;
  width: auto;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.75rem;
  border: 1px solid rgba(47, 107, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(47, 107, 255, 0.1), rgba(22, 196, 214, 0.08));
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.35rem;
}

.policy-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.policy-nav a:hover,
.header-link:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-link {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.92rem 1.2rem;
  border-radius: 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2f6bff 0%, #14c3d5 100%);
  box-shadow: 0 20px 38px -26px rgba(47, 107, 255, 0.9);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow: 0 26px 44px -28px rgba(47, 107, 255, 0.9);
}

.policy-main {
  padding-top: 2.1rem;
}

.policy-hero-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 10% 18%, rgba(122, 166, 242, 0.32), transparent 32%),
    radial-gradient(circle at 92% 82%, rgba(26, 202, 219, 0.24), transparent 38%),
    linear-gradient(150deg, #050b1b 0%, #0b1f47 52%, #0c1737 100%);
  box-shadow: 0 46px 95px -50px rgba(6, 16, 39, 0.92);
}

.policy-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  pointer-events: none;
}

.hero-orb-left {
  top: 0;
  left: -5rem;
  width: 14rem;
  height: 14rem;
  background: rgba(122, 166, 242, 0.28);
}

.hero-orb-right {
  right: -5rem;
  bottom: -2rem;
  width: 16rem;
  height: 16rem;
  background: rgba(26, 202, 219, 0.24);
}

.policy-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1.8rem;
  padding: 3.25rem;
}

.policy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-hero-copy h1 {
  margin: 1rem 0 1rem;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.policy-hero-copy p {
  max-width: 46rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.85;
}

.policy-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.policy-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #eef6ff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-hero-side {
  align-self: end;
  padding: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.policy-hero-side h2 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.policy-hero-side p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.8;
}

.policy-mini-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 1.2rem;
  padding: 0;
  list-style: none;
}

.policy-mini-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #eef6ff;
  font-size: 0.92rem;
  line-height: 1.65;
}

.policy-mini-list li::before {
  content: "";
  flex: 0 0 0.62rem;
  width: 0.62rem;
  height: 0.62rem;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #8ab3ff 0%, #2cd5e5 100%);
  box-shadow: 0 0 0 6px rgba(138, 179, 255, 0.12);
}

.policy-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.policy-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 290px;
  gap: 1.5rem;
  align-items: start;
  margin-top: -2.75rem;
}

.policy-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.5rem;
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.policy-sidebar {
  position: sticky;
  top: 7rem;
  padding: 1.5rem;
}

.policy-sidebar h2,
.policy-sidebar h3 {
  margin: 0 0 0.85rem;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  line-height: 1.25;
}

.policy-sidebar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.policy-panel + .policy-panel {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(20, 35, 60, 0.08);
}

.policy-toc {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.policy-toc a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.policy-toc a:hover {
  color: var(--primary-dark);
  background: #eef4ff;
  transform: translateX(2px);
}

.policy-side-links {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.policy-side-link {
  display: block;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(20, 35, 60, 0.08);
  border-radius: 1rem;
  background: var(--surface-solid);
  color: var(--text);
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.policy-side-link span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.55;
}

.policy-side-link:hover,
.policy-side-link[aria-current="page"] {
  border-color: rgba(47, 107, 255, 0.18);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px -30px rgba(47, 107, 255, 0.4);
}

.policy-side-link[aria-current="page"] {
  background: linear-gradient(180deg, rgba(240, 246, 255, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
}

.policy-article {
  padding: 2.2rem 2.35rem;
  background: rgba(255, 255, 255, 0.92);
}

.policy-article > section {
  scroll-margin-top: 7rem;
}

.policy-article > section + section {
  margin-top: 2.1rem;
  padding-top: 2rem;
  border-top: 1px solid #e8eff8;
}

.policy-article h2 {
  margin: 0 0 1rem;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  line-height: 1.22;
}

.policy-article p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.policy-article ul {
  margin: 0 0 1.5rem;
  padding-left: 1.4rem;
}

.policy-article li {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.policy-article strong {
  color: var(--text);
}

.policy-article a {
  color: var(--primary);
  font-weight: 700;
}

.policy-article a:hover {
  color: var(--primary-dark);
}

.policy-lead {
  color: var(--text) !important;
  font-size: 1.08rem !important;
  line-height: 1.95 !important;
}

.policy-address,
.policy-highlight {
  padding: 1.1rem 1.2rem;
  border-radius: 1.2rem;
}

.policy-address {
  border: 1px solid #e1ebff;
  background: #f6f9ff;
}

.policy-highlight {
  border: 1px solid rgba(47, 107, 255, 0.14);
  background: linear-gradient(180deg, rgba(240, 246, 255, 0.9) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.footer {
  margin-top: 5rem;
  background: #050a18;
  color: #aab6c7;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 4rem 0 2.6rem;
}

.footer-brand img {
  height: 2.65rem;
  width: auto;
}

.footer-brand p {
  max-width: 21rem;
  margin: 1.05rem 0 0;
  color: #8fa0b9;
  line-height: 1.8;
}

.footer-column h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

.footer-column p,
.footer-column a {
  color: #8fa0b9;
  font-size: 0.95rem;
  line-height: 1.8;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.2rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #7f8da3;
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
}

.footer-legal a:hover {
  color: #fff;
}

@media (max-width: 1120px) {
  .policy-hero-grid {
    grid-template-columns: 1fr;
    padding: 2.8rem 2.25rem;
  }

  .policy-layout {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 1.5rem;
  }

  .policy-sidebar {
    position: static;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .header-inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.9rem 0 1rem;
  }

  .policy-nav {
    order: 3;
    width: 100%;
    padding-top: 0.1rem;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  body::before,
  body::after {
    display: none;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .policy-banner-inner {
    flex-direction: column;
  }

  .policy-main {
    padding-top: 1.5rem;
  }

  .policy-hero-grid {
    padding: 2.2rem 1.35rem;
  }

  .policy-hero-copy h1 {
    font-size: 2.25rem;
  }

  .policy-article {
    padding: 1.75rem 1.35rem;
  }

  .policy-sidebar {
    padding: 1.35rem;
  }

  .policy-toc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding-top: 3.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-actions {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
  }
}

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

@media (prefers-reduced-motion: no-preference) {
  .policy-hero-shell,
  .policy-card,
  .cta-button,
  .policy-side-link {
    animation: reveal-up 0.62s ease both;
  }

  .hero-orb-left {
    animation: float-orb 9s ease-in-out infinite;
  }

  .hero-orb-right {
    animation: float-orb 11s ease-in-out infinite reverse;
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}
