:root {
  color-scheme: dark;
  --bg: #000000;
  --bg-soft: rgba(3, 7, 18, 0.82);
  --panel: rgba(7, 12, 24, 0.62);
  --panel-strong: rgba(7, 12, 24, 0.8);
  --line: rgba(208, 224, 240, 0.16);
  --line-strong: rgba(208, 224, 240, 0.28);
  --text: #d0e0f0;
  --dim: rgba(208, 224, 240, 0.74);
  --blue: #2060f0;
  --blue-soft: #7aa7ff;
  --orange: #f08050;
  --orange-soft: #ffb08c;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(32, 96, 240, 0.22), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(240, 128, 80, 0.14), transparent 28%),
    linear-gradient(180deg, #04070f 0%, #02040a 38%, #000000 100%);
  color: var(--text);
  font: 16px/1.6 "Segoe UI", "Inter", system-ui, sans-serif;
}

a {
  color: inherit;
}

.city-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.brand-lockup {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-lockup strong {
  color: var(--blue);
}

.brand-lockup span {
  color: var(--orange);
}

.brand-lockup small {
  color: var(--dim);
  font-size: 12px;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topnav a,
.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.topnav a,
.ghost-button {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  color: var(--dim);
}

.topnav a:hover,
.ghost-button:hover {
  color: var(--text);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.button {
  border: 1px solid rgba(32, 96, 240, 0.48);
  background: linear-gradient(135deg, rgba(32, 96, 240, 0.34), rgba(240, 128, 80, 0.2));
  color: var(--white);
  box-shadow: 0 16px 32px rgba(32, 96, 240, 0.18);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
  gap: 18px;
  margin-bottom: 18px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8, 13, 27, 0.72), rgba(5, 8, 18, 0.52));
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-side,
.section-panel,
.directory-panel {
  padding: 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--orange-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font: 12px/1.4 "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.hero h1,
.directory-panel h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 .blue-accent,
.directory-panel h1 .blue-accent {
  color: var(--blue-soft);
}

.hero h1 .orange-accent,
.directory-panel h1 .orange-accent {
  color: var(--orange-soft);
}

.lede {
  margin: 0 0 16px;
  max-width: 64ch;
  color: var(--dim);
  font-size: 18px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(208, 224, 240, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--dim);
  font: 13px/1.4 "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

.tytecse-backlink-block {
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(122, 167, 255, 0.24);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(32, 96, 240, 0.14), rgba(240, 128, 80, 0.08));
}

.tytecse-backlink-block p {
  margin: 8px 0 0;
}

.backlink-actions {
  margin-top: 14px;
}

.stat-grid,
.card-grid,
.contact-grid,
.directory-grid,
.related-grid {
  display: grid;
  gap: 14px;
}

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

.card-grid.three,
.directory-grid,
.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.service-card,
.step-card,
.contact-card,
.directory-card,
.related-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
}

.service-card h3,
.step-card h3,
.contact-card h3,
.directory-card h3,
.related-card h3,
.stat-card h3,
.section-panel h2 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
}

.mono-label {
  color: var(--orange-soft);
  font: 12px/1.4 "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-stack {
  display: grid;
  gap: 18px;
}

.list-clean,
.scope-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-clean li,
.scope-list li {
  padding-left: 18px;
  position: relative;
  color: var(--dim);
}

.list-clean li::before,
.scope-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  box-shadow: 0 0 10px rgba(32, 96, 240, 0.24);
}

.section-intro,
.muted {
  color: var(--dim);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.section-header p {
  margin: 0;
  max-width: 56ch;
  color: var(--dim);
}

.location-breadcrumbs {
  margin-bottom: 16px;
  color: var(--dim);
  font: 13px/1.4 "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.location-breadcrumbs a {
  color: var(--dim);
  text-decoration: none;
}

.location-breadcrumbs a:hover {
  color: var(--text);
}

.directory-panel {
  margin-bottom: 18px;
}

.continent-block {
  margin-bottom: 20px;
}

.continent-block h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.directory-card {
  text-decoration: none;
  color: inherit;
}

.directory-card:hover,
.related-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.datacenter-link,
.datacenter-inline-link {
  color: var(--blue-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(122, 167, 255, 0.28);
}

.datacenter-link:hover,
.datacenter-inline-link:hover {
  color: var(--text);
  border-bottom-color: rgba(208, 224, 240, 0.74);
}

.directory-card p,
.related-card p,
.contact-card p,
.service-card p,
.step-card p,
.stat-card p,
.section-panel p {
  margin: 0;
  color: var(--dim);
}

.facility-layer-grid {
  margin-bottom: 14px;
}

.facility-list {
  margin-top: 12px;
}

.facility-meta {
  margin-bottom: 8px !important;
}

.facility-meta strong {
  color: var(--text);
}

.footer {
  margin-top: 24px;
  padding: 24px 0 10px;
  color: var(--dim);
}

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

.footer-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.14);
}

.footer-card a {
  text-decoration: none;
  border-bottom: 1px solid rgba(208, 224, 240, 0.24);
}

.footer-card a:hover {
  border-bottom-color: rgba(208, 224, 240, 0.7);
}

.notice {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.22);
}

@media (max-width: 980px) {
  .hero,
  .card-grid.three,
  .directory-grid,
  .related-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.two,
  .contact-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-copy,
  .hero-side,
  .section-panel,
  .directory-panel {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .city-shell {
    width: min(100vw - 20px, 1180px);
    padding-top: 14px;
  }

  .hero h1,
  .directory-panel h1 {
    font-size: 34px;
  }

  .lede {
    font-size: 16px;
  }
}

body {
  background:
    radial-gradient(circle at 12% -8%, rgba(32, 96, 240, 0.2), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(240, 128, 80, 0.12), transparent 24%),
    linear-gradient(180deg, #04070f 0%, #02040a 36%, #000000 100%);
  color: var(--fg);
  font: 16px/1.55 var(--shell-font);
  letter-spacing: 0.01em;
}

.city-shell {
  width: min(1180px, calc(100vw - 32px));
  padding: 16px 0 40px;
  position: relative;
  z-index: 2;
}

.city-hdr {
  position: sticky;
  top: 12px;
  z-index: 10;
  margin-bottom: 18px;
}

.brand-lockup {
  margin-bottom: 10px;
}

.shell-ctxbar {
  margin-bottom: 10px;
}

.hero,
.section-stack {
  position: relative;
  z-index: 2;
}

.panel {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(8, 13, 27, 0.72), rgba(5, 8, 18, 0.52));
}

.hero-copy,
.hero-side,
.section-panel,
.directory-panel,
.node-console {
  padding: 24px;
}

.status {
  row-gap: 8px;
}

.pill,
.meta-pill,
.topnav a,
.shell-nav a,
.button,
.ghost-button {
  min-height: 36px;
  padding: 0 12px;
  font: 12px/1.4 var(--shell-font);
  letter-spacing: 0.04em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.hero h1,
.directory-panel h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.lede,
.section-header p,
.section-intro,
.muted,
.directory-card p,
.related-card p,
.contact-card p,
.service-card p,
.step-card p,
.stat-card p,
.console-mini-card p,
.footer,
.location-breadcrumbs {
  color: var(--dim);
}

.location-breadcrumbs,
.mono-label {
  font: 12px/1.4 var(--shell-font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-breadcrumbs a {
  border-bottom: 1px solid transparent;
}

.location-breadcrumbs a:hover {
  border-bottom-color: rgba(208, 224, 240, 0.6);
}

.meta-pill,
.button,
.ghost-button,
.topnav a,
.shell-nav a {
  font-weight: 600;
}

.tytecse-backlink-block,
.service-card,
.step-card,
.contact-card,
.directory-card,
.related-card,
.stat-card,
.footer-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
}

.directory-card,
.related-card {
  text-decoration: none;
  transition: border-color 150ms ease, transform 150ms ease;
}

.directory-card:hover,
.related-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.node-console {
  margin-bottom: 18px;
}

.node-console-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 14px;
  align-items: start;
}

.node-console-side,
.node-quick-grid {
  display: grid;
  gap: 14px;
}

.console-readout {
  margin: 0;
  min-height: 100%;
  white-space: pre-wrap;
  color: var(--fg);
}

.console-mini-card {
  min-height: 100%;
}

.console-mini-card .mono-label {
  margin-bottom: 8px;
}

.prompt-line {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.directory-console .console-readout,
.directory-console .prompt-line {
  min-height: auto;
}

.section-header {
  margin-bottom: 16px;
}

.section-panel h2,
.service-card h3,
.step-card h3,
.contact-card h3,
.directory-card h3,
.related-card h3,
.stat-card h3 {
  color: var(--fg);
  font-weight: 600;
}

.list-clean li,
.scope-list li {
  color: var(--dim);
}

.datacenter-link,
.datacenter-inline-link {
  color: var(--blue-soft);
}

.datacenter-link:hover,
.datacenter-inline-link:hover {
  color: var(--fg);
}

@media (max-width: 980px) {
  .node-console-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-header p {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .city-hdr {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero-copy,
  .hero-side,
  .section-panel,
  .directory-panel,
  .node-console {
    padding: 20px;
  }

  .prompt-line {
    align-items: flex-start;
    min-height: 0;
  }

  .console-readout,
  .prompt-line {
    font-size: 13px;
    line-height: 1.55;
  }

  .topnav,
  .shell-nav,
  .cta-row,
  .pill-row,
  .status {
    gap: 8px;
  }
}