:root {
  --navy: #0f1f3a;
  --blue: #2c3d76;
  --night: #0a1327;
  --yellow: #edf147;
  --red: #d91023;
  --mint: #6ef0c0;
  --card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --muted: #b6c0df;
  --text: #e9edfb;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 10% 10%, rgba(237, 241, 71, 0.12), transparent 25%),
    radial-gradient(circle at 90% 15%, rgba(217, 16, 35, 0.14), transparent 28%),
    linear-gradient(120deg, #0b1934, #081022 48%, #0a1327);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  backdrop-filter: blur(12px);
  background: rgba(10, 19, 39, 0.7);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 42px;
  height: 42px;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.brand__tagline {
  font-size: 12px;
  color: var(--muted);
}

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

.nav__link {
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav__link:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav__cta {
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--yellow);
  color: #111;
  font-weight: 700;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: transform 0.25s ease;
}

.nav__toggle--open span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.nav__toggle--open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle--open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 28px 90px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin: 32px 0 48px;
  align-items: stretch;
}

.hero__content {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero__content::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(237, 241, 71, 0.15), transparent 35%),
    radial-gradient(circle at 75% 15%, rgba(217, 16, 35, 0.15), transparent 40%);
  pointer-events: none;
}

.hero__content h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 8px 0 12px;
  line-height: 1.1;
}

.hero__content .lede {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #0a1327;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--yellow);
  font-weight: 600;
  color: #0f1f3a;
}

.pill--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.hero__panel {
  padding: 24px;
  border-radius: 24px;
  background: rgba(20, 32, 63, 0.85);
  border: 1px solid rgba(236, 241, 71, 0.2);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.panel__header h3 {
  margin: 4px 0 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge--live {
  background: rgba(217, 16, 35, 0.15);
  color: #ff9b9b;
}

.feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feed__card {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.feed__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.feed__time {
  color: #7fc0ff;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot--red {
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(217, 16, 35, 0.22);
}
.dot--yellow {
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(237, 241, 71, 0.26);
}
.dot--blue {
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(110, 240, 192, 0.18);
}

.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.chip {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(237, 241, 71, 0.12);
  color: var(--text);
  font-weight: 600;
  border: 1px solid rgba(237, 241, 71, 0.3);
  font-size: 13px;
}

.chip--ghost {
  background: transparent;
  border: 1px dashed var(--border);
}

.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 20px 0 40px;
}

.trust__stat {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.trust__number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--yellow);
}

.trust__label {
  color: var(--muted);
  font-size: 14px;
}

.section__header {
  max-width: 720px;
  margin-bottom: 18px;
}

.section__header h2 {
  margin: 6px 0;
  font-size: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: var(--yellow);
  font-size: 12px;
}

.features {
  padding: 32px 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 40px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.feature {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(150deg, rgba(44, 61, 118, 0.4), rgba(44, 61, 118, 0.18));
}

.feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-bottom: 10px;
  background: var(--card);
  border: 1px solid var(--border);
}

.feature__icon--yellow { background: rgba(237, 241, 71, 0.3); }
.feature__icon--red { background: rgba(217, 16, 35, 0.25); }
.feature__icon--blue { background: rgba(110, 240, 192, 0.2); }
.feature__icon--ghost { background: rgba(255, 255, 255, 0.08); }

.coverage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
  margin-bottom: 46px;
}

.coverage__map {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(237, 241, 71, 0.1), rgba(10, 19, 39, 0.9)),
    radial-gradient(circle at 40% 50%, rgba(110, 240, 192, 0.15), transparent 50%);
  min-height: 320px;
  overflow: hidden;
}

.radar, .pulse {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(237, 241, 71, 0.3);
  width: 180px;
  height: 180px;
  top: 40%;
  left: 35%;
  transform: translate(-50%, -50%);
}

.pulse {
  width: 260px;
  height: 260px;
  animation: pulse 2.6s infinite;
  border-color: rgba(217, 16, 35, 0.3);
}

.card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 16px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
}

.card--glass {
  background: rgba(8, 16, 34, 0.7);
}

.coverage__details h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.coverage__details ul {
  padding-left: 18px;
  color: var(--muted);
}

.coverage__details li {
  margin-bottom: 10px;
}

.inline-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.steps {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(12, 22, 44, 0.8);
  margin-bottom: 46px;
}

.steps__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.step {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.steps__video {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(237, 241, 71, 0.08), rgba(10, 19, 39, 0.85));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.steps__video-inner {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}

.steps__video video {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #000;
  object-fit: cover;
}

.steps__caption {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--yellow);
  color: #0f1f3a;
  font-weight: 800;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 36px 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(12, 22, 44, 0.92), rgba(8, 16, 34, 0.9));
}

.cta h2 {
  margin: 4px 0 0;
  font-size: 26px;
}

.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.footer {
  max-width: 1200px;
  margin: 32px auto 28px;
  padding: 16px 28px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

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

.btn--primary {
  background: var(--yellow);
  color: #0f1f3a;
  box-shadow: 0 16px 30px rgba(237, 241, 71, 0.2);
}

.btn--secondary {
  background: var(--red);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn--store {
  background: #05080f;
  color: var(--yellow);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 26px rgba(255, 255, 255, 0.08);
}

.btn--store:hover {
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.12);
}

.btn svg {
  width: 18px;
  height: 18px;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 1; }
  70% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
  100% { opacity: 0; }
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 24px;
    flex-direction: column;
    background: rgba(8, 16, 34, 0.96);
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: none;
  }

  .nav--open {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  main {
    padding: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .steps__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .topbar {
    padding: 14px 18px;
  }

  .brand__logo {
    width: 36px;
    height: 36px;
  }

  .hero__content,
  .hero__panel {
    padding: 22px;
  }
}
