:root {
  --bg: #07111f;
  --paper: rgba(248, 251, 255, 0.98);
  --paper-soft: rgba(239, 245, 255, 0.92);
  --text: #0f2235;
  --muted: #5a6d82;
  --line: rgba(128, 158, 199, 0.22);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #4f9fff;
  --accent-2: #8cf2ff;
  --shadow: 0 22px 56px rgba(2, 8, 22, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(104, 182, 255, 0.2), transparent 22%),
    radial-gradient(circle at 86% 10%, rgba(141, 145, 255, 0.16), transparent 20%),
    linear-gradient(180deg, #091425 0%, #07111f 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  filter: blur(48px);
  pointer-events: none;
  opacity: 0.8;
}

body::before {
  top: 10vh;
  left: -7vw;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(140, 242, 255, 0.12);
}

body::after {
  right: -7vw;
  bottom: -12vh;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: rgba(141, 145, 255, 0.1);
}

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

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

.page {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 56px;
}

.hero-card {
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(140, 242, 255, 0.16), transparent 26%),
    linear-gradient(145deg, rgba(10, 18, 31, 0.94), rgba(13, 31, 58, 0.9));
  box-shadow: 0 28px 80px rgba(1, 8, 20, 0.34);
  color: #f5f8ff;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-logo {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(1, 8, 20, 0.28);
}

.brand-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-tagline {
  margin: 0;
  color: rgba(237, 245, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.45;
}

.back-link {
  margin: 0;
  color: rgba(237, 245, 255, 0.82);
  font-weight: 800;
}

.back-link a {
  transition: color 180ms ease;
}

.back-link a:hover,
.back-link a:focus-visible {
  color: #fff;
}

.hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 760px;
  margin: 18px 0 12px;
  color: rgba(233, 241, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}

.meta {
  margin: 0;
  color: rgba(233, 241, 255, 0.9);
  font-weight: 700;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.summary-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.summary-label {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.summary-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.summary-card span {
  color: rgba(233, 241, 255, 0.78);
  line-height: 1.65;
}

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

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card h2 {
  margin: 0 0 12px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.card p,
.card li {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75;
}

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

.card-contact {
  background:
    radial-gradient(circle at top right, rgba(140, 242, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(236, 244, 255, 0.98));
}

.contact {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 800;
  word-break: break-word;
}

@media (max-width: 840px) {
  .brand-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 640px) {
  .page {
    width: min(100% - 20px, 1240px);
    padding: 16px 0 40px;
  }

  .hero-card {
    padding: 18px;
    border-radius: 28px;
  }

  .brand {
    gap: 12px;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .card {
    padding: 20px;
  }
}
