.command-console {
  position: relative;
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 84% 28%, rgba(184, 144, 82, 0.09), transparent 26%),
    #070706;
  box-shadow: 0 2.5rem 8rem rgba(0, 0, 0, 0.48);
}

.command-console::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 14rem;
  height: 1px;
  background: var(--gold-bright);
  box-shadow: 0 0 1.4rem rgba(212, 173, 112, 0.7);
  content: "";
}

.command-console__status {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line);
  color: var(--bone-dim);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.command-console__status span {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0.8rem var(--gold-bright);
}

.command-console__grid {
  display: grid;
  grid-template-columns: minmax(23rem, 0.88fr) minmax(28rem, 1.12fr);
}

.intent-panel,
.route-panel {
  min-width: 0;
  padding: clamp(1.5rem, 3.2vw, 3.5rem);
}

.intent-panel {
  border-right: 1px solid var(--line);
}

.intent-list {
  margin-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.intent-list button {
  display: grid;
  width: 100%;
  min-height: 3.85rem;
  padding: 0.9rem 0.7rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 2.5rem 1fr;
  align-items: center;
  color: var(--bone-dim);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease, padding-left 0.35s var(--ease-sovereign), background 0.25s ease;
}

.intent-list button span {
  color: var(--gold);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.intent-list button:hover,
.intent-list button:focus-visible,
.intent-list button.is-selected {
  padding-left: 1rem;
  color: var(--bone);
  background: rgba(237, 234, 228, 0.035);
}

.intent-list button.is-selected {
  box-shadow: inset 1px 0 var(--gold-bright);
}

.command-form {
  margin-top: 2.5rem;
}

.command-form label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--bone-dim);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.command-form__row {
  display: grid;
  border: 1px solid var(--line-strong);
  grid-template-columns: 1fr auto;
  align-items: stretch;
  background: rgba(0, 0, 0, 0.35);
}

.command-form textarea {
  width: 100%;
  min-height: 5.4rem;
  padding: 1.1rem;
  resize: vertical;
  border: 0;
  outline: 0;
  color: var(--bone);
  background: transparent;
  line-height: 1.45;
}

.command-form textarea::placeholder {
  color: #7a7670;
}

.command-form button {
  padding: 0 1.2rem;
  border: 0;
  border-left: 1px solid var(--line-strong);
  color: var(--ink);
  background: var(--gold-bright);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  cursor: pointer;
}

.command-form button:hover,
.command-form button:focus-visible {
  background: var(--bone);
}

.route-panel {
  display: flex;
  min-height: 44rem;
  flex-direction: column;
}

.route-panel__topline {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.route-panel__topline > span {
  color: var(--bone-dim);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.route-panel__identity {
  margin-top: clamp(3rem, 7vw, 6rem);
}

.route-panel__identity p {
  margin: 0 0 0.75rem;
  color: var(--gold-bright);
  font-size: 0.53rem;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.route-panel h3 {
  max-width: 38rem;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.8vw, 6.3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
  overflow-wrap: anywhere;
}

.route-panel__description {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: var(--bone-dim);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.45;
}

.route-panel__capabilities {
  display: grid;
  margin: 2rem 0;
  padding: 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.route-panel__capabilities li {
  min-height: 5rem;
  padding: 1rem 0.8rem 1rem 0;
  border-right: 1px solid var(--line);
  color: var(--bone-dim);
  font-size: 0.63rem;
  line-height: 1.5;
}

.route-panel__capabilities li:not(:first-child) {
  padding-left: 0.8rem;
}

.route-panel__capabilities li:last-child {
  border-right: 0;
}

.route-panel__next {
  margin-top: auto;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line-strong);
}

.route-panel__next span {
  color: var(--gold-bright);
  font-size: 0.51rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.route-panel__next p {
  margin: 0.7rem 0 0;
  font-size: 0.8rem;
  line-height: 1.6;
}

.route-cta {
  display: flex;
  min-height: 4rem;
  margin-top: 1rem;
  padding: 0 1.1rem;
  border: 1px solid var(--gold);
  align-items: center;
  justify-content: space-between;
  color: var(--gold-bright);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease;
}

.route-cta:hover,
.route-cta:focus-visible {
  color: var(--ink);
  background: var(--gold-bright);
}

.ecosystem {
  padding-top: 2rem;
}

.ecosystem-heading {
  padding-top: clamp(6rem, 10vw, 10rem);
  border-top: 1px solid var(--line);
}

.ecosystem-ledger {
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--line-strong);
}

.ecosystem-ledger article {
  display: grid;
  min-height: 8rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 3rem 4.5rem minmax(14rem, 0.75fr) 1.25fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  transition: padding-left 0.4s var(--ease-sovereign), background 0.3s ease;
}

.ecosystem-ledger article:hover,
.ecosystem-ledger article.is-routed {
  padding-left: 1rem;
  background: linear-gradient(90deg, rgba(184, 144, 82, 0.08), transparent 65%);
}

.ecosystem-ledger article.is-routed {
  box-shadow: inset 1px 0 var(--gold-bright);
}

.ecosystem-ledger article > span {
  color: var(--gold);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.brand-mark,
.brand-monogram {
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  overflow: hidden;
  color: var(--gold-bright);
  background: #0c0c0b;
  font-family: var(--display);
  font-size: 1.15rem;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecosystem-ledger h3,
.ecosystem-ledger p {
  margin: 0;
}

.ecosystem-ledger h3 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.7vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.ecosystem-ledger p {
  max-width: 44rem;
  color: var(--bone-dim);
  font-size: 0.76rem;
  line-height: 1.7;
}

.next-action {
  display: flex;
  min-height: 100vh;
  padding-top: clamp(8rem, 14vh, 12rem);
  padding-bottom: clamp(5rem, 10vh, 8rem);
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.next-action__light {
  position: absolute;
  z-index: -1;
  top: -30%;
  left: 50%;
  width: min(50rem, 70vw);
  height: 105%;
  background: linear-gradient(180deg, rgba(237, 234, 228, 0.13), rgba(184, 144, 82, 0.035) 44%, transparent 80%);
  filter: blur(65px);
  clip-path: polygon(45% 0, 55% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
}

.next-action h2 {
  max-width: 78rem;
}

.next-action__lead {
  max-width: 38rem;
  margin-top: 2rem;
}

.pathways {
  display: grid;
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  grid-template-columns: repeat(4, 1fr);
}

.pathways a {
  display: grid;
  min-height: 10rem;
  padding: 1.3rem;
  border-right: 1px solid var(--line);
  grid-template-rows: auto 1fr auto;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease, transform 0.35s var(--ease-sovereign);
}

.pathways a:last-child,
.pathways > a:nth-child(4) {
  border-right: 0;
}

.pathways .pathways__pocket {
  min-height: 7.5rem;
  border-top: 1px solid var(--line-strong);
  border-right: 0;
  grid-column: 1 / -1;
  grid-template-columns: 3rem 1fr auto;
  grid-template-rows: 1fr;
  align-items: center;
}

.pathways a:hover,
.pathways a:focus-visible {
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-0.35rem);
}

.pathways span,
.pathways small {
  color: var(--bone-dim);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pathways a:hover span,
.pathways a:hover small,
.pathways a:focus-visible span,
.pathways a:focus-visible small {
  color: rgba(5, 5, 5, 0.68);
}

.pathways strong {
  align-self: center;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
}

.site-footer {
  min-height: 8rem;
  padding: 2rem var(--page-pad);
  border-top: 1px solid var(--line);
  color: var(--bone-dim);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

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

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-bright);
}

.release-toast {
  position: fixed;
  z-index: 1400;
  right: var(--page-pad);
  bottom: 1.5rem;
  display: grid;
  width: min(58rem, calc(100vw - (var(--page-pad) * 2)));
  padding: 1rem;
  border: 1px solid rgba(116, 168, 255, 0.46);
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  color: var(--bone);
  background:
    linear-gradient(110deg, rgba(5, 20, 17, 0.96), rgba(7, 13, 29, 0.97)),
    var(--ink);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5), inset 0 1px rgba(67, 214, 163, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1.2rem);
  backdrop-filter: blur(18px);
  transition: opacity 0.45s ease, transform 0.45s var(--ease-sovereign);
}

.release-toast[hidden] {
  display: none;
}

.is-ready .release-toast,
.no-js .release-toast {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: release-toast-in 0.7s var(--ease-sovereign) both;
}

.release-toast__badge {
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(67, 214, 163, 0.55);
  color: var(--emerald-bright);
  font-size: 0.48rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.release-toast__copy {
  display: grid;
  gap: 0.18rem;
}

.release-toast__copy strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
}

.release-toast__copy span {
  color: var(--bone-dim);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.release-toast__link {
  color: var(--sapphire-bright);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-decoration: none;
  text-transform: uppercase;
}

.release-toast__link:hover,
.release-toast__link:focus-visible {
  color: var(--emerald-bright);
}

.release-toast__dismiss {
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 1px solid var(--line-strong);
  color: var(--bone);
  background: transparent;
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

.release-toast__dismiss:hover,
.release-toast__dismiss:focus-visible {
  color: var(--ink);
  background: var(--gold-bright);
}

.no-js .release-toast__dismiss {
  display: none;
}

.no-js .release-toast {
  position: static;
  width: auto;
  margin: 1rem var(--page-pad);
}

@keyframes release-toast-in {
  from {
    opacity: 0;
    transform: translateY(1.2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.no-js .loader {
  display: none;
}

.no-js body {
  height: auto;
  overflow: auto;
}

.no-js .fallback-video {
  display: block;
}

.no-js .manifesto-line,
[data-experience-mode="static-fallback"] .manifesto-line {
  color: var(--bone);
  transform: none;
  transition: none;
}

.no-js .manifesto-line--final,
[data-experience-mode="static-fallback"] .manifesto-line--final {
  color: var(--gold-bright);
}

.no-js .world-callouts li,
[data-experience-mode="static-fallback"] .world-callouts li {
  opacity: 1;
  transform: none;
  transition: none;
}
