:root {
  --black: #050705;
  --ink: #0c100c;
  --panel: #111710;
  --panel-2: #172114;
  --green: #81d620;
  --green-hot: #a8ff28;
  --green-dark: #3f7e12;
  --white: #f7f7ef;
  --muted: #c6ceb8;
  --line: rgba(168, 255, 40, 0.22);
  --shadow: 0 28px 80px rgba(0,0,0,.45);
  --radius: 26px;
}

* { 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(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(129,214,32,.18), transparent 32rem),
    radial-gradient(circle at 82% 38%, rgba(129,214,32,.12), transparent 28rem),
    linear-gradient(180deg, #020302 0%, #071006 44%, #030503 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.background-glow {
  position: fixed;
  width: 40rem;
  height: 40rem;
  right: -14rem;
  top: -12rem;
  border-radius: 999px;
  background: rgba(129,214,32,.16);
  filter: blur(40px);
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .75rem clamp(1rem, 4vw, 4rem);
  background: rgba(5,7,5,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand img { width: 170px; height: auto; }
.nav { display: flex; align-items: center; gap: 1.3rem; font-weight: 800; text-transform: uppercase; font-size: .78rem; letter-spacing: .06em; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--green-hot); }
.nav-cta { padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 999px; color: var(--green-hot) !important; background: rgba(129,214,32,.08); }

.section-shell { width: min(1160px, calc(100% - 2rem)); margin: 0 auto; }
.hero { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; min-height: 78vh; padding: 5.5rem 0 3rem; }
.eyebrow { color: var(--green-hot); font-weight: 900; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; margin: 0 0 .85rem; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 8vw, 6.8rem); line-height: .88; letter-spacing: -.07em; margin-bottom: 1.25rem; text-transform: uppercase; }
h1 span { color: var(--green-hot); text-shadow: 0 0 30px rgba(129,214,32,.28); }
h2 { font-size: clamp(2.1rem, 4vw, 4.2rem); line-height: .92; letter-spacing: -.05em; text-transform: uppercase; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: .45rem; text-transform: uppercase; }
.hero-text, .split-section p, .route-box p, .signup-copy p, .pricing-copy p { color: var(--muted); font-size: 1.08rem; line-height: 1.7; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0; }
.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 1rem 1.35rem; font-weight: 950; text-transform: uppercase; letter-spacing: .04em; border: 0; cursor: pointer; font-size: .86rem; }
.primary { color: #081006; background: linear-gradient(135deg, var(--green-hot), var(--green)); box-shadow: 0 16px 40px rgba(129,214,32,.25); }
.ghost { border: 1px solid var(--line); color: var(--white); background: rgba(255,255,255,.04); }
.wide { width: 100%; }

.trust-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.trust-row span { border: 1px solid var(--line); background: rgba(129,214,32,.07); color: var(--muted); padding: .65rem .8rem; border-radius: 999px; font-weight: 800; }

.hero-card { position: relative; padding: 1.2rem; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-card img { border-radius: 18px; background: #020302; }
.price-badge { position: absolute; right: 0; bottom: 2rem; transform: translateX(10%); background: var(--green-hot); color: #091007; padding: 1rem 1.2rem; border-radius: 18px; box-shadow: 0 18px 50px rgba(0,0,0,.45); }
.price-badge strong { display: block; font-size: 1.8rem; line-height: 1; }
.price-badge span { font-weight: 900; text-transform: uppercase; font-size: .72rem; }

.intro-strip { width: min(1160px, calc(100% - 2rem)); margin: 0 auto 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.intro-strip div, .steps article, .pricing-card, .route-box, .signup-form { border: 1px solid var(--line); background: rgba(17,23,16,.82); box-shadow: var(--shadow); border-radius: 22px; }
.intro-strip div { padding: 1.15rem; }
.intro-strip strong { display: block; color: var(--green-hot); text-transform: uppercase; margin-bottom: .25rem; }
.intro-strip span { color: var(--muted); }

.split-section, .pricing, .signup { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: start; padding: 4rem 0; }
.steps { display: grid; gap: 1rem; }
.steps article { padding: 1.25rem; }
.steps span { color: var(--green-hot); font-weight: 950; font-size: 2rem; }
.steps p, .pricing-card li { color: var(--muted); line-height: 1.55; }

.pricing-card { padding: 1.5rem; }
.plan-label { color: var(--green-hot); font-weight: 950; text-transform: uppercase; }
.plan-price { display: flex; align-items: end; gap: .65rem; margin-bottom: 1rem; }
.plan-price span { font-size: 5rem; font-weight: 1000; line-height: .85; letter-spacing: -.08em; }
.plan-price small { color: var(--muted); font-weight: 900; text-transform: uppercase; padding-bottom: .45rem; }
ul { padding-left: 1.2rem; margin-bottom: 1.5rem; }
li { margin: .55rem 0; }

.route-box { padding: 2rem; margin-block: 3rem; }
.route-box h2 { max-width: 850px; }
.route-box p { max-width: 850px; }

.signup { padding-bottom: 5rem; }
.signup-form { padding: 1.4rem; display: grid; gap: 1rem; }
label { display: grid; gap: .45rem; color: var(--green-hot); font-weight: 900; text-transform: uppercase; font-size: .78rem; letter-spacing: .05em; }
input, select { width: 100%; border: 1px solid rgba(255,255,255,.18); background: rgba(0,0,0,.5); color: var(--white); border-radius: 14px; padding: .95rem 1rem; font: inherit; outline: none; }
input:focus, select:focus { border-color: var(--green-hot); box-shadow: 0 0 0 4px rgba(129,214,32,.14); }
.form-grid { display: grid; grid-template-columns: 1fr 150px; gap: 1rem; }
.checkbox-line { display: flex; align-items: flex-start; gap: .75rem; color: var(--muted); text-transform: none; letter-spacing: normal; line-height: 1.45; }
.checkbox-line input { width: auto; margin-top: .2rem; }
.total-box { display: flex; justify-content: space-between; align-items: center; padding: 1rem; border: 1px solid var(--line); border-radius: 16px; background: rgba(129,214,32,.08); }
.total-box span { color: var(--muted); font-weight: 900; text-transform: uppercase; }
.total-box strong { color: var(--green-hot); font-size: 2rem; }
.form-message { min-height: 1.4rem; color: var(--muted); margin: 0; }
.fine-print { font-size: .92rem !important; color: #9ea991 !important; }

.site-footer { border-top: 1px solid var(--line); padding: 2rem clamp(1rem, 4vw, 4rem); display: flex; align-items: center; gap: 1rem; color: var(--muted); background: rgba(0,0,0,.35); }
.site-footer img { width: 110px; }

@media (max-width: 860px) {
  .site-header { position: static; align-items: flex-start; }
  .nav { display: none; }
  .brand img { width: 145px; }
  .hero, .split-section, .pricing, .signup { grid-template-columns: 1fr; }
  .hero { padding-top: 3rem; }
  .intro-strip { grid-template-columns: 1fr; }
  .price-badge { position: static; transform: none; margin-top: 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

.service-area {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.map-card {
  border: 2px solid rgba(133, 255, 31, 0.7);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.82);
  box-shadow: 0 0 34px rgba(133, 255, 31, 0.18);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: saturate(0.95) contrast(1.05);
}

.map-caption {
  padding: 14px 16px;
  color: #dceec8;
  font-size: 0.95rem;
  border-top: 1px solid rgba(133, 255, 31, 0.25);
}

.email-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(133,255,31,0.08), rgba(0,0,0,0.88));
}

.email-form {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(133, 255, 31, 0.3);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.72);
}

.email-form input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 12px;
  padding: 14px 14px;
  font: inherit;
}

.email-form input:focus {
  outline: 2px solid rgba(133,255,31,0.75);
  border-color: rgba(133,255,31,0.85);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 860px) {
  .service-area,
  .email-section {
    grid-template-columns: 1fr;
  }

  .map-card iframe {
    height: 340px;
  }
}

.activation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.activation-copy strong {
  color: var(--green-hot);
}

.activation-panel {
  border: 1px solid rgba(133, 255, 31, 0.35);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(133,255,31,0.1), rgba(0,0,0,0.68));
  box-shadow: 0 22px 70px rgba(0,0,0,.36);
  padding: 20px;
}

.activation-topline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(133,255,31,.22);
  padding-bottom: 14px;
}

.activation-topline span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .82rem;
}

.activation-topline strong {
  color: var(--green-hot);
  font-size: 1.6rem;
}

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

.neighborhood-card {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(0,0,0,.36);
}

.neighborhood-card.is-active {
  border-color: rgba(168,255,40,.85);
  box-shadow: 0 0 22px rgba(168,255,40,.13);
}

.neighborhood-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.neighborhood-head strong {
  color: var(--white);
  font-size: 1.05rem;
}

.neighborhood-head span {
  color: var(--green-hot);
  font-weight: 950;
}

.progress {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  margin: 12px 0 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.08);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-dark), var(--green-hot));
  box-shadow: 0 0 18px rgba(168,255,40,.34);
}

.neighborhood-card p,
.loading-line {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

@media (max-width: 860px) {
  .activation-section,
  .service-area,
  .email-section { grid-template-columns: 1fr; }
}

.form-message[data-mode="success"] { color: var(--green-hot); }
.form-message[data-mode="error"] { color: #ffb4a8; }
button:disabled { opacity: .7; cursor: wait; }

/* Launch video placeholder */
.video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: stretch;
}

.video-card {
  border: 1px solid rgba(129, 214, 32, 0.45);
  border-radius: 24px;
  min-height: 320px;
  background:
    radial-gradient(circle at 50% 35%, rgba(129, 214, 32, 0.22), transparent 35%),
    linear-gradient(135deg, rgba(129, 214, 32, 0.10), rgba(0, 0, 0, 0.75));
  box-shadow: 0 0 40px rgba(129, 214, 32, 0.16);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.video-placeholder {
  width: 100%;
  min-height: 240px;
  border: 1px dashed rgba(129, 214, 32, 0.6);
  border-radius: 20px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.32);
}

.video-placeholder span {
  color: #81d620;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.8rem;
}

.video-placeholder strong {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.video-placeholder p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 34rem;
}

@media (max-width: 850px) {
  .video-section {
    grid-template-columns: 1fr;
  }
}
