:root {
  color-scheme: dark;
  --bg: #080a0f;
  --panel: rgba(14, 18, 28, 0.82);
  --panel-strong: rgba(16, 22, 34, 0.96);
  --line: rgba(113, 247, 255, 0.28);
  --line-hot: rgba(255, 58, 212, 0.42);
  --text: #ecfbff;
  --muted: #9db2bc;
  --cyan: #43f7ff;
  --pink: #ff3ad4;
  --amber: #ffd166;
  --green: #71f79f;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(115deg, rgba(67, 247, 255, 0.08), transparent 28%),
    linear-gradient(245deg, rgba(255, 58, 212, 0.08), transparent 34%),
    #080a0f;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(67, 247, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 247, 255, 0.035) 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 4px);
  background-size: 52px 52px, 52px 52px, 100% 4px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a {
  color: inherit;
}

code {
  padding: 0.12rem 0.35rem;
  border: 1px solid rgba(67, 247, 255, 0.22);
  border-radius: 4px;
  color: var(--green);
  background: rgba(67, 247, 255, 0.08);
  font-size: 0.92em;
}

#signal-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.42;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(67, 247, 255, 0.18);
  background: rgba(8, 10, 15, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid var(--cyan);
  box-shadow: 0 0 22px rgba(67, 247, 255, 0.22);
  color: var(--cyan);
  font-size: 0.82rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
}

nav a {
  padding: 0.45rem 0.7rem;
  border: 1px solid transparent;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
}

nav a:hover,
nav a[aria-current="page"] {
  border-color: var(--line);
  color: var(--cyan);
  background: rgba(67, 247, 255, 0.06);
}

main {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  min-height: calc(100vh - 82px);
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(4rem, 9vw, 8rem) 0 5rem;
}

.hero-copy h1,
.page-header h1,
.article h1 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 9ch;
  color: var(--text);
  font-size: clamp(4rem, 14vw, 9rem);
  text-shadow: 0 0 28px rgba(67, 247, 255, 0.22), 0 0 70px rgba(255, 58, 212, 0.16);
}

.lead {
  max-width: 720px;
  margin: 1.4rem 0 0;
  color: #c3d6dd;
  font-size: clamp(1.08rem, 2.2vw, 1.45rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(67, 247, 255, 0.06);
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  border-color: rgba(255, 58, 212, 0.58);
  background: linear-gradient(90deg, rgba(255, 58, 212, 0.3), rgba(67, 247, 255, 0.14));
  box-shadow: 0 0 34px rgba(255, 58, 212, 0.18);
}

.button.ghost {
  border-color: rgba(113, 247, 159, 0.36);
  color: var(--green);
  background: rgba(113, 247, 159, 0.06);
}

.node-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  padding-bottom: 3rem;
}

.tagline {
  max-width: 680px;
  margin: 1rem 0 0;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
}

.signal-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(67, 247, 255, 0.34);
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 58, 212, 0.18), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(113, 247, 159, 0.16), transparent 28%),
    rgba(6, 10, 16, 0.92);
  box-shadow: 0 0 60px rgba(67, 247, 255, 0.13), var(--shadow);
}

.signal-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(113, 247, 159, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 247, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  transform: perspective(380px) rotateX(58deg) translateY(96px) scale(1.25);
  transform-origin: bottom;
  opacity: 0.72;
}

.signal-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.04), rgba(255,255,255,0.04) 1px, transparent 1px, transparent 5px);
  pointer-events: none;
}

.terminal-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid rgba(67, 247, 255, 0.22);
  background: rgba(3, 6, 10, 0.72);
}

.terminal-bar span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 16px rgba(255, 58, 212, 0.6);
}

.terminal-bar span:nth-child(2) {
  background: var(--amber);
  box-shadow: 0 0 16px rgba(255, 209, 102, 0.45);
}

.terminal-bar span:nth-child(3) {
  background: var(--green);
  box-shadow: 0 0 16px rgba(113, 247, 159, 0.5);
}

.terminal-bar strong {
  margin-left: auto;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
}

.terminal-screen {
  position: relative;
  z-index: 1;
  min-height: 370px;
  padding: 1rem;
}

.terminal-screen p {
  margin: 0 0 0.55rem;
  color: #bdfccf;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.85rem;
  text-shadow: 0 0 14px rgba(113, 247, 159, 0.32);
}

.terminal-screen p span {
  color: var(--cyan);
}

.node-map {
  position: absolute;
  inset: 5.4rem 1.2rem 1.2rem;
  border: 1px solid rgba(113, 247, 159, 0.24);
  background:
    linear-gradient(130deg, transparent 22%, rgba(67, 247, 255, 0.2) 23%, transparent 24% 52%, rgba(255, 58, 212, 0.22) 53%, transparent 54%),
    radial-gradient(circle at 26% 36%, rgba(67, 247, 255, 0.22), transparent 5%),
    radial-gradient(circle at 70% 64%, rgba(113, 247, 159, 0.24), transparent 6%);
}

.node-map i {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid var(--green);
  background: rgba(113, 247, 159, 0.18);
  box-shadow: 0 0 18px rgba(113, 247, 159, 0.45);
}

.node-map i:nth-child(1) { left: 16%; top: 24%; }
.node-map i:nth-child(2) { left: 44%; top: 18%; border-color: var(--cyan); }
.node-map i:nth-child(3) { left: 72%; top: 36%; }
.node-map i:nth-child(4) { left: 30%; top: 68%; border-color: var(--pink); }
.node-map i:nth-child(5) { left: 62%; top: 76%; }

.code-rain {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.25rem;
  color: rgba(113, 247, 159, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  text-align: right;
}

.status-panel,
.post-card,
.service-board,
.copy-block {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.status-panel {
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

.panel-row,
.service-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(67, 247, 255, 0.14);
}

.panel-row:last-child,
.service-row:last-child {
  border-bottom: 0;
}

.panel-row span,
.service-row span,
.post-card time,
.article time {
  color: var(--muted);
  font-size: 0.84rem;
}

.panel-row strong,
.service-row strong {
  color: var(--cyan);
  text-align: right;
}

.scanline {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 2px;
  background: var(--pink);
  box-shadow: 0 0 24px var(--pink);
  animation: scan 4s linear infinite;
}

@keyframes scan {
  from { transform: translateY(0); }
  to { transform: translateY(260px); }
}

.band,
.split,
.post-list,
.service-board,
.copy-block {
  margin: 0 0 4rem;
}

.section-heading,
.page-header {
  padding: 4rem 0 2rem;
}

.section-heading h2,
.split h2,
.copy-block h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.post-grid,
.post-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.active-signals,
.compact-notes,
.nodes {
  margin-bottom: 4rem;
}

.compact-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.5rem 0 1rem;
}

.compact-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
}

.signal-grid,
.node-grid {
  display: grid;
  gap: 1rem;
}

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

.signal-card,
.node-card {
  border: 1px solid rgba(67, 247, 255, 0.22);
  background: linear-gradient(145deg, rgba(14, 18, 28, 0.88), rgba(7, 10, 15, 0.92));
  box-shadow: var(--shadow);
}

.signal-card {
  min-height: 150px;
  padding: 1rem;
}

.signal-card p {
  margin: 1rem 0 0.35rem;
  color: var(--text);
  font-weight: 900;
}

.signal-card strong {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot {
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(113, 247, 159, 0.6);
}

.status-dot.pending { background: var(--amber); box-shadow: 0 0 18px rgba(255, 209, 102, 0.48); }
.status-dot.building { background: var(--cyan); box-shadow: 0 0 18px rgba(67, 247, 255, 0.48); }
.status-dot.private { background: var(--pink); box-shadow: 0 0 18px rgba(255, 58, 212, 0.48); }

.compact-post-grid .post-card {
  min-height: 210px;
}

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

.node-card {
  display: block;
  min-height: 230px;
  padding: 1rem;
  text-decoration: none;
}

.node-card span {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
}

.node-card h3 {
  margin: 0.8rem 0 0.6rem;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.1;
}

.node-card p {
  margin: 0;
  color: #bdd0d7;
  font-size: 0.94rem;
}

.node-card:hover {
  border-color: rgba(113, 247, 159, 0.45);
  background: linear-gradient(145deg, rgba(17, 28, 24, 0.9), rgba(7, 10, 15, 0.94));
}

.post-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 1.2rem;
}

.post-card h3 {
  margin: 0.55rem 0 0;
  font-size: 1.45rem;
  line-height: 1.12;
}

.post-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.post-card h3 a:hover {
  color: var(--cyan);
}

.post-card p {
  color: #bfd0d7;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}

.tags span {
  border: 1px solid rgba(255, 209, 102, 0.34);
  padding: 0.18rem 0.45rem;
  color: var(--amber);
  font-size: 0.78rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: stretch;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(67, 247, 255, 0.18);
  border-bottom: 1px solid rgba(67, 247, 255, 0.18);
}

.split p,
.page-header p,
.copy-block p,
.article header p,
.article-body p,
.article-body li {
  color: #c3d6dd;
}

.terminal-link {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid var(--line-hot);
  background: rgba(255, 58, 212, 0.08);
  text-decoration: none;
}

.terminal-link strong {
  color: var(--pink);
  font-size: 2rem;
}

.page-header h1,
.article h1 {
  max-width: 760px;
  font-size: clamp(3rem, 9vw, 6rem);
}

.page-header p {
  max-width: 780px;
  font-size: 1.12rem;
}

.service-board,
.copy-block {
  padding: 1.4rem;
}

.about-copy {
  max-width: 880px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-color: rgba(255, 58, 212, 0.34);
  background: linear-gradient(135deg, rgba(14, 18, 28, 0.94), rgba(18, 12, 28, 0.9));
}

.about-copy p {
  max-width: 760px;
  margin: 0 0 1.1rem;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

.about-copy .manifesto {
  margin: 2rem 0;
  color: var(--amber);
  font-weight: 900;
  text-transform: uppercase;
}

.about-copy .jack-in {
  margin: 2rem 0 0;
  color: var(--cyan);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
}

.about-header .eyebrow {
  color: var(--pink);
}

.notice {
  margin: 1.4rem 0 0;
  color: var(--amber);
}

.article {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 0;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--cyan);
  text-decoration: none;
}

.article header {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(67, 247, 255, 0.18);
}

.article-body {
  padding-top: 2rem;
  font-size: 1.08rem;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin-top: 2.3rem;
  color: var(--text);
  line-height: 1.15;
}

.article-body a {
  color: var(--cyan);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(67, 247, 255, 0.16);
  color: var(--muted);
  font-size: 0.9rem;
}

.terminal-prompt {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  text-shadow: 0 0 14px rgba(113, 247, 159, 0.28);
}

@media (max-width: 1100px) {
  .signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .split,
  .post-grid,
  .post-list,
  .signal-grid,
  .node-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .signal-panel {
    min-height: 360px;
  }

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

  .hero-copy h1 {
    font-size: clamp(3.6rem, 22vw, 6.5rem);
  }
}

@media (max-width: 520px) {
  main,
  .footer {
    width: min(100% - 1rem, 1120px);
  }

  .brand {
    width: 100%;
  }

  nav a {
    padding-inline: 0.5rem;
  }

  .post-card {
    min-height: 220px;
  }
}

/* Homepage polish pass: public-node dashboard */
:root {
  --bg: #05080d;
  --panel: rgba(8, 14, 22, 0.82);
  --panel-strong: rgba(10, 18, 28, 0.95);
  --text: #f4f7f8;
  --muted: #a9c2cc;
  --cyan: #20f6ff;
  --green: #39ff88;
  --green-dim: #1f9f5a;
  --magenta: #ff2bd6;
  --yellow: #ffd447;
  --border: rgba(32, 246, 255, 0.28);
  --pink: var(--magenta);
  --amber: var(--yellow);
  --line: var(--border);
  --line-hot: rgba(255, 43, 214, 0.42);
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  background:
    radial-gradient(circle at 18% 12%, rgba(32, 246, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 82% 10%, rgba(255, 43, 214, 0.1), transparent 24rem),
    linear-gradient(135deg, #05080d 0%, #09111d 48%, #090713 100%);
}

.topbar,
.footer,
main {
  max-width: 100%;
}

.topbar {
  min-width: 0;
}

.topbar nav {
  min-width: 0;
  max-width: 100%;
}

.topbar nav a {
  white-space: nowrap;
}

.node-hero {
  min-height: min(70vh, 760px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3rem);
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.hero-copy,
.signal-panel,
.signal-grid,
.node-grid,
.post-grid {
  min-width: 0;
}

.hero-copy h1 {
  text-shadow: 0 0 26px rgba(32, 246, 255, 0.35), 0 0 78px rgba(255, 43, 214, 0.18);
}

.hero-actions .button {
  flex: 0 1 auto;
  border-color: rgba(32, 246, 255, 0.34);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hero-actions .button:hover {
  border-color: var(--green);
  box-shadow: 0 0 26px rgba(57, 255, 136, 0.18);
  transform: translateY(-1px);
}

.hero-actions .button.primary:hover {
  border-color: var(--magenta);
  box-shadow: 0 0 34px rgba(255, 43, 214, 0.24);
}

.terminal-card {
  min-height: 380px;
  border: 1px solid rgba(32, 246, 255, 0.38);
  background:
    linear-gradient(180deg, rgba(10, 18, 28, 0.96), rgba(5, 8, 13, 0.94)),
    radial-gradient(circle at 70% 25%, rgba(32, 246, 255, 0.16), transparent 32%);
}

.terminal-screen {
  min-height: 330px;
}

.terminal-lines {
  position: relative;
  z-index: 2;
  padding: 0.3rem 0 0;
}

.terminal-lines p {
  color: var(--green);
  letter-spacing: 0;
}

.node-map {
  inset: 6.2rem 1rem 1rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 0 36%, rgba(32, 246, 255, 0.28) 36.4% 37.2%, transparent 37.6% 58%, rgba(255, 43, 214, 0.22) 58.4% 59.2%, transparent 59.6%),
    linear-gradient(90deg, rgba(57, 255, 136, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(57, 255, 136, 0.06) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.code-rain {
  display: none !important;
}

.compact-heading {
  padding-top: clamp(2.2rem, 5vw, 3.5rem);
  padding-bottom: 1rem;
}

.signal-grid,
.node-grid,
.compact-post-grid {
  display: grid !important;
  width: 100%;
  gap: 1rem;
  list-style: none;
}

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

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

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

.signal-card,
.node-card,
.compact-post-grid .post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(32, 246, 255, 0.26);
  background:
    linear-gradient(145deg, rgba(10, 18, 28, 0.92), rgba(5, 8, 13, 0.9)),
    radial-gradient(circle at top right, rgba(32, 246, 255, 0.08), transparent 45%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.signal-card,
.node-card {
  min-height: 185px;
  padding: 1rem;
}

.signal-card:hover,
.node-card:hover,
.compact-post-grid .post-card:hover {
  border-color: rgba(57, 255, 136, 0.54);
  box-shadow: 0 0 28px rgba(57, 255, 136, 0.12), 0 18px 60px rgba(0, 0, 0, 0.36);
  transform: translateY(-2px);
}

.signal-card h3,
.node-card h3 {
  margin: 0.75rem 0 0.55rem;
  color: var(--text);
  font-size: 1.16rem;
  line-height: 1.15;
  text-decoration: none;
}

.signal-card p,
.node-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  text-decoration: none;
}

.signal-card strong,
.signal-card .status-label,
.node-card span {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card .status-label.pending { color: var(--yellow); }
.signal-card .status-label.building { color: var(--cyan); }
.signal-card .status-label.private { color: var(--magenta); }

.status-dot {
  flex: 0 0 auto;
  margin-bottom: 0.75rem;
}

.compact-post-grid .post-card {
  min-height: 205px;
}

.compact-post-grid .post-card h3 a,
.node-card,
.signal-card {
  text-decoration: none;
}

.compact-post-grid .post-card p {
  font-size: 0.94rem;
}

.footer {
  align-items: center;
}

.terminal-prompt {
  color: rgba(57, 255, 136, 0.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  text-align: right;
}

@media (max-width: 1120px) {
  .signal-grid,
  .node-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .topbar {
    padding-inline: 1rem;
  }

  .topbar nav {
    justify-content: flex-start;
  }

  .node-hero,
  .signal-grid,
  .node-grid,
  .compact-post-grid {
    grid-template-columns: 1fr;
  }

  .node-hero {
    min-height: auto;
  }

  .terminal-card {
    min-height: 330px;
  }

  .terminal-screen {
    min-height: 280px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .topbar nav a {
    font-size: 0.86rem;
    padding-inline: 0.45rem;
  }

  .terminal-prompt {
    width: 100%;
    text-align: left;
  }
}

/* Fixed generated homepage image */
.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

.home-fixed-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.08), rgba(5, 8, 13, 0.26) 58%, rgba(5, 8, 13, 0.62)),
    linear-gradient(180deg, rgba(5, 8, 13, 0.04) 0%, rgba(5, 8, 13, 0.18) 52%, rgba(5, 8, 13, 0.86) 100%),
    url('/assets/images/hero-node.png') center top / cover no-repeat;
}

.home-fixed-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.026) 1px, transparent 1px, transparent 5px);
  mix-blend-mode: screen;
  opacity: 0.42;
}

.hero-image-spacer {
  min-height: min(78vh, 780px);
  padding: 0;
}

.home-fixed-bg + .hero-image-spacer {
  margin-bottom: clamp(1rem, 4vw, 3rem);
}

.home-fixed-bg ~ .band {
  border: 1px solid rgba(32, 246, 255, 0.14);
  background: rgba(5, 8, 13, 0.72);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.home-fixed-bg ~ .band .compact-heading {
  padding-inline: clamp(1rem, 3vw, 1.5rem);
}

.home-fixed-bg ~ .band .signal-grid,
.home-fixed-bg ~ .band .node-grid,
.home-fixed-bg ~ .band .compact-post-grid {
  padding: 0 clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
}

@media (max-width: 860px) {
  .home-fixed-bg {
    background-position: 36% top;
  }

  .hero-image-spacer {
    min-height: 68vh;
  }
}

@media (max-width: 520px) {
  .hero-image-spacer {
    min-height: 58vh;
  }
}

/* Background image hardening: fixed viewport layer */
html::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.02), rgba(5, 8, 13, 0.18) 58%, rgba(5, 8, 13, 0.52)),
    linear-gradient(180deg, rgba(5, 8, 13, 0.02) 0%, rgba(5, 8, 13, 0.08) 48%, rgba(5, 8, 13, 0.78) 100%),
    url('/assets/images/back.png?v=20260616-green1') center top / cover no-repeat;
}

body,
.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

body {
  background: transparent !important;
}

body::before {
  opacity: 0.45;
}

.home-fixed-bg {
  display: none;
}

.hero-image-spacer {
  background: transparent !important;
}

/* Trimmed public project set */
.signal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.signal-card,
.node-card {
  min-height: 145px;
}

.signal-card p,
.node-card p {
  text-transform: none;
}


/* Terminal-green background tuning */
:root {
  --bg: #020704;
  --panel: rgba(3, 13, 8, 0.78);
  --panel-strong: rgba(4, 18, 10, 0.94);
  --text: #f0fff6;
  --muted: #9fd2b5;
  --cyan: #20f6ff;
  --green: #39ff88;
  --green-dim: #168a4a;
  --magenta: #ff2bd6;
  --yellow: #d7ff47;
  --border: rgba(57, 255, 136, 0.3);
  --line: var(--border);
}

html::before {
  background:
    linear-gradient(90deg, rgba(2, 7, 4, 0.02), rgba(2, 7, 4, 0.16) 54%, rgba(2, 7, 4, 0.58)),
    linear-gradient(180deg, rgba(2, 7, 4, 0.02) 0%, rgba(2, 7, 4, 0.08) 48%, rgba(2, 7, 4, 0.82) 100%),
    url('/assets/images/back.png?v=20260616-green1') center top / cover no-repeat;
}

.topbar {
  border-bottom-color: rgba(57, 255, 136, 0.22);
  background: rgba(2, 7, 4, 0.72);
}

.brand-mark,
nav a:hover,
nav a[aria-current="page"] {
  border-color: rgba(57, 255, 136, 0.45);
  color: var(--green);
}

.home-fixed-bg ~ .band,
.signal-card,
.node-card,
.compact-post-grid .post-card,
.copy-block,
.service-board {
  border-color: rgba(57, 255, 136, 0.24);
  background: rgba(2, 7, 4, 0.72);
}

.signal-card:hover,
.node-card:hover,
.compact-post-grid .post-card:hover {
  border-color: rgba(57, 255, 136, 0.62);
  box-shadow: 0 0 34px rgba(57, 255, 136, 0.14), 0 18px 60px rgba(0, 0, 0, 0.38);
}

/* Servers page */
.servers-header {
  padding-bottom: 1rem;
}

.server-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 1rem;
  margin: 0 0 4rem;
}

.server-card {
  border: 1px solid rgba(57, 255, 136, 0.28);
  background: rgba(2, 7, 4, 0.76);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
  padding: clamp(1rem, 3vw, 1.4rem);
}

.server-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.server-card-header h2 {
  max-width: 720px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1;
}

.server-status {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 212, 71, 0.4);
  padding: 0.25rem 0.5rem;
  color: var(--yellow);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.server-command {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0;
  border: 1px solid rgba(57, 255, 136, 0.22);
  background: rgba(0, 0, 0, 0.22);
  padding: 0.9rem;
}

.server-command span,
.metric span {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.server-command code {
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
}

.server-details {
  border-top: 1px solid rgba(57, 255, 136, 0.14);
  border-bottom: 1px solid rgba(57, 255, 136, 0.14);
  margin: 1rem 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.metric {
  min-width: 0;
  border: 1px solid rgba(32, 246, 255, 0.18);
  background: rgba(0, 0, 0, 0.18);
  padding: 0.75rem;
}

.metric strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--text);
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .server-card-header {
    flex-direction: column;
  }

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

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

/* Servers facelift */
.server-grid {
  grid-template-columns: 1fr;
}

.server-card-featured {
  position: relative;
  overflow: hidden;
  border-color: rgba(32, 246, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(1, 8, 6, 0.92), rgba(2, 14, 9, 0.86)),
    radial-gradient(circle at top right, rgba(32, 246, 255, 0.12), transparent 34%);
}

.server-card-featured::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(57, 255, 136, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 136, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.7;
}

.server-card-featured > * {
  position: relative;
  z-index: 1;
}

.server-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.server-status i {
  display: inline-block;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #2f8cff;
  box-shadow: 0 0 16px rgba(47, 140, 255, 0.75);
}

.server-status.active i {
  background: var(--green);
  box-shadow: 0 0 16px rgba(57, 255, 136, 0.75);
}

.server-status.offline {
  border-color: rgba(255, 60, 70, 0.48);
  color: #ff5b66;
}

.server-status.offline i {
  background: #ff3b46;
  box-shadow: 0 0 16px rgba(255, 59, 70, 0.8);
}

.server-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1rem;
  align-items: stretch;
}

.server-info-panel,
.map-panel,
.server-subsection {
  border: 1px solid rgba(57, 255, 136, 0.2);
  background: rgba(0, 0, 0, 0.24);
}

.server-info-panel {
  padding: 1rem;
}

.map-panel {
  position: relative;
  min-height: 230px;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 38%, rgba(32, 246, 255, 0.34), transparent 7%),
    radial-gradient(circle at 70% 62%, rgba(57, 255, 136, 0.26), transparent 8%),
    linear-gradient(135deg, transparent 0 38%, rgba(32, 246, 255, 0.32) 38.4% 39.2%, transparent 39.6% 58%, rgba(255, 43, 214, 0.22) 58.4% 59.2%, transparent 59.6%),
    linear-gradient(90deg, rgba(57, 255, 136, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(57, 255, 136, 0.06) 1px, transparent 1px);
  background-size: auto, auto, auto, 28px 28px, 28px 28px;
}

.map-grid span {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border: 1px solid var(--green);
  background: rgba(57, 255, 136, 0.2);
  box-shadow: 0 0 16px rgba(57, 255, 136, 0.5);
}

.map-grid span:nth-child(1) { left: 22%; top: 30%; }
.map-grid span:nth-child(2) { left: 50%; top: 52%; border-color: var(--cyan); }
.map-grid span:nth-child(3) { left: 74%; top: 40%; border-color: var(--magenta); }

.map-label {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.25rem;
  border: 1px solid rgba(32, 246, 255, 0.2);
  background: rgba(0, 0, 0, 0.56);
  padding: 0.8rem;
}

.map-label span,
.subsection-heading span {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-label strong {
  color: var(--text);
  font-size: 1.25rem;
}

.metrics-grid {
  align-items: stretch;
}

.metric {
  display: grid;
  gap: 0.45rem;
  min-height: 92px;
}

.metric strong {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.15;
}

.server-subsection {
  margin-top: 1rem;
  padding: 1rem;
}

.subsection-heading {
  margin-bottom: 0.75rem;
}

.mutator-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mutator-list span,
.table-empty {
  border: 1px solid rgba(32, 246, 255, 0.18);
  background: rgba(0, 0, 0, 0.22);
  padding: 0.42rem 0.6rem;
  color: var(--muted);
}

.player-table-wrap {
  overflow-x: auto;
}

.player-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  color: var(--text);
}

.player-table th,
.player-table td {
  border-bottom: 1px solid rgba(57, 255, 136, 0.14);
  padding: 0.65rem 0.55rem;
  text-align: left;
}

.player-table th {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.player-table td:not(:first-child),
.player-table th:not(:first-child) {
  text-align: right;
}

@media (max-width: 900px) {
  .server-main-grid {
    grid-template-columns: 1fr;
  }
}


/* Servers page hard override v20260617-servers2 */
.servers-header {
  max-width: 1120px !important;
}

.server-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.25rem !important;
  width: 100% !important;
  margin: 0 0 4rem !important;
}

.server-card.server-card-featured {
  display: block !important;
  width: 100% !important;
  min-height: 0 !important;
  padding: clamp(1rem, 3vw, 1.6rem) !important;
  border: 1px solid rgba(57, 255, 136, 0.38) !important;
  background: linear-gradient(145deg, rgba(1, 6, 4, 0.96), rgba(3, 18, 10, 0.92)) !important;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.5), 0 0 36px rgba(57, 255, 136, 0.1) !important;
  backdrop-filter: blur(12px) !important;
  text-decoration: none !important;
}

.server-card-header {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  margin: 0 0 1.1rem !important;
}

.server-card-header h2 {
  margin: 0 !important;
  color: var(--text) !important;
  font-size: clamp(1.8rem, 4vw, 3rem) !important;
  line-height: 1 !important;
}

.server-status {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  border: 1px solid rgba(47, 140, 255, 0.5) !important;
  background: rgba(0, 0, 0, 0.3) !important;
  padding: 0.35rem 0.6rem !important;
  color: #72b7ff !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.server-status i {
  display: inline-block !important;
  width: 0.8rem !important;
  height: 0.8rem !important;
  min-width: 0.8rem !important;
  border-radius: 999px !important;
  background: #2f8cff !important;
  box-shadow: 0 0 18px rgba(47, 140, 255, 0.9) !important;
}

.server-status.active {
  border-color: rgba(57, 255, 136, 0.55) !important;
  color: var(--green) !important;
}

.server-status.active i {
  background: var(--green) !important;
  box-shadow: 0 0 18px rgba(57, 255, 136, 0.9) !important;
}

.server-status.offline {
  border-color: rgba(255, 60, 70, 0.58) !important;
  color: #ff5b66 !important;
}

.server-status.offline i {
  background: #ff3b46 !important;
  box-shadow: 0 0 18px rgba(255, 59, 70, 0.9) !important;
}

.server-main-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr) !important;
  gap: 1rem !important;
  align-items: stretch !important;
}

.server-info-panel,
.map-panel,
.server-subsection {
  border: 1px solid rgba(57, 255, 136, 0.24) !important;
  background: rgba(0, 0, 0, 0.32) !important;
}

.server-info-panel {
  padding: 1rem !important;
}

.server-command,
.metric,
.mutator-list span,
.table-empty {
  border: 1px solid rgba(32, 246, 255, 0.2) !important;
  background: rgba(0, 0, 0, 0.36) !important;
}

.server-command {
  display: grid !important;
  gap: 0.4rem !important;
  margin: 0 0 1rem !important;
  padding: 0.9rem !important;
}

.server-command span,
.metric span,
.map-label span,
.subsection-heading span {
  display: block !important;
  color: var(--green) !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.server-command code {
  display: inline-block !important;
  width: fit-content !important;
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
  color: var(--text) !important;
  font-size: clamp(1rem, 2.4vw, 1.25rem) !important;
}

.metrics-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0.8rem !important;
  margin: 1rem 0 0 !important;
}

.metric {
  display: grid !important;
  gap: 0.45rem !important;
  min-height: 92px !important;
  padding: 0.8rem !important;
}

.metric strong {
  display: block !important;
  margin: 0 !important;
  color: var(--text) !important;
  font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
  line-height: 1.15 !important;
  overflow-wrap: anywhere !important;
}

.map-panel {
  position: relative !important;
  min-height: 230px !important;
  overflow: hidden !important;
}

.server-subsection {
  margin-top: 1rem !important;
  padding: 1rem !important;
}

@media (max-width: 900px) {
  .server-main-grid,
  .metrics-grid {
    grid-template-columns: 1fr !important;
  }

  .server-card-header {
    flex-direction: column !important;
  }
}

/* Article reading panel */
.article {
  max-width: 920px !important;
  margin: clamp(1.5rem, 4vw, 3rem) auto 4rem !important;
  padding: clamp(1.1rem, 3vw, 2rem) !important;
  border: 1px solid rgba(57, 255, 136, 0.34) !important;
  background: linear-gradient(145deg, rgba(1, 6, 4, 0.96), rgba(3, 18, 10, 0.94)) !important;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.52), 0 0 36px rgba(57, 255, 136, 0.08) !important;
  backdrop-filter: blur(12px) !important;
}

.article header {
  border-bottom-color: rgba(57, 255, 136, 0.2) !important;
}

.article h1 {
  font-size: clamp(2.4rem, 7vw, 5rem) !important;
}

.article header p,
.article-body p,
.article-body li {
  color: #e0f2e8 !important;
}

.article-body {
  max-width: 760px !important;
  padding-top: 2rem !important;
  font-size: clamp(1.05rem, 2vw, 1.16rem) !important;
  line-height: 1.78 !important;
}

.article-body p {
  margin: 0 0 1.2rem !important;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  color: var(--text) !important;
}

.article-body blockquote {
  margin: 1.5rem 0 !important;
  border-left: 3px solid var(--green) !important;
  background: rgba(0, 0, 0, 0.28) !important;
  padding: 0.9rem 1rem !important;
  color: #d6eee0 !important;
}

/* Comms page */
.comms-minimal {
  min-height: calc(100vh - 190px);
  display: grid;
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem) 0 4rem;
}

.comms-frame {
  position: relative;
  min-height: min(620px, 72vh);
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid rgba(57, 255, 136, 0.34);
  background:
    linear-gradient(90deg, rgba(57, 255, 136, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(57, 255, 136, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, rgba(1, 5, 4, 0.97), rgba(5, 11, 8, 0.94));
  background-size: 36px 36px, 36px 36px, auto;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.58), inset 0 0 80px rgba(57, 255, 136, 0.035);
  overflow: hidden;
}

.comms-frame::before,
.comms-frame::after {
  position: absolute;
  inset-inline: 0;
  height: 1.2rem;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(57, 255, 136, 0.28) 0 1rem, transparent 1rem 1.65rem);
  opacity: 0.22;
}

.comms-frame::before { top: 0; }
.comms-frame::after { bottom: 0; }

.comms-meta,
.comms-readout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
  color: rgba(57, 255, 136, 0.82);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comms-core {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: start;
  width: min(420px, 100%);
  margin-left: clamp(1rem, 12vw, 10rem);
  padding: clamp(1rem, 5vw, 4rem);
}

.comms-core h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 12vw, 8rem);
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(57, 255, 136, 0.16);
}

.comms-core p:not(.eyebrow) {
  margin: 1.2rem 0 1.6rem;
  color: #cfe7d7;
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.comms-join {
  display: inline-flex;
  min-height: 2.7rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(57, 255, 136, 0.5);
  background: rgba(0, 0, 0, 0.28);
  color: var(--green);
  padding: 0.7rem 1rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.comms-join:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 24px rgba(32, 246, 255, 0.16);
}

.comms-readout {
  border-top: 1px solid rgba(57, 255, 136, 0.16);
  color: rgba(207, 231, 215, 0.72);
}

@media (max-width: 760px) {
  .comms-frame {
    min-height: 560px;
  }

  .comms-meta,
  .comms-readout {
    display: grid;
  }

  .comms-core {
    justify-self: stretch;
    margin-left: 0;
  }

  .comms-join {
    width: 100%;
  }
}

