
:root {
  --bg: #f7f6f2;
  --surface: rgba(255,255,255,0.78);
  --surface-strong: rgba(255,255,255,0.95);
  --border: rgba(27,43,65,0.1);
  --text: #152133;
  --muted: #5c6b7c;
  --accent: #1d4f91;
  --accent-2: #79b6ff;
  --gold: #b98b3e;
  --shadow: 0 20px 70px rgba(21,33,51,0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1240px;
}
* { 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(121,182,255,0.20), transparent 28%),
    radial-gradient(circle at 80% 15%, rgba(185,139,62,0.12), transparent 18%),
    linear-gradient(180deg, #fcfbf8 0%, #f7f6f2 45%, #f3f4f7 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
header.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(247,246,242,0.72);
  border-bottom: 1px solid rgba(27,43,65,0.08);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px 0;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  font-weight: 700; letter-spacing: -0.02em;
}
.brand-mark {
  width: 48px; height: 48px; border-radius: 16px;
  background: linear-gradient(135deg, #1d4f91, #79b6ff 65%, #fff7ea);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.6), 0 18px 38px rgba(29,79,145,0.18);
  display: grid; place-items: center; color: white; font-size: 1rem;
}
.brand-copy small { display: block; color: var(--muted); font-weight: 500; font-size: 0.77rem; }
nav.main-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
nav.main-nav a {
  padding: 10px 14px; border-radius: 999px; color: var(--muted); font-weight: 600; font-size: 0.96rem;
}
nav.main-nav a.active, nav.main-nav a:hover { color: var(--text); background: rgba(255,255,255,0.9); }
.header-actions { display: flex; gap: 12px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 20px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; transition: 0.25s ease; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, #143867, #2662b5 58%, #7eb6ff);
  color: white; box-shadow: 0 15px 30px rgba(37,90,165,0.22);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 22px 36px rgba(37,90,165,0.28); }
.btn-secondary { background: rgba(255,255,255,0.88); border-color: rgba(27,43,65,0.08); }
.hero {
  padding: 78px 0 42px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: stretch;
}
.hero-panel, .glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.76));
  border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow);
}
.hero-copy { padding: 42px; position: relative; overflow: hidden; }
.hero-copy::after {
  content: ""; position: absolute; inset: auto -10% -35% auto; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(121,182,255,0.28), transparent 60%);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-size: 0.84rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent);
  padding: 10px 14px; border-radius: 999px; background: rgba(121,182,255,0.12);
}
.hero h1, .page-hero h1 {
  margin: 18px 0 16px; font-size: clamp(2.7rem, 6vw, 5.3rem); line-height: 0.96; letter-spacing: -0.05em;
}
.lead {
  font-size: 1.16rem; color: var(--muted); max-width: 62ch;
}
.metric-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px;
}
.metric {
  padding: 18px; background: rgba(248,250,253,0.92); border: 1px solid rgba(27,43,65,0.07); border-radius: 20px;
}
.metric strong { display: block; font-size: 1.6rem; letter-spacing: -0.03em; }
.metric span { color: var(--muted); font-size: 0.95rem; }
.hero-aside { padding: 28px; display: grid; gap: 18px; }
.badge-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.badge-box {
  border-radius: 22px; padding: 20px; background: linear-gradient(180deg, #ffffff, #f1f6ff);
  border: 1px solid rgba(27,43,65,0.08);
}
.badge-box strong { display: block; font-size: 1.5rem; margin-bottom: 6px; }
.section { padding: 34px 0 24px; }
.section-lg { padding: 72px 0; }
.section-header { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 24px; }
.section-header h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.04em; }
.section-header p { margin: 0; color: var(--muted); max-width: 58ch; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.82));
  border: 1px solid rgba(27,43,65,0.08); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; margin-bottom: 12px; font-size: 1.35rem; letter-spacing: -0.03em; }
.card p, .card li { color: var(--muted); }
.card ul { padding-left: 18px; margin: 12px 0 0; }
.split-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center;
}
.chart-card { padding: 26px; }
.chart-shell {
  height: 300px; border-radius: 26px; background: linear-gradient(180deg, #f6fbff, #ffffff);
  border: 1px solid rgba(27,43,65,0.08); padding: 16px;
}
.stat-list { display: grid; gap: 14px; }
.stat-item {
  padding: 16px 18px; border-radius: 20px; border: 1px solid rgba(27,43,65,0.08); background: rgba(255,255,255,0.92);
}
.stat-item strong { display: block; font-size: 1.2rem; }
.kpi-strip {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.kpi {
  padding: 24px; border-radius: 22px; background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,247,252,0.85));
  border: 1px solid rgba(27,43,65,0.08); box-shadow: var(--shadow);
}
.kpi .value { font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; display: block; }
.kpi .label { color: var(--muted); font-weight: 600; }
.timeline { display: grid; gap: 12px; }
.timeline-step {
  display: grid; grid-template-columns: 70px 1fr; gap: 18px; align-items: start;
  padding: 18px; border-radius: 22px; border: 1px solid rgba(27,43,65,0.08); background: rgba(255,255,255,0.92);
}
.step-index {
  width: 52px; height: 52px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(29,79,145,0.12), rgba(121,182,255,0.20)); font-weight: 800;
}
.table-wrap { overflow-x: auto; }
.table {
  width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.92); border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(27,43,65,0.08);
}
.table th, .table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid rgba(27,43,65,0.07); }
.table th { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.table tr:last-child td { border-bottom: none; }
.page-hero { padding: 58px 0 24px; }
.page-hero .card { padding: 36px; }
.content p, .content li { color: var(--muted); }
.content h2, .content h3 { letter-spacing: -0.03em; }
.cta-band {
  padding: 34px; border-radius: 30px; background: linear-gradient(135deg, #102c50, #2259a4 58%, #89bdff);
  color: white; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 22px; align-items: center; box-shadow: 0 24px 60px rgba(29,79,145,0.24);
}
.cta-band p { color: rgba(255,255,255,0.82); }
.footer {
  padding: 36px 0 50px; margin-top: 50px; border-top: 1px solid rgba(27,43,65,0.08);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; }
.footer p, .footer li, .footer a { color: var(--muted); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.notice {
  padding: 16px 18px; border-radius: 18px; background: rgba(121,182,255,0.10); border: 1px solid rgba(29,79,145,0.10); color: var(--text);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 8px; font-weight: 600; }
input, select, textarea {
  width: 100%; padding: 14px 16px; border-radius: 16px; border: 1px solid rgba(27,43,65,0.12);
  background: rgba(255,255,255,0.95); color: var(--text); font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
.small { font-size: 0.92rem; color: var(--muted); }
.hero-orbit {
  height: 100%; min-height: 250px; position: relative; border-radius: 30px; overflow: hidden;
  background: linear-gradient(180deg, rgba(16,44,80,0.95), rgba(25,73,133,0.94));
}
.hero-orbit::before, .hero-orbit::after {
  content: ""; position: absolute; border-radius: 50%;
}
.hero-orbit::before {
  width: 420px; height: 420px; right: -140px; top: -120px;
  background: radial-gradient(circle, rgba(137,189,255,0.34), transparent 60%);
}
.hero-orbit::after {
  width: 320px; height: 320px; left: -80px; bottom: -110px;
  background: radial-gradient(circle, rgba(255,238,205,0.18), transparent 60%);
}
.orbit-labels {
  position: absolute; inset: 0; padding: 24px; display: grid; align-content: space-between; color: white;
}
.orbit-top { display: flex; justify-content: space-between; align-items: start; gap: 18px; }
.orbit-tag {
  padding: 12px 14px; border-radius: 18px; background: rgba(255,255,255,0.11); border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(12px);
}
.orbit-center {
  align-self: center; justify-self: center; width: 290px; height: 290px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18); display: grid; place-items: center; position: relative;
}
.orbit-center::before, .orbit-center::after {
  content: ""; position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.18);
}
.orbit-center::before { inset: 26px; }
.orbit-center::after { inset: 56px; }
.core {
  width: 146px; height: 146px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.16), rgba(255,255,255,0.04)); border: 1px solid rgba(255,255,255,0.20);
}
.core strong { font-size: 1.4rem; letter-spacing: -0.04em; }
.orbit-dot {
  position: absolute; width: 70px; height: 70px; border-radius: 50%; display: grid; place-items: center; text-align: center; padding: 8px;
  font-size: 0.77rem; font-weight: 700; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(10px);
  animation: float 5s ease-in-out infinite;
}
.dot-a { top: 14px; left: 108px; }
.dot-b { top: 120px; right: 6px; animation-delay: .8s; }
.dot-c { bottom: 20px; left: 54px; animation-delay: 1.3s; }
.dot-d { bottom: 90px; right: 72px; animation-delay: 2s; }
@keyframes float { 0%,100% { transform: translateY(0px);} 50% { transform: translateY(-8px);} }
@media (max-width: 1100px) {
  .hero-grid, .split-panel, .cta-band, .footer-grid, .grid-4, .kpi-strip, .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-wrap { flex-direction: column; align-items: stretch; }
  .header-actions { justify-content: center; }
  .hero-grid, .grid-2, .split-panel, .cta-band, .footer-grid, .grid-3, .grid-4, .kpi-strip, .form-grid, .metric-row { grid-template-columns: 1fr; }
  .hero-copy, .hero-aside, .card { padding: 22px; }
  .section-header { align-items: start; flex-direction: column; }
  .timeline-step { grid-template-columns: 56px 1fr; }
  .orbit-center { width: 240px; height: 240px; }
}
