
:root{
  --navy:#0b1f3a;
  --navy-2:#11284a;
  --navy-3:#173b71;
  --blue:#2d6cdf;
  --blue-2:#1f4f8a;
  --bg:#eef3f9;
  --bg-2:#f6f9fe;
  --panel:#ffffff;
  --panel-tint:#f7faff;
  --panel-tint-2:#eef4ff;
  --line:#d7e2f0;
  --text:#102030;
  --muted:#5c6e84;
  --white:#ffffff;
  --shadow:0 10px 30px rgba(13,32,63,.06);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(45,108,223,.10), transparent 22%),
    linear-gradient(180deg, #edf3fb 0%, #f7faff 220px, #fbfdff 100%);
  line-height:1.72;
}
a{color:var(--blue);text-decoration:none}
.container{max-width:1140px;margin:0 auto;padding:0 24px}

.topbar{
  background:var(--navy);
  color:#dfe8f6;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar-inner{
  display:flex;align-items:center;justify-content:space-between;
  min-height:74px;
}
.brand{
  font-size:27px;font-weight:800;letter-spacing:.2px;color:#fff
}
.lang-switch{display:flex;gap:10px;align-items:center}
.lang-switch a{
  color:#dbe6f8;
  border:1px solid rgba(255,255,255,.18);
  padding:8px 12px;border-radius:999px;font-size:13px;font-weight:700
}
.lang-switch a.active{
  background:#fff;color:var(--navy);border-color:#fff
}

.hero{
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(135deg,var(--navy) 0%, var(--navy-2) 58%, var(--navy-3) 100%);
  color:#fff;
  padding:64px 0 58px;
  box-shadow:inset 0 -1px 0 rgba(255,255,255,.08);
}
.eyebrow{
  display:inline-block;
  font-size:12px;font-weight:800;letter-spacing:1.2px;
  text-transform:uppercase;
  color:#bdd0f1;
  margin-bottom:16px
}
.hero h1{
  font-size:46px;line-height:1.12;margin:0 0 20px;max-width:930px
}
.hero p{
  margin:0 0 14px;max-width:940px;color:#e8effb;font-size:18px
}
.meta-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
  margin-top:28px;
}
.meta-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:15px;
  padding:16px 16px 15px;
  min-height:96px;
  backdrop-filter: blur(3px);
}
.meta-card .k{
  color:#bfd0ee;font-size:11px;font-weight:800;letter-spacing:1px;text-transform:uppercase;margin-bottom:8px
}
.meta-card .v{
  color:#fff;font-size:18px;font-weight:700
}

.main{padding:38px 0 72px}
.section{
  border:1px solid var(--line);
  border-radius:18px;
  padding:30px 30px;
  margin:0 0 22px;
  box-shadow:var(--shadow);
  background:linear-gradient(180deg, var(--panel-tint) 0%, var(--panel) 100%);
}
.section.alt{
  background:linear-gradient(180deg, var(--panel-tint-2) 0%, var(--panel) 100%);
}
.section.highlight{
  background:
    radial-gradient(circle at top right, rgba(45,108,223,.08), transparent 26%),
    linear-gradient(180deg, #edf4ff 0%, #ffffff 100%);
  border-color:#cfe0fb;
}
.section h2{
  margin:0 0 14px;
  color:var(--navy);
  font-size:29px;
  line-height:1.2
}
.section .sub{
  font-size:18px;font-weight:700;color:var(--blue-2);margin:0 0 14px
}
.section p{margin:0 0 12px;font-size:17px}
.section ul{margin:10px 0 0 18px;padding:0}
.section li{margin:8px 0;font-size:16px}

.badge{
  display:inline-block;
  background:#edf3fe;
  color:var(--blue-2);
  border:1px solid #d5e3fb;
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;font-weight:800;letter-spacing:.3px;
  margin-bottom:12px
}
.footer{
  padding:28px 0 50px;
  color:var(--muted);
  font-size:14px
}
.cta-strong{
  font-weight:800;color:var(--navy)
}

@media (max-width: 980px){
  .meta-grid{grid-template-columns:repeat(2,1fr)}
  .hero h1{font-size:38px}
}
@media (max-width: 640px){
  .topbar-inner{flex-direction:column;align-items:flex-start;padding:14px 0;gap:12px}
  .hero{padding:52px 0 44px}
  .hero h1{font-size:31px}
  .hero p{font-size:16px}
  .meta-grid{grid-template-columns:1fr}
  .section{padding:22px 18px}
  .section h2{font-size:24px}
}

.site-logo {
    height: 44px;
    object-fit: contain;
}


.hero-subtitle{
  margin: 0 0 18px;
  max-width: 900px;
  color:#bfd0ee;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}
.mini-figure{
  margin-top: 18px;
  padding: 14px;
  background: rgba(255,255,255,.72);
  border:1px solid #d7e2f0;
  border-radius: 14px;
  max-width: 560px;
}
.mini-figure img{
  width:100%;
  height:auto;
  border-radius: 8px;
  display:block;
}
.mini-caption{
  margin-top:10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
@media (max-width:640px){
  .hero-subtitle{font-size:18px}
  .mini-figure{max-width:100%}
}

.mini-figure{
  max-width:420px;
  opacity:0.95;
}
