/* N.E.T. — New Era Telecom (Net Inc.) — site styles
   Light theme only, no web fonts, no images. */

:root {
  --navy: #0f2a44;
  --navy-dark: #0a1e31;
  --blue: #1b6fb5;
  --blue-dark: #14568d;
  --bg: #f5f7fa;
  --card: #ffffff;
  --text: #1a1d21;
  --muted: #5a6672;
  --border: #dde3ea;
  --green: #1f7a4d;
  --amber: #9a6410;
  --wrap: 1180px;
  --radius: 4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--blue-dark);
}

a:hover {
  color: var(--navy);
}

h1,
h2,
h3,
h4 {
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 0.5em;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.45rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.3rem;
}

li {
  margin-bottom: 0.35rem;
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

code {
  font-family: ui-monospace, "Cascadia Mono", Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
  background: #eef2f6;
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
  z-index: 50;
  background: #fff;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: var(--radius);
}

/* ---------- Utility bar ---------- */

.utility {
  background: var(--navy-dark);
  color: #c7d5e2;
  font-size: 0.82rem;
}

.utility .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  justify-content: flex-end;
  padding-top: 6px;
  padding-bottom: 6px;
}

.utility a {
  color: #c7d5e2;
  text-decoration: none;
}

.utility a:hover {
  color: #fff;
  text-decoration: underline;
}

.utility strong {
  color: #fff;
}

/* ---------- Header ---------- */

.site-header {
  background: var(--navy);
  color: #fff;
  border-bottom: 3px solid var(--blue);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.brand svg {
  display: block;
}

.brand .brand-sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9fb6ca;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #3d5b76;
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  padding: 7px 12px;
  border-radius: var(--radius);
  cursor: pointer;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: block;
  padding: 10px 10px;
  color: #dbe6f0;
  text-decoration: none;
  font-size: 0.94rem;
  border-radius: var(--radius);
}

.site-nav a:hover {
  background: #17385a;
  color: #fff;
}

.site-nav a[aria-current="page"] {
  color: #fff;
  background: #17385a;
  box-shadow: inset 0 -2px 0 var(--blue);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: #7fa8c9;
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-outline {
  background: #fff;
  border-color: var(--border);
  color: var(--navy);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(180deg, #12314f 0%, #0f2a44 100%);
  color: #e8f0f7;
  padding: 48px 0 44px;
}

.hero h1 {
  color: #fff;
  font-size: 2.3rem;
  max-width: 20ch;
}

.hero p.lead {
  font-size: 1.1rem;
  max-width: 62ch;
  color: #c7d9e8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-note {
  margin-top: 22px;
  font-size: 0.9rem;
  color: #9fb6ca;
}

/* ---------- Page header (inner pages) ---------- */

.page-head {
  background: var(--navy);
  color: #fff;
  padding: 30px 0 26px;
}

.page-head h1 {
  color: #fff;
  margin-bottom: 6px;
}

.page-head p {
  margin: 0;
  color: #c7d9e8;
  max-width: 70ch;
}

.breadcrumb {
  font-size: 0.85rem;
  color: #9fb6ca;
  margin-bottom: 10px;
}

.breadcrumb a {
  color: #c7d9e8;
}

/* ---------- Main / sections ---------- */

main {
  display: block;
}

.section {
  padding: 34px 0;
}

.section-tight {
  padding: 22px 0;
}

.section-alt {
  background: #eaeff5;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.prose {
  max-width: 76ch;
}

.lead {
  font-size: 1.05rem;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.88rem;
}

/* ---------- Cards / grids ---------- */

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.card h3 {
  margin-top: 0;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.card-icon {
  color: var(--blue);
  margin-bottom: 10px;
}

.card-icon svg {
  display: block;
}

/* ---------- Tables ---------- */

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 560px;
  font-size: 0.95rem;
}

.table-narrow table {
  min-width: 420px;
}

caption {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  padding: 12px 14px 0;
}

th,
td {
  text-align: left;
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

thead th {
  background: #eef2f7;
  color: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

tbody tr:last-child td {
  border-bottom: 0;
}

td.price,
th.price {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

td.plan-name {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.table-note {
  font-size: 0.87rem;
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 22px;
}

/* ---------- Badges ---------- */

.badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  border: 1px solid;
  white-space: nowrap;
}

.badge-fiber {
  color: #0d5f3d;
  border-color: #9fd3ba;
  background: #e6f5ee;
}

.badge-wireless {
  color: #14568d;
  border-color: #a8c8e2;
  background: #e7f0f8;
}

.badge-dsl {
  color: #7a5410;
  border-color: #e0c68d;
  background: #faf2e0;
}

.badge-sat {
  color: #4b3b7a;
  border-color: #bdb3dd;
  background: #eeebf8;
}

.badge-soon {
  color: #5a6672;
  border-color: #ccd4dd;
  background: #f0f3f7;
}

/* ---------- Status ---------- */

.status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #e9f4ee;
  border: 1px solid #b6ddc7;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 7px;
  flex: 0 0 auto;
}

.status p {
  margin: 0;
}

.notice {
  background: #fff8e8;
  border: 1px solid #e8d19a;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 20px;
}

.notice p:last-child {
  margin-bottom: 0;
}

/* ---------- FAQ / details ---------- */

details.faq {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
}

details.faq summary {
  cursor: pointer;
  padding: 13px 16px;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
}

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

details.faq summary::before {
  content: "+";
  display: inline-block;
  width: 1.2em;
  color: var(--blue);
  font-weight: 700;
}

details.faq[open] summary::before {
  content: "\2212";
}

details.faq .faq-body {
  padding: 0 16px 14px 32px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

details.faq .faq-body p:last-child,
details.faq .faq-body ul:last-child {
  margin-bottom: 0;
}

/* ---------- Steps ---------- */

ol.steps {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

ol.steps > li {
  counter-increment: step;
  position: relative;
  padding-left: 42px;
  margin-bottom: 18px;
}

ol.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol.steps > li strong {
  display: block;
  color: var(--navy);
}

/* ---------- Definition list ---------- */

.facts {
  margin: 0 0 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
}

.facts > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}

.facts > div:last-child {
  border-bottom: 0;
}

.facts dt {
  flex: 0 0 200px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.facts dd {
  flex: 1 1 240px;
  margin: 0;
}

/* ---------- Forms ---------- */

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
  font-size: 0.94rem;
}

.field .hint {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}

.req {
  color: #b3261e;
  font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  color: var(--text);
  background: #fff;
  border: 1px solid #bcc6d1;
  border-radius: var(--radius);
  padding: 10px 12px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.btn:focus,
a:focus,
summary:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b3261e;
  background: #fff7f6;
}

.field-error {
  display: none;
  color: #b3261e;
  font-size: 0.87rem;
  margin-top: 4px;
}

.field-error.is-shown {
  display: block;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.choice input {
  margin-top: 5px;
  flex: 0 0 auto;
}

fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 0 0 16px;
}

legend {
  font-weight: 600;
  color: var(--navy);
  padding: 0 6px;
  font-size: 0.94rem;
}

/* Honeypot — hidden from people, reachable by bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-slot {
  margin: 4px 0 16px;
  min-height: 4px;
}

.form-status {
  display: none;
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 18px;
}

.form-status.is-shown {
  display: block;
}

.form-status p:last-child {
  margin-bottom: 0;
}

.form-status.is-ok {
  background: #e9f4ee;
  border: 1px solid #b6ddc7;
  border-left: 4px solid var(--green);
}

.form-status.is-error {
  background: #fdecea;
  border: 1px solid #f0c0ba;
  border-left: 4px solid #b3261e;
}

.form-status h3 {
  margin-top: 0;
}

/* ---------- Coverage map ---------- */

.map-figure {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin: 0 0 20px;
}

.map-figure svg {
  display: block;
  width: 100%;
  height: auto;
}

.map-figure figcaption {
  font-size: 0.87rem;
  color: var(--muted);
  margin-top: 10px;
}

.legend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.9rem;
}

.legend-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}

.legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  flex: 0 0 auto;
}

/* Tile-grid map of the United States */
.tilemap text {
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
}

.tilemap .t-wireless {
  fill: #cfe0ee;
}

.tilemap .t-dsl {
  fill: #1b6fb5;
}

.tilemap .t-fiber {
  fill: #1f7a4d;
}

.tilemap .lbl-dark {
  fill: #0f2a44;
}

.tilemap .lbl-light {
  fill: #ffffff;
}

/* ---------- Callout strip ---------- */

.strip {
  background: var(--navy);
  color: #e8f0f7;
  padding: 28px 0;
}

.strip h2 {
  color: #fff;
  margin-top: 0;
}

.strip a:not(.btn) {
  color: #a9cdea;
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.strip-inner p {
  margin: 0;
  max-width: 60ch;
  color: #c7d9e8;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-dark);
  color: #b9c9d7;
  padding: 34px 0 0;
  font-size: 0.92rem;
  margin-top: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
}

.site-footer h4 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 6px;
}

.site-footer a {
  color: #b9c9d7;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer address {
  font-style: normal;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid #1e3b58;
  margin-top: 28px;
  padding: 16px 0 24px;
  font-size: 0.85rem;
  color: #8ba0b3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: space-between;
}

.footer-bottom p {
  margin: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 860px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 58px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    flex-basis: 100%;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding-bottom: 8px;
  }

  .site-nav a {
    padding: 11px 10px;
    border-bottom: 1px solid #1e3b58;
    border-radius: 0;
  }

  .hero {
    padding: 34px 0 32px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  h1 {
    font-size: 1.65rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .facts dt {
    flex: 0 0 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .utility .wrap {
    justify-content: flex-start;
  }
}

@media print {
  .utility,
  .site-nav,
  .nav-toggle,
  .strip,
  .hero-actions {
    display: none;
  }

  body {
    background: #fff;
  }
}
