@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --navy-950: #020b15;
  --navy-900: #061321;
  --navy-850: #091a2a;
  --navy-800: #0c2235;
  --navy-700: #13364f;
  --cyan: #18d7f2;
  --cyan-soft: #91effb;
  --red: #d61f2d;
  --red-dark: #aa1520;
  --red-bright: #ff5b65;
  --white: #f4f8fc;
  --paper: #eef4f8;
  --ink: #0a1723;
  --slate: #52697d;
  --line: rgba(152, 181, 205, 0.24);
  --display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", sans-serif;
  --body: "Inter", Arial, Helvetica, sans-serif;
  --shadow: 0 22px 70px rgba(1, 12, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

svg {
  display: block;
}

.shell {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.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;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.button {
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button svg,
.solutions-grid a svg,
.support-links a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #087d9c;
  outline-offset: 3px;
}

.button-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 30px rgba(238, 38, 52, 0.25);
}

.button-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 14px 34px rgba(238, 38, 52, 0.34);
}

.button-outline {
  border-color: rgba(174, 219, 242, 0.65);
  background: rgba(4, 21, 37, 0.42);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button-outline:hover {
  border-color: var(--cyan);
  background: rgba(24, 215, 242, 0.09);
}

.button-dark {
  background: var(--navy-900);
  color: #fff;
}

.button-dark:hover {
  background: var(--navy-700);
}

.hero {
  min-height: 900px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-image {
  z-index: -3;
  background: url("/assets/hero-north-alabama.webp") 56% 54% / cover no-repeat;
  transform: scale(1.015);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 11, 21, 0.98) 0%, rgba(2, 11, 21, 0.9) 33%, rgba(2, 11, 21, 0.42) 67%, rgba(2, 11, 21, 0.12) 100%),
    linear-gradient(180deg, rgba(2, 11, 21, 0.35) 0%, rgba(2, 11, 21, 0.08) 45%, rgba(2, 11, 21, 0.88) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 20%, transparent 0 24px, rgba(24, 215, 242, 0.12) 25px 26px, transparent 27px),
    radial-gradient(circle at 70% 10%, transparent 0 38px, rgba(24, 215, 242, 0.09) 39px 40px, transparent 41px);
  background-size: 170px 130px, 230px 190px;
  mask-image: linear-gradient(to bottom, #000, transparent 63%);
}

.site-header {
  height: 104px;
  border-bottom: 1px solid rgba(172, 211, 232, 0.16);
  background: linear-gradient(180deg, rgba(2, 11, 21, 0.8), rgba(2, 11, 21, 0.25));
  position: relative;
  z-index: 10;
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

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

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

.brand-mark path {
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
}

.brand-mark circle {
  fill: var(--red);
}

.brand strong,
.brand em {
  display: block;
  font-family: var(--display);
  font-style: normal;
  text-transform: uppercase;
  line-height: 0.9;
}

.brand strong {
  font-size: 1.45rem;
  letter-spacing: 0.03em;
}

.brand em {
  margin-top: 5px;
  color: var(--cyan);
  font-size: 0.83rem;
  letter-spacing: 0.3em;
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 29px;
}

.primary-nav a {
  position: relative;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--cyan);
  transition: right 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  right: 0;
}

.nav-actions {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.36);
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-link {
  color: var(--cyan-soft);
  font-family: var(--display);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex: 0 0 auto;
}

.login-link {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: color 180ms ease, border 180ms ease, background 180ms ease;
}

.login-link:hover {
  color: var(--navy-950);
  border-color: #fff;
  background: #fff;
}

.menu-toggle {
  display: none;
}

.hero-content {
  padding-top: 90px;
  padding-bottom: 68px;
}

.hero-copy {
  max-width: 745px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 740px;
  font-family: var(--display);
  font-size: clamp(4rem, 6.1vw, 6.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.86;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-lede {
  max-width: 670px;
  margin: 26px 0 0;
  color: #c9d7e2;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.price-cue {
  margin: 20px 0 0;
  color: #d7e2ea;
  font-size: 0.92rem;
}

.price-cue span {
  margin-right: 10px;
  color: var(--red-bright);
}

.hero .eyebrow,
.coverage-section .eyebrow,
.support-section .eyebrow {
  color: var(--red-bright);
}

.coverage-checker {
  width: min(850px, 100%);
  margin-top: 36px;
  border: 1px solid rgba(92, 194, 236, 0.55);
  border-radius: 6px;
  padding: 24px 28px;
  background: rgba(3, 17, 29, 0.84);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.checker-title {
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.checker-title span {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.checker-title small {
  color: #8ea7ba;
  font-size: 0.84rem;
  line-height: 1.45;
}

.checker-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.address-field {
  min-width: 0;
  height: 58px;
  border: 1px solid rgba(198, 222, 235, 0.68);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  background: rgba(12, 34, 53, 0.62);
}

.address-field:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(24, 215, 242, 0.14);
}

.address-field svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: none;
  stroke: #cce8f4;
  stroke-width: 1.7;
}

.address-field input {
  min-width: 0;
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}

.address-field input::placeholder {
  color: #8198aa;
}

.checker-button {
  min-height: 58px;
  white-space: nowrap;
}

.checker-note,
.coverage-message {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(71, 144, 179, 0.42);
  color: #a9bdcc;
  font-size: 0.9rem;
  line-height: 1.6;
}

.coverage-message {
  color: var(--cyan-soft);
}

.proof-strip {
  border-top: 1px solid rgba(24, 215, 242, 0.25);
  border-bottom: 1px solid rgba(24, 215, 242, 0.2);
  background: var(--navy-900);
}

.proof-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.proof-grid > div {
  min-height: 56px;
  padding: 5px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-grid > div:first-child {
  padding-left: 0;
}

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

.proof-grid strong {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-grid span {
  color: #8fa8ba;
  font-size: 0.86rem;
  line-height: 1.45;
}

.regional-ribbon {
  border-bottom: 1px solid #cbd9e3;
  background: #e3edf3;
  color: #233e51;
}

.regional-list {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px 30px;
}

.regional-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.regional-list span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(238, 38, 52, 0.1);
}

.section {
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.narrow {
  max-width: 620px;
}

.section-heading h2,
.coverage-copy h2,
.about-copy h2,
.support-panel h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-heading > p:last-child,
.coverage-copy > p,
.about-copy > p,
.support-panel > p,
.contact-copy > p {
  color: var(--slate);
  line-height: 1.75;
}

.plans-section {
  background: var(--paper);
  color: var(--ink);
}

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

.plan-card {
  position: relative;
  border: 1px solid #cbd8e1;
  border-radius: 8px;
  padding: 34px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(4, 21, 37, 0.06);
}

.plan-card.featured {
  border: 2px solid var(--red);
  box-shadow: 0 24px 60px rgba(4, 21, 37, 0.13);
  transform: translateY(-14px);
}

.popular-tag {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 30px;
  padding: 8px 17px;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-name {
  margin: 0;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(2.35rem, 3.25vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.plan-speed-label {
  margin: 7px 0 25px;
  color: #3f596b;
  font-size: 0.86rem;
  font-weight: 700;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  min-height: 83px;
}

.plan-price sup {
  margin-top: 10px;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
}

.plan-price strong {
  font-family: var(--display);
  font-size: 4.75rem;
  line-height: 0.9;
}

.plan-price span {
  margin: 9px 0 0 5px;
  color: #5e7180;
  font-size: 0.86rem;
  line-height: 1.4;
}

.price-lock-badge {
  width: fit-content;
  margin: -7px 0 23px;
  border: 1px solid rgba(8, 125, 156, 0.34);
  border-radius: 999px;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #e9f7fa;
  color: #075d75;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.25;
  text-transform: uppercase;
}

.price-lock-badge::before {
  content: "\1F512";
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 0.9rem;
}

.plan-description {
  min-height: 70px;
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid #dde5eb;
  color: #566b7d;
  font-size: 0.9rem;
  line-height: 1.6;
}

.plan-card ul {
  min-height: 120px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  margin: 13px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334a5b;
  font-size: 0.92rem;
  line-height: 1.45;
}

.plan-card li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--red);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.full-button {
  width: 100%;
  padding-inline: 15px;
  font-size: 0.92rem;
}

.broadband-disclosure {
  margin-top: 22px;
  border: 1px solid #101820;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  color: #101820;
}

.broadband-disclosure summary {
  min-height: 56px;
  padding: 11px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 12px;
  list-style: none;
  background: var(--navy-900);
  color: #fff;
  cursor: pointer;
}

.broadband-disclosure summary::-webkit-details-marker {
  display: none;
}

.broadband-disclosure summary::after {
  content: "+";
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--cyan);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.broadband-disclosure[open] summary::after {
  content: "\2212";
}

.broadband-disclosure summary span,
.broadband-disclosure summary small {
  display: block;
}

.broadband-disclosure summary span {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.broadband-disclosure summary small {
  margin-top: 2px;
  color: #b8cbd8;
  font-size: 0.78rem;
}

.broadband-label {
  border-top: 5px solid #101820;
  padding: 13px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  line-height: 1.35;
}

.label-header {
  border-bottom: 8px solid #101820;
  padding-bottom: 9px;
}

.label-header strong,
.label-header span,
.label-header h4,
.label-header p {
  display: block;
}

.label-header strong {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.label-header span {
  margin-top: 8px;
  font-weight: 700;
}

.label-header h4 {
  margin: 2px 0 0;
  font-size: 1rem;
}

.label-header p {
  margin: 3px 0 0;
  font-size: 0.78rem;
}

.label-row {
  min-height: 38px;
  border-bottom: 1px solid #87919a;
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.label-row > span {
  flex: 1 1 48%;
}

.label-row > strong {
  flex: 1 1 52%;
  text-align: right;
}

.label-price {
  min-height: 52px;
  align-items: center;
  border-bottom: 4px solid #101820;
  font-size: 0.96rem;
}

.label-price strong {
  font-size: 1.3rem;
}

.label-lock {
  margin: 0;
  border-bottom: 4px solid #101820;
  padding: 9px 0;
  font-weight: 700;
}

.broadband-label h5 {
  margin: 0;
  border-bottom: 1px solid #101820;
  padding: 8px 0 5px;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.label-link {
  margin: 0;
  border-bottom: 4px solid #101820;
  padding: 8px 0;
}

.label-link a,
.label-links a,
.label-fcc a {
  color: #075d75;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.label-links {
  border-top: 4px solid #101820;
  padding: 7px 0;
}

.label-links a {
  padding: 4px 0;
  display: block;
}

.label-upi,
.label-fcc {
  margin: 0;
  border-top: 1px solid #87919a;
  padding: 8px 0;
  overflow-wrap: anywhere;
}

.label-upi {
  font-size: 0.78rem;
}

.plans-disclaimer {
  max-width: 800px;
  margin: 25px auto 0;
  color: #5a6f80;
  font-size: 0.85rem;
  line-height: 1.7;
  text-align: center;
}

.coverage-section {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.coverage-section::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -220px;
  top: -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 215, 242, 0.13), transparent 66%);
  pointer-events: none;
}

.coverage-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
  align-items: center;
}

.coverage-copy > p:not(.eyebrow):not(.coverage-fineprint) {
  max-width: 540px;
  margin-top: 25px;
  color: #9eb2c5;
}

.county-list {
  margin-top: 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.county-list li {
  border: 1px solid rgba(118, 174, 204, 0.32);
  border-radius: 30px;
  padding: 7px 11px;
  background: rgba(12, 34, 53, 0.58);
  color: #bdd2df;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.active-location {
  margin: 28px 0 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(12, 34, 53, 0.58);
}

.active-location small,
.active-location strong {
  display: block;
}

.active-location small {
  margin-bottom: 4px;
  color: #fff;
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.active-location strong {
  color: #91a9ba;
  font-size: 0.88rem;
  font-weight: 500;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex: 0 0 auto;
  box-shadow: 0 0 0 7px rgba(24, 215, 242, 0.1), 0 0 22px currentColor;
}

.status-dot.review,
.map-node.review span,
.map-legend i.review {
  background: var(--cyan);
  color: var(--cyan);
}

.status-dot.planned,
.map-node.planned span,
.map-legend i.planned {
  background: var(--red);
  color: var(--red);
}

.status-dot.future,
.map-node.future span,
.map-legend i.future {
  background: #7990a4;
  color: #7990a4;
}

.coverage-fineprint {
  margin: 19px 0 25px;
  color: #8fa8ba !important;
  font-size: 0.84rem;
  line-height: 1.7 !important;
}

.network-map {
  min-height: 530px;
  border: 1px solid rgba(64, 153, 192, 0.43);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 56% 48%, rgba(24, 215, 242, 0.15), transparent 24%),
    linear-gradient(135deg, rgba(8, 29, 46, 0.98), rgba(2, 12, 22, 0.95));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.network-map::before,
.network-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.network-map::before {
  opacity: 0.19;
  background-image: linear-gradient(rgba(148, 188, 211, 0.22) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 188, 211, 0.22) 1px, transparent 1px);
  background-size: 54px 54px;
}

.network-map::after {
  background: linear-gradient(180deg, transparent 60%, rgba(2, 11, 21, 0.9));
}

.map-label {
  position: absolute;
  top: 24px;
  left: 26px;
  z-index: 3;
}

.map-label span,
.map-label small {
  display: block;
}

.map-label span {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.map-label small {
  margin-top: 3px;
  color: #9bb1c1;
  font-size: 0.82rem;
}

.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.county-line {
  fill: none;
  stroke: rgba(108, 153, 179, 0.22);
  stroke-width: 1;
}

.signal-route {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-dasharray: 7 12;
  filter: drop-shadow(0 0 7px var(--cyan));
  animation: routeFlow 10s linear infinite;
}

.signal-route.secondary {
  stroke: var(--red);
  filter: drop-shadow(0 0 6px rgba(238, 38, 52, 0.7));
  animation-direction: reverse;
}

.map-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(24, 215, 242, 0.23);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: mapPulse 3s ease-out infinite;
}

.orbit-one {
  width: 235px;
  height: 235px;
  left: 49%;
  top: 50%;
}

.orbit-two {
  width: 390px;
  height: 390px;
  left: 49%;
  top: 50%;
  animation-delay: 1.3s;
}

.map-node {
  position: absolute;
  z-index: 4;
  border: 0;
  padding: 12px;
  background: transparent;
  color: #dce8f0;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.map-florence { left: 15%; top: 20%; }
.map-muscle-shoals { left: 20%; top: 33%; }
.map-russellville { left: 24%; top: 53%; }
.map-moulton { left: 35%; top: 50%; }
.map-trinity { left: 43%; top: 54%; }
.map-athens { left: 47%; top: 27%; }
.map-decatur { left: 51%; top: 48%; }
.map-huntsville { left: 68%; top: 30%; }
.map-cullman { left: 53%; top: 78%; }
.map-arab { left: 68%; top: 72%; }
.map-guntersville { left: 78%; top: 60%; }

.map-node span {
  width: 12px;
  height: 12px;
  margin: 0 auto 7px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.07), 0 0 18px currentColor;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.map-node b {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-shadow: 0 2px 4px #000;
  white-space: nowrap;
}

.map-node:hover span,
.map-node.active span {
  transform: scale(1.45);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.09), 0 0 26px currentColor;
}

.map-node.active b {
  color: #fff;
}

.map-legend {
  position: absolute;
  z-index: 5;
  left: 24px;
  right: 24px;
  bottom: 20px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  gap: 25px;
  color: #9fb3c2;
  font-size: 0.8rem;
  line-height: 1.4;
}

.map-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.map-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.business-section {
  background: #fff;
  color: var(--ink);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 85px;
  align-items: end;
}

.split-heading > p {
  margin: 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid #d7e1e8;
  background: #d7e1e8;
}

.solutions-grid article {
  min-height: 330px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  background: #f7fafc;
  transition: background 180ms ease, transform 180ms ease;
}

.solutions-grid article:hover {
  z-index: 1;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.solution-number {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.solutions-grid h3 {
  margin: 45px 0 18px;
  font-family: var(--display);
  font-size: 2rem;
  text-transform: uppercase;
}

.solutions-grid p {
  margin: 0 0 30px;
  color: #5d7181;
  font-size: 0.9rem;
  line-height: 1.7;
}

.solutions-grid a {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #153a55;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.solutions-grid a:hover {
  color: var(--red);
}

.solution-note {
  max-width: 980px;
  margin: 28px auto 0;
  color: #586f80;
  font-size: 0.86rem;
  line-height: 1.7;
  text-align: center;
}

.about-section {
  position: relative;
  overflow: hidden;
  background: #eaf1f5;
  color: var(--ink);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 95px;
  align-items: center;
}

.about-visual {
  min-height: 550px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgba(2, 11, 21, 0.9)),
    url("/assets/hero-north-alabama.webp") 80% 55% / cover no-repeat;
  box-shadow: var(--shadow);
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 215, 242, 0.08), transparent 50%);
}

.signal-card {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 30px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  background: rgba(3, 17, 29, 0.75);
  backdrop-filter: blur(12px);
}

.signal-card span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-card strong {
  margin-top: 5px;
  font-family: var(--display);
  font-size: 1.8rem;
  text-transform: uppercase;
}

.signal-card i {
  width: 65px;
  height: 3px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
}

.about-stat {
  position: absolute;
  z-index: 2;
  left: 35px;
  right: 35px;
  bottom: 35px;
}

.about-stat strong,
.about-stat span {
  display: block;
}

.about-stat strong {
  font-family: var(--display);
  font-size: 3.2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-stat span {
  margin-top: 10px;
  color: #aac0cf;
  line-height: 1.5;
}

.large-copy {
  margin-top: 27px;
  color: #213949 !important;
  font-size: 1.13rem;
  font-weight: 600;
}

.value-list {
  margin-top: 35px;
  border-top: 1px solid #cbd8e1;
}

.value-list div {
  padding: 20px 0;
  border-bottom: 1px solid #cbd8e1;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
}

.value-list strong {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.value-list span {
  color: #566d7f;
  font-size: 0.9rem;
  line-height: 1.65;
}

.process-section {
  background: #fff;
  color: var(--ink);
}

.process-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: steps;
  list-style: none;
}

.process-grid li {
  position: relative;
  padding: 0 30px;
  border-left: 1px solid #d5e0e7;
}

.process-grid li:first-child {
  padding-left: 0;
  border-left: 0;
}

.process-grid li:last-child {
  padding-right: 0;
}

.process-grid li > span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: var(--cyan);
  font-family: var(--display);
  font-weight: 700;
  box-shadow: 0 0 0 7px #edf3f7;
}

.process-grid h3 {
  margin: 28px 0 12px;
  font-family: var(--display);
  font-size: 1.45rem;
  text-transform: uppercase;
}

.process-grid p {
  margin: 0;
  color: #5c7282;
  font-size: 0.9rem;
  line-height: 1.7;
}

.support-section {
  background: var(--navy-900);
}

.support-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 90px;
}

.support-panel > p:not(.eyebrow) {
  max-width: 500px;
  color: #9eb2c5;
}

.support-links {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.support-links a {
  min-height: 105px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(12, 34, 53, 0.55);
  transition: border 180ms ease, background 180ms ease, transform 180ms ease;
}

.support-links a:hover {
  border-color: var(--cyan);
  background: rgba(24, 215, 242, 0.08);
  transform: translateY(-3px);
}

.support-links a span {
  margin-bottom: 6px;
  color: #95adbd;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.support-links a strong {
  padding-right: 25px;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.support-links a svg {
  position: absolute;
  right: 17px;
  bottom: 19px;
  color: var(--red);
}

.faq-panel > .eyebrow {
  margin-bottom: 7px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item > button {
  width: 100%;
  min-height: 74px;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.faq-item > button span {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.faq-item > button i {
  color: var(--cyan);
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-item > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item > div > p {
  margin: 0;
  overflow: hidden;
  color: #97adbd;
  font-size: 0.9rem;
  line-height: 1.75;
}

.faq-item.open > div {
  grid-template-rows: 1fr;
}

.faq-item.open > div > p {
  padding: 0 38px 22px 0;
}

.faq-item.open > button i {
  transform: rotate(45deg);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: #eaf1f5;
  color: var(--ink);
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  left: -350px;
  bottom: -520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 215, 242, 0.2), transparent 68%);
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 420px;
}

.contact-copy > a {
  margin-top: 12px;
  display: block;
  color: #435d6e;
  font-weight: 600;
}

.contact-copy .contact-phone {
  margin-top: 35px;
  color: var(--red);
  font-family: var(--display);
  font-size: 2.1rem;
  letter-spacing: 0.04em;
}

.contact-form {
  border-radius: 9px;
  padding: 38px;
  background: #fff;
  box-shadow: var(--shadow);
}

.selected-plan {
  margin: -5px 0 25px;
  border-left: 3px solid var(--red);
  padding: 10px 13px;
  background: #f4f7f9;
  color: #617585;
  font-size: 0.9rem;
}

.selected-plan strong {
  color: var(--ink);
}

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

.form-grid label {
  display: block;
}

.form-grid label.wide {
  grid-column: 1 / -1;
}

.form-grid label > span {
  margin-bottom: 8px;
  display: block;
  color: #526878;
  font-size: 0.85rem;
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #c8d6df;
  border-radius: 4px;
  padding: 13px 14px;
  outline: 0;
  background: #f8fafb;
  color: var(--ink);
  transition: border 180ms ease, box-shadow 180ms ease;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #647989;
  opacity: 1;
}

.form-grid input,
.form-grid select {
  height: 50px;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(24, 215, 242, 0.13);
}

.contact-form > .button {
  margin-top: 24px;
}

.form-note {
  margin: 14px 0 0;
  color: #5f7484;
  font-size: 0.82rem;
  line-height: 1.6;
}

.site-footer {
  padding: 80px 0 25px;
  background: #020a12;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 65px;
}

.footer-brand .brand {
  min-width: 0;
}

.footer-brand p {
  margin: 25px 0 0;
  color: #718a9d;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer-grid h3 {
  margin: 0 0 22px;
  color: #7891a4;
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) span {
  margin: 11px 0;
  display: block;
  color: #c0ced8;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 65px;
  border-top: 1px solid rgba(147, 181, 201, 0.17);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #718a9d;
  font-size: 0.8rem;
  line-height: 1.5;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: #fff;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.legal-header {
  min-height: 92px;
  border-bottom: 1px solid rgba(24, 215, 242, 0.18);
  display: flex;
  align-items: center;
  background: var(--navy-900);
  color: #fff;
}

.legal-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.legal-header .brand {
  min-width: 0;
}

.legal-header > .shell > a:last-child {
  color: var(--cyan-soft);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-content {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 85px 0 110px;
}

.legal-content .eyebrow {
  margin-bottom: 12px;
}

.legal-content h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.legal-updated {
  margin: 14px 0 55px;
  color: #5d7282;
  font-size: 0.85rem;
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  color: #526878;
  font-size: 0.98rem;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content a {
  color: #0a7795;
  text-decoration: underline;
}

@keyframes routeFlow {
  to { stroke-dashoffset: -190; }
}

@keyframes mapPulse {
  0% { opacity: 0.65; transform: translate(-50%, -50%) scale(0.72); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}

@media (max-width: 1120px) {
  .brand { min-width: 250px; }
  .primary-nav { gap: 19px; }
  .nav-actions { padding-left: 18px; }
  .phone-link { display: none; }
  .hero-copy h1 { max-width: 690px; }
}

@media (max-width: 960px) {
  .shell { width: min(100% - 36px, 760px); }
  .section { padding: 85px 0; }
  .site-header { height: 88px; }
  .nav-shell { justify-content: space-between; }
  .brand { min-width: 0; }
  .brand strong { font-size: 1.25rem; }
  .brand-mark { width: 42px; height: 42px; }
  .menu-toggle {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 11px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: rgba(3, 17, 29, 0.7);
    cursor: pointer;
  }
  .menu-toggle span { width: 100%; height: 2px; display: block; background: #fff; }
  .primary-nav {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(2, 11, 21, 0.98);
    transition: max-height 220ms ease;
  }
  .primary-nav.open { max-height: 390px; border-bottom: 1px solid var(--line); }
  .primary-nav a { padding: 17px 24px; border-top: 1px solid var(--line); }
  .primary-nav a::after { display: none; }
  .nav-actions { margin-left: auto; padding-left: 0; border-left: 0; }
  .login-link { display: none; }
  .hero { min-height: auto; }
  .hero-image { background-position: 62% 50%; }
  .hero-content { padding-top: 70px; }
  .hero-copy h1 { max-width: 650px; font-size: clamp(3.5rem, 9.5vw, 5.5rem); }
  .hero-overlay { background: linear-gradient(90deg, rgba(2, 11, 21, 0.98), rgba(2, 11, 21, 0.75) 70%, rgba(2, 11, 21, 0.45)), linear-gradient(180deg, rgba(2, 11, 21, 0.2), rgba(2, 11, 21, 0.9)); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); padding: 18px 0; }
  .proof-grid > div { min-height: 75px; }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .regional-list { padding: 18px 0; }
  .plan-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; gap: 30px; }
  .plan-card.featured { transform: none; order: -1; }
  .plan-description, .plan-card ul { min-height: 0; }
  .coverage-layout, .about-layout, .support-layout, .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .network-map { min-height: 520px; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solutions-grid article { min-height: 280px; }
  .about-visual { min-height: 470px; }
  .about-copy { order: -1; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .process-grid li:nth-child(3) { border-left: 0; padding-left: 0; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 50px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 540px); }
  .section { padding: 72px 0; }
  .brand strong { font-size: 1.05rem; }
  .brand em { font-size: 0.78rem; }
  .hero-content { padding-top: 55px; padding-bottom: 40px; }
  .hero-copy h1 { font-size: clamp(3.25rem, 16vw, 4.65rem); line-height: 0.88; }
  .hero-lede { font-size: 0.97rem; }
  .hero-buttons { display: grid; }
  .hero-buttons .button { width: 100%; }
  .coverage-checker { padding: 20px; }
  .checker-title { align-items: flex-start; flex-direction: column; gap: 5px; }
  .checker-title span { font-size: 1.2rem; }
  .checker-row { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { padding: 8px 14px; }
  .proof-grid > div:first-child { padding-left: 14px; }
  .proof-grid strong { font-size: 1.25rem; }
  .section-heading h2, .coverage-copy h2, .about-copy h2, .support-panel h2, .contact-copy h2 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .plan-card { padding: 29px 24px; }
  .plan-card h3 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .network-map { min-height: 440px; }
  .map-node { padding: 7px; }
  .map-node b { font-size: 0.75rem; }
  .map-legend { gap: 12px; flex-wrap: wrap; }
  .solutions-grid article { padding: 28px; }
  .about-visual { min-height: 420px; }
  .about-stat strong { font-size: 2.6rem; }
  .value-list div { grid-template-columns: 1fr; gap: 7px; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-grid li, .process-grid li:nth-child(3) { padding: 28px 0; border-left: 0; border-top: 1px solid #d5e0e7; }
  .process-grid li:first-child { border-top: 0; }
  .support-links { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.wide { grid-column: auto; }
  .contact-form { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
