:root {
  --bg: #f4f7fd;
  --surface: #ffffff;
  --ink: #0d1b33;
  --muted: #5a6b8c;
  --navy: #0b2447;
  --navy-2: #123a7a;
  --brand: #1e56c8;
  --brand-2: #3f7df0;
  --accent: #f9b217;
  --accent-2: #ffd35c;
  --ring: rgba(30, 86, 200, 0.35);
  --line: rgba(13, 27, 51, 0.08);
  --glass: rgba(255, 255, 255, 0.09);
  --glass-line: rgba(255, 255, 255, 0.16);
  --radius: 22px;
  --shadow: 0 24px 60px -24px rgba(11, 36, 71, 0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: var(--brand); text-decoration: none; }

.wrap { width: min(1160px, 92%); margin: 0 auto; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 12px 0;
  z-index: 200;
}

.skip-link:focus { left: 0; }

.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 247, 253, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-head.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 32px -20px rgba(11, 36, 71, 0.25);
}

.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--navy) 0%, var(--brand) 100%);
  box-shadow: 0 10px 22px -10px var(--ring);
}

.brand-mark svg { width: 24px; height: 24px; }

.brand-name { font-size: 1.06rem; }

.brand-name small { display: block; font-size: 0.68rem; font-weight: 600; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 4px; }

.site-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 9px 14px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.site-nav a:hover { background: rgba(30, 86, 200, 0.1); color: var(--brand); }

.site-nav a.active { background: var(--navy); color: #fff; }

.nav-burger {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  place-items: center;
}

.nav-burger svg { width: 22px; height: 22px; stroke: var(--navy); }

.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(63, 125, 240, 0.4), transparent 60%),
    radial-gradient(900px 480px at -10% 110%, rgba(249, 178, 23, 0.18), transparent 55%),
    linear-gradient(150deg, #081a38 0%, var(--navy) 45%, var(--navy-2) 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(720px 460px at 70% 20%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(720px 460px at 70% 20%, #000 0%, transparent 75%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: float 11s ease-in-out infinite;
}

.orb-1 { width: 340px; height: 340px; background: var(--brand-2); top: -120px; right: 8%; }

.orb-2 { width: 260px; height: 260px; background: var(--accent); bottom: -110px; left: -60px; animation-delay: -5s; opacity: 0.3; }

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -26px, 0) scale(1.06); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 96px 0 110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.eyebrow svg { width: 15px; height: 15px; }

.hero h1 {
  margin: 22px 0 10px;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero h1 .grad {
  background: linear-gradient(92deg, var(--accent-2), var(--accent) 55%, #fff 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h2 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  color: #bcd0f7;
  margin-bottom: 18px;
}

.lead { color: #cdd9f2; font-size: 1.05rem; max-width: 56ch; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.9rem;
  font-weight: 600;
  color: #eaf1ff;
}

.badge svg { width: 17px; height: 17px; color: var(--accent-2); }

.hero-visual { position: relative; perspective: 1200px; }

.hero-frame {
  position: relative;
  border-radius: 28px;
  padding: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  transform: rotateY(-6deg) rotateX(4deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual:hover .hero-frame { transform: rotateY(0deg) rotateX(0deg); }

.hero-frame img {
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(10, 26, 56, 0.72);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.55);
  animation: float 7s ease-in-out infinite;
}

.float-chip svg { width: 18px; height: 18px; color: var(--accent-2); }

.chip-1 { top: -22px; left: -18px; }

.chip-2 { bottom: -20px; right: -14px; animation-delay: -3.5s; }

section { padding: 88px 0; }

.section-head { max-width: 720px; margin-bottom: 46px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
}

.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  border-radius: 2px;
}

.section-head h2, .page-hero h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 12px 0 14px;
  color: var(--navy);
}

.section-head p { color: var(--muted); font-size: 1.02rem; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 14px 40px -26px rgba(11, 36, 71, 0.35);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -28px rgba(11, 36, 71, 0.45);
  border-color: rgba(30, 86, 200, 0.25);
}

.card:hover::after { opacity: 1; }

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--brand);
  background: linear-gradient(140deg, rgba(30, 86, 200, 0.12), rgba(249, 178, 23, 0.14));
  border: 1px solid rgba(30, 86, 200, 0.16);
}

.card .icon svg { width: 25px; height: 25px; }

.card h3 { color: var(--navy); font-size: 1.14rem; margin-bottom: 10px; }

.card p { color: var(--muted); font-size: 0.95rem; }

.card .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand);
}

.card .more svg { width: 16px; height: 16px; transition: transform 0.3s ease; }

.card:hover .more svg { transform: translateX(4px); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split + .split { margin-top: 90px; }

.split .visual { position: relative; }

.split .visual img {
  border-radius: 26px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.visual .glow {
  position: absolute;
  inset: 12% -8% -8% 12%;
  background: linear-gradient(140deg, rgba(30, 86, 200, 0.35), rgba(249, 178, 23, 0.3));
  filter: blur(46px);
  border-radius: 30px;
  z-index: -1;
}

.split h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); color: var(--navy); margin: 12px 0 16px; letter-spacing: -0.01em; }

.split p { color: var(--muted); margin-bottom: 14px; }

.stat-band {
  margin-top: 90px;
  border-radius: 28px;
  padding: 46px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  background: linear-gradient(130deg, var(--navy) 0%, var(--navy-2) 70%, #1c4fa0 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stat-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}

.stat { position: relative; text-align: center; }

.stat svg { width: 26px; height: 26px; margin: 0 auto 12px; color: var(--accent-2); display: block; }

.stat strong { display: block; font-size: 1.5rem; letter-spacing: -0.01em; }

.stat span { color: #bcd0f7; font-size: 0.9rem; }

.page-hero {
  background:
    radial-gradient(900px 420px at 90% -20%, rgba(63, 125, 240, 0.35), transparent 60%),
    linear-gradient(150deg, #081a38 0%, var(--navy) 60%, var(--navy-2) 100%);
  color: #fff;
  padding: 84px 0 76px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(640px 380px at 20% 10%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(640px 380px at 20% 10%, #000 0%, transparent 75%);
}

.page-hero .wrap { position: relative; }

.crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: #9fb6e6;
  margin-bottom: 18px;
}

.crumbs a { color: #cdd9f2; }

.crumbs svg { width: 13px; height: 13px; }

.page-hero h1 { color: #fff; }

.page-hero p { color: #cdd9f2; max-width: 70ch; }

.prose { max-width: 860px; }

.prose h2 { color: var(--navy); font-size: 1.5rem; margin: 40px 0 14px; letter-spacing: -0.01em; }

.prose h3 { color: var(--navy); font-size: 1.16rem; margin: 28px 0 10px; }

.prose p { color: var(--muted); margin-bottom: 14px; }

.prose ul { margin: 0 0 16px 22px; color: var(--muted); }

.prose li { margin-bottom: 8px; }

.prose li::marker { color: var(--accent); }

.figure-card {
  margin: 36px 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.figure-card img { border-radius: 18px; aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }

.figure-card figcaption { padding: 14px 10px 6px; color: var(--muted); font-size: 0.88rem; }

.check-list { list-style: none; margin: 0; }

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  margin-bottom: 12px;
}

.check-list svg { width: 20px; height: 20px; color: var(--brand); flex: none; margin-top: 3px; }

.site-foot {
  background: linear-gradient(160deg, #071731 0%, var(--navy) 100%);
  color: #bcd0f7;
  padding: 70px 0 34px;
  margin-top: 40px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.foot-brand { display: flex; gap: 12px; align-items: center; color: #fff; font-weight: 700; margin-bottom: 16px; }

.foot-grid p { font-size: 0.92rem; max-width: 46ch; }

.foot-grid h4 { color: #fff; font-size: 0.86rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; }

.foot-grid ul { list-style: none; }

.foot-grid li { margin-bottom: 10px; }

.foot-grid ul a { color: #bcd0f7; font-size: 0.94rem; transition: color 0.25s ease; }

.foot-grid ul a:hover { color: var(--accent-2); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 0.82rem;
  color: #8ba3d4;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 140%);
  width: min(720px, 94%);
  background: rgba(8, 23, 50, 0.92);
  color: #eaf1ff;
  border: 1px solid var(--glass-line);
  border-radius: 20px;
  padding: 22px 26px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.6);
  z-index: 150;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.show { transform: translate(-50%, 0); }

.cookie-banner.hidden { display: none; }

.cookie-copy { display: flex; gap: 14px; align-items: flex-start; flex: 1 1 320px; }

.cookie-copy svg { width: 26px; height: 26px; color: var(--accent-2); flex: none; margin-top: 2px; }

.cookie-copy p { font-size: 0.9rem; color: #cdd9f2; }

.cookie-copy a { color: var(--accent-2); text-decoration: underline; }

.cookie-actions { display: flex; gap: 12px; }

.btn {
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-accent {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  color: #21335c;
  box-shadow: 0 14px 30px -14px rgba(249, 178, 23, 0.65);
}

.btn-ghost {
  background: transparent;
  color: #cdd9f2;
  border: 1px solid var(--glass-line);
}

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }

.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; padding: 70px 0 84px; gap: 44px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(244, 247, 253, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 4%;
    display: none;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; }
  .nav-burger { display: grid; }
}

@media (max-width: 620px) {
  .grid-3 { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orb, .float-chip { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-frame { transform: none; }
}
