:root {
  --bg: #060D12;
  --surface: #0B161E;
  --surface2: #102028;
  --accent: #00E5FF;
  --secondary: #00B8CC;
  --light: #5EFBFF;
  --text: #E8FBFF;
  --muted: #5E8A94;
  --border: #18303C;
  --footer: #030608;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

img {
  max-width: 100%;
}

a {
  color: var(--light);
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(6, 13, 18, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 72px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-toggle {
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
}

.hero,
.hero-page {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.70)),
    url("/images/hero-home.webp");
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 114px 16px 80px;
}

.hero-content {
  width: min(1080px, 100%);
}

h1,
h2,
h3,
.section-title,
.popup-title {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.015em;
}

.signal-badge,
.mx-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, var(--accent), #ffffff 30%);
  background: rgba(0, 229, 255, 0.14);
  color: var(--light);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-buttons {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

.btn-primary {
  background: var(--accent);
  color: #060D12;
  box-shadow: 0 10px 26px rgba(0, 229, 255, 0.24);
}

.btn-ghost {
  border-color: var(--accent);
  color: var(--light);
  background: rgba(0, 229, 255, 0.08);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 72px 0;
}

.bg-surface {
  background: var(--surface);
}

.bg-surface2 {
  background: var(--surface2);
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.section-subtitle {
  margin: 0 0 28px;
  color: var(--muted);
}

.speed-cards,
.pricing-grid,
.reviews-grid,
.blog-grid,
.bento-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.speed-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.speed-card,
.price-card,
.review-card,
.blog-card,
.bento-card,
.panel-card,
.contact-card,
.reseller-plan,
.faq-item,
.step-card,
.stat-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface2), #000000 10%);
}

.speed-card,
.step-card,
.review-card,
.blog-card,
.bento-card,
.panel-card,
.contact-card,
.reseller-plan,
.faq-item {
  padding: 20px;
}

.step-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card.cyan {
  border-color: color-mix(in srgb, var(--accent), #000000 60%);
  background: rgba(0, 229, 255, 0.06);
}

.step-num {
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  margin-bottom: 8px;
}

.app-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.app-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(0, 229, 255, 0.08);
}

.stats-bar {
  background: var(--accent);
  color: #060D12;
  padding: 18px 16px;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: center;
}

.stat-value {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}

.stat-label {
  font-size: 0.9rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split-image {
  min-height: 360px;
}

.split-content {
  padding: 34px;
  background: var(--surface);
}

.split-label {
  color: var(--accent);
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 700;
}

.check-list {
  padding-left: 18px;
  line-height: 1.8;
  color: var(--text);
}

.trust-strip {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  color: var(--muted);
}

.check {
  color: var(--accent);
}

.review-stars {
  color: var(--accent);
  margin-bottom: 8px;
}

.review-author {
  font-weight: 700;
}

.review-date {
  margin: 6px 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.review-text {
  margin: 0;
  line-height: 1.6;
}

.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.blog-card-body {
  padding: 18px;
}

.blog-card h3 {
  margin: 8px 0 10px;
}

.blog-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.blog-article,
.legal-content,
.error-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 120px 16px 64px;
}

.blog-article p,
.legal-content p {
  color: var(--text);
  line-height: 1.85;
}

.blog-cta {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  background: rgba(0, 229, 255, 0.06);
}

.final-cta {
  text-align: center;
  padding: 70px 16px;
}

.final-cta-cyan {
  background: var(--accent);
  color: #060D12;
}

.final-cta-cyan .btn-primary {
  background: #060D12;
  color: var(--accent);
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.popup-modal {
  width: min(96vw, 420px);
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface2), var(--surface));
  color: var(--text);
  padding: 22px;
  text-align: center;
}

.popup-deal {
  color: var(--light);
  font-weight: 700;
}

.popup-price {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  color: var(--accent);
}

.popup-close {
  margin-top: 10px;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
}

.site-footer {
  background: var(--footer);
  border-top: 1px solid var(--border);
  padding: 44px 16px 22px;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-links {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.copyright {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-cta-bar {
  display: none;
}

/* Optional decorative signal wave */
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(760px, 92vw);
  height: 70px;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(0, 229, 255, 0.4) 0%, rgba(0, 229, 255, 0) 70%);
}

@media (max-width: 980px) {
  .speed-cards,
  .step-cards,
  .stats-grid,
  .footer-grid,
  .split-section {
    grid-template-columns: 1fr 1fr;
  }

  .split-content {
    padding: 24px;
  }
}

@media (max-width: 760px) {
  html,
  body {
    background: #060D12;
  }

  .nav-toggle {
    display: inline-flex;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 8px;
    width: 42px;
    height: 38px;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .speed-cards,
  .step-cards,
  .stats-grid,
  .footer-grid,
  .pricing-grid,
  .reviews-grid,
  .blog-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-page {
    min-height: 88vh;
    padding-top: 100px;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1400;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    border-radius: 12px;
    background: #00E5FF;
    color: #060D12;
    font-weight: 800;
    border: 1px solid rgba(6, 13, 18, 0.22);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
  }

  body {
    padding-bottom: 76px;
  }
}
