:root {
  --bg: #0b1020;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: #111827;
  --text: #e5eefb;
  --muted: #9fb0c9;
  --brand: #5eead4;
  --brand-2: #60a5fa;
  --line: rgba(159, 176, 201, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.28), transparent 30%),
    radial-gradient(circle at top right, rgba(94, 234, 212, 0.18), transparent 26%),
    linear-gradient(180deg, #07101f 0%, #0b1020 45%, #050814 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6, 10, 22, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex; gap: 12px; align-items: center; font-weight: 700; letter-spacing: 0.02em;
}
.brand-badge {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #07101f; display: grid; place-items: center; font-weight: 900;
  box-shadow: 0 10px 30px rgba(94, 234, 212, 0.28);
}
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.hero {
  padding: 84px 0 54px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; align-items: stretch;
}
.hero-card, .panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.hero-main { padding: 40px; }
.eyebrow {
  display: inline-flex; padding: 7px 12px; border-radius: 999px;
  background: rgba(96, 165, 250, 0.12); color: #bfdbfe; font-size: 0.92rem;
  border: 1px solid rgba(96, 165, 250, 0.2);
}
.hero h1 { margin: 18px 0 14px; font-size: clamp(2.4rem, 5vw, 4.3rem); line-height: 1.03; }
.hero p { color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 18px; border-radius: 14px; font-weight: 600;
  border: 1px solid var(--line);
}
.button.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #07101f; border-color: transparent;
}
.button.secondary { background: rgba(15, 23, 42, 0.72); }
.hero-side {
  padding: 26px;
  display: grid; grid-template-rows: auto auto 1fr;
  gap: 16px;
}
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stat {
  padding: 18px; border-radius: 18px; background: rgba(15, 23, 42, 0.7); border: 1px solid var(--line);
}
.stat strong { display: block; font-size: 1.7rem; margin-bottom: 6px; }
.section { padding: 30px 0; }
.section-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 20px; }
.section-head h2 { margin: 0; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.section-head p { margin: 0; color: var(--muted); max-width: 700px; line-height: 1.65; }
.card-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.app-card {
  padding: 22px; border-radius: 22px; background: var(--panel);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.app-card h3, .mini-card h3 { margin-top: 0; margin-bottom: 10px; }

.app-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.app-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  flex: 0 0 72px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255,255,255,0.08);
}
.app-card h3 {
  margin: 0;
}
.policy-app-icon {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  object-fit: cover;
  margin: 12px 0 14px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255,255,255,0.08);
}

.app-card p, .mini-card p, .page p, .page li { color: var(--muted); line-height: 1.72; }
.meta {
  display: inline-flex; padding: 7px 10px; border-radius: 999px; margin-bottom: 14px;
  background: rgba(94, 234, 212, 0.08); border: 1px solid rgba(94, 234, 212, 0.16);
  color: #bff7ef; font-size: 0.88rem;
}
.link-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.link-row a { color: #c4d9ff; }
.mini-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.mini-card {
  padding: 24px; border-radius: 20px; background: rgba(11, 16, 32, 0.82); border: 1px solid var(--line);
}
.footer {
  padding: 34px 0 56px; color: var(--muted); font-size: 0.95rem;
}
.footer-row {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.page-shell { padding: 70px 0 48px; }
.page {
  max-width: 880px; margin: 0 auto; padding: 34px; border-radius: 24px;
  background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.page h1 { margin-top: 6px; font-size: clamp(2rem, 4.4vw, 3rem); }
.page h2 { margin-top: 30px; }
.page ul { padding-left: 20px; }
.kicker { color: #bff7ef; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.84rem; }
.back-link { display: inline-flex; margin-bottom: 16px; color: #c4d9ff; }
.note {
  padding: 16px 18px; border-radius: 18px; background: rgba(96, 165, 250, 0.08); border: 1px solid rgba(96, 165, 250, 0.16);
}
@media (max-width: 920px) {
  .hero-grid, .card-grid, .mini-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-main, .hero-side, .page { padding: 24px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 20px, 1120px); }
  .nav { align-items: start; flex-direction: column; gap: 12px; }
  .nav-links { gap: 12px; }
  .stat-grid { grid-template-columns: 1fr; }
}
