:root {
  --bg: #06111f;
  --bg-soft: #0c1d35;
  --panel: rgba(10, 24, 46, 0.76);
  --panel-strong: linear-gradient(180deg, rgba(28, 82, 177, 0.95), rgba(6, 27, 67, 0.94));
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #f4f8ff;
  --muted: #aebfdc;
  --line: rgba(181, 206, 247, 0.14);
  --accent: #2ea9ff;
  --accent-deep: #1f56c4;
  --accent-soft: #8fd7ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(53, 124, 245, 0.25), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(46, 169, 255, 0.16), transparent 20%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}

a {
  color: inherit;
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  border-radius: 999px;
  filter: blur(22px);
  pointer-events: none;
}

.site-bg::before {
  width: 320px;
  height: 320px;
  top: 120px;
  right: -60px;
  background: rgba(46, 169, 255, 0.18);
}

.site-bg::after {
  width: 280px;
  height: 280px;
  bottom: 120px;
  left: -70px;
  background: rgba(31, 86, 196, 0.2);
}

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

.section {
  padding: 36px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
  background: rgba(4, 14, 28, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark__logo {
  width: 108px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 0;
}

.brand-mark__text {
  display: grid;
  gap: 0;
}

.brand-mark__text strong,
.footer-shell strong {
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
}

.brand-mark__text small {
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a,
.nav-cta {
  text-decoration: none;
}

.nav-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta,
.button-primary {
  color: #04111e;
  background: linear-gradient(135deg, #8fd7ff, #2ea9ff);
  box-shadow: 0 18px 34px rgba(46, 169, 255, 0.22);
}

.button-secondary {
  border-color: rgba(143, 215, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-light {
  background: #ffffff;
  color: #103078;
}

.hero {
  padding-top: 54px;
}

.hero-grid,
.about-grid,
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.hero-copy {
  padding: 30px 0;
}

.eyebrow,
.section-label,
.panel-label,
.price-card__eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent-soft);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.45rem;
}

.hero-lead,
.section-heading p,
.section-card p,
.service-card p,
.price-card li,
.coverage-card p,
.hero-panel p,
.site-footer p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-lead {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hero-stats article,
.section-card,
.value-card,
.service-card,
.price-card,
.coverage-card,
.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-stats article {
  padding: 18px 18px 20px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-card {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 28px;
}

.signal-ring {
  position: absolute;
  border: 1px solid rgba(143, 215, 255, 0.18);
  border-radius: 50%;
}

.signal-ring--one {
  width: 420px;
  height: 420px;
}

.signal-ring--two {
  width: 320px;
  height: 320px;
}

.signal-ring--three {
  width: 220px;
  height: 220px;
}

.hero-panel,
.section-card,
.value-card,
.service-card,
.price-card,
.coverage-card {
  padding: 30px;
}

.hero-panel {
  width: min(100%, 460px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(12, 30, 60, 0.94), rgba(6, 16, 31, 0.96));
}

.feature-points,
.price-card ul,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.feature-points li,
.price-card li,
.contact-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.feature-points li + li,
.price-card li + li,
.contact-list li + li {
  margin-top: 12px;
}

.feature-points li::before,
.price-card li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8fd7ff, #2ea9ff);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 24px;
}

.service-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(8, 22, 42, 0.82);
}

.service-visual {
  margin: -30px -30px 22px;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.service-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: rgba(46, 169, 255, 0.14);
  color: var(--accent-soft);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.value-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.value-list article {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.value-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.value-list span {
  color: var(--muted);
  line-height: 1.7;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-card--featured {
  background: var(--panel-strong);
}

.price-tag {
  margin: 4px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
}

.price-tag span {
  margin-left: 8px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.price-card ul {
  margin-bottom: 28px;
}

.price-card .button {
  margin-top: auto;
}

.coverage-card {
  min-height: 100%;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 0;
}

.contact-list li::before {
  content: none;
}

.contact-list span {
  color: var(--muted);
}

.contact-list strong {
  text-align: right;
}

.site-footer {
  padding: 12px 0 34px;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .coverage-grid,
  .service-grid,
  .pricing-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .nav-shell {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-cta {
    width: 100%;
  }

  .brand-mark {
    width: 100%;
  }

  .brand-mark__logo {
    width: 92px;
    height: 48px;
  }

  .section {
    padding: 28px 0;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-panel,
  .section-card,
  .value-card,
  .service-card,
  .price-card,
  .coverage-card {
    padding: 24px;
    border-radius: 24px;
  }

  .service-visual {
    margin: -24px -24px 20px;
    height: 180px;
  }

  .signal-ring--one {
    width: 300px;
    height: 300px;
  }

  .signal-ring--two {
    width: 220px;
    height: 220px;
  }

  .signal-ring--three {
    width: 150px;
    height: 150px;
  }

  .contact-list li,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-list strong {
    text-align: left;
  }
}
