:root {
  --bg0: #070a0f;
  --bg1: #0b1220;
  --ink: #e8ecf5;
  --muted: rgba(232, 236, 245, 0.72);

  --mint: #27d0a0;
  --gold: #f1c66a;
  --ember: #ff6a3d;

  --shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  --radius: 18px;

  --sans: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  --serif: "IBM Plex Serif", ui-serif, Georgia, "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(1200px 700px at 30% -10%, rgba(39, 208, 160, 0.2), transparent 55%),
    radial-gradient(900px 650px at 80% 0%, rgba(241, 198, 106, 0.14), transparent 60%),
    radial-gradient(900px 650px at 50% 120%, rgba(255, 106, 61, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 58%, #070a0f);
  font-family: var(--sans);
  letter-spacing: -0.01em;
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 16px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(232, 236, 245, 0.14);
  border-radius: 10px;
  z-index: 200;
}

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(7, 10, 15, 0.55);
  border-bottom: 1px solid rgba(232, 236, 245, 0.08);
}

.top__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand__logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
}

.brand__name {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
}

.brand__sub {
  font-family: var(--serif);
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__link {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: border 160ms ease, background 160ms ease, color 160ms ease;
}

.nav__link:hover {
  background: rgba(232, 236, 245, 0.06);
  border-color: rgba(232, 236, 245, 0.12);
  color: var(--ink);
}

.hero {
  position: relative;
  padding: 52px 16px 10px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -120px -120px auto -120px;
  height: 520px;
  background: radial-gradient(closest-side at 22% 34%, rgba(39, 208, 160, 0.2), transparent 55%),
    radial-gradient(closest-side at 72% 24%, rgba(241, 198, 106, 0.12), transparent 60%),
    radial-gradient(closest-side at 46% 58%, rgba(255, 106, 61, 0.1), transparent 60%);
  filter: blur(10px);
  opacity: 0.95;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  animation: drift 16s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: translate3d(-10px, 0px, 0) scale(1);
  }
  to {
    transform: translate3d(10px, 8px, 0) scale(1.02);
  }
}

.hero__grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 22px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(39, 208, 160, 0.28);
  background: rgba(39, 208, 160, 0.06);
  color: rgba(232, 236, 245, 0.86);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__title {
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero__lede {
  margin: 14px 0 18px;
  max-width: 60ch;
  color: rgba(232, 236, 245, 0.8);
  font-size: 16px;
  line-height: 1.55;
}

.cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  appearance: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 14px;
  padding: 11px 14px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(232, 236, 245, 0.14);
  background: rgba(232, 236, 245, 0.06);
  color: var(--ink);
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(232, 236, 245, 0.09);
  border-color: rgba(232, 236, 245, 0.22);
}

.btn--primary {
  border-color: rgba(39, 208, 160, 0.45);
  background: linear-gradient(180deg, rgba(39, 208, 160, 0.26), rgba(39, 208, 160, 0.1));
}

.btn--ghost {
  border-color: rgba(241, 198, 106, 0.32);
  background: linear-gradient(180deg, rgba(241, 198, 106, 0.18), rgba(241, 198, 106, 0.06));
}

.btn--quiet {
  border-color: rgba(232, 236, 245, 0.12);
  background: rgba(232, 236, 245, 0.03);
  color: rgba(232, 236, 245, 0.82);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.stat {
  border-radius: var(--radius);
  border: 1px solid rgba(232, 236, 245, 0.12);
  background: rgba(0, 0, 0, 0.22);
  padding: 12px 14px;
}

.stat__n {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat__k {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.panel {
  border-radius: 22px;
  border: 1px solid rgba(232, 236, 245, 0.12);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel__head {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid rgba(232, 236, 245, 0.12);
}

.panel__title {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 14px;
}

.panel__hint {
  color: var(--muted);
  font-size: 12px;
  font-family: var(--serif);
}

.panel__img {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  display: block;
}

.panel__img img {
  width: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.02);
}

.panel__foot {
  padding: 12px 16px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(232, 236, 245, 0.86);
  border-top: 1px solid rgba(232, 236, 245, 0.12);
}

.inline {
  color: rgba(232, 236, 245, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 236, 245, 0.22);
  padding-bottom: 1px;
}

.inline:hover {
  border-bottom-color: rgba(39, 208, 160, 0.5);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(241, 198, 106, 0.8);
  display: inline-block;
}

.section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 46px 16px 12px;
}

.section__head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.section__title {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.section__sub {
  margin: 0;
  color: var(--muted);
  max-width: 90ch;
  line-height: 1.6;
  font-family: var(--serif);
}

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

.split__col {
  border: 1px solid rgba(232, 236, 245, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  padding: 16px;
}

.h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.p {
  margin: 0 0 10px;
  color: rgba(232, 236, 245, 0.82);
  line-height: 1.65;
  font-family: var(--serif);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: rgba(232, 236, 245, 0.8);
  line-height: 1.7;
  font-size: 13px;
}

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

.step {
  display: flex;
  gap: 12px;
  text-decoration: none;
  border: 1px solid rgba(232, 236, 245, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  padding: 14px;
  transition: transform 180ms ease, border 180ms ease, background 180ms ease;
}

.step:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 198, 106, 0.25);
  background: rgba(0, 0, 0, 0.27);
}

.step__n {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(232, 236, 245, 0.14);
  background: rgba(232, 236, 245, 0.04);
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: rgba(232, 236, 245, 0.9);
}

.step__t {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.step__d {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 12.5px;
  line-height: 1.55;
  margin-top: 4px;
}

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

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

.roadmap__card {
  border: 1px solid rgba(232, 236, 245, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  padding: 16px;
}

.roadmap__k {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(241, 198, 106, 0.86);
  margin-bottom: 6px;
}

.roadmap__t {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.linkcard {
  text-decoration: none;
  border: 1px solid rgba(232, 236, 245, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  padding: 16px;
  transition: transform 180ms ease, border 180ms ease, background 180ms ease;
}

.linkcard:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 208, 160, 0.24);
  background: rgba(0, 0, 0, 0.27);
}

.linkcard__k {
  color: rgba(232, 236, 245, 0.68);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 6px;
}

.linkcard__t {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.linkcard__d {
  color: var(--muted);
  font-family: var(--serif);
  line-height: 1.6;
  font-size: 13px;
}

.foot {
  border-top: 1px solid rgba(232, 236, 245, 0.12);
  margin-top: 28px;
  padding: 22px 16px 34px;
  background: rgba(0, 0, 0, 0.18);
}

.foot__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.foot__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot__logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
}

.foot__title {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.foot__sub {
  color: var(--muted);
  font-family: var(--serif);
  margin-top: 2px;
  font-size: 12px;
}

.foot__fine {
  margin-top: 10px;
  color: rgba(232, 236, 245, 0.72);
  font-family: var(--serif);
  line-height: 1.65;
  max-width: 70ch;
}

.foot__right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.foot__link {
  color: rgba(232, 236, 245, 0.72);
  text-decoration: none;
  border: 1px solid rgba(232, 236, 245, 0.1);
  padding: 8px 10px;
  border-radius: 12px;
}

.foot__link:hover {
  color: rgba(232, 236, 245, 0.95);
  border-color: rgba(232, 236, 245, 0.18);
}

.modal {
  border: 0;
  padding: 0;
  width: min(1100px, calc(100vw - 28px));
  background: transparent;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

.modal__frame {
  border-radius: 18px;
  background: rgba(7, 10, 15, 0.9);
  border: 1px solid rgba(232, 236, 245, 0.14);
  padding: 12px;
  box-shadow: var(--shadow);
}

.modal__close {
  appearance: none;
  border: 1px solid rgba(232, 236, 245, 0.14);
  background: rgba(232, 236, 245, 0.06);
  color: rgba(232, 236, 245, 0.9);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
}

.modal__close:hover {
  border-color: rgba(39, 208, 160, 0.3);
}

.modal__img {
  display: block;
  width: 100%;
  margin-top: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(232, 236, 245, 0.14);
  background: rgba(0, 0, 0, 0.55);
  color: rgba(232, 236, 245, 0.92);
  backdrop-filter: blur(10px);
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  max-width: min(360px, calc(100vw - 32px));
  font-weight: 700;
  font-size: 13px;
}

.toast.is-on {
  opacity: 1;
  transform: translateY(0);
}

/* Graph page */
.graphwrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

.graphhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 10px;
}

.graphhead__title {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.control {
  border: 1px solid rgba(232, 236, 245, 0.12);
  background: rgba(0, 0, 0, 0.22);
  border-radius: 14px;
  padding: 10px 12px;
}

.control label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 236, 245, 0.65);
  margin-bottom: 6px;
}

.control input,
.control select {
  width: 220px;
  max-width: 70vw;
  border-radius: 12px;
  border: 1px solid rgba(232, 236, 245, 0.14);
  background: rgba(7, 10, 15, 0.6);
  color: rgba(232, 236, 245, 0.92);
  padding: 10px 10px;
  font-weight: 700;
}

.stage {
  border-radius: 22px;
  border: 1px solid rgba(232, 236, 245, 0.12);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stage__bar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(232, 236, 245, 0.12);
}

.stage__hint {
  color: rgba(232, 236, 245, 0.7);
  font-size: 12px;
  font-family: var(--serif);
}

#graph {
  width: 100%;
  height: 66vh;
  min-height: 520px;
}

.legend {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(232, 236, 245, 0.12);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(232, 236, 245, 0.12);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(232, 236, 245, 0.04);
  color: rgba(232, 236, 245, 0.86);
  font-size: 12px;
  font-weight: 800;
}

.sw {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.side {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.box {
  border-radius: 22px;
  border: 1px solid rgba(232, 236, 245, 0.12);
  background: rgba(0, 0, 0, 0.22);
  padding: 14px;
}

.box__t {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.kv {
  color: rgba(232, 236, 245, 0.8);
  font-family: var(--serif);
  line-height: 1.6;
  font-size: 13px;
}

.kv b {
  font-family: var(--sans);
  color: rgba(232, 236, 245, 0.94);
}

.pathActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.miniBtn {
  appearance: none;
  cursor: pointer;
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(232, 236, 245, 0.14);
  background: rgba(232, 236, 245, 0.05);
  color: rgba(232, 236, 245, 0.92);
  text-decoration: none;
}

.miniBtn:hover {
  border-color: rgba(39, 208, 160, 0.25);
  background: rgba(232, 236, 245, 0.07);
}

.pathH {
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 10px;
}

.sprintWrap {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.sprintRow {
  border: 1px solid rgba(232, 236, 245, 0.12);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  padding: 10px 10px 12px;
}

.sprintCheck {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.sprintCheck input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
}

.sprintMeta {
  margin-top: 8px;
  color: rgba(232, 236, 245, 0.78);
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.6;
}

.sprintLinks {
  margin-top: 6px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 12px;
  color: rgba(232, 236, 245, 0.85);
}

.roadmapDetails {
  margin-top: 12px;
  border: 1px solid rgba(232, 236, 245, 0.12);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  padding: 10px 12px 12px;
}

.roadmapSummary {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.hero__trust {
  margin-top: 16px;
  max-width: 64ch;
  color: rgba(232, 236, 245, 0.78);
  font-family: var(--serif);
  line-height: 1.6;
}

.entrygrid,
.cardgrid,
.signalgrid,
.feedgrid,
.projectgrid,
.platformgrid {
  display: grid;
  gap: 12px;
}

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

.cardgrid,
.signalgrid,
.feedgrid,
.projectgrid,
.platformgrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.signal,
.feed,
.project,
.platform,
.heroCallout {
  border: 1px solid rgba(232, 236, 245, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  padding: 16px;
}

.card:hover,
.project:hover,
.platform:hover {
  border-color: rgba(39, 208, 160, 0.24);
  background: rgba(0, 0, 0, 0.27);
}

.card {
  text-decoration: none;
  transition: transform 180ms ease, border 180ms ease, background 180ms ease;
}

.card:hover,
.project:hover,
.platform:hover {
  transform: translateY(-2px);
}

.card__k,
.signal__k,
.feed__k,
.project__k,
.platform__k {
  color: rgba(232, 236, 245, 0.68);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}

.card__t,
.signal__t,
.feed__t,
.project__t,
.platform__t {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.card__d,
.signal__d,
.feed__d,
.project__d,
.platform__d {
  color: var(--muted);
  font-family: var(--serif);
  line-height: 1.6;
  font-size: 13px;
}

.card__actions,
.project__actions,
.platform__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.signal__n {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.signal__d {
  margin-top: 6px;
}

.feed__meta,
.project__meta {
  margin-top: 10px;
  color: rgba(232, 236, 245, 0.76);
  font-size: 12px;
  line-height: 1.6;
}

.project__tags,
.pillrow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tag,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(232, 236, 245, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(232, 236, 245, 0.04);
  color: rgba(232, 236, 245, 0.86);
  font-size: 12px;
  font-weight: 800;
}

.tag--hot,
.pill--hot {
  border-color: rgba(255, 106, 61, 0.28);
  background: rgba(255, 106, 61, 0.1);
}

.tag--mint,
.pill--mint {
  border-color: rgba(39, 208, 160, 0.28);
  background: rgba(39, 208, 160, 0.08);
}

.tag--gold,
.pill--gold {
  border-color: rgba(241, 198, 106, 0.26);
  background: rgba(241, 198, 106, 0.08);
}

.heroCallout__title {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.heroCallout__text {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  line-height: 1.65;
}

.stack {
  display: grid;
  gap: 12px;
}

.admin-field {
  display: grid;
  gap: 8px;
}

.admin-field label {
  color: rgba(232, 236, 245, 0.78);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-field input,
.admin-field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(232, 236, 245, 0.14);
  background: rgba(7, 10, 15, 0.62);
  color: rgba(232, 236, 245, 0.92);
  padding: 12px 12px;
  font: inherit;
}

.admin-field textarea {
  min-height: 118px;
  resize: vertical;
}

.platform {
  text-decoration: none;
}

.platform__role {
  margin-top: 8px;
  color: rgba(232, 236, 245, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.callstrip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid rgba(232, 236, 245, 0.12);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  padding: 14px;
}

.callstrip__text {
  color: var(--muted);
  font-family: var(--serif);
  line-height: 1.6;
  flex: 1 1 280px;
}

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

  .nav {
    display: none;
  }

  .hero__title {
    font-size: 38px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .roadmap {
    grid-template-columns: 1fr;
  }

  .entrygrid,
  .cardgrid,
  .signalgrid,
  .feedgrid,
  .projectgrid,
  .platformgrid {
    grid-template-columns: 1fr;
  }

  .links {
    grid-template-columns: 1fr;
  }

  .foot__inner {
    flex-direction: column;
  }

  .foot__right {
    justify-content: flex-start;
  }

  .side {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg {
    animation: none;
  }

  .btn,
  .step,
  .linkcard {
    transition: none;
  }
}
