:root {
  --blue-900: #0a2a6b;
  --blue-800: #0e3d97;
  --blue-700: #1357cb;
  --blue-600: #1d6eff;
  --blue-500: #2d8cff;
  --blue-100: #eaf3ff;
  --blue-050: #f5f9ff;
  --white: #ffffff;
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --line: rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 60px rgba(8, 32, 89, 0.14);
  --shadow-md: 0 18px 40px rgba(8, 32, 89, 0.10);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink-900);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand-pill,
.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.04em;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

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

.site-nav a {
  color: var(--ink-700);
  font-weight: 600;
}

.site-nav a:hover { color: var(--blue-700); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  width: 42px;
  height: 42px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-900);
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid,
.section-grid,
.why-grid,
.showcase-card,
.footer-wrap,
.vision-grid {
  display: grid;
  gap: 34px;
}

.hero-grid {
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
}

.eyebrow,
.section-tag {
  margin: 0 0 16px;
  color: var(--blue-700);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-tag.light,
.blue-panel .section-tag,
.contact-cta .section-tag { color: rgba(255,255,255,0.82); }

.hero h1,
section h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  max-width: 9ch;
}

section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 14ch;
}

.hero-text,
.section-head p,
.brand-intro p,
.vision p,
.why-panel p,
.why-item p,
.showcase-copy p,
.contact-cta p,
.site-footer p {
  color: var(--ink-500);
  line-height: 1.75;
  font-size: 1.02rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: var(--white);
  border: 1px solid rgba(19, 87, 203, 0.18);
  color: var(--blue-900);
}

.btn-light {
  background: var(--white);
  color: var(--blue-900);
}

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
}

.hero-highlights,
.stats-grid,
.card-grid {
  display: grid;
  gap: 16px;
}

.hero-highlights {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.hero-highlights div,
.stat-item,
.info-card,
.why-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-highlights div {
  padding: 18px;
}

.hero-highlights strong,
.stat-item strong {
  display: block;
  color: var(--blue-900);
  font-size: 1rem;
  margin-bottom: 6px;
}

.hero-highlights span,
.stat-item span { color: var(--ink-500); font-size: 0.95rem; line-height: 1.5; }

.hero-visual {
  position: relative;
}

.hero-visual img,
.showcase-media img {
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(19, 87, 203, 0.10);
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  color: var(--blue-900);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.top-card { top: 18px; left: -8px; }
.bottom-card { right: 18px; bottom: 16px; }

.brand-intro,
.offerings,
.why-bigly,
.vision,
.showcase,
.contact-cta,
.stats-band { padding: 74px 0; }

.section-grid,
.vision-grid,
.showcase-card { grid-template-columns: 0.9fr 1.1fr; align-items: start; }

.section-head.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}

.section-head.center h2,
.section-head.center p { margin-left: auto; margin-right: auto; }

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

.info-card {
  padding: 28px;
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--blue-900);
  background: linear-gradient(135deg, var(--blue-100), #ffffff);
  border: 1px solid rgba(19,87,203,0.12);
  margin-bottom: 16px;
}

.info-card h3,
.why-item h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.info-card p,
.why-item p,
.stat-item span { margin: 0; }

.why-grid { grid-template-columns: 0.95fr 1.05fr; align-items: stretch; }

.blue-panel,
.cta-shell {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.blue-panel {
  padding: 34px;
}

.blue-panel p,
.contact-cta p { color: rgba(255,255,255,0.78); }

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-item,
.stat-item {
  padding: 24px;
}

.stats-band {
  background: linear-gradient(180deg, rgba(19,87,203,0.05), rgba(19,87,203,0.01));
}

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

.tick-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.tick-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-700);
  font-weight: 600;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-700);
  font-weight: 900;
}

.showcase-card {
  align-items: center;
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(19,87,203,0.08);
  box-shadow: var(--shadow-lg);
}

.contact-cta { padding-top: 24px; }

.cta-shell {
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  padding: 30px 0 44px;
  background: #081b47;
  color: rgba(255,255,255,0.78);
}

.footer-wrap {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a:hover { color: var(--white); }

@media (max-width: 1024px) {
  .hero-grid,
  .section-grid,
  .vision-grid,
  .showcase-card,
  .why-grid,
  .footer-wrap,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .four-up { grid-template-columns: repeat(2, 1fr); }
  .why-list { grid-template-columns: 1fr 1fr; }
  .hero-highlights,
  .stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    right: 16px;
    top: 78px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: var(--shadow-md);
    border-radius: 18px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    min-width: 220px;
  }

  .site-nav.open { display: flex; }
  .hero { padding-top: 42px; }
  .hero h1 { max-width: 100%; }
  .hero-highlights,
  .four-up,
  .why-list,
  .stats-grid { grid-template-columns: 1fr; }
  .cta-shell { padding: 28px; }
  .showcase-card { padding: 24px; }
  .floating-card { position: static; display: inline-flex; margin: 12px 0; }
}
