:root {
  --main: #164f94;
  --accent: #f0b23a;
  --soft: #f7fbff;
  --ink: #12233a;
  --danger: #22a884;
  --blue: #d84f7a;
  --muted: #5d6678;
  --line: #e8e3d7;
  --paper: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--soft), #f7f9ff 54%, #fff 100%);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 1.26rem; font-weight: 950; }
.brand-mark { width: 42px; height: 42px; border-radius: 8px; background: var(--ink); display: grid; place-items: center; color: var(--accent); font-weight: 950; }
.main-nav { margin-left: auto; display: flex; gap: 4px; overflow-x: auto; }
.main-nav a { white-space: nowrap; padding: 10px 12px; border-radius: 8px; color: var(--muted); font-weight: 800; font-size: .92rem; }
.main-nav a.active, .main-nav a:hover { color: var(--ink); background: #f1f4fb; }
.top-cta, .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; font-weight: 900; padding: 0 18px; }
.top-cta { background: var(--ink); color: #fff; white-space: nowrap; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100vh - 76px);
  padding: clamp(32px, 7vw, 88px) clamp(18px, 5vw, 78px) 42px;
}
.eyebrow { margin: 0 0 10px; color: var(--main); font-size: .78rem; font-weight: 950; text-transform: uppercase; letter-spacing: 0; }
h1 { margin: 0 0 18px; max-width: 820px; font-size: clamp(2.1rem, 5.2vw, 4.9rem); line-height: .98; letter-spacing: 0; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.2rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 18px; }
.btn.primary { background: linear-gradient(135deg, var(--main), var(--blue)); color: #fff; box-shadow: 0 16px 36px rgba(20,40,80,.20); }
.btn.secondary { background: var(--accent); color: var(--ink); }
.btn.soft { background: #edf2ff; color: var(--blue); }
.trust-strip { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-strip span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.78); color: #50596d; font-size: .9rem; font-weight: 760; }
.hero-visual img { width: 100%; display: block; filter: drop-shadow(0 30px 58px rgba(20,30,60,.18)); }
.authority {
  margin: 0 clamp(18px, 5vw, 78px) 42px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-weight: 900;
}
.authority span { color: #d8e3ff; font-weight: 760; }
.module-grid, .ranking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 78px) 56px;
}
.module-grid article, .ranking-grid article, .stat-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 14px 36px rgba(35,42,62,.06);
}
.module-grid b { display: inline-flex; margin-bottom: 16px; color: var(--danger); }
h2 { margin: 0 0 12px; font-size: clamp(1.42rem, 2.45vw, 2.25rem); letter-spacing: 0; }
h3 { margin: 0 0 10px; font-size: 1.05rem; letter-spacing: 0; }
p { line-height: 1.68; }
.module-grid p, .ranking-grid p { color: var(--muted); margin: 0; }
.deep-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  padding: 56px clamp(18px, 5vw, 78px);
  background: var(--ink);
  color: #fff;
}
.deep-section p { color: #d8e3ea; }
.check-list { display: grid; gap: 10px; padding: 0; margin: 24px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 26px; color: #f2fbf8; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.stat-panel { display: grid; gap: 12px; align-self: start; color: var(--ink); }
.stat-panel span { padding: 12px; border-radius: 8px; background: #f8fafc; color: #435066; font-weight: 780; }
.ranking-section { padding: 64px 0 20px; }
.ranking-section > .eyebrow, .ranking-section > h2 { padding-left: clamp(18px, 5vw, 78px); padding-right: clamp(18px, 5vw, 78px); }
.site-footer { display: flex; justify-content: space-between; gap: 24px; padding: 34px clamp(18px, 5vw, 78px); background: #10141e; color: #fff; }
.site-footer p { color: #cbd3df; max-width: 640px; margin-bottom: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px; align-content: start; }
.footer-links a { color: #fff; background: rgba(255,255,255,.1); padding: 10px 12px; border-radius: 8px; font-weight: 820; }
@media (max-width: 980px) {
  .site-header { flex-wrap: wrap; }
  .main-nav { order: 3; width: 100%; }
  .hero, .deep-section { grid-template-columns: 1fr; min-height: auto; }
  .module-grid, .ranking-grid { grid-template-columns: repeat(2, 1fr); }
  .authority { display: block; }
}
@media (max-width: 620px) {
  .module-grid, .ranking-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .site-footer { display: block; }
  .footer-links { margin-top: 18px; }
}