@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --blue: #006CFF;
  --blue-2: #00B8FF;
  --navy: #071A3D;
  --dark: #030712;
  --text: #0F172A;
  --muted: #64748B;
  --light: #F5FAFF;
  --white: #FFFFFF;
  --border: rgba(0, 108, 255, 0.18);
  --shadow: 0 24px 80px rgba(0, 64, 160, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 6%;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; color: var(--blue); }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 24px; font-weight: 800; font-size: 14px; }
.site-nav a:hover { color: var(--blue); }
.mobile-nav-head { display: none; }
.nav-cta {
  display: none;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white !important;
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
}
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, .45);
  z-index: 45;
}
.menu-toggle {
  display: none; border: none; background: var(--blue); color: white;
  width: 42px; height: 42px; border-radius: 12px; font-size: 20px;
}

.hero {
  min-height: 88vh;
  display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center;
  padding: 70px 6%;
  background:
    radial-gradient(circle at 80% 10%, rgba(0,184,255,.18), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #F3F9FF 100%);
  overflow: hidden;
}
.hero-logo { max-width: 420px; margin-bottom: 18px; }
.eyebrow {
  color: var(--blue); font-weight: 900; text-transform: uppercase;
  letter-spacing: .12em; font-size: 13px;
}
h1,h2,h3,p { margin-top: 0; }
h1 { font-size: clamp(44px, 5.8vw, 78px); line-height: .95; letter-spacing: -0.06em; margin-bottom: 22px; }
h2 { font-size: clamp(32px, 4vw, 54px); line-height: 1; letter-spacing: -0.045em; margin-bottom: 18px; }
h3 { font-size: 22px; margin-bottom: 10px; }
.hero-copy, .section p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0; }
.hero-actions.center { justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 22px; border-radius: 999px; font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white; box-shadow: 0 18px 38px rgba(0,108,255,.26);
}
.btn.secondary {
  border: 1px solid rgba(0,108,255,.28); color: var(--blue); background: white;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span {
  padding: 10px 13px; border-radius: 999px; background: white; border: 1px solid var(--border);
  color: var(--navy); font-weight: 800; font-size: 13px;
}
.hero-card {
  position: relative; border-radius: 36px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(0,108,255,.18); background: white;
}
.hero-card img { height: 590px; width: 100%; object-fit: cover; }
.floating-badge {
  position: absolute; left: 24px; bottom: 24px; padding: 14px 20px; border-radius: 999px;
  color: white; font-weight: 900;
  background: linear-gradient(135deg, rgba(0,108,255,.95), rgba(0,184,255,.95));
  box-shadow: 0 16px 36px rgba(0,108,255,.35);
}

.section { padding: 92px 6%; }
.section-heading { max-width: 850px; margin-bottom: 36px; }
.feature-grid, .plans-grid, .support-grid, .mission-grid, .coverage-grid { display: grid; gap: 22px; }
.feature-grid { grid-template-columns: repeat(4, 1fr); }
.feature-card, .plan-card, .support-grid article, .mission-grid article, .coverage-card {
  background: white; border: 1px solid var(--border); border-radius: 28px; padding: 28px;
  box-shadow: 0 18px 50px rgba(15,23,42,.06);
}
.icon {
  display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,108,255,.12), rgba(0,184,255,.16));
  font-size: 26px; margin-bottom: 18px;
}
.plans, .coverage { background: var(--light); }
.plans-grid { grid-template-columns: repeat(3, 1fr); }
.plan-card { position: relative; }
.plan-card.popular { border: 2px solid rgba(0,108,255,.45); transform: translateY(-10px); }
.tag {
  position: absolute; right: 20px; top: 20px; background: var(--blue); color: white;
  border-radius: 999px; padding: 8px 12px; font-weight: 900; font-size: 12px;
}
.speed { font-size: 42px !important; font-weight: 900; color: var(--blue) !important; line-height: 1 !important; margin-bottom: 6px; }
.price { font-weight: 900; color: var(--navy) !important; }
.plan-card ul { padding-left: 18px; color: var(--muted); line-height: 1.8; }

.coverage-grid { grid-template-columns: repeat(2, 1fr); }
.coverage-card h3 { color: var(--blue); }
.coverage-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.coverage-list span {
  background: #EEF7FF; color: var(--blue); border: 1px solid var(--border);
  border-radius: 999px; padding: 10px 14px; font-weight: 800;
}

.about {
  background:
    radial-gradient(circle at 10% 20%, rgba(0,184,255,.18), transparent 25%),
    linear-gradient(135deg, #061A3B, #030712);
  color: white;
}
.about p { color: rgba(255,255,255,.76); }
.mission-grid { grid-template-columns: repeat(2, 1fr); margin-top: 30px; }
.mission-grid article { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }

.apply { background: var(--light); }
.apply-box {
  text-align: center; max-width: 860px; margin: auto; background: white;
  border: 1px solid var(--border); border-radius: 36px; padding: 52px; box-shadow: var(--shadow);
}
.message-list { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.message-list span {
  padding: 10px 14px; border-radius: 999px; background: #EEF7FF; color: var(--blue);
  font-weight: 900; border: 1px solid var(--border);
}

.support-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}
.support-grid { grid-template-columns: 1fr; }
.support-grid a { color: var(--blue); font-weight: 900; }
.support-image {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.support-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.footer {
  padding: 48px 6%; text-align: center; background: #030712; color: white;
}
.footer img { width: 110px; margin: 0 auto 14px; }
.footer-contact { color: rgba(255,255,255,.7); font-size: 14px; }
.footer-links { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin: 22px 0; color: rgba(255,255,255,.78); font-weight: 800; }
.footer small { color: rgba(255,255,255,.52); }

.floating-message {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  padding: 14px 18px; border-radius: 999px; background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white; font-weight: 900; box-shadow: 0 18px 45px rgba(0,108,255,.35);
}

@media (min-width: 901px) and (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-card img {
    height: 520px;
  }

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

  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-image img {
    height: 420px;
  }
}

@media (max-width: 900px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-backdrop.show {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 360px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 20px;
    background: white;
    border-left: 1px solid var(--border);
    box-shadow: -22px 0 80px rgba(15, 23, 42, .22);
    transform: translateX(105%);
    transition: transform .25s ease;
    z-index: 55;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 15px 14px;
    border-radius: 14px;
    background: #F7FBFF;
  }

  .site-nav a:hover {
    background: #EEF7FF;
  }

  .mobile-nav-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .menu-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: #EEF7FF;
    color: var(--blue);
    font-size: 28px;
    line-height: 1;
  }

  .nav-cta {
    display: block;
    margin-top: 10px;
    background: linear-gradient(135deg, var(--blue), var(--blue-2)) !important;
  }

  .menu-toggle {
    display: block;
  }

  .hero, .coverage-grid, .support-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
    min-height: auto;
    gap: 34px;
  }

  .hero-card img {
    height: 430px;
  }

  .feature-grid, .plans-grid, .support-grid, .mission-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.popular {
    transform: none;
  }

  .section {
    padding: 70px 6%;
  }

  .apply-box {
    padding: 32px 22px;
  }

  .floating-message {
    left: 18px;
    right: 18px;
    text-align: center;
    bottom: 16px;
  }

  .support-image img {
    height: 360px;
  }
}

@media (max-width: 520px) {
  .brand span {
    display: none;
  }

  .site-header {
    padding: 12px 5%;
  }

  .hero {
    padding: 34px 5% 58px;
  }

  .section {
    padding: 58px 5%;
  }

  .hero-logo {
    max-width: 100%;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy, .section p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    border-radius: 24px;
  }

  .hero-card img {
    height: 300px;
  }

  .floating-badge {
    left: 14px;
    bottom: 14px;
    padding: 11px 15px;
    font-size: 13px;
  }

  .feature-card, .plan-card, .support-grid article, .mission-grid article, .coverage-card {
    padding: 22px;
    border-radius: 22px;
  }

  .speed {
    font-size: 36px !important;
  }

  .coverage-list span {
    width: 100%;
    text-align: center;
  }

  .support-image {
    display: none;
  }

  .footer {
    padding-bottom: 86px;
  }
}


@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


/* V3.2 refinements */
.about-mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 4px;
}
.about-mini-grid span {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.86);
  font-weight: 900;
}

.page-hero {
  min-height: 58vh;
  display: flex;
  align-items: center;
  padding: 90px 6%;
  background:
    radial-gradient(circle at 75% 15%, rgba(0,184,255,.20), transparent 30%),
    linear-gradient(135deg, #FFFFFF 0%, #F3F9FF 100%);
}

.page-hero > div {
  max-width: 920px;
}

.about-page-section {
  background: white;
}

.mission-grid.light article {
  background: #F7FBFF;
  border-color: var(--border);
}

.values-section {
  background: var(--light);
}

@media (max-width: 900px) {
  .site-nav {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    min-height: 100dvh;
    border-left: none !important;
    border-radius: 0 !important;
    padding: 22px 6% 110px !important;
    background: #FFFFFF !important;
    overflow-y: auto;
  }

  .mobile-nav-head {
    padding-bottom: 14px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0,108,255,.14);
  }

  .site-nav a {
    font-size: 18px;
    padding: 18px 18px;
    background: #F3F8FF;
    color: var(--navy);
  }

  .nav-cta {
    margin-top: 16px;
    padding: 18px !important;
    color: #FFFFFF !important;
  }

  .message-list span {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .floating-message {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    max-width: calc(100vw - 28px);
    padding: 15px 12px;
    border-radius: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .footer {
    padding-bottom: 110px;
  }

  .page-hero {
    min-height: auto;
    padding: 58px 5%;
  }

  .page-hero h1 {
    font-size: 42px;
  }
}


/* V3.3 refinements */
.requirement-link {
  padding: 10px 14px;
  border-radius: 999px;
  background: #EEF7FF;
  color: var(--blue);
  font-weight: 900;
  border: 1px solid var(--border);
  text-align: center;
}

.requirement-link:hover {
  background: #DBEEFF;
}

@media (max-width: 900px) {
  .requirement-link {
    width: 100%;
    display: inline-flex;
    justify-content: center;
  }
}
