:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-soft: #0a1f44;
  --panel: rgba(10, 31, 68, 0.54);
  --panel-strong: rgba(9, 20, 39, 0.82);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(29, 161, 255, 0.38);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.055);
  --primary: #0a1f44;
  --secondary: #132b5b;
  --accent: #1da1ff;
  --accent-2: #65d7ff;
  --green: #78f0c2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 20% 8%, rgba(29, 161, 255, 0.22), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(101, 215, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #050b15 0%, var(--bg) 42%, #050a12 100%);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, black, transparent 84%);
}

.site-bg {
  position: fixed;
  inset: auto -16% -28% 50%;
  z-index: -1;
  height: 460px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(29, 161, 255, 0.22), transparent 70%);
  filter: blur(14px);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(var(--max), calc(100vw - 32px));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(5, 13, 25, 0.88), rgba(7, 18, 34, 0.76)),
    rgba(7, 17, 31, 0.68);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(24px) saturate(150%);
  transform: translateX(-50%);
}

.site-header.logo-only {
  left: 38px;
  width: auto;
  min-height: 78px;
  justify-content: flex-start;
  padding: 10px 22px 10px 12px;
  transform: none;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-header .brand {
  position: relative;
  isolation: isolate;
}

.site-header .brand::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  z-index: -1;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  border: 1px solid rgba(101, 215, 255, 0.42);
  background: radial-gradient(circle, rgba(29, 161, 255, 0.24), transparent 68%);
  opacity: 0;
  transform: translateY(-50%) scale(0.7);
  animation: logo-ring 1.35s cubic-bezier(0.2, 0.9, 0.2, 1) 0.18s both;
}

.brand-logo {
  width: 64px;
  height: 64px;
  min-width: 64px;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(29, 161, 255, 0.42);
  background: #06172b;
  padding: 0;
  box-shadow: 0 0 34px rgba(29, 161, 255, 0.22);
}

.site-header .brand-logo {
  animation:
    logo-arrive 0.95s cubic-bezier(0.2, 0.9, 0.2, 1) both,
    logo-glow 3.2s ease-in-out 1s 2;
}

.site-header .brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 0 42px rgba(29, 161, 255, 0.38), 0 0 0 1px rgba(101, 215, 255, 0.18);
}

.footer-logo {
  width: 46px;
  height: 46px;
  min-width: 46px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(29, 161, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(29, 161, 255, 0.24), rgba(255, 255, 255, 0.08));
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  box-shadow: 0 0 34px rgba(29, 161, 255, 0.22);
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1;
}

.brand small,
.footer-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  margin-top: 5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a,
.nav-contact {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 820;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.nav-contact:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.94) 0%, rgba(7, 17, 31, 0.76) 44%, rgba(7, 17, 31, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.1), rgba(7, 17, 31, 0.9));
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.68fr);
  gap: 44px;
  align-items: center;
  padding: 76px 0 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.hero-subtitle {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

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

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 24px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #69d6ff);
  color: #031025;
  box-shadow: 0 18px 48px rgba(29, 161, 255, 0.34);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(14px);
}

.hero-console {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(8, 20, 38, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(150%);
  overflow: hidden;
}

.coverage-map-card {
  background:
    radial-gradient(circle at 48% 44%, rgba(29, 161, 255, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(8, 20, 38, 0.74), rgba(6, 13, 26, 0.82));
}

.console-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.console-head span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.console-head span:nth-child(2) {
  background: var(--accent-2);
}

.console-head span:nth-child(3) {
  background: var(--green);
}

.console-head strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tri-state-map {
  position: relative;
  min-height: 330px;
  margin: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 46% 46%, rgba(101, 215, 255, 0.13), transparent 34%),
    rgba(255, 255, 255, 0.035);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.map-orbit,
.map-route,
.state-node,
.map-hub {
  position: absolute;
}

.map-orbit {
  border: 1px solid rgba(101, 215, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 260px;
  height: 260px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-two {
  width: 390px;
  height: 210px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.map-route {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(29, 161, 255, 0.95), rgba(101, 215, 255, 0.55));
  box-shadow: 0 0 22px rgba(29, 161, 255, 0.34);
  transform-origin: left center;
}

.route-a {
  width: 162px;
  left: 36%;
  top: 47%;
  transform: rotate(-31deg);
}

.route-b {
  width: 156px;
  left: 40%;
  top: 53%;
  transform: rotate(28deg);
}

.route-c {
  width: 138px;
  left: 25%;
  top: 47%;
  transform: rotate(18deg);
}

.state-node {
  width: 112px;
  min-height: 86px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(29, 161, 255, 0.36);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(29, 161, 255, 0.18), rgba(255, 255, 255, 0.065)),
    rgba(8, 20, 38, 0.84);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26), 0 0 34px rgba(29, 161, 255, 0.18);
  text-align: center;
}

.state-node::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(120, 240, 194, 0.1), 0 0 22px rgba(120, 240, 194, 0.7);
}

.state-node strong {
  font-size: 1.55rem;
  line-height: 1;
}

.state-node span,
.map-hub span,
.map-caption span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.node-nj {
  left: 11%;
  bottom: 18%;
}

.node-pa {
  left: 9%;
  top: 16%;
}

.node-ny {
  right: 14%;
  top: 16%;
}

.node-ct {
  right: 10%;
  bottom: 18%;
}

.map-hub {
  left: 50%;
  top: 50%;
  width: 150px;
  min-height: 150px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(101, 215, 255, 0.42);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 20%, rgba(101, 215, 255, 0.28), transparent 48%),
    rgba(6, 15, 30, 0.92);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.35), 0 0 46px rgba(29, 161, 255, 0.24);
  text-align: center;
  transform: translate(-50%, -50%);
}

.map-hub img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 28px;
  border: 1px solid rgba(101, 215, 255, 0.34);
  background: #06172b;
  padding: 0;
  box-shadow: 0 0 38px rgba(29, 161, 255, 0.28);
  animation: map-logo-emerge 1.25s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.map-hub::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border-radius: 26px;
  background: radial-gradient(circle, rgba(101, 215, 255, 0.28), transparent 68%);
  opacity: 0;
  transform: scale(0.3);
  animation: map-logo-bloom 1.45s ease-out 0.32s both;
}

.map-caption {
  display: grid;
  gap: 6px;
  padding: 0 22px 24px;
}

.map-caption strong {
  font-size: 1rem;
}

.route-line {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  padding: 34px 22px;
}

.route-line span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(29, 161, 255, 0.4);
  background: rgba(29, 161, 255, 0.12);
  color: #fff;
  font-weight: 950;
}

.route-line i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(29, 161, 255, 0.15), rgba(29, 161, 255, 0.85));
}

.console-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.console-metrics div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.console-metrics div:last-child {
  border-right: 0;
}

.console-metrics strong {
  font-size: 1.65rem;
}

.console-metrics span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.section {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 108px 0;
}

.trust-strip {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100vw - 32px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: -54px auto 0;
}

.trust-strip article {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(8, 20, 38, 0.72);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px) saturate(150%);
}

.trust-strip strong {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.section-heading,
.section-copy {
  max-width: 760px;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.about-section,
.split-section,
.coverage-section,
.careers-section,
.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
}

.about-panel,
.map-card,
.careers-section,
.contact-strip,
.service-card,
.why-grid article,
.visual-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
}

.about-panel {
  padding: 34px;
}

.about-panel blockquote {
  margin: 0;
  color: #fff;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.about-panel span {
  display: block;
  margin-top: 22px;
  color: var(--accent-2);
  font-weight: 900;
}

.service-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.service-card,
.why-grid article {
  position: relative;
  min-height: 270px;
  padding: 24px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card::after,
.why-grid article::after {
  content: "";
  position: absolute;
  inset: auto -30% -30% 28%;
  height: 130px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(29, 161, 255, 0.24), transparent 70%);
}

.service-card:hover,
.why-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(29, 161, 255, 0.45);
  background: rgba(29, 161, 255, 0.11);
}

.icon,
.why-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(29, 161, 255, 0.34);
  background: rgba(29, 161, 255, 0.12);
  color: var(--accent-2);
  font-weight: 950;
}

.service-card h3,
.why-grid h3 {
  margin: 34px 0 10px;
  font-size: 1.25rem;
}

.service-card p,
.why-grid p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.visual-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: 0.82;
}

.visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.72));
}

.floating-stat {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(18px);
}

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

.floating-stat span {
  margin-top: 6px;
  color: var(--muted);
}

.map-card {
  position: relative;
  min-height: 470px;
  padding: 28px;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 24px;
  border-radius: 26px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}

.pulse {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 12px rgba(29, 161, 255, 0.12), 0 0 42px rgba(29, 161, 255, 0.9);
  animation: pulse 2.6s infinite ease-in-out;
}

.p1 {
  left: 58%;
  top: 42%;
}

.p2 {
  left: 65%;
  top: 27%;
  animation-delay: 0.4s;
}

.p3 {
  left: 72%;
  top: 22%;
  animation-delay: 0.8s;
}

.p4 {
  left: 38%;
  top: 58%;
  animation-delay: 1.2s;
}

.region-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.region-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 18px;
  background: rgba(7, 17, 31, 0.72);
  color: #fff;
  font-weight: 900;
}

.region-list span::after {
  content: "Active";
  color: var(--accent-2);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.careers-section,
.contact-strip {
  padding: 38px;
}

.careers-section h2,
.contact-strip h2 {
  margin-top: 0;
}

.site-footer {
  width: min(var(--max), calc(100vw - 32px));
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
}

.site-footer nav,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer nav a,
.socials a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-transform: uppercase;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
}

.contact-modal {
  width: min(620px, calc(100vw - 28px));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 0;
  background: rgba(7, 17, 31, 0.86);
  color: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(150%);
}

.contact-modal::backdrop {
  background: rgba(2, 8, 16, 0.78);
  backdrop-filter: blur(12px);
}

.contact-modal form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.modal-head h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.modal-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.4rem;
}

.contact-modal label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 900;
}

.contact-modal input,
.contact-modal textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  outline: 0;
  resize: vertical;
}

.contact-modal input:focus,
.contact-modal textarea:focus {
  border-color: rgba(29, 161, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(29, 161, 255, 0.12);
}

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

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.72);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px) saturate(150%);
}

.floating-cta button,
.floating-cta a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 0.82rem;
  font-weight: 950;
}

.floating-cta button {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.floating-cta a {
  background: linear-gradient(135deg, var(--accent), #69d6ff);
  color: #031025;
}

#contact-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes logo-arrive {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.86) rotate(-3deg);
    filter: blur(4px);
  }

  58% {
    opacity: 1;
    transform: translateY(-2px) scale(1.06) rotate(1deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes logo-ring {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.62);
  }

  42% {
    opacity: 0.78;
  }

  100% {
    opacity: 0;
    transform: translateY(-50%) scale(1.42);
  }
}

@keyframes logo-glow {
  0%,
  100% {
    box-shadow: 0 0 34px rgba(29, 161, 255, 0.22);
  }

  50% {
    box-shadow: 0 0 48px rgba(29, 161, 255, 0.46), 0 0 0 1px rgba(101, 215, 255, 0.18);
  }
}

@keyframes map-logo-emerge {
  0% {
    opacity: 0;
    transform: translateZ(-80px) scale(0.22);
    filter: blur(10px) brightness(0.75);
  }

  58% {
    opacity: 1;
    transform: translateZ(0) scale(1.12);
    filter: blur(0) brightness(1.08);
  }

  100% {
    opacity: 1;
    transform: translateZ(0) scale(1);
    filter: blur(0) brightness(1);
  }
}

@keyframes map-logo-bloom {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }

  42% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 26px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, calc(100vw - 32px));
    display: none;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(7, 17, 31, 0.92);
    backdrop-filter: blur(20px);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a,
  .nav-contact {
    justify-content: flex-start;
  }

  .hero-grid,
  .about-section,
  .split-section,
  .coverage-section,
  .careers-section,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -34px;
  }

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

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100vw - 20px);
  }

  .site-header.logo-only {
    left: 10px;
    width: auto;
    max-width: calc(100vw - 20px);
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 64px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .hero-console {
    display: block;
  }

  .tri-state-map {
    min-height: 300px;
    margin: 12px;
    border-radius: 24px;
  }

  .state-node {
    width: 88px;
    min-height: 72px;
    padding: 10px 8px;
    border-radius: 18px;
  }

  .state-node strong {
    font-size: 1.18rem;
  }

  .state-node span,
  .map-hub span,
  .map-caption span {
    font-size: 0.64rem;
  }

  .map-hub {
    width: 112px;
    min-height: 112px;
    border-radius: 26px;
    padding: 12px;
  }

  .map-hub img {
    width: 82px;
    height: 82px;
    border-radius: 22px;
  }

  .node-pa {
    left: 6%;
    top: 12%;
  }

  .node-nj {
    left: 6%;
    bottom: 16%;
  }

  .node-ny {
    right: 8%;
    top: 14%;
  }

  .node-ct {
    right: 6%;
    bottom: 16%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: -18px;
  }

  .section {
    padding: 72px 0;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    display: grid;
  }

  .modal-actions .btn {
    width: 100%;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: stretch;
  }

  .floating-cta button,
  .floating-cta a {
    flex: 1;
  }
}

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