:root {
  --navy: #08183f;
  --navy-2: #102b6a;
  --ink: #172033;
  --muted: #667085;
  --line: #dce1e9;
  --soft: #f6f7f9;
  --gold: #c99a27;
  --gold-2: #f0cf75;
  --green: #087a3f;
  --purple: #3a0b70;
  --white: #fff;
  --blue: #1f5fae;
  --shadow: 0 18px 55px rgba(8, 24, 63, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font: inherit; }
.wrap { width: min(100% - 60px, 1200px); margin-inline: auto; }
.skip {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  background: #fff;
  color: var(--navy);
  padding: 12px 16px;
  box-shadow: var(--shadow);
}
.skip:focus { top: 16px; }

.utility { background: var(--navy); color: #fff; font-size: 12px; }
.utility .wrap {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.utility span { opacity: 0.86; }
.utility a { text-decoration: underline; text-underline-offset: 3px; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav-shell { min-height: 88px; display: flex; align-items: center; gap: 22px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; min-width: 270px; }
.brand img { width: 62px; height: 62px; object-fit: contain; }
.brand b { display: block; color: var(--navy); font-family: Georgia, serif; font-size: 20px; }
.brand small { display: block; color: var(--muted); margin-top: 3px; font-size: 11px; }
.navlinks { display: flex; align-items: center; gap: 20px; font-size: 13px; font-weight: 800; }
.navlinks a:hover, .navlinks a:focus-visible { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 0;
  border-radius: 0;
  background: var(--navy);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(8, 24, 63, 0.18); }
.btn.gold { background: var(--gold); color: #111b36; }
.btn.light { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.btn.ops { background: linear-gradient(90deg, var(--purple), var(--green)); }
.nav-cta { white-space: nowrap; }
.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}
.menu-button svg { width: 24px; height: 24px; }
.mobile-menu { display: none; position: fixed; inset: 127px 0 0; z-index: 49; background: rgba(6, 18, 47, 0.46); }
.mobile-menu.open { display: block; }
.mobile-menu-panel { background: #fff; border-top: 1px solid var(--line); box-shadow: var(--shadow); padding: 12px 18px 22px; }
.mobile-menu-panel a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 850;
}
.mobile-menu-panel .primary-link { color: var(--green); }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, #07163c 0%, #102a68 62%, #17377d 100%);
  color: #fff;
  padding: 84px 0 74px;
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -150px;
  top: -190px;
  border: 1px solid rgba(240, 207, 117, 0.22);
  border-radius: 50%;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 62px; align-items: center; }
.kicker, .eyebrow { text-transform: uppercase; letter-spacing: 1.8px; color: var(--gold); font-size: 12px; font-weight: 900; }
.hero .kicker { color: var(--gold-2); }
.hero h1 { max-width: 780px; margin: 16px 0 22px; font-family: Georgia, serif; font-size: clamp(48px, 5vw, 64px); line-height: 1.02; }
.hero p { max-width: 760px; color: #e2e7f1; font-size: 20px; line-height: 1.6; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero .btn.light { border: 0; }
.hero-side { background: #fff; color: var(--ink); padding: 28px; border-top: 7px solid var(--gold); box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24); }
.opsline { display: flex; align-items: center; gap: 13px; }
.opsline img { width: 54px; height: 54px; object-fit: contain; }
.hero-side h3 { margin: 18px 0 10px; color: var(--navy); font-family: Georgia, serif; font-size: 25px; }
.hero-side p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.mini { color: var(--green); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.3px; }
.float-word {
  position: absolute;
  z-index: 1;
  color: rgba(255, 255, 255, 0.16);
  font-family: Georgia, serif;
  font-weight: 700;
  pointer-events: none;
  animation: drift 6s ease-in-out infinite;
}
.float-word.one { right: 3%; bottom: 8%; font-size: 23px; }
.float-word.two { left: 2%; top: 14%; font-size: 16px; animation-delay: -2.3s; }
@keyframes drift { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
.dance { animation: gentle-float 3.4s ease-in-out infinite; }
@keyframes gentle-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.disclaimer-strip { background: #fff7df; border-bottom: 1px solid #ead9a9; }
.disclaimer-strip .wrap { padding-top: 15px; padding-bottom: 15px; color: #594915; font-size: 13px; }
.topicbar { border-bottom: 1px solid var(--line); background: #fff; }
.topics { display: flex; overflow: auto; scrollbar-width: thin; }
.topics a { flex: 1 0 auto; padding: 16px 18px; border-right: 1px solid var(--line); color: #4b5568; text-align: center; white-space: nowrap; font-size: 12px; font-weight: 900; }
.topics a:hover { color: var(--navy); background: var(--soft); }

.section { padding: 76px 0; scroll-margin-top: 92px; }
.soft { background: var(--soft); }
.dark { background: var(--navy); color: #fff; }
.head { max-width: 800px; margin-bottom: 38px; }
.section h2, .cta h2 { margin: 10px 0 16px; color: var(--navy); font-family: Georgia, serif; font-size: clamp(35px, 4vw, 43px); line-height: 1.1; }
.dark h2 { color: #fff; }
.lead { color: #475467; font-size: 18px; line-height: 1.72; }
.dark .lead { color: #cbd3e2; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: #fff; }
.stat { padding: 30px; border-right: 1px solid var(--line); }
.stat:last-child { border: 0; }
.stat b { color: var(--navy); font-family: Georgia, serif; font-size: 42px; }
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.philosophy { display: grid; grid-template-columns: repeat(6, 1fr); border-block: 1px solid var(--line); }
.philosophy div { padding: 24px 14px; border-right: 1px solid var(--line); text-align: center; }
.philosophy div:last-child { border: 0; }
.philosophy b { color: var(--navy); font-family: Georgia, serif; font-size: 20px; }
.philosophy small { display: block; margin-top: 7px; color: var(--muted); }
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { min-height: 250px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); background: #fff; }
.card .num { color: var(--gold); font-family: Georgia, serif; font-size: 38px; font-weight: 900; }
.card h3 { margin: 12px 0; color: var(--navy); font-family: Georgia, serif; font-size: 25px; }
.card p { color: #596579; font-size: 15px; line-height: 1.6; }
.card .link { margin-top: auto; color: var(--navy); font-weight: 900; }
.lane { position: relative; overflow: hidden; }
.lane::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 6px; background: var(--navy); }
.lane.remote::before { background: var(--blue); }
.lane.majuu::before { background: linear-gradient(var(--purple), var(--green)); }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pill { padding: 7px 9px; background: #f0f3f7; color: #4a5568; font-size: 11px; font-weight: 800; }
.notice { padding: 23px 25px; border-left: 5px solid var(--navy-2); background: #eef2fb; color: #344054; line-height: 1.6; }
.notice strong { color: var(--navy); }
.language-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.language { padding: 24px; border: 1px solid var(--line); border-top: 4px solid var(--gold); background: #fff; }
.language b { display: block; margin-bottom: 7px; color: var(--navy); font-size: 20px; }
.language p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.radar { overflow: auto; border: 1px solid var(--line); background: #fff; }
table { width: 100%; min-width: 850px; border-collapse: collapse; }
th, td { padding: 15px 16px; border-bottom: 1px solid var(--line); text-align: left; font-size: 13px; }
th { background: #eef2f7; color: var(--navy); font-size: 11px; text-transform: uppercase; letter-spacing: 0.7px; }
.status { color: var(--green); font-weight: 900; }
.verify { color: #8b6511; font-weight: 800; }
.table-link { color: var(--navy-2); font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.steps { display: grid; grid-template-columns: repeat(6, 1fr); border-block: 1px solid #344364; }
.step { padding: 26px 18px; border-right: 1px solid #344364; }
.step:last-child { border: 0; }
.step b { color: var(--gold-2); font-family: Georgia, serif; font-size: 34px; }
.step h3 { margin: 9px 0; font-size: 16px; }
.step p { color: #cbd3e2; font-size: 13px; line-height: 1.5; }
.rg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.rgbox { padding: 30px; background: #fff; color: var(--ink); }
.rgbox h3 { color: var(--navy); font-family: Georgia, serif; font-size: 24px; }
.meter { height: 12px; margin: 10px 0 22px; background: #e8ecf4; }
.meter span { display: block; width: 82%; height: 100%; background: var(--gold); }
.partners { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.partner { padding: 22px; border: 1px solid var(--line); background: #fff; text-align: center; }
.partner img { width: 100%; height: 105px; margin-bottom: 12px; object-fit: contain; }
.partner b { display: block; color: var(--navy); }
.partner small { display: block; margin-top: 6px; color: var(--muted); line-height: 1.4; }
.empty-state { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; padding: 28px; border: 1px solid var(--line); background: #fff; }
.empty-count { color: var(--navy); font-family: Georgia, serif; font-size: 52px; font-weight: 900; }
.empty-state h3 { margin: 0 0 7px; color: var(--navy); font-family: Georgia, serif; font-size: 24px; }
.empty-state p { margin: 0; color: var(--muted); line-height: 1.55; }
.cta { padding: 58px 0; background: var(--gold); }
.cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta h2 { margin: 0; color: #0a173a; font-size: 40px; }
.cta p { margin: 8px 0 0; color: #33405a; }

footer { padding: 56px 0 28px; background: #06122f; color: #fff; }
.foot { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 42px; }
.footbrand { display: flex; align-items: center; gap: 15px; }
.footbrand img { width: 80px; height: 80px; border-radius: 4px; background: #fff; object-fit: contain; }
.foot h4 { margin: 0 0 13px; color: var(--gold-2); }
.foot ul { margin: 0; padding: 0; list-style: none; }
.foot li, .foot a { margin: 9px 0; color: #b8c1d2; font-size: 13px; }
.foot a { display: block; }
.foot a:hover { color: #fff; }
.fine { margin-top: 38px; padding-top: 20px; border-top: 1px solid #263454; color: #aeb8ca; font-size: 12px; line-height: 1.65; }
.motto { margin-top: 14px; color: var(--gold-2); font-weight: 900; letter-spacing: 0.8px; }

@media (max-width: 1080px) {
  .navlinks { gap: 13px; }
  .navlinks a:nth-child(5), .navlinks a:nth-child(7) { display: none; }
}

@media (max-width: 980px) {
  .navlinks, .nav-cta { display: none; }
  .menu-button { display: inline-flex; }
  .hero-grid, .rg-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 68px; }
  .hero h1 { font-size: 50px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .philosophy { grid-template-columns: repeat(3, 1fr); }
  .cards3, .language-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .partners { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  .wrap { width: min(100% - 36px, 1200px); }
  .utility .wrap { display: block; padding-block: 9px; }
  .utility span { display: block; margin: 3px 0; }
  .nav-shell { min-height: 76px; gap: 10px; }
  .brand { min-width: 0; gap: 8px; }
  .brand img { width: 48px; height: 48px; }
  .brand b { font-size: 18px; }
  .brand small { display: none; }
  .menu-button { flex: 0 0 46px; width: 46px; height: 46px; }
  .mobile-menu { inset-block-start: 132px; }
  .hero { padding: 56px 0; }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 17px; }
  .hero-side { padding: 24px 20px; }
  .hero .actions .btn { width: 100%; }
  .float-word { display: none; }
  .section { padding: 58px 0; }
  .section h2 { font-size: 35px; }
  .stats, .cards3, .cards2, .language-grid, .partners { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .philosophy { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid #344364; }
  .topicbar { display: none; }
  .empty-state { grid-template-columns: 1fr; }
  .empty-state .btn { width: 100%; }
  .radar { overflow: visible; border: 0; background: transparent; }
  .radar table { min-width: 0; }
  .radar thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .radar tbody { display: grid; gap: 14px; }
  .radar tr { display: block; padding: 8px 16px; border: 1px solid var(--line); background: #fff; box-shadow: 0 10px 25px rgba(8, 24, 63, 0.06); }
  .radar td { display: grid; grid-template-columns: 112px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); overflow-wrap: anywhere; }
  .radar td:last-child { border-bottom: 0; }
  .radar td::before { content: attr(data-label); color: var(--muted); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.6px; }
  .radar td[colspan] { display: block; }
  .radar td[colspan]::before { display: none; }
  .cta .wrap { display: block; }
  .cta .btn { width: 100%; margin-top: 20px; }
  .foot { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .brand b { font-size: 16px; }
  .hero h1 { font-size: 36px; }
  .radar td { grid-template-columns: 96px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
