:root {
  --brand-900: #061b4e;
  --brand-800: #0d2f73;
  --brand-700: #1347c5;
  --brand-600: #1d63f2;
  --brand-500: #2f7bff;
  --brand-300: #87b8ff;
  --neutral-900: #101b35;
  --neutral-700: #2d3a5c;
  --neutral-500: #5f6e92;
  --neutral-200: #e7ecf6;
  --neutral-100: #f5f8ff;
  --white: #ffffff;
  --success: #22b48c;
  --orange: #f08a35;
  --shadow-soft: 0 8px 28px rgba(7, 32, 84, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  color: var(--neutral-900);
  background: #f7f9ff;
  line-height: 1.45;
}

.eyebrow{
  font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
}

.hero .eyebrow{ color:#1d63F2; margin-bottom:18px; display:flex; align-items:center; gap:8px;}
.hero .eyebrow::before{ content:""; width:6px; height:6px; border-radius:50%; display:inline-block; background: currentColor; }
.hero h1{
  font-size:44px; line-height:1.18; font-weight:800; letter-spacing:-.01em;
  margin-bottom:20px;
}
.hero h1 .accent{ color:#1d63F2; }
.hero p.lede{
  color:#000000; font-size:15.5px; line-height:1.65; max-width:440px; margin-bottom:30px;
}

h1,h2,h3{ font-family:"Plus Jakarta Sans", "Inter","Roboto",  sans-serif; font-weight:800; letter-spacing:-0.02em; }
.brand, .hub-label{ font-family:'Plus Jakarta Sans', 'Inter', sans-serif; font-weight:800; letter-spacing:-0.02em; }
.brand-text {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 18px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand-700), var(--brand-600));
  color: #fff;
  box-shadow: 0 10px 18px rgba(29, 99, 242, 0.2);
}

.btn-light {
  border-color: #c7d4ef;
  color: var(--brand-700);
  background: #fff;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(19, 71, 197, 0.08);
}

.topbar-inner {
  max-width: 1180px;
  width: min(1180px, calc(100% - 64px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand img {
  max-height: 48px;
  width: auto;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #cfd8ea;
  border-radius: 10px;
  background: #fff;
  color: var(--brand-700);
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: #172345;
  font-size: 14px;
  font-weight: 600;
  padding: 28px 0 24px;
  border-bottom: 3px solid transparent;
}

.main-nav a.active {
  color: var(--brand-700);
  border-bottom-color: var(--brand-600);
}
footer {
  background: #0a1e46;
  padding: 56px 0 26px;
  color: #aab6cf;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr .8fr;
  gap: 24px;
  margin-bottom: 40px;
}

.footer-logo {
  width: auto;
  max-height: 40px;
  object-fit: contain;
  display: block;
}

.footer-brand p {
  font-size: 12.5px;
  line-height: 1.6;
  margin-top: 14px;
  color: #8492b4;
  max-width: 220px;
}

.footer-col h4 {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.footer-col li {
  font-size: 12.5px;
  margin-bottom: 10px;
  color: #93a0bf;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-social span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  font-size: 11.5px;
  color: #6d7ba0;
}
@media (max-width: 1120px) {
  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .topbar-inner {
    height: auto;
    min-height: 72px;
    padding: 10px 0;
    flex-wrap: wrap;
    align-items: center;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
  }

  .brand img {
    max-height: 40px;
  }

  .topbar .btn.btn-primary {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 8px;
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid #dfe8f8;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(8, 28, 73, 0.08);
    overflow: hidden;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    border-bottom: 1px solid #e7eefb;
    padding: 12px 0;
  }

  .main-nav a.active {
    border-bottom-color: #e7eefb;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .wrap {
    padding: 0 14px;
  }

  .topbar-inner {
    height: 66px;
    padding: 8px 0;
  }

  .brand img {
    max-height: 34px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
