@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800;900&family=Space+Grotesk:wght@600;700;800&display=swap");

:root {
  --bg: #050302;
  --panel: rgba(18, 13, 9, 0.82);
  --panel-strong: rgba(23, 16, 10, 0.94);
  --line: rgba(255, 177, 46, 0.18);
  --line-strong: rgba(255, 177, 46, 0.34);
  --text: #fff3df;
  --muted: rgba(255, 243, 223, 0.62);
  --faint: rgba(255, 243, 223, 0.36);
  --gold: #ffc247;
  --amber: #ff9e22;
  --orange: #ff7417;
  --green: #24e487;
  --danger: #ff6a47;
  --shadow: rgba(0, 0, 0, 0.52);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Manrope",
    "Segoe UI",
    Arial,
    sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(920px 620px at 70% -10%, rgba(255, 159, 34, 0.16), transparent 62%),
    radial-gradient(620px 460px at 16% 38%, rgba(255, 116, 23, 0.08), transparent 68%),
    linear-gradient(180deg, #0b0704 0%, #050302 48%, #080402 100%);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 194, 71, 0.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 194, 71, 0.038) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(520px circle at var(--pointer-x, 62%) var(--pointer-y, 20%), rgba(255, 194, 71, 0.105), transparent 60%),
    radial-gradient(180px circle at var(--pointer-x, 62%) var(--pointer-y, 20%), rgba(255, 255, 255, 0.035), transparent 62%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 18%, transparent 80%, rgba(0, 0, 0, 0.56));
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
input,
textarea,
select {
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    color 180ms ease;
}

button {
  font: inherit;
}

#particle-field,
.gold-noise,
.progressive-blur {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#particle-field {
  z-index: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.46;
}

.gold-noise {
  z-index: 2;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.22) 1px, transparent 2px),
    radial-gradient(circle at 72% 58%, rgba(255, 194, 71, 0.28) 1px, transparent 2px);
  background-size: 140px 140px, 190px 190px;
  mix-blend-mode: screen;
}

.progressive-blur {
  z-index: 3;
  top: auto;
  height: 28vh;
  background: linear-gradient(to top, rgba(5, 3, 2, 0.98), rgba(5, 3, 2, 0));
}

.rail,
.topbar,
main {
  position: relative;
  z-index: 5;
}

.rail {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: flex;
  width: 86px;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(10, 7, 5, 0.94), rgba(4, 3, 2, 0.96)),
    radial-gradient(circle at 50% 8%, rgba(255, 194, 71, 0.12), transparent 15rem);
  box-shadow: 18px 0 60px rgba(0, 0, 0, 0.34);
}

.rail-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 194, 71, 0.1), rgba(255, 116, 23, 0.045)),
    rgba(5, 3, 2, 0.88);
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 32px rgba(255, 168, 31, 0.12);
}

.rail-item {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
}

.rail-item::after {
  position: absolute;
  left: 56px;
  z-index: 4;
  min-width: 88px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 5, 3, 0.94);
  color: var(--text);
  content: attr(data-label);
  opacity: 0;
  padding: 8px 10px;
  pointer-events: none;
  transform: translateX(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

.rail-item:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.rail-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.grid-icon {
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 7px 7px,
    linear-gradient(currentColor, currentColor) 11px 0 / 7px 7px,
    linear-gradient(currentColor, currentColor) 0 11px / 7px 7px,
    linear-gradient(currentColor, currentColor) 11px 11px / 7px 7px;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.bars-icon {
  background:
    linear-gradient(currentColor, currentColor) 0 13px / 4px 5px,
    linear-gradient(currentColor, currentColor) 7px 7px / 4px 11px,
    linear-gradient(currentColor, currentColor) 14px 2px / 4px 16px;
  background-repeat: no-repeat;
}

.stack-icon::before,
.stack-icon::after,
.stack-icon {
  border: 1px solid currentColor;
  border-radius: 3px;
}

.stack-icon::before,
.stack-icon::after {
  position: absolute;
  content: "";
  inset: 3px;
}

.stack-icon::after {
  inset: 6px;
}

.shield-icon {
  clip-path: polygon(50% 0, 88% 15%, 80% 76%, 50% 100%, 20% 76%, 12% 15%);
  background: currentColor;
  opacity: 0.9;
}

.arrow-icon::before {
  position: absolute;
  inset: 4px 2px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.arrow-icon::after {
  position: absolute;
  top: 8px;
  right: 5px;
  left: 2px;
  height: 2px;
  background: currentColor;
  content: "";
}

.rail-item:hover,
.rail-item.active {
  border-color: var(--line-strong);
  background: rgba(255, 194, 71, 0.08);
  color: var(--gold);
  box-shadow: 0 12px 34px rgba(255, 136, 0, 0.12);
}

.rail-bottom {
  margin-top: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  min-height: 82px;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  margin-left: 86px;
  padding: 0 34px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 3, 2, 0.76);
  backdrop-filter: blur(22px);
}

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

.brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  filter: drop-shadow(0 0 18px rgba(255, 194, 71, 0.28));
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.command-search {
  display: grid;
  min-height: 44px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 8, 6, 0.82);
  color: inherit;
  cursor: pointer;
  padding: 0 12px;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.command-search:hover,
.command-search:focus-visible {
  border-color: rgba(255, 194, 71, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 34px rgba(255, 194, 71, 0.08);
  outline: none;
}

.command-search p {
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.command-key {
  display: inline-grid;
  min-width: 34px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 194, 71, 0.16);
  border-radius: 6px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 900;
}

.command-palette {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: start center;
  background:
    radial-gradient(560px circle at var(--pointer-x, 50%) 10%, rgba(255, 194, 71, 0.12), transparent 62%),
    rgba(0, 0, 0, 0.58);
  opacity: 0;
  padding: 112px 18px 18px;
  pointer-events: none;
  transition: opacity 180ms ease;
  backdrop-filter: blur(12px);
}

.command-palette.is-open {
  opacity: 1;
  pointer-events: auto;
}

.palette-panel {
  width: min(680px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 194, 71, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(20, 14, 9, 0.98), rgba(7, 4, 3, 0.98)),
    radial-gradient(circle at 18% 0%, rgba(255, 194, 71, 0.12), transparent 20rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 40px 120px rgba(0, 0, 0, 0.72);
  transform: translateY(-10px) scale(0.98);
  transition: transform 180ms ease;
}

.command-palette.is-open .palette-panel {
  transform: translateY(0) scale(1);
}

.palette-input-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 194, 71, 0.13);
  padding: 14px;
}

.palette-mark,
#palette-close {
  display: inline-grid;
  min-width: 38px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 194, 71, 0.18);
  border-radius: 7px;
  background: rgba(255, 194, 71, 0.055);
  color: var(--gold);
  font-weight: 950;
}

#palette-input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  outline: none;
}

#palette-input::placeholder {
  color: var(--faint);
}

#palette-close {
  cursor: pointer;
  font-size: 11px;
}

.palette-list {
  display: grid;
  gap: 6px;
  padding: 10px;
}

.palette-list button {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 0 14px;
  text-align: left;
}

.palette-list button:hover,
.palette-list button.is-active {
  border-color: rgba(255, 194, 71, 0.18);
  background: rgba(255, 194, 71, 0.075);
}

.palette-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.palette-list small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.nav-links,
.top-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.active {
  color: var(--gold);
}

.top-actions {
  justify-content: flex-end;
}

.discord-link,
.quiet-button,
.motion-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.discord-link,
.quiet-button {
  border: 1px solid var(--line);
  background: rgba(10, 7, 5, 0.66);
  color: var(--gold);
  padding: 0 18px;
}

.motion-button {
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 220, 128, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 232, 143, 0.98) 0%, rgba(255, 180, 46, 0.96) 56%, rgba(255, 116, 23, 0.92) 100%);
  color: #120a02;
  padding: 0 10px 0 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -10px 26px rgba(111, 45, 0, 0.12),
    0 18px 46px rgba(255, 123, 18, 0.2);
}

.motion-button::before {
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.32) 45%, transparent 62%);
  content: "";
  opacity: 0;
  transform: translateX(-80%);
  transition:
    opacity 220ms ease,
    transform 680ms ease;
}

.motion-button:hover::before {
  opacity: 1;
  transform: translateX(80%);
}

.motion-button.primary {
  min-height: 50px;
  padding-left: 22px;
}

.motion-button.full,
.quiet-button.full {
  width: 100%;
}

.motion-button:hover,
.quiet-button:hover,
.discord-link:hover {
  transform: translateY(-2px);
}

.button-arrow {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(18, 8, 1, 0.16);
  border-radius: 7px;
  background: rgba(18, 8, 1, 0.08);
  font-size: 17px;
  line-height: 1;
}

main {
  margin-left: 86px;
}

.section {
  position: relative;
  width: min(1320px, calc(100vw - 126px));
  margin: 0 auto;
  border-right: 1px solid rgba(255, 194, 71, 0.1);
  border-left: 1px solid rgba(255, 194, 71, 0.1);
}

.hero-console {
  display: grid;
  min-height: calc(100vh - 82px);
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 42px;
  align-items: center;
  padding: 56px 34px 72px;
}

.hero-copy {
  max-width: 640px;
}

.status-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 10px;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 194, 71, 0.055);
  color: var(--gold);
  padding: 0 14px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status-pill i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 194, 71, 0.58);
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-weight: 950;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  margin-top: 26px;
  font-size: 96px;
  line-height: 0.88;
  text-shadow: 0 30px 90px rgba(0, 0, 0, 0.72);
}

h2 {
  font-size: 70px;
  line-height: 0.95;
}

h3 {
  font-size: 24px;
  line-height: 1.05;
}

.hero-subline,
.section-heading p,
.access-copy p,
.tool-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-subline {
  max-width: 600px;
  margin: 26px 0 0;
  font-size: 18px;
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.console-frame,
.tool-card,
.system-board,
.pricing-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, var(--panel-strong), rgba(8, 5, 3, 0.92)),
    radial-gradient(circle at 20% 0%, rgba(255, 194, 71, 0.1), transparent 24rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 32px 110px var(--shadow),
    0 0 70px rgba(255, 142, 24, 0.055);
}

.console-frame {
  min-width: 0;
  overflow: hidden;
  padding: 22px;
}

.console-window-bar,
.panel-head,
.board-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.console-window-bar {
  min-height: 34px;
  color: var(--faint);
  font-size: 13px;
}

.console-window-bar strong {
  margin-left: 8px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-weight: 700;
}

.console-window-bar em {
  margin-left: auto;
  border: 1px solid rgba(255, 194, 71, 0.22);
  border-radius: 999px;
  background: rgba(255, 194, 71, 0.08);
  color: var(--gold);
  padding: 5px 10px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

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

.dot.hot {
  background: var(--danger);
}

.dot.gold {
  background: var(--gold);
}

.dot.green {
  background: var(--green);
}

.dot.amber {
  background: var(--amber);
}

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

.metric-grid article {
  min-height: 148px;
  border: 1px solid rgba(255, 194, 71, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 125, 24, 0.08), rgba(255, 194, 71, 0.035)),
    rgba(0, 0, 0, 0.18);
  padding: 22px;
}

.metric-grid article.signal-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 194, 71, 0.14), transparent 12rem),
    linear-gradient(135deg, rgba(255, 125, 24, 0.08), rgba(255, 194, 71, 0.025));
}

.metric-grid span,
.panel-head span,
.tool-card > span,
.price-head span,
.board-top span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.metric-grid strong {
  display: block;
  margin-top: 26px;
  font-size: 36px;
  line-height: 1;
}

.metric-grid small {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 900;
}

.console-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  margin-top: 14px;
}

.chart-panel,
.job-panel {
  min-height: 330px;
  border: 1px solid rgba(255, 194, 71, 0.13);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  padding: 20px;
}

.panel-head {
  justify-content: space-between;
}

.panel-head b {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  padding: 5px 10px;
  font-size: 11px;
  text-transform: uppercase;
}

.chart-lines {
  display: grid;
  height: 240px;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 18px;
  margin-top: 30px;
  border-bottom: 1px solid rgba(255, 194, 71, 0.16);
  background-image:
    linear-gradient(rgba(255, 194, 71, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 194, 71, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  padding: 0 12px;
}

.chart-lines i {
  display: block;
  height: var(--h);
  min-height: 34px;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, #ffcf57, #ff7a1a);
  box-shadow: 0 0 38px rgba(255, 123, 18, 0.22);
}

.job-panel {
  display: grid;
  align-content: start;
  gap: 12px;
}

.job-row {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 194, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  padding: 0 14px;
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, monospace;
}

.job-row b {
  border: 1px solid rgba(255, 194, 71, 0.18);
  border-radius: 999px;
  color: var(--gold);
  padding: 6px 10px;
  font-family: inherit;
  font-size: 11px;
  text-transform: uppercase;
}

.job-row .ready {
  border-color: rgba(255, 194, 71, 0.28);
  color: var(--gold);
}

.workflow-strip,
.automation-grid,
.access-section {
  padding: 96px 34px;
}

.section-heading {
  display: grid;
  max-width: 900px;
  gap: 22px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 740px;
}

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

.tool-card {
  min-height: 290px;
  padding: 26px;
}

.tool-card h3 {
  margin-top: 58px;
}

.tool-card p {
  margin: 16px 0 0;
  font-size: 14px;
}

.system-board {
  display: grid;
  grid-template-columns: 210px 1fr;
  overflow: hidden;
}

.board-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 440px;
  border-right: 1px solid rgba(255, 194, 71, 0.12);
  padding: 22px;
}

.board-sidebar span {
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  padding: 12px;
  font-size: 13px;
  font-weight: 900;
}

.board-sidebar .active {
  border-color: var(--line);
  background: rgba(255, 194, 71, 0.08);
  color: var(--gold);
}

.board-main {
  padding: 24px;
}

.board-top {
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 194, 71, 0.12);
  padding-bottom: 22px;
}

.board-top div {
  display: grid;
  gap: 8px;
}

.board-top strong {
  font-size: 30px;
}

.board-top a {
  border: 1px solid rgba(255, 228, 145, 0.52);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe16f, #ff7417);
  color: #100801;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 950;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.signal-list p {
  display: grid;
  min-height: 66px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 0;
  border: 1px solid rgba(255, 194, 71, 0.1);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  color: var(--muted);
  padding: 0 16px;
}

.signal-list i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 194, 71, 0.5);
}

.signal-list b {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.access-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 480px);
  gap: 36px;
  align-items: center;
  padding-bottom: 130px;
}

.access-copy {
  max-width: 760px;
}

.access-copy h2 {
  margin-top: 22px;
}

.access-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  font-size: 17px;
}

.pricing-panel {
  padding: 26px;
}

.price-head {
  border-bottom: 1px solid rgba(255, 194, 71, 0.13);
  padding-bottom: 24px;
}

.price-head strong {
  display: block;
  margin-top: 18px;
  font-size: 54px;
  line-height: 0.94;
}

.price-head p {
  margin: 10px 0 0;
  color: var(--muted);
}

.price-line {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 194, 71, 0.1);
  color: var(--muted);
}

.price-line b {
  color: var(--text);
}

.pricing-panel .motion-button {
  margin-top: 24px;
}

.pricing-panel .quiet-button {
  margin-top: 12px;
}

.split-reveal .word {
  display: inline-block;
  white-space: nowrap;
}

.split-reveal .word > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--motion-index, var(--i, 0)) * 10ms);
}

.split-reveal.in-view .word > span,
.hero-console .split-reveal .word > span {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-card.in-view,
.hero-console .reveal-card {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .command-search,
  .nav-links {
    display: none;
  }

  .hero-console,
  .access-section {
    grid-template-columns: 1fr;
  }

  .console-frame,
  .access-copy {
    max-width: none;
  }

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

@media (max-width: 820px) {
  body::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 52%, rgba(0, 0, 0, 0.36));
  }

  .rail {
    display: none;
  }

  .topbar,
  main {
    margin-left: 0;
  }

  .topbar {
    min-height: 76px;
    padding: 0 16px;
  }

  .brand small,
  .discord-link {
    display: none;
  }

  .section {
    width: 100%;
    border-right: 0;
    border-left: 0;
  }

  .hero-console,
  .workflow-strip,
  .automation-grid,
  .access-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-console {
    gap: 32px;
    padding-top: 42px;
  }

  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 54px;
  }

  .metric-grid,
  .console-body,
  .tool-grid,
  .system-board {
    grid-template-columns: 1fr;
  }

  .board-sidebar {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(255, 194, 71, 0.12);
  }

  .chart-panel,
  .job-panel {
    min-height: 280px;
  }

  .price-head strong {
    font-size: 44px;
  }
}

@media (max-width: 560px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .top-actions {
    justify-content: stretch;
  }

  .top-actions .motion-button {
    width: 100%;
  }

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

  .console-frame,
  .tool-card,
  .pricing-panel,
  .board-main,
  .board-sidebar {
    padding: 18px;
  }

  .signal-list p,
  .price-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
