/* =========================================================
   RESET + BASE
========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #e5e7eb;
  color: #111827;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.page-wrap {
  max-width: 1150px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

/* =========================================================
   HEADER (DESKTOP FIRST – STABLE)
========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, #020617, #020617cc);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header .nav {
  max-width: 1150px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRAND */
.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 420px;
  flex-shrink: 0;
}

.brand-logo {
  height: 64px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  white-space: nowrap;
}

/* BULLET-PROOF SUBTITLE */
.brand-sub {
  display: flex;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: #cbd5f5;
  margin-top: 4px;
}

.brand-sub span {
  position: relative;
  padding-right: 10px;
}

.brand-sub span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: 0;
  color: #7bff3f;
}

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  font-size: 0.9rem;
  color: #ffffff;
  white-space: nowrap;
}

.nav-cta {
  background: #7bff3f;
  color: #0b1220;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* =========================================================
   HERO (VIDEO SAFE)
========================================================= */
.hero {
  position: relative;
  min-height: 520px;
  padding: 200px 20px 90px;
  color: #ffffff;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.hero-left {
  flex: 1.3;
}

.hero-panel {
  flex: 1;
  background: rgba(15,23,42,0.9);
  border: 1px solid #334155;
  padding: 26px;
  border-radius: 8px;
}

.hero-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #a9b4d8;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 2.25rem;
  line-height: 1.25;
  margin-bottom: 18px;
}

.hero h1 span {
  color: #a4ff7a;
}

.hero-sub {
  font-size: 1rem;
  margin-bottom: 26px;
  color: #e5e7eb;
}

.hero-buttons a {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  margin-right: 12px;
}

.btn-primary {
  background: #7bff3f;
  color: #0b1220;
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  border: 1px solid #475569;
  color: #ffffff;
}

.hero-badges {
  margin-top: 20px;
}

.hero-badges span {
  display: inline-block;
  margin: 6px 6px 0 0;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid #334155;
  background: rgba(15,23,42,0.85);
  font-size: 0.75rem;
}

/* =========================================================
   SECTIONS
========================================================= */
.section {
  background: #ffffff;
  padding: 36px;
  margin: 48px 0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.1);
}

.section.light {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.section-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 8px;
}

.section-title {
  font-size: 1.65rem;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 26px;
}

/* =========================================================
   TWO COLUMN
========================================================= */
.two-col {
  display: flex;
  gap: 40px;
}

.two-col > aside {
  flex: 1;
}

.two-col > div {
  flex: 1.4;
}

/* =========================================================
   CARDS & HIGHLIGHTS
========================================================= */
.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p {
  color: #64748b;
}

.highlight-box {
  background: #f1f5f9;
  border: 1px solid #e5e7eb;
  padding: 28px;
  border-radius: 8px;
}

.highlight-box strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: #0b1220;
}

/* =========================================================
   FOOTER BLUE BANNER
========================================================= */
.footer-banner {
  background: #0b3b8c;
  padding: 26px 20px;
}

.footer-banner-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
}

.footer-banner-inner strong {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

.footer-banner-inner span {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 36px 10px;
  text-align: center;
  font-size: 0.85rem;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {

  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 160px;
  }

  .hero-inner {
    flex-direction: column;
  }

  .two-col {
    flex-direction: column;
  }

  .footer-banner-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {

  .brand-logo {
    height: 52px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: 0.65rem;
  }

  .hero h1 {
    font-size: 1.9rem;
  }
}
