:root {
  color-scheme: light;
  --bg: #03284a;
  --bg-deep: #0b5f93;
  --bg-surface: #0a7dc0;
  --text: #f5fbff;
  --muted: rgba(245, 251, 255, 0.78);
  --card-border: rgba(184, 232, 255, 0.2);
  --accent-soft: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 70px rgba(1, 24, 45, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 18%, rgba(118, 219, 255, 0.18), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 50% 82%, rgba(77, 195, 234, 0.16), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 42%, var(--bg-surface) 100%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.backdrop {
  position: fixed;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.5;
}

.backdrop--one {
  top: 70px;
  right: -40px;
  width: 240px;
  height: 240px;
  background: rgba(136, 230, 255, 0.2);
}

.backdrop--two {
  bottom: 60px;
  left: -50px;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.08);
}

.glass-card {
  position: relative;
  background: linear-gradient(180deg, rgba(12, 32, 56, 0.4), rgba(6, 20, 38, 0.32));
  border: 1px solid var(--card-border);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow: var(--shadow);
}

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

.brand-row {
  display: flex;
  gap: 20px;
  align-items: center;
}

.brand-badge {
  flex: 0 0 auto;
  width: 90px;
  height: 90px;
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(2, 40, 77, 0.98), rgba(10, 112, 173, 0.9));
  border: 1px solid rgba(182, 234, 255, 0.28);
  box-shadow: 0 16px 32px rgba(0, 18, 36, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: rgba(197, 239, 255, 0.82);
}

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

h1 {
  margin-bottom: 10px;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: -0.03em;
}

.hero-copy,
.sidebar-copy p,
.policy-intro p,
.contact-card p,
.footer-note p,
.policy-section p,
.policy-section li {
  color: var(--muted);
  line-height: 1.7;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(189, 233, 255, 0.16);
}

.meta-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(197, 239, 255, 0.72);
}

.hero-meta strong,
.contact-note strong {
  font-size: 1rem;
  color: var(--text);
}

.hero-meta a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 280px;
  gap: 20px;
  margin-top: 20px;
  align-items: start;
}

.sidebar,
.policy-card,
.contact-card {
  border-radius: 24px;
  padding: 22px;
}

.sidebar {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: calc(100vh - 40px);
}

.toc {
  flex: 1 1 auto;
  display: grid;
  gap: 10px;
  overflow-y: auto;
  padding-right: 6px;
}

.toc::-webkit-scrollbar {
  width: 10px;
}

.toc::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.toc::-webkit-scrollbar-thumb {
  background: rgba(189, 233, 255, 0.28);
  border-radius: 999px;
}

.toc::-webkit-scrollbar-thumb:hover {
  background: rgba(189, 233, 255, 0.42);
}

.toc-link {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(189, 233, 255, 0.14);
  transition: transform 180ms ease, background 180ms ease;
}

.toc-link:hover,
.toc-link:focus-visible,
.contact-button:hover,
.contact-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.toc-link__arrow {
  opacity: 0.8;
}

.policy-card {
  display: grid;
  gap: 18px;
}

.policy-intro {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(189, 233, 255, 0.14);
}

.policy-section {
  padding-top: 8px;
  scroll-margin-top: 24px;
}

.policy-section h2 {
  margin-bottom: 10px;
}

.policy-list {
  margin: 14px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.policy-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-card {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 14px;
}

.contact-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(157, 228, 255, 0.16);
  border: 1px solid rgba(189, 233, 255, 0.24);
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.contact-button--secondary {
  background: transparent;
}

.contact-note {
  padding-top: 8px;
  border-top: 1px solid rgba(189, 233, 255, 0.14);
}

.footer-note {
  margin-top: 18px;
  padding: 12px 6px 0;
  text-align: center;
  color: rgba(232, 248, 255, 0.72);
}

@media (max-width: 1080px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar,
  .contact-card {
    position: static;
    max-height: none;
  }

  .toc {
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 14px;
    padding-bottom: 20px;
  }

  .hero-card,
  .sidebar,
  .policy-card,
  .contact-card {
    border-radius: 22px;
    padding: 18px;
  }

  .brand-row {
    align-items: flex-start;
  }

  .brand-badge {
    width: 74px;
    height: 74px;
    border-radius: 20px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }
}
