:root {
  --background: #02050b;
  --background-soft: #06101b;
  --panel: rgba(9, 23, 39, 0.82);
  --panel-solid: #0a1727;
  --border: rgba(137, 210, 255, 0.2);
  --border-strong: rgba(32, 199, 255, 0.48);
  --accent: #20c7ff;
  --accent-dark: #0b83b1;
  --text: #f5fbff;
  --muted: #a9bac8;
  --content-width: 1160px;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(32, 199, 255, 0.14), transparent 34rem),
    var(--background);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.nlx-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

#network-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 16px 22px;
  transition: background 180ms ease, border-color 180ms ease;
}

.nlx-ios-scrolled .site-header {
  background: rgba(2, 5, 11, 0.9);
  border-bottom: 1px solid rgba(137, 210, 255, 0.12);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--content-width));
  min-height: 64px;
  margin: 0 auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}

.desktop-nav,
.nav-links,
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a,
.nav-links a,
.drop-trigger {
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 150ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  display: grid;
  min-width: 230px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(5, 14, 25, 0.98);
  box-shadow: var(--shadow);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms;
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 10px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(32, 199, 255, 0.1);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.nlx-open .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header-phone,
.header-book,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text);
  background: rgba(32, 199, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.header-phone:hover,
.header-book:hover,
.btn:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: rgba(32, 199, 255, 0.15);
}

.btn-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #00131d;
}

.btn-primary:hover {
  background: #5ad8ff;
}

.btn-secondary {
  background: transparent;
}

.nlx-menu-state,
.nlx-menu-toggle,
.nlx-mobile-panel {
  display: none;
}

main {
  position: relative;
}

.section,
.home-page .hero,
.content-page .hero {
  width: min(calc(100% - 40px), var(--content-width));
  margin-inline: auto;
}

.section {
  padding: 74px 0;
}

.home-page .hero {
  display: grid;
  align-items: center;
  min-height: 680px;
  padding: 100px 0 90px;
}

.home-page .hero > div {
  max-width: 820px;
}

.hero-logo,
.logo-mark {
  width: 110px;
  margin-bottom: 24px;
}

.hero-logo img,
.logo-mark img {
  border-radius: 50%;
}

.kicker {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.26rem;
}

p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.hero-copy,
.lead {
  max-width: 760px;
  font-size: clamp(1.06rem, 2vw, 1.3rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-actions {
  margin-top: 30px;
}

.strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(8, 20, 36, 0.68);
}

.strip span,
.pill {
  padding: 7px 12px;
  border: 1px solid rgba(137, 210, 255, 0.15);
  border-radius: 999px;
  color: #d8efff;
  background: rgba(32, 199, 255, 0.06);
  font-size: 0.8rem;
  font-weight: 700;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-grid {
  margin-top: 22px;
}

.grid.three,
.clean-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.mini-card,
.booking-card,
.contact-panel,
.legal-card,
.bio-card,
.contact-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(10, 28, 48, 0.88), rgba(5, 13, 24, 0.78));
  box-shadow: var(--shadow);
}

.card,
.mini-card,
.contact-box {
  padding: 26px;
}

.about-grid {
  grid-template-columns: 1.45fr 0.85fr;
}

.about-main {
  min-height: 100%;
}

.mini-stack {
  display: grid;
  gap: 14px;
}

.mini-card {
  display: grid;
  gap: 8px;
}

.mini-card span,
.contact-card span,
.contact-box span {
  color: var(--muted);
  font-size: 0.84rem;
}

.service-card {
  min-height: 245px;
}

.clean-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  color: var(--accent);
  background: rgba(32, 199, 255, 0.08);
}

.clean-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.division-number {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.real-map-card {
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(5, 15, 27, 0.86);
  box-shadow: var(--shadow);
}

.map-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.map-pin-icon {
  width: 42px;
  color: var(--accent);
}

.map-pin-icon svg,
.actual-us-svg-map {
  fill: none;
  stroke: currentColor;
}

.actual-us-svg-map {
  width: 100%;
  color: rgba(133, 202, 241, 0.22);
}

.actual-grid {
  opacity: 0.12;
}

.us-state-fill {
  fill: rgba(12, 40, 65, 0.72);
  stroke: rgba(97, 171, 215, 0.28);
  stroke-width: 0.8;
}

.us-outline {
  fill: none;
  stroke: rgba(121, 207, 255, 0.52);
  stroke-width: 2;
}

.us-route {
  fill: none;
  stroke: rgba(32, 199, 255, 0.45);
  stroke-dasharray: 10 10;
  stroke-width: 2;
  animation: route-flow 12s linear infinite;
}

.city-nodes circle,
.actual-dfw-node circle {
  fill: var(--accent);
  stroke: rgba(32, 199, 255, 0.25);
}

.city-nodes text,
.actual-dfw-node text {
  fill: #dff5ff;
  stroke: none;
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.actual-dfw-node circle:nth-child(n + 2) {
  fill: none;
  opacity: 0.22;
}

@keyframes route-flow {
  to {
    stroke-dashoffset: -200;
  }
}

.booking-card,
.contact-panel,
.legal-card,
.bio-card {
  padding: clamp(28px, 6vw, 58px);
}

.contact-panel > img {
  width: 82px;
  margin-bottom: 20px;
  border-radius: 50%;
}

.contact-card,
.contact-box {
  display: grid;
  gap: 5px;
}

.contact-card a,
.contact-box a,
.legal-card a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.bottom-cta {
  display: none;
}

footer,
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--content-width));
  margin: 20px auto 0;
  padding: 32px 0 44px;
  gap: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links em {
  color: rgba(169, 186, 200, 0.38);
  font-style: normal;
}

.content-page .hero {
  padding: 96px 0 36px;
}

.content-page .hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.3rem);
}

.content-page .hero p {
  max-width: 780px;
  font-size: 1.08rem;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
}

.legal-card h2 {
  margin-top: 2.2rem;
  font-size: 1.45rem;
  letter-spacing: -0.015em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-note {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.founder-page .hero {
  text-align: center;
}

.founder-page .hero .logo-mark,
.founder-page .hero .lead {
  margin-inline: auto;
}

.founder-photo-ribbon-wrap {
  overflow: hidden;
  max-width: 920px;
  margin: 34px auto 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.founder-photo-ribbon-image {
  width: 100%;
  height: auto;
}

.bio-card {
  max-width: 900px;
  margin: 30px auto 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions,
  .nav-links {
    display: none;
  }

  .content-page .navbar {
    flex-wrap: wrap;
  }

  .content-page .nav-links {
    display: flex;
    width: 100%;
    padding-bottom: 8px;
    gap: 16px;
    overflow-x: auto;
  }

  .content-page .nav-links a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .nlx-menu-state {
    position: fixed;
    width: 1px;
    height: 1px;
    opacity: 0;
  }

  .nlx-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    color: var(--text);
    background: rgba(8, 22, 38, 0.88);
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
  }

  .nlx-mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 18px 22px 30px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    background: rgba(2, 5, 11, 0.98);
    backdrop-filter: blur(22px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .nlx-mobile-panel.open,
  .nlx-menu-state:checked ~ .nlx-mobile-panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nlx-mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
  }

  .mobile-links {
    display: grid;
    gap: 8px;
    overflow-y: auto;
  }

  .mobile-links > a,
  .mobile-details summary,
  .mobile-submenu a {
    display: block;
    padding: 13px 14px;
    border-radius: 12px;
    color: var(--text);
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
  }

  .mobile-links > a:hover,
  .mobile-details summary:hover,
  .mobile-submenu a:hover {
    background: rgba(32, 199, 255, 0.09);
  }

  .mobile-details summary {
    list-style: none;
  }

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

  .mobile-submenu {
    display: grid;
    margin-left: 14px;
    padding-left: 10px;
    border-left: 1px solid var(--border);
  }

  .grid.three,
  .clean-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .hero {
    min-height: 610px;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding-inline: 14px;
  }

  .section,
  .home-page .hero,
  .content-page .hero,
  footer,
  .site-footer {
    width: min(calc(100% - 28px), var(--content-width));
  }

  .section {
    padding: 50px 0;
  }

  .home-page .hero {
    min-height: auto;
    padding: 86px 0 56px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.7rem);
  }

  .grid,
  .grid.three,
  .clean-services,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .actual-us-svg-map {
    min-width: 720px;
    transform: translateX(-13%);
  }

  .real-map-card {
    overflow-x: hidden;
    padding-inline: 14px;
  }

  .bottom-cta {
    position: sticky;
    bottom: 14px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(calc(100% - 28px), 420px);
    margin: 10px auto;
    padding: 6px;
    gap: 6px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(4, 13, 24, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .bottom-cta a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
  }

  .bottom-cta a:last-child {
    background: var(--accent);
    color: #00131d;
  }

  footer,
  .site-footer {
    flex-direction: column;
    padding-bottom: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
