:root {
  --black: #030604;
  --ink: #0b120d;
  --panel: #111a14;
  --green: #9cf20f;
  --green-strong: #6bd600;
  --mint: #38d997;
  --white: #f8faf4;
  --paper: #eef3e8;
  --muted: #697465;
  --line: rgba(156, 242, 15, 0.24);
  --shadow: 0 22px 70px rgba(3, 6, 4, 0.22);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

img,
svg {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(3, 6, 4, 0.82);
  border-bottom: 1px solid rgba(156, 242, 15, 0.16);
  backdrop-filter: blur(18px);
}

.section-shell,
.nav-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  position: relative;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: radial-gradient(circle at 48% 60%, rgba(156, 242, 15, 0.32), rgba(8, 18, 10, 0.94) 60%);
  box-shadow: 0 0 22px rgba(156, 242, 15, 0.42);
}

.signal,
.signal-dot {
  position: absolute;
  display: block;
}

.signal-one,
.signal-two {
  border: 4px solid var(--green);
  border-color: var(--green) transparent transparent transparent;
  border-radius: 50%;
}

.signal-one {
  width: 30px;
  height: 30px;
  top: 12px;
}

.signal-two {
  width: 18px;
  height: 18px;
  top: 20px;
}

.signal-dot {
  width: 8px;
  height: 8px;
  bottom: 10px;
  border-radius: 50%;
  background: var(--green);
}

.brand-text {
  font-size: 1.28rem;
  line-height: 1;
}

.brand-text span {
  color: var(--green);
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: rgba(248, 250, 244, 0.82);
  font-weight: 700;
  font-size: 0.94rem;
}

.site-menu a,
.nav-action {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.site-menu a:hover {
  color: var(--green);
}

.nav-action {
  color: var(--black);
  background: var(--green);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(156, 242, 15, 0.26);
}

.nav-action:hover {
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(156, 242, 15, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green);
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(3, 6, 4, 0.94) 0%, rgba(3, 6, 4, 0.78) 46%, rgba(3, 6, 4, 0.5) 100%),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(180deg, rgba(3, 6, 4, 0), var(--paper));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(156, 242, 15, 0.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(156, 242, 15, 0.04) 0 1px, transparent 1px 92px);
}

.hero-network {
  position: absolute;
  right: min(8vw, 120px);
  bottom: 14vh;
  width: min(38vw, 460px);
  aspect-ratio: 1;
  border: 1px solid rgba(156, 242, 15, 0.38);
  border-radius: 50%;
  opacity: 0.78;
  box-shadow: inset 0 0 40px rgba(156, 242, 15, 0.12), 0 0 50px rgba(156, 242, 15, 0.16);
}

.hero-network span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px var(--green);
}

.hero-network span:nth-child(1) { top: 18%; left: 24%; }
.hero-network span:nth-child(2) { top: 34%; right: 18%; }
.hero-network span:nth-child(3) { bottom: 24%; left: 20%; }
.hero-network span:nth-child(4) { bottom: 18%; right: 28%; }
.hero-network span:nth-child(5) { top: 50%; left: 48%; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 110px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.eyebrow.dark {
  color: var(--green-strong);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(4.2rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 9px 0 rgba(0, 0, 0, 0.28), 0 0 34px rgba(156, 242, 15, 0.28);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 2.15rem;
  line-height: 1;
}

.hero-copy {
  width: min(640px, 100%);
  color: rgba(248, 250, 244, 0.88);
  font-size: 1.2rem;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: var(--black);
  background: var(--green);
  box-shadow: 0 18px 34px rgba(156, 242, 15, 0.24);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(248, 250, 244, 0.38);
  background: rgba(248, 250, 244, 0.08);
}

.button-secondary:hover,
.button-secondary.light:hover {
  background: var(--white);
  color: var(--black);
}

.button-secondary.light {
  color: var(--white);
  border-color: rgba(248, 250, 244, 0.44);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-highlights span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(156, 242, 15, 0.35);
  border-radius: var(--radius);
  padding: 8px 12px;
  color: rgba(248, 250, 244, 0.9);
  background: rgba(3, 6, 4, 0.46);
}

.trust-band {
  position: relative;
  z-index: 4;
  margin-top: -54px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid rgba(11, 18, 13, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-grid div {
  min-height: 116px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(11, 18, 13, 0.08);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  color: var(--green-strong);
  font-size: 1.75rem;
  line-height: 1;
}

.trust-grid span {
  color: var(--muted);
  font-weight: 700;
}

.plans,
.coverage,
.faq {
  padding: 104px 0;
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.coverage-copy p,
.experience-copy > p,
.business-layout p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.06rem;
}

a.icon-fixed {
    position: fixed;
    bottom: 70px;
    right: 1vw;
    z-index: 99999 !important;
}
a.icon-fixed img {
  height: 66px;
  width: 66px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(11, 18, 13, 0.1);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(11, 18, 13, 0.08);
}

.plan-card.featured {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(156, 242, 15, 0.14), rgba(156, 242, 15, 0.03)),
    var(--ink);
  border-color: rgba(156, 242, 15, 0.38);
  transform: translateY(-14px);
  box-shadow: 0 28px 62px rgba(3, 6, 4, 0.24);
}

.plan-topline span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: var(--radius);
  padding: 6px 10px;
  color: var(--black);
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-card h3 {
  margin: 24px 0 10px;
}

.plan-price {
  color: var(--green-strong);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.featured .plan-price {
  color: var(--green);
}

.plan-price span {
  color: var(--muted);
  font-size: 0.95rem;
}

.featured .plan-price span,
.featured li {
  color: rgba(248, 250, 244, 0.78);
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 8px 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 650;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-strong);
}

.button-plan {
  margin-top: auto;
  width: 100%;
  color: var(--black);
  background: var(--green);
}

.experience {
  padding: 104px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(56, 217, 151, 0.08), transparent 32%),
    var(--black);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 54px;
  align-items: center;
}

.experience-copy h2,
.business-layout h2,
.contact-layout h2 {
  color: var(--white);
}

.benefit-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.benefit-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  align-items: start;
  border: 1px solid rgba(156, 242, 15, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(248, 250, 244, 0.04);
}

.benefit-icon {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green), var(--mint));
  box-shadow: 0 0 24px rgba(156, 242, 15, 0.18);
}

.benefit-list strong {
  color: var(--white);
}

.benefit-list p {
  margin: 0;
  color: rgba(248, 250, 244, 0.68);
}

.connection-panel {
  min-height: 480px;
  border: 1px solid rgba(156, 242, 15, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(156, 242, 15, 0.1), rgba(56, 217, 151, 0.03)),
    #071009;
  box-shadow: inset 0 0 70px rgba(156, 242, 15, 0.08), 0 22px 64px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.device-scene {
  position: relative;
  min-height: 480px;
}

.home-outline {
  position: absolute;
  inset: 82px 76px auto auto;
  width: 210px;
  height: 152px;
  border: 8px solid var(--green);
  border-top: 0;
  filter: drop-shadow(0 0 18px rgba(156, 242, 15, 0.32));
}

.home-outline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: -72px;
  width: 150px;
  height: 150px;
  border-left: 8px solid var(--green);
  border-top: 8px solid var(--green);
  transform: rotate(45deg);
}

.home-outline span {
  position: absolute;
  left: 58px;
  top: 42px;
  width: 48px;
  height: 42px;
  border: 6px solid var(--green);
}

.router-visual {
  position: absolute;
  left: 42px;
  bottom: 72px;
  width: 280px;
  height: 94px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #202722, #080c09);
  border: 1px solid rgba(248, 250, 244, 0.14);
  box-shadow: 0 28px 44px rgba(0, 0, 0, 0.42), 0 0 28px rgba(156, 242, 15, 0.22);
}

.antenna {
  position: absolute;
  bottom: 84px;
  width: 10px;
  height: 118px;
  border-radius: 8px;
  background: linear-gradient(180deg, #6b746c, #161b17);
  transform-origin: bottom;
}

.antenna.left {
  left: 28px;
  transform: rotate(-7deg);
}

.antenna.right {
  right: 28px;
  transform: rotate(7deg);
}

.router-light {
  position: relative;
  top: 42px;
  left: 76px;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 18px;
  border-radius: 4px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(156, 242, 15, 0.75);
}

.wifi-rings {
  position: absolute;
  left: 98px;
  top: 90px;
  width: 220px;
  height: 180px;
}

.wifi-rings span {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border: 10px solid var(--green);
  border-color: var(--green) transparent transparent transparent;
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(156, 242, 15, 0.42));
}

.wifi-rings span:nth-child(1) { width: 70px; height: 70px; }
.wifi-rings span:nth-child(2) { width: 130px; height: 130px; bottom: -2px; }
.wifi-rings span:nth-child(3) { width: 190px; height: 190px; bottom: -4px; }

.coverage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.coverage-note {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  border-left: 5px solid var(--green-strong);
  padding: 12px 0 12px 18px;
}

.coverage-note span {
  color: var(--muted);
}

.coverage-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(11, 18, 13, 0.1);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.split {
  grid-template-columns: 0.75fr 1fr;
  gap: 14px;
}

label {
  color: var(--ink);
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(11, 18, 13, 0.14);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus {
  border-color: var(--green-strong);
  box-shadow: 0 0 0 4px rgba(156, 242, 15, 0.2);
}

.form-button {
  width: 100%;
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--green-strong);
  font-weight: 800;
}

.business-band,
.contact {
  color: var(--white);
  background: var(--ink);
}

.business-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 64px 0;
}

.business-layout h2,
.contact-layout h2 {
  margin-bottom: 12px;
}

.business-layout p,
.contact-layout p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(248, 250, 244, 0.72);
}

.section-heading.compact {
  margin-bottom: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(11, 18, 13, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(11, 18, 13, 0.06);
}

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact {
  background:
    linear-gradient(110deg, rgba(156, 242, 15, 0.12), rgba(56, 217, 151, 0.06) 38%, transparent),
    var(--black);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  background: #020302;
  color: rgba(248, 250, 244, 0.72);
  border-top: 1px solid rgba(156, 242, 15, 0.16);
}

.footer-layout {
  min-height: 126px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-layout p {
  margin: 0;
}

@media (max-width: 960px) {
  .nav-action {
    display: none;
  }

  .hero-network {
    right: -120px;
    width: 420px;
  }

  .trust-grid,
  .plan-grid,
  .experience-layout,
  .coverage,
  .business-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid div:nth-child(1),
  .trust-grid div:nth-child(2) {
    border-bottom: 1px solid rgba(11, 18, 13, 0.08);
  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(156, 242, 15, 0.2);
    border-radius: var(--radius);
    padding: 8px;
    background: rgba(3, 6, 4, 0.96);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: var(--radius);
    padding: 0 12px;
  }

  .site-menu a:hover {
    background: rgba(156, 242, 15, 0.1);
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding: 128px 0 92px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 5.4rem);
  }

  .hero-copy {
    font-size: 1.06rem;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .trust-band {
    margin-top: -36px;
  }

  .trust-grid,
  .form-row.split,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(11, 18, 13, 0.08);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .plans,
  .coverage,
  .faq,
  .experience {
    padding: 76px 0;
  }

  .plan-card,
  .coverage-form {
    padding: 22px;
  }

  .connection-panel,
  .device-scene {
    min-height: 390px;
  }

  .home-outline {
    right: 28px;
    width: 160px;
    height: 118px;
  }

  .router-visual {
    left: 24px;
    bottom: 58px;
    width: 245px;
  }

  .wifi-rings {
    left: 58px;
    top: 88px;
  }

  .business-layout,
  .contact-layout {
    padding: 54px 0;
  }
}

@media (max-width: 440px) {
  .section-shell,
  .nav-shell {
    width: min(100% - 24px, 1120px);
  }

  .hero-network {
    display: none;
  }

  .button {
    padding-inline: 14px;
  }

  .connection-panel,
  .device-scene {
    min-height: 330px;
  }

  .home-outline {
    top: 64px;
    right: 22px;
    width: 128px;
    height: 96px;
    border-width: 6px;
  }

  .home-outline::before {
    top: -56px;
    width: 116px;
    height: 116px;
    border-width: 6px;
  }

  .home-outline span {
    left: 36px;
    top: 30px;
    width: 34px;
    height: 32px;
    border-width: 5px;
  }

  .router-visual {
    left: 18px;
    width: calc(100% - 36px);
  }

  .router-light {
    left: 60px;
    margin-right: 12px;
  }

  .wifi-rings {
    left: 40px;
    width: 180px;
  }
}
@media (max-width: 960px) {
  .connection-panel {
    display: none;
  }
  .brand {
    margin-top: 20px;
  }
}