/* HorizonNode Locations & Hardware */
.lh-page {
  --lh-bg: #05051f;
  --lh-panel: #11102c;
  --lh-panel-2: #171530;
  --lh-blue: #3ec1f3;
  --lh-blue-deep: #008ffe;
  --lh-text: #fff;
  --lh-muted: #9eacd0;
  --lh-border: rgba(128, 145, 205, .17);
  min-height: 100vh;
  overflow: hidden;
  background: var(--lh-bg);
  color: var(--lh-text);
}

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

.lh-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.lh-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(5, 5, 31, .22), #05051f 94%),
    radial-gradient(ellipse at 50% 45%, rgba(30, 81, 190, .22), transparent 54%),
    #05051f;
}

.lh-hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  opacity: .34;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.6) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(62,193,243,.45) 0 1px, transparent 1.5px);
  background-position: 0 0, 41px 67px;
  background-size: 173px 173px, 241px 241px;
}

.lh-world {
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 115px;
  width: min(970px, 88vw);
  aspect-ratio: 2.2 / 1;
  transform: translateX(-50%);
  border-radius: 50%;
  opacity: .58;
  background:
    radial-gradient(circle at 73% 38%, rgba(244,171,74,.65) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 57%, rgba(244,171,74,.45) 0 2px, transparent 3px),
    radial-gradient(circle at 39% 45%, rgba(244,171,74,.5) 0 1px, transparent 2px),
    radial-gradient(circle at center, rgba(22,58,151,.55), rgba(7,11,48,.72) 62%, transparent 69%);
  box-shadow: inset 0 20px 80px rgba(80,125,255,.14), 0 0 120px rgba(17,74,198,.16);
}

.lh-world::before,
.lh-world::after {
  position: absolute;
  inset: 12% 4%;
  content: "";
  border-radius: 50%;
  background:
    repeating-radial-gradient(ellipse at 52% 55%, transparent 0 22px, rgba(84,107,176,.06) 24px 25px),
    linear-gradient(18deg, transparent 42%, rgba(54,76,140,.24) 43% 46%, transparent 47%);
}

.lh-world::after {
  inset: 28% 14%;
  filter: blur(12px);
  background: rgba(44,76,168,.24);
}

.lh-orbit {
  position: absolute;
  inset: 18% -9%;
  border: 1px solid rgba(72,118,255,.18);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.lh-orbit.orbit-two {
  inset: 28% -4%;
  transform: rotate(7deg);
}

.lh-world-light {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffbc63;
  box-shadow: 0 0 12px #ff9b40;
}

.light-one { left: 30%; top: 47%; }
.light-two { left: 44%; top: 58%; }
.light-three { right: 31%; top: 42%; }
.light-four { right: 24%; top: 61%; }

.lh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  color: #8392ba;
  font-size: 14px;
}

.lh-breadcrumb a {
  color: #a8b5d6;
  text-decoration: none;
}

.lh-breadcrumb strong { color: #fff; }
.lh-breadcrumb span { color: #536080; }

.lh-hero-content {
  max-width: 780px;
  margin: 68px auto 0;
  text-align: center;
}

.lh-eyebrow,
.lh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lh-blue-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.lh-eyebrow {
  padding: 7px 13px;
  border: 1px solid rgba(0,143,254,.16);
  border-radius: 999px;
  background: rgba(0,143,254,.12);
}

.lh-hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.lh-hero-content > p {
  max-width: 720px;
  margin: 0 auto;
  color: #a6b2d2;
  font-size: 18px;
  line-height: 1.65;
}

.lh-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.lh-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.lh-button.primary {
  background: linear-gradient(135deg, #3ec1f3, #008ffe);
  color: #04101d;
  box-shadow: 0 12px 34px rgba(0,143,254,.16);
}

.lh-button.secondary {
  background: #fff;
  color: #060716;
}

.lh-button.outline {
  border-color: rgba(255,255,255,.12);
  background: transparent;
}

.lh-infrastructure {
  padding: 85px 0 105px;
}

.lh-section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.lh-section-heading h2,
.lh-faq-heading h2 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
}

.lh-section-heading p {
  margin: 0;
  color: var(--lh-muted);
  font-size: 17px;
  line-height: 1.65;
}

.lh-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 16px;
  margin-bottom: 52px;
  border: 1px solid var(--lh-border);
  border-radius: 18px;
  background: rgba(10,9,35,.82);
}

.lh-region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.lh-region-tabs button {
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #9eacd0;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.lh-region-tabs button:hover,
.lh-region-tabs button.active {
  background: var(--lh-blue-deep);
  color: #fff;
}

.lh-hardware-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #90a2cc;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lh-hardware-filter select {
  min-width: 160px;
  padding: 10px 36px 10px 12px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 9px;
  outline: none;
  background: #16142f;
  color: #fff;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0;
}

.lh-region-group + .lh-region-group {
  margin-top: 54px;
}

.lh-region-label {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
  color: #8ca4d5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.lh-region-label::after {
  height: 1px;
  flex: 1;
  content: "";
  background: rgba(255,255,255,.06);
}

.lh-location {
  overflow: hidden;
  border: 1px solid rgba(125,143,203,.13);
  border-radius: 20px;
  background: rgba(7,7,31,.7);
}

.lh-location + .lh-location { margin-top: 28px; }

.lh-location-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 26px;
  background: #100e2b;
}

.lh-location-title {
  display: flex;
  align-items: center;
  gap: 13px;
}

.lh-flag {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 22px;
  flex: 0 0 34px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}

.lh-flag-us {
  background: repeating-linear-gradient(
    to bottom,
    #b22234 0,
    #b22234 1.7px,
    #fff 1.7px,
    #fff 3.4px
  );
}

.lh-flag-us::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 12px;
  content: "✦";
  display: grid;
  place-items: center;
  background: #3c3b6e;
  color: #fff;
  font-size: 7px;
  line-height: 1;
}

.lh-location-title h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.lh-location-title p,
.lh-hardware-card > p {
  margin: 0;
  color: #8fa0c8;
  font-size: 12px;
}

.lh-status,
.lh-type-badge,
.lh-service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(0,143,254,.15);
  color: var(--lh-blue-deep);
  font-size: 11px;
  font-weight: 800;
}

.lh-location-body {
  padding: 24px 26px 28px;
}

.lh-services {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}

.lh-services-label {
  margin-right: 7px;
  color: #8ca4d5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lh-service-tag {
  min-height: 26px;
  border-radius: 7px;
  background: #1c193a;
  color: #fff;
}

.lh-hardware-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lh-hardware-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(137,153,214,.17);
  border-radius: 17px;
  background: var(--lh-panel);
  box-shadow: inset 0 1px rgba(255,255,255,.03);
  transition: transform .2s ease, border-color .2s ease;
}

.lh-hardware-card:hover {
  transform: translateY(-3px);
  border-color: rgba(62,193,243,.34);
}

.lh-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
}

.lh-card-heading h4 {
  margin: 0;
  font-size: 16px;
}

.lh-specs {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.lh-spec {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  color: #b8c4e1;
  font-size: 12px;
  line-height: 1.45;
}

.lh-spec-icon {
  color: var(--lh-blue-deep);
  font-weight: 900;
}

.lh-spec strong {
  display: block;
  color: #fff;
  font-size: 12px;
}

.lh-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 11px;
  font-weight: 800;
}

.lh-owned { color: #00e676; }
.lh-protected { color: var(--lh-blue-deep); }

.lh-empty {
  padding: 60px 24px;
  border: 1px solid var(--lh-border);
  border-radius: 20px;
  text-align: center;
  background: #0d0c29;
}

.lh-empty-icon {
  color: var(--lh-blue);
  font-size: 46px;
}

.lh-empty h3 { margin: 12px 0 8px; }
.lh-empty p { margin: 0 auto 22px; max-width: 560px; color: var(--lh-muted); }

.lh-network-section {
  padding: 0 0 105px;
}

.lh-network-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lh-network-card {
  padding: 30px;
  border: 1px solid var(--lh-border);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(24,21,54,.9), rgba(11,10,37,.9));
}

.lh-network-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: rgba(0,143,254,.13);
  color: var(--lh-blue);
  font-size: 22px;
}

.lh-network-card h3 { margin: 19px 0 9px; }
.lh-network-card p { margin: 0; color: var(--lh-muted); font-size: 14px; line-height: 1.65; }

.lh-faq-section {
  padding: 105px 0 115px;
  border-top: 1px solid rgba(255,255,255,.05);
  background:
    linear-gradient(rgba(43,58,123,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,58,123,.08) 1px, transparent 1px),
    #060621;
  background-size: 48px 48px;
}

.lh-faq-heading { margin-bottom: 54px; }

.lh-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .9fr);
  gap: 70px;
  align-items: start;
}

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

.lh-faq-item {
  overflow: hidden;
  border: 1px solid rgba(154,169,221,.16);
  border-radius: 14px;
  background: #211e40;
}

.lh-faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 20px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
}

.lh-faq-symbol { font-size: 23px; font-weight: 400; }

.lh-faq-answer {
  display: none;
  padding: 0 20px 21px;
  color: #d4dcf0;
  font-size: 15px;
  line-height: 1.7;
}

.lh-faq-item.open .lh-faq-answer { display: block; }

.lh-help-card {
  padding: 43px;
  border: 1px solid rgba(126,145,204,.16);
  border-radius: 18px;
  text-align: center;
  background: rgba(12,11,43,.82);
}

.lh-help-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  color: #fff;
  font-size: 52px;
  line-height: 1;
}

.lh-help-card h3 { margin: 0 0 12px; }
.lh-help-card p { margin: 0 0 28px; color: var(--lh-muted); font-size: 14px; line-height: 1.65; }
.lh-help-card .lh-button { width: 100%; }
.lh-help-card .lh-button + .lh-button { margin-top: 11px; }

@media (max-width: 1000px) {
  .lh-filter-bar,
  .lh-faq-layout {
    grid-template-columns: 1fr;
  }

  .lh-filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .lh-hardware-filter { justify-content: space-between; }
  .lh-hardware-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lh-network-grid { grid-template-columns: 1fr; }
  .lh-faq-layout { display: grid; gap: 35px; }
}

@media (max-width: 700px) {
  .lh-shell { width: min(100% - 30px, 1240px); }
  .lh-hero { min-height: 650px; }
  .lh-hero-content { margin-top: 75px; }
  .lh-hero h1 { font-size: clamp(38px, 11vw, 54px); }
  .lh-hero-content > p { font-size: 16px; }
  .lh-hero-actions { flex-direction: column; }
  .lh-hero-actions .lh-button { width: 100%; }
  .lh-region-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .lh-region-tabs button { text-align: center; }
  .lh-hardware-filter { align-items: stretch; flex-direction: column; }
  .lh-hardware-filter select { width: 100%; }
  .lh-location-header { align-items: flex-start; }
  .lh-location-body { padding: 20px 16px 22px; }
  .lh-hardware-grid { grid-template-columns: 1fr; }
  .lh-services-label { width: 100%; }
  .lh-faq-section { padding-top: 80px; }
  .lh-help-card { padding: 32px 22px; }
}
