:root {
  --navy-950: #07101f;
  --navy-900: #0b1b36;
  --navy-800: #122a55;
  --navy-700: #1a3d73;
  --blue-600: #1e78be;
  --blue-500: #2490cc;
  --blue-400: #47b0e0;
  --gold-700: #8a6410;
  --gold-600: #b88614;
  --gold-500: #cc9c24;
  --gold-400: #e4c054;
  --gold-300: #f3dc82;
  --ink: #152033;
  --muted: #5c6b82;
  --line: #d7e0ec;
  --paper: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 16, 31, 0.12);
  --radius: 18px;
  --header-h: 84px;
  --max: 1180px;
  --font-display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--navy-800);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--navy-900);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.15rem); font-weight: 700; }
h3 { font-size: 1.45rem; font-weight: 700; }

p { margin: 0 0 1em; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold-400);
  color: var(--navy-950);
  padding: 8px 12px;
  z-index: 1000;
}

.skip:focus { left: 8px; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-600);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}

.lede {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
}

/* Top bar */
.topbar {
  background: var(--navy-950);
  color: #c9d6e8;
  font-size: 0.86rem;
  border-bottom: 1px solid rgba(228, 192, 84, 0.18);
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 40px;
}

.topbar a { color: #e8eef8; }
.topbar a:hover { color: var(--gold-400); }
.topbar-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(7, 16, 31, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.logo img {
  height: 64px;
  width: auto;
}

.logo-text {
  display: none;
}

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

.nav a,
.nav-drop > button {
  color: var(--navy-900);
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.nav a:hover,
.nav-drop > button:hover,
.nav a[aria-current="page"] {
  color: var(--gold-600);
}

.nav-drop { position: relative; }

.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 20;
}

.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop.open .nav-drop-menu {
  display: grid;
}

.nav-drop-menu a {
  color: var(--navy-900);
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
}

.nav-drop-menu a:hover {
  background: var(--paper);
  color: var(--blue-600);
}

.nav .btn-gold {
  margin-left: 8px;
  background: #0b1b36;
  color: var(--white);
  padding: 0 20px;
  min-height: 44px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(11, 27, 54, 0.28);
}

.nav .btn-gold:hover {
  background: #122a55;
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy-900);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold-400);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-gold {
  background: linear-gradient(180deg, #f4dc88 0%, #cc9c24 52%, #a67c12 100%);
  color: var(--navy-950);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 10px 24px rgba(204, 156, 36, 0.28);
}

.btn-gold:hover { color: var(--navy-950); }

.btn-navy {
  background: var(--navy-800);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(11, 27, 54, 0.22);
}

.btn-navy:hover { color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(228, 192, 84, 0.65);
}

.btn-outline:hover { color: var(--gold-300); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(900px 420px at 85% 10%, rgba(36, 144, 204, 0.28), transparent 55%),
    radial-gradient(700px 380px at 8% 90%, rgba(204, 156, 36, 0.16), transparent 50%),
    linear-gradient(165deg, #07101f 0%, #0d2348 48%, #12305f 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 85%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 72px 0 80px;
}

.hero-grid > div {
  max-width: 720px;
}

.hero h1 { color: var(--white); }
.hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p { color: #c5d4e8; font-size: 1.14rem; max-width: 54ch; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(228, 192, 84, 0.2);
  border-top: 1px solid rgba(228, 192, 84, 0.2);
}

.stat {
  background: rgba(7, 16, 31, 0.55);
  padding: 22px 18px;
  text-align: center;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-400);
  letter-spacing: 0.03em;
}

.stat span { color: #c5d4e8; font-size: 0.88rem; }

/* Sections */
.section { padding: 88px 0; }
.section-head { max-width: 680px; margin-bottom: 40px; }

.section-dark {
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(36,144,204,0.18), transparent 50%),
    var(--navy-900);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 { color: var(--white); }

.section-dark .lede { color: #c5d4e8; }

.section-paper { background: var(--paper); }

.gold-rule {
  height: 3px;
  width: 84px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border: 0;
  margin: 0 0 18px;
}

/* Cards */
.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 22px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(11, 27, 54, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 156, 36, 0.55);
  box-shadow: var(--shadow);
}

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #1a3d73, #122a55);
  color: var(--gold-400);
}

.card .icon svg { display: block; }

.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 16px; }
.card a.more {
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.panel {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--line);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid var(--line);
}

.checklist li:last-child { border-bottom: 0; }

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, var(--gold-300), var(--gold-600));
  box-shadow: inset 0 0 0 4px var(--white);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
}

.steps li {
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 20px 20px 78px;
  position: relative;
}

.steps { padding: 0; margin: 0; }

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: var(--gold-400);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(7,16,31,0.78), rgba(18,42,85,0.7)),
    radial-gradient(800px 300px at 80% 20%, rgba(36,144,204,0.35), transparent 50%),
    var(--navy-900);
  color: var(--white);
  padding: 64px 0 56px;
}

.page-hero h1 { color: var(--white); }
.page-hero p { color: #d0dceb; max-width: 62ch; }

.crumbs {
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.crumbs a { color: #c9d6e8; }

/* Forms */
form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-900);
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(36, 144, 204, 0.45);
  border-color: var(--blue-500);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent input { width: 18px; height: 18px; margin-top: 3px; }

.form-note, .form-success, .form-error {
  font-size: 0.92rem;
}

.form-success {
  background: #e9f7ef;
  color: #145c36;
  border-radius: 12px;
  padding: 12px 14px;
}

.form-error {
  background: #fdecea;
  color: #8a1f16;
  border-radius: 12px;
  padding: 12px 14px;
}

.hidden { display: none !important; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
}

.info-tile {
  background: var(--navy-900);
  color: var(--white);
  border-radius: 24px;
  padding: 28px;
}

.info-tile h2 { color: var(--white); }
.info-tile a { color: var(--gold-400); }
.info-tile p { color: #c5d4e8; }
.info-tile dl { margin: 0; }
.info-tile dt {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 18px;
}
.info-tile dd { margin: 4px 0 0; font-weight: 700; }

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy-900);
}

.faq details p { margin: 10px 0 0; color: var(--muted); }

/* Footer */
.footer {
  background: var(--navy-950);
  color: #c5d4e8;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer h3 {
  color: var(--gold-400);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a { color: #d5e0ef; }
.footer a:hover { color: var(--gold-400); }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin: 8px 0; }
.footer .logo img { height: 86px; }
.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-size: 0.86rem;
  color: #8ea0b8;
}

.band {
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  padding: 28px 0;
}

.band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.band h2 { margin: 0; color: var(--navy-950); font-size: 2rem; }

.ol-tight { padding-left: 18px; }
.ol-tight li { margin: 8px 0; }

@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid, .footer-grid,
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    display: none;
    position: absolute;
    inset: var(--header-h) 16px auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav-drop-menu {
    position: static;
    display: none;
    min-width: 0;
    box-shadow: none;
    background: var(--paper);
    border: 0;
  }
  .nav-drop.open .nav-drop-menu { display: grid; }
  .nav-drop-menu a { color: var(--navy-900); }
  .nav-cta, .nav .btn-gold { margin-left: 0; }
  .logo-text { display: none; }
  .band .wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .topbar .wrap { justify-content: center; }
  .hero-grid { padding: 42px 0 48px; }
  .section { padding: 64px 0; }
  .stats { grid-template-columns: 1fr; }
  .logo img { height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card { transition: none; }
}
