:root {
  --void: #080807;
  --night: #11100d;
  --panel: rgba(18, 17, 14, 0.84);
  --panel-strong: rgba(10, 10, 8, 0.94);
  --ink: #f5f0e6;
  --soft: #d8d2c4;
  --muted: #948f84;
  --line: rgba(245, 240, 230, 0.13);
  --line-strong: rgba(245, 240, 230, 0.26);
  --green: #00c08b;
  --red: #ff4f45;
  --gold: #c6ad68;
  --warm-link: #d8c37f;
  --warm-link-muted: #bba772;
  --steel: #8db1bd;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --max: 1180px;
  --font-display: "Constantia", "Baskerville Old Face", "Georgia", serif;
  --font-body: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", "Cascadia Mono", "Courier New", monospace;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 70% 0%, rgba(141, 177, 189, 0.12), transparent 36rem),
    linear-gradient(180deg, #161512 0%, var(--void) 42%, #0d0c0a 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 80%, transparent 100%);
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.star-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
  padding: 0.75rem max(1rem, calc((100vw - var(--max)) / 2));
  background: rgba(14, 13, 10, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-home {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: 120px;
  height: auto;
}

.brand-credit {
  position: relative;
  margin-left: 0.1rem;
  padding-left: 0.75rem;
  color: rgba(245, 240, 230, 0.44);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease;
}

.brand-credit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0.8rem;
  background: rgba(216, 195, 127, 0.28);
  transform: translateY(-50%);
}

.brand-credit:hover,
.brand-credit:focus-visible {
  color: var(--warm-link);
  outline: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(245, 240, 230, 0.09);
  outline: none;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.header-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.028);
  font-size: 0.78rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.social-link svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(216, 195, 127, 0.44);
  color: var(--ink);
  background: rgba(245, 240, 230, 0.075);
  outline: none;
  transform: translateY(-1px);
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-action:hover,
.button:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.section-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.hero-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://framerusercontent.com/images/3x0ONdWZZOvOR4hMmki5rpco.png?height=1632&width=2912");
  background-size: cover;
  background-position: center bottom;
  transform: translateZ(0);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 42%, rgba(245, 240, 230, 0.08), transparent 20rem),
    linear-gradient(180deg, rgba(8, 8, 7, 0.08) 0%, rgba(8, 8, 7, 0.68) 100%);
  pointer-events: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.96) 0%, rgba(8, 8, 7, 0.54) 45%, rgba(8, 8, 7, 0.22) 100%),
    linear-gradient(180deg, rgba(8, 8, 7, 0.04) 0%, rgba(8, 8, 7, 0.88) 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(1.75rem, 4vw, 4rem);
  min-height: 760px;
  padding: 5.5rem 0;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.8rem, 9.4vw, 7.8rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 4.6vw, 4.45rem);
}

h3 {
  font-size: 1.4rem;
}

.brand,
.brand-home,
.nav-links,
.header-action,
.header-actions,
.eyebrow,
.button,
.terminal-panel,
.ticker-track,
.segmented,
.intel-card time,
.card-tag,
.source-link,
.submit-panel,
label,
input,
textarea,
select,
.form-status,
.feature-kicker,
.docs-link p,
.link-type,
.link-arrow,
.rules-list li::before,
.footer-inner {
  font-family: var(--font-mono);
}

.hero-lede {
  max-width: 670px;
  margin: 1.5rem 0 0;
  color: var(--soft);
  font-size: 1.03rem;
}

.hero-actions,
.split,
.field-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.86rem;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button.primary {
  border-color: rgba(198, 173, 104, 0.5);
  background: linear-gradient(180deg, rgba(245, 240, 230, 0.14), rgba(198, 173, 104, 0.08));
  box-shadow: 0 16px 42px rgba(198, 173, 104, 0.16);
}

.button.ghost {
  color: var(--soft);
}

.button.full {
  width: 100%;
}

.terminal-panel {
  position: relative;
  align-self: center;
  padding: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 14, 12, 0.86), rgba(8, 8, 7, 0.92)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 30px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.terminal-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.06) 42%, transparent 70%);
  transform: translateX(-100%);
  animation: sweep 8s ease-in-out infinite;
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.75rem;
}

.dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--muted);
}

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

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

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

.terminal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 1rem 0;
  background: var(--line);
}

.terminal-grid div {
  min-height: 92px;
  padding: 0.9rem;
  background: rgba(10, 10, 8, 0.8);
}

.terminal-grid span,
.terminal-grid strong {
  display: block;
}

.terminal-grid span {
  color: var(--muted);
  font-size: 0.72rem;
}

.terminal-grid strong {
  margin-top: 0.55rem;
  color: var(--ink);
  font-size: 1rem;
}

.mini-book {
  display: grid;
  gap: 0.38rem;
  padding: 0.2rem 0 0.25rem;
}

.mini-book span {
  position: relative;
  display: block;
  width: var(--w);
  height: 0.62rem;
  margin-left: auto;
  overflow: hidden;
  border-radius: 2px;
  background:
    linear-gradient(90deg, rgba(255, 79, 69, 0), rgba(255, 79, 69, 0.18) 36%, rgba(255, 79, 69, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
  box-shadow: 0 0 18px rgba(255, 79, 69, 0.22);
  opacity: 0.82;
  transform-origin: right center;
  transform: translate3d(0, 0, 0) scaleX(1);
  will-change: transform, opacity;
}

.mini-book span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 254, 239, 0.22), transparent);
  transform: translate3d(-120%, 0, 0);
  animation: orderSweep 7.2s linear infinite;
  will-change: transform;
}

.mini-book .bid {
  margin-right: auto;
  margin-left: 0;
  background:
    linear-gradient(90deg, rgba(0, 192, 139, 0.9), rgba(0, 192, 139, 0.18) 64%, rgba(0, 192, 139, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
  box-shadow: 0 0 18px rgba(0, 192, 139, 0.22);
  transform-origin: left center;
}

.mini-book span:nth-child(1) {
  --depth-low: 0.9;
  --depth-mid: 0.96;
  --depth-speed: 8.2s;
  animation-delay: -0.2s;
}

.mini-book span:nth-child(1)::after {
  animation-delay: -0.2s;
}

.mini-book span:nth-child(2) {
  --depth-low: 0.86;
  --depth-mid: 0.93;
  --depth-speed: 7.4s;
  animation-delay: -1.1s;
}

.mini-book span:nth-child(2)::after {
  animation-delay: -0.75s;
}

.mini-book span:nth-child(3) {
  --depth-low: 0.9;
  --depth-mid: 0.95;
  --depth-speed: 8.8s;
  animation-delay: -2.2s;
}

.mini-book span:nth-child(3)::after {
  animation-delay: -1.3s;
}

.mini-book span:nth-child(4) {
  --depth-low: 0.82;
  --depth-mid: 0.91;
  --depth-speed: 7.9s;
  animation-delay: -3.1s;
}

.mini-book span:nth-child(4)::after {
  animation-delay: -1.8s;
}

.mini-book span:nth-child(5) {
  --depth-low: 0.84;
  --depth-mid: 0.93;
  --depth-speed: 8.6s;
  animation-delay: -0.7s;
}

.mini-book span:nth-child(5)::after {
  animation-delay: -0.45s;
}

.mini-book span:nth-child(6) {
  --depth-low: 0.88;
  --depth-mid: 0.95;
  --depth-speed: 7.7s;
  animation-delay: -1.9s;
}

.mini-book span:nth-child(6)::after {
  animation-delay: -1s;
}

.mini-book span:nth-child(7) {
  --depth-low: 0.91;
  --depth-mid: 0.97;
  --depth-speed: 8.4s;
  animation-delay: -2.8s;
}

.mini-book span:nth-child(7)::after {
  animation-delay: -1.55s;
}

.ticker-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 4, 0.9);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ticker var(--ticker-duration, 34s) linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 2rem;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.board-section,
.system-section,
.trade-section,
.fame-section,
.faq-section,
.links-section,
.rules-section {
  padding: 6.5rem 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.split {
  justify-content: space-between;
  align-items: flex-end;
}

.section-note,
.visual-copy p,
.rules-layout p,
.submit-panel p {
  color: var(--muted);
}

.segmented {
  display: inline-flex;
  isolation: isolate;
  gap: 0.2rem;
  max-width: 100%;
  padding: 0.3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.segment {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 36px;
  padding: 0 0.85rem;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  transition: color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.segment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(245, 240, 230, 0.12) 45%, transparent 72%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 420ms ease, opacity 170ms ease;
  pointer-events: none;
}

.segment:hover,
.segment:focus-visible {
  color: var(--ink);
  background: rgba(245, 240, 230, 0.075);
  box-shadow: inset 0 0 0 1px rgba(245, 240, 230, 0.08);
  outline: none;
}

.segment:hover::before,
.segment:focus-visible::before {
  opacity: 1;
  transform: translateX(120%);
}

.segment.active {
  z-index: 2;
  color: var(--ink);
  background: rgba(245, 240, 230, 0.1);
}

.board-layout {
  display: block;
}

.intel-list,
.feature-grid,
.link-grid,
.fame-grid,
.docs-list {
  display: grid;
  gap: 1rem;
}

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

.intel-card,
.feature-card,
.link-card,
.fame-card,
.faq-item,
.submit-panel,
.docs-link,
.rules-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 15, 12, 0.72);
}

.intel-card {
  position: relative;
  min-height: 225px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms ease,
    background 420ms ease,
    box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.intel-card.is-clickable {
  cursor: pointer;
}

.intel-card.is-clickable::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0%, rgba(245, 240, 230, 0.06) 44%, transparent 68%),
    radial-gradient(circle at 78% 18%, rgba(216, 195, 127, 0.08), transparent 30%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 520ms ease, transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.intel-card.is-clickable:hover::before,
.intel-card.is-clickable:focus-within::before {
  opacity: 1;
  transform: translateX(0);
}

.intel-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}

.intel-media {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 4, 0.9);
}

.intel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 820ms cubic-bezier(0.16, 1, 0.3, 1), filter 520ms ease;
  will-change: transform;
}

.intel-media.with-overlay img {
  filter: contrast(1.02) brightness(0.52) saturate(0.82);
}

.intel-media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.34rem;
  padding: 1.1rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 240, 230, 0.11), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(198, 173, 104, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(8, 8, 7, 0.16), rgba(8, 8, 7, 0.86));
}

.intel-media-overlay span,
.intel-media-overlay em {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intel-media-overlay span {
  color: var(--gold);
}

.intel-media-overlay strong {
  max-width: 13ch;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  font-weight: 760;
  line-height: 1.04;
}

.intel-media-overlay em {
  color: var(--soft);
}

.event-status-strip {
  --status-color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 40px;
  padding: 0 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  background:
    linear-gradient(90deg, rgba(198, 173, 104, 0.14), rgba(198, 173, 104, 0.035) 42%, rgba(8, 8, 7, 0)),
    rgba(10, 10, 8, 0.9);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-status-strip span {
  display: inline-flex;
  align-items: center;
  color: var(--status-color);
}

.event-status-strip span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.48rem;
  border-radius: 50%;
  background: var(--status-color);
  box-shadow: 0 0 14px color-mix(in srgb, var(--status-color) 52%, transparent);
}

.event-status-strip strong {
  color: var(--muted);
  font-weight: 900;
}

.event-status-strip.status-completed {
  --status-color: var(--green);
  background:
    linear-gradient(90deg, rgba(0, 192, 139, 0.13), rgba(0, 192, 139, 0.035) 42%, rgba(8, 8, 7, 0)),
    rgba(10, 10, 8, 0.9);
}

.intel-card[data-board-type="devUpdates"] .intel-media {
  aspect-ratio: 2.35 / 1;
}

.intel-card[data-board-type="devUpdates"] .intel-media.with-overlay img {
  object-position: 18% 48%;
  filter: contrast(1.04) brightness(0.46) saturate(0.78);
}

.intel-card[data-board-type="devUpdates"] .intel-media-overlay {
  justify-content: center;
  padding: 1.15rem;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.9), rgba(8, 8, 7, 0.42) 58%, rgba(8, 8, 7, 0.7)),
    radial-gradient(circle at 18% 52%, rgba(216, 195, 127, 0.13), transparent 30%);
}

.intel-card[data-board-type="devUpdates"] .intel-media-overlay strong {
  max-width: 18ch;
  font-size: clamp(1.24rem, 1.85vw, 1.7rem);
  font-weight: 720;
  line-height: 1.08;
  white-space: nowrap;
}

.intel-card[data-board-type="devUpdates"] .intel-media-overlay em {
  max-width: 24ch;
}

.intel-card time,
.card-tag,
.source-link {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-tag {
  color: var(--gold);
}

.intel-card h3 {
  display: -webkit-box;
  margin-top: 0.6rem;
  padding-bottom: 0.06em;
  overflow: hidden;
  font-size: 1.45rem;
  line-height: 1.08;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.intel-card p {
  display: -webkit-box;
  margin: 0.75rem 0 0;
  overflow: hidden;
  color: var(--soft);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.full-announcement-card .intel-card-body {
  padding-bottom: 0.9rem;
}

.full-announcement-card p {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.full-announcement-card .intel-highlights {
  display: none;
}

.intel-card.has-media:hover,
.intel-card.has-media:focus-within {
  border-color: rgba(198, 173, 104, 0.32);
  background: rgba(18, 17, 14, 0.82);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(198, 173, 104, 0.04);
  transform: translate3d(0, -3px, 0);
}

.intel-card.has-media:hover .intel-media img,
.intel-card.has-media:focus-within .intel-media img {
  filter: brightness(1.035) contrast(1.02);
  transform: scale(1.018);
}

.intel-card.has-media:hover .card-tag,
.intel-card.has-media:focus-within .card-tag {
  color: var(--ink);
}

.intel-highlights {
  display: grid;
  gap: 0.45rem;
  margin: 0.85rem 0 0;
  padding: 0;
  color: var(--soft);
  font-size: 0.88rem;
  list-style: none;
}

.intel-highlights li {
  position: relative;
  padding-left: 1rem;
}

.intel-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
}

.source-link {
  color: var(--warm-link);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.source-link:hover {
  color: var(--ink);
  text-shadow: 0 0 18px rgba(216, 195, 127, 0.22);
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
}

.read-link {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.read-link::after {
  content: "";
  display: inline-block;
  width: 0.38rem;
  height: 0.38rem;
  margin-left: 0.45rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
}

.submit-panel {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  min-height: 42px;
  padding: 0.75rem;
  outline: none;
}

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

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(198, 173, 104, 0.72);
  box-shadow: 0 0 0 3px rgba(198, 173, 104, 0.12);
}

select option {
  color: #080807;
}

.field-row {
  align-items: start;
}

.field-row label {
  flex: 1 1 120px;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--warm-link);
  font-size: 0.75rem;
}

.system-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(216, 195, 127, 0.13), transparent 29rem),
    radial-gradient(circle at 18% 86%, rgba(245, 240, 230, 0.08), transparent 28rem),
    linear-gradient(120deg, rgba(216, 195, 127, 0.04), transparent 42%),
    linear-gradient(180deg, rgba(14, 13, 11, 0.98), rgba(7, 7, 6, 0.99));
}

.system-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background:
    linear-gradient(90deg, transparent 0 23%, rgba(245, 240, 230, 0.06) 23.2%, transparent 23.5%),
    repeating-linear-gradient(90deg, rgba(245, 240, 230, 0.035) 0 1px, transparent 1px 112px),
    repeating-linear-gradient(0deg, rgba(245, 240, 230, 0.026) 0 1px, transparent 1px 86px);
  mask-image: radial-gradient(circle at 52% 48%, black 0, transparent 72%);
}

.system-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(circle at 24% 18%, rgba(245, 240, 230, 0.08), transparent 18rem),
    radial-gradient(circle at 75% 22%, rgba(216, 195, 127, 0.08), transparent 22rem),
    linear-gradient(115deg, transparent 0 38%, rgba(245, 240, 230, 0.055) 38.2%, transparent 38.7%),
    linear-gradient(90deg, transparent 0 18%, rgba(245, 240, 230, 0.04) 18.2%, transparent 18.5%),
    repeating-linear-gradient(90deg, rgba(245, 240, 230, 0.025) 0 1px, transparent 1px 8rem),
    repeating-linear-gradient(0deg, rgba(245, 240, 230, 0.018) 0 1px, transparent 1px 6rem);
  mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 68%, transparent 100%);
}

.system-section .section-inner {
  position: relative;
  z-index: 2;
}

.system-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.52fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.system-heading .section-note {
  max-width: 660px;
  margin: 1rem 0 0;
}

.system-orbit {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 230, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(216, 195, 127, 0.16), transparent 23%),
    radial-gradient(circle at 14% 28%, rgba(245, 240, 230, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(12, 11, 9, 0.72), rgba(5, 5, 4, 0.86));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

.system-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(245, 240, 230, 0.12) 49.4% 49.8%, transparent 50.2%),
    linear-gradient(0deg, transparent 0 49%, rgba(245, 240, 230, 0.1) 49.4% 49.8%, transparent 50.2%);
}

.system-orbit::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58%;
  height: 58%;
  border: 1px solid rgba(216, 195, 127, 0.12);
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, transparent 0 76%, rgba(216, 195, 127, 0.18) 82%, transparent 92%),
    radial-gradient(circle, transparent 0 57%, rgba(216, 195, 127, 0.08) 59%, transparent 63%);
  filter: drop-shadow(0 0 16px rgba(216, 195, 127, 0.1));
  transform: translate(-50%, -50%) rotateX(58deg) rotateZ(-18deg);
  animation: orbitSoftSweep 8.6s linear infinite;
}

.orbit-ring {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(245, 240, 230, 0.12);
  border-radius: 50%;
  transform: rotateX(58deg) rotateZ(-18deg);
  animation: orbitWidePulse 8.5s ease-in-out infinite;
}

.orbit-ring:nth-child(2) {
  inset: 29%;
  border-color: rgba(216, 195, 127, 0.26);
  animation: orbitPulse 3.8s ease-in-out infinite;
}

.orbit-scan {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 254deg,
    rgba(216, 195, 127, 0.02) 268deg,
    rgba(216, 195, 127, 0.14) 282deg,
    rgba(245, 240, 230, 0.08) 292deg,
    transparent 310deg 360deg
  );
  mask-image: radial-gradient(circle, transparent 0 35%, black 38% 53%, transparent 57%);
  transform: rotateX(58deg) rotateZ(-20deg);
  animation: orbitScan 9.8s linear infinite;
}

.orbit-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(216, 195, 127, 0), rgba(216, 195, 127, 0.46), rgba(245, 240, 230, 0));
  opacity: 0;
  transform-origin: left center;
  filter: drop-shadow(0 0 10px rgba(216, 195, 127, 0.16));
  animation: signalPulse 5.8s ease-in-out infinite;
}

.pulse-a {
  --pulse-angle: -144deg;
}

.pulse-b {
  --pulse-angle: -34deg;
  animation-delay: -1.45s;
}

.pulse-c {
  --pulse-angle: 145deg;
  animation-delay: -2.9s;
}

.pulse-d {
  --pulse-angle: 35deg;
  animation-delay: -4.35s;
}

.orbit-core,
.orbit-node {
  position: absolute;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(245, 240, 230, 0.18);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(8, 8, 7, 0.78);
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.38);
}

.orbit-core {
  left: 50%;
  top: 50%;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  border-color: rgba(216, 195, 127, 0.48);
  color: var(--warm-link);
  transform: translate(-50%, -50%);
  animation: corePulse 3.6s ease-in-out infinite;
}

.orbit-core::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 195, 127, 0.28), transparent 64%);
  animation: coreGlow 3.6s ease-in-out infinite;
}

.orbit-node {
  min-width: 4.35rem;
  min-height: 2rem;
  border-radius: 999px;
  color: var(--soft);
  transition: transform 320ms ease, box-shadow 320ms ease;
  animation: nodeBlink 5.6s ease-in-out infinite;
}

.node-a {
  left: 12%;
  top: 21%;
}

.node-b {
  right: 12%;
  top: 25%;
  animation-delay: -1.4s;
}

.node-c {
  left: 16%;
  bottom: 18%;
  animation-delay: -2.8s;
}

.node-d {
  right: 15%;
  bottom: 20%;
  animation-delay: -4.2s;
}

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

.feature-card {
  position: relative;
  min-height: 250px;
  padding: 1.1rem;
  overflow: hidden;
  background: rgba(8, 8, 7, 0.76);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 420ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(216, 195, 127, 0.12), transparent 42%),
    radial-gradient(circle at 84% 16%, rgba(245, 240, 230, 0.1), transparent 26%);
  transition: opacity 320ms ease;
}

.feature-card:hover {
  border-color: rgba(216, 195, 127, 0.36);
  background: rgba(13, 12, 10, 0.86);
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.32);
  transform: translate3d(0, -4px, 0);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.78rem;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.feature-card p {
  position: relative;
  z-index: 1;
  color: var(--soft);
  font-size: 0.88rem;
}

.docs-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.docs-link {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  gap: 0.65rem;
  min-height: 150px;
  padding: 1rem;
  overflow: hidden;
  transition: transform 320ms ease, border-color 320ms ease, background 320ms ease;
}

.docs-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.85rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 195, 127, 0.64), transparent);
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.docs-link:hover,
.docs-link:focus-visible {
  border-color: rgba(216, 195, 127, 0.34);
  background: rgba(14, 13, 11, 0.84);
  outline: none;
  transform: translate3d(0, -2px, 0);
}

.docs-link:hover::after,
.docs-link:focus-visible::after {
  transform: scaleX(1);
}

.docs-link h3 {
  font-size: 1.25rem;
}

.docs-link p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.docs-link .source-link {
  align-self: end;
  margin-top: 0.15rem;
}

.trade-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 240, 230, 0.08), transparent 22rem),
    radial-gradient(circle at 18% 72%, rgba(216, 195, 127, 0.08), transparent 30rem),
    linear-gradient(180deg, rgba(9, 9, 7, 0.99), rgba(6, 6, 5, 0.98));
}

.trade-section::before,
.trade-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.trade-section::before {
  opacity: 0.34;
  background:
    linear-gradient(180deg, rgba(245, 240, 230, 0.05), transparent 18%),
    repeating-linear-gradient(90deg, rgba(245, 240, 230, 0.028) 0 1px, transparent 1px 8rem),
    repeating-linear-gradient(0deg, rgba(245, 240, 230, 0.018) 0 1px, transparent 1px 6rem);
  mask-image: radial-gradient(ellipse at 50% 36%, black 0, transparent 72%);
}

.trade-section::after {
  opacity: 0.54;
  background:
    radial-gradient(ellipse at 50% 62%, rgba(0, 0, 0, 0) 0 42%, rgba(0, 0, 0, 0.58) 72%),
    linear-gradient(90deg, rgba(8, 8, 7, 0.66), transparent 24%, transparent 76%, rgba(8, 8, 7, 0.66));
}

.trade-shell {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: clamp(1.6rem, 4vw, 2.8rem);
}

.trade-heading {
  display: grid;
  justify-items: center;
  max-width: 1180px;
  text-align: center;
}

.trade-heading h2 {
  max-width: 1180px;
  font-size: clamp(2.35rem, 3.1vw, 3.55rem);
  line-height: 1.02;
}

.trade-heading .section-note {
  margin: 0.8rem 0 0;
  color: rgba(216, 210, 196, 0.66);
}

.trade-cta {
  gap: 0.45rem;
  margin-top: 1.35rem;
}

.trade-preview {
  position: relative;
  width: min(100%, 1060px);
  padding: clamp(0.25rem, 0.55vw, 0.46rem);
  overflow: hidden;
  border: 1px solid rgba(245, 240, 230, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 240, 230, 0.035), rgba(245, 240, 230, 0.01)),
    rgba(8, 8, 7, 0.72);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.58),
    0 0 62px rgba(216, 195, 127, 0.08);
  transform: translate3d(0, 0, 0);
  transition:
    border-color 420ms ease,
    box-shadow 560ms cubic-bezier(0.16, 1, 0.3, 1);
  animation: tradeMockupFloat 12s ease-in-out infinite;
}

.trade-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.1;
  background:
    radial-gradient(circle at 52% 18%, rgba(245, 240, 230, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(8, 8, 7, 0), rgba(8, 8, 7, 0.07));
}

.trade-preview::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -1px;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 195, 127, 0.76), transparent);
  opacity: 0.55;
  transform: scaleX(0.7);
  transition: transform 520ms ease, opacity 420ms ease;
}

.trade-preview:hover,
.trade-preview:focus-visible {
  border-color: rgba(216, 195, 127, 0.36);
  box-shadow:
    0 42px 126px rgba(0, 0, 0, 0.62),
    0 0 86px rgba(216, 195, 127, 0.13);
  outline: none;
}

.trade-preview:hover::after,
.trade-preview:focus-visible::after {
  opacity: 0.9;
  transform: scaleX(1);
}

.trade-preview img {
  width: 100%;
  max-height: 640px;
  border-radius: 6px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.32);
  filter: brightness(1.05) contrast(1.13) saturate(1.06);
}

.visual-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 2rem;
  align-items: center;
  min-height: 620px;
  padding: 4rem max(1rem, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 45%, rgba(198, 173, 104, 0.1), transparent 21rem),
    radial-gradient(circle at 12% 24%, rgba(141, 177, 189, 0.09), transparent 25rem),
    linear-gradient(90deg, rgba(8, 8, 7, 0.99), rgba(14, 13, 11, 0.95));
}

.visual-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background:
    linear-gradient(110deg, transparent 0 40%, rgba(245, 240, 230, 0.06) 40.2%, transparent 40.7%),
    repeating-linear-gradient(135deg, rgba(245, 240, 230, 0.038) 0 1px, transparent 1px 74px);
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 86%, transparent 100%);
}

.visual-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.mascot-stage {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(100%, 520px);
  aspect-ratio: 1;
  transform: translate3d(0, 0, 0);
  animation: mockupWander 9.5s ease-in-out infinite;
  will-change: transform;
}

.mascot-stage::before,
.mascot-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.mascot-stage::before {
  inset: 8%;
  z-index: -1;
  border: 1px solid rgba(245, 240, 230, 0.16);
  background:
    radial-gradient(circle, rgba(245, 240, 230, 0.12), transparent 42%),
    radial-gradient(circle at 50% 92%, rgba(216, 195, 127, 0.12), transparent 34%);
  filter: blur(1px);
  animation: mascotAura 5.8s ease-in-out infinite;
}

.mascot-stage::after {
  inset: 24% 16% 4%;
  z-index: -2;
  background: radial-gradient(ellipse, rgba(216, 195, 127, 0.18), transparent 62%);
  transform: translateY(20%);
  animation: mascotShadow 5.8s ease-in-out infinite;
}

.mascot {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: contain;
  filter:
    brightness(1.06)
    contrast(1.03)
    drop-shadow(0 28px 80px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 26px rgba(245, 240, 230, 0.1));
  transform-origin: 50% 78%;
  animation: mascotDrift 6.8s ease-in-out infinite;
}

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

.fame-card {
  position: relative;
  overflow: hidden;
  background: rgba(8, 8, 7, 0.8);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 420ms ease;
}

.fame-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(245, 240, 230, 0.1) 42%, transparent 68%),
    radial-gradient(circle at 74% 20%, rgba(216, 195, 127, 0.12), transparent 32%);
  transform: translateX(-18%);
  transition: opacity 360ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fame-card:hover {
  border-color: rgba(216, 195, 127, 0.36);
  background: rgba(13, 12, 10, 0.86);
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.32);
  transform: translate3d(0, -4px, 0);
}

.fame-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.fame-card figure {
  margin: 0;
}

.fame-image-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  background: rgba(255, 255, 255, 0.04);
  cursor: zoom-in;
  overflow: hidden;
}

.fame-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
  image-rendering: auto;
  transform: translate3d(0, 0, 0);
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease;
}

.fame-image-button span {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  min-height: 28px;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(216, 195, 127, 0.42);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(8, 8, 7, 0.66);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.fame-image-button:hover span,
.fame-image-button:focus-visible span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fame-image-button:focus-visible {
  outline: 2px solid rgba(216, 195, 127, 0.66);
  outline-offset: -2px;
}

.fame-card:hover img {
  filter: brightness(1.08) contrast(1.04);
  transform: scale(1.045);
}

.fame-card figcaption {
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.fame-card h3 {
  font-size: 1.25rem;
}

.fame-card p {
  color: var(--soft);
  font-size: 0.84rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-question span:last-child {
  color: var(--gold);
  font-size: 1.3rem;
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  color: var(--soft);
}

.faq-item.open .faq-answer {
  display: block;
}

.links-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(216, 195, 127, 0.1), transparent 26rem),
    radial-gradient(circle at 86% 80%, rgba(245, 240, 230, 0.06), transparent 24rem),
    linear-gradient(180deg, rgba(9, 9, 7, 0.98), rgba(6, 6, 5, 0.99));
}

.links-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background:
    linear-gradient(90deg, rgba(245, 240, 230, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(245, 240, 230, 0.034) 1px, transparent 1px);
  background-size: 12rem 7rem;
  mask-image: radial-gradient(circle at 50% 46%, black 0, transparent 72%);
}

.links-section .section-inner {
  position: relative;
  z-index: 1;
}

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

.link-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  grid-column: span 3;
  min-height: 190px;
  padding: 1.05rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 16, 13, 0.78), rgba(8, 8, 7, 0.86)),
    radial-gradient(circle at 76% 18%, rgba(216, 195, 127, 0.1), transparent 32%);
  transition:
    border-color 320ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    background 320ms ease,
    box-shadow 420ms ease;
}

.link-card:nth-child(1),
.link-card:nth-child(2) {
  grid-column: span 6;
  min-height: 215px;
}

.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(245, 240, 230, 0.06) 18.2%, transparent 18.6%),
    repeating-linear-gradient(0deg, rgba(245, 240, 230, 0.028) 0 1px, transparent 1px 34px);
}

.link-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(216, 195, 127, 0.5), transparent);
  opacity: 0.18;
  transform: scaleX(0.28);
  transform-origin: left center;
  transition: opacity 360ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.link-card:hover,
.link-card:focus-visible {
  border-color: rgba(216, 195, 127, 0.42);
  background:
    linear-gradient(180deg, rgba(22, 20, 16, 0.84), rgba(9, 9, 7, 0.9)),
    radial-gradient(circle at 76% 18%, rgba(216, 195, 127, 0.14), transparent 34%);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
  outline: none;
  transform: translate3d(0, -4px, 0);
}

.link-card:hover::after,
.link-card:focus-visible::after {
  opacity: 0.9;
  transform: scaleX(1);
}

.link-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft);
  background: rgba(245, 240, 230, 0.045);
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.link-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.link-card:hover .link-icon,
.link-card:focus-visible .link-icon {
  color: var(--gold);
  border-color: rgba(198, 173, 104, 0.42);
  background: rgba(198, 173, 104, 0.08);
  transform: translate3d(0, -2px, 0) scale(1.04);
}

.link-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
}

.link-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.link-type,
.link-arrow {
  position: relative;
  z-index: 1;
  color: var(--warm-link-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.link-arrow {
  align-self: end;
  margin-top: 0.2rem;
  transition: color 220ms ease, transform 320ms ease;
}

.link-card:hover .link-arrow,
.link-card:focus-visible .link-arrow {
  color: var(--ink);
  transform: translateX(3px);
}

.rules-section {
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.82), rgba(8, 8, 7, 0.94)),
    url("/assets/joinus.jpeg") center / cover;
}

.rules-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.rules-layout h2 {
  max-width: 12.4ch;
  line-height: 1.1;
}

.rules-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: rules;
}

.rules-list li {
  position: relative;
  min-height: 64px;
  padding: 1rem 1rem 1rem 3.2rem;
  color: var(--soft);
  counter-increment: rules;
  background: rgba(8, 8, 7, 0.74);
}

.rules-list li::before {
  content: counter(rules, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--gold);
  font-weight: 900;
}

.site-footer {
  padding: 2.2rem 0;
  background: #070706;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-inner img {
  width: 110px;
}

.footer-inner p {
  max-width: 620px;
}

.footer-inner a {
  color: var(--warm-link);
  font-weight: 900;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.25rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 195, 127, 0.7), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--warm-link);
  outline: none;
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.footer-links .back-top-link {
  gap: 0.35rem;
  min-height: 2.35rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(216, 195, 127, 0.32);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(245, 240, 230, 0.075), rgba(216, 195, 127, 0.06)),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.footer-links .back-top-link::after {
  display: none;
}

.footer-links .back-top-link span {
  color: var(--warm-link);
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.footer-links .back-top-link:hover,
.footer-links .back-top-link:focus-visible {
  border-color: rgba(216, 195, 127, 0.58);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(245, 240, 230, 0.11), rgba(216, 195, 127, 0.075)),
    rgba(255, 255, 255, 0.035);
}

.footer-links .back-top-link:hover span,
.footer-links .back-top-link:focus-visible span {
  transform: translateY(-1px);
}

.modal-open {
  overflow: hidden;
}

.announcement-modal[hidden] {
  display: none;
}

.image-lightbox[hidden] {
  display: none;
}

.announcement-modal,
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(198, 173, 104, 0.08), transparent 34rem),
    rgba(3, 3, 2, 0.82);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.announcement-dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: min(88vh, 940px);
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 17, 14, 0.98), rgba(8, 8, 7, 0.99)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 34px);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.72);
}

.modal-close {
  position: sticky;
  top: 0.85rem;
  z-index: 2;
  float: right;
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0.85rem 0.85rem -3.1rem 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(8, 8, 7, 0.72);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: var(--line-strong);
  outline: none;
}

.modal-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050504;
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.modal-media.with-overlay {
  aspect-ratio: 3 / 1;
  min-height: 230px;
}

.modal-media.with-overlay img {
  object-fit: cover;
  object-position: 18% 48%;
  filter: contrast(1.04) brightness(0.46) saturate(0.78);
}

.modal-media.with-overlay .intel-media-overlay {
  justify-content: center;
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.9), rgba(8, 8, 7, 0.36) 58%, rgba(8, 8, 7, 0.7)),
    radial-gradient(circle at 18% 52%, rgba(216, 195, 127, 0.14), transparent 30%);
}

.modal-media.with-overlay .intel-media-overlay strong {
  max-width: 14ch;
  font-size: clamp(1.75rem, 4vw, 3.1rem);
  font-weight: 680;
  line-height: 1.05;
}

.modal-content {
  display: grid;
  gap: 1.05rem;
  padding: clamp(1.35rem, 3.2vw, 2.45rem);
}

.modal-meta {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-content h2 {
  max-width: min(100%, 820px);
  font-size: clamp(2rem, 3.35vw, 3.15rem);
  line-height: 1.02;
}

.modal-body {
  display: grid;
  gap: 0.72rem;
  max-width: 72ch;
  color: var(--soft);
  font-size: 1.02rem;
  line-height: 1.72;
}

.modal-body p {
  margin: 0;
}

.modal-body .modal-lead {
  max-width: 66ch;
  padding-left: 1rem;
  border-left: 1px solid rgba(198, 173, 104, 0.48);
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.64;
}

.modal-body h3 {
  margin: 1.05rem 0 0.1rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.modal-body ul {
  display: grid;
  gap: 0.58rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal-body li {
  position: relative;
  padding-left: 1.1rem;
}

.modal-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(198, 173, 104, 0.22);
}

.modal-body a {
  color: var(--warm-link);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(216, 195, 127, 0.34);
  text-underline-offset: 0.18em;
}

.modal-body a:hover,
.modal-body a:focus-visible {
  color: var(--ink);
  outline: none;
  text-decoration-color: rgba(245, 240, 230, 0.72);
}

.modal-source {
  justify-self: start;
  margin-top: 0.9rem;
}

.image-lightbox {
  z-index: 90;
}

.image-lightbox-dialog {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: min(96vw, 1480px);
  max-height: 92vh;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 17, 14, 0.88), rgba(6, 6, 5, 0.96)),
    rgba(8, 8, 7, 0.94);
  box-shadow: 0 34px 140px rgba(0, 0, 0, 0.78);
}

.image-lightbox-dialog .modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 4;
  margin: 0;
  float: none;
}

.image-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(46px, 4.4vw, 62px);
  height: clamp(46px, 4.4vw, 62px);
  border: 1px solid rgba(216, 195, 127, 0.34);
  border-radius: 999px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(216, 195, 127, 0.18), rgba(11, 11, 9, 0.82)),
    rgba(8, 8, 7, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.52);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.image-lightbox-nav::before {
  content: "";
  display: block;
  width: clamp(0.62rem, 1.1vw, 0.86rem);
  height: clamp(0.62rem, 1.1vw, 0.86rem);
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform-origin: center;
}

.image-lightbox-nav span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.image-lightbox-prev {
  left: clamp(0.75rem, 2vw, 1.4rem);
}

.image-lightbox-prev::before {
  transform: translateX(0.12rem) rotate(-45deg);
}

.image-lightbox-next {
  right: clamp(0.75rem, 2vw, 1.4rem);
}

.image-lightbox-next::before {
  transform: translateX(-0.12rem) rotate(135deg);
}

.image-lightbox-nav:hover,
.image-lightbox-nav:focus-visible {
  border-color: rgba(230, 211, 127, 0.82);
  background:
    linear-gradient(180deg, rgba(216, 195, 127, 0.26), rgba(11, 11, 9, 0.9)),
    rgba(8, 8, 7, 0.84);
  box-shadow: 0 20px 64px rgba(216, 195, 127, 0.18), 0 18px 48px rgba(0, 0, 0, 0.55);
}

.image-lightbox-prev:hover,
.image-lightbox-prev:focus-visible {
  transform: translate3d(-3px, -50%, 0);
}

.image-lightbox-next:hover,
.image-lightbox-next:focus-visible {
  transform: translate3d(3px, -50%, 0);
}

.image-lightbox-dialog img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(82vh, 980px);
  object-fit: contain;
  background: #050504;
}

.image-lightbox-dialog figcaption {
  width: 100%;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 7, 0.86);
}

.image-lightbox-dialog figcaption p {
  margin: 0 0 0.25rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.image-lightbox-dialog figcaption h2 {
  max-width: none;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.02;
}

@keyframes sweep {
  0%,
  70% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes ticker {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(var(--ticker-shift, -50%), 0, 0);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes orbitDrift {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSoftSweep {
  from {
    transform: translate(-50%, -50%) rotateX(58deg) rotateZ(-18deg);
  }
  to {
    transform: translate(-50%, -50%) rotateX(58deg) rotateZ(342deg);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: rotateX(58deg) rotateZ(-18deg) scale(0.98);
  }
  50% {
    opacity: 0.9;
    transform: rotateX(58deg) rotateZ(-18deg) scale(1.06);
  }
}

@keyframes orbitWidePulse {
  0%,
  100% {
    opacity: 0.34;
    transform: rotateX(58deg) rotateZ(-18deg) scale(0.98);
  }
  50% {
    opacity: 0.68;
    transform: rotateX(58deg) rotateZ(-12deg) scale(1.04);
  }
}

@keyframes orbitScan {
  from {
    transform: rotateX(58deg) rotateZ(-20deg);
  }
  to {
    transform: rotateX(58deg) rotateZ(340deg);
  }
}

@keyframes signalPulse {
  0%,
  100% {
    opacity: 0;
    transform: rotate(var(--pulse-angle)) translateX(0.35rem) scaleX(0.12);
  }
  30% {
    opacity: 0.68;
  }
  58% {
    opacity: 0;
    transform: rotate(var(--pulse-angle)) translateX(2.8rem) scaleX(0.86);
  }
}

@keyframes corePulse {
  0%,
  100% {
    border-color: rgba(216, 195, 127, 0.4);
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.38), 0 0 0 rgba(216, 195, 127, 0);
  }
  50% {
    border-color: rgba(216, 195, 127, 0.72);
    box-shadow: 0 0 36px rgba(0, 0, 0, 0.42), 0 0 34px rgba(216, 195, 127, 0.2);
  }
}

@keyframes coreGlow {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.84);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.18);
  }
}

@keyframes nodeBlink {
  0%,
  100% {
    border-color: rgba(245, 240, 230, 0.16);
    color: var(--soft);
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.38);
  }
  45% {
    border-color: rgba(216, 195, 127, 0.44);
    color: var(--ink);
    box-shadow: 0 0 28px rgba(216, 195, 127, 0.18), 0 0 36px rgba(0, 0, 0, 0.4);
  }
}

@keyframes mockupWander {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  22% {
    transform: translate3d(10px, -12px, 0);
  }
  48% {
    transform: translate3d(-8px, -4px, 0);
  }
  72% {
    transform: translate3d(7px, 11px, 0);
  }
}

@keyframes mascotDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.5deg) scale(1);
  }
  34% {
    transform: translate3d(0, -14px, 0) rotate(1deg) scale(1.015);
  }
  68% {
    transform: translate3d(0, -5px, 0) rotate(-1.2deg) scale(0.998);
  }
}

@keyframes mascotAura {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.05);
  }
}

@keyframes mascotShadow {
  0%,
  100% {
    opacity: 0.42;
    transform: translateY(20%) scale(0.94);
  }
  50% {
    opacity: 0.68;
    transform: translateY(16%) scale(1.04);
  }
}

@keyframes tradeMockupFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  30% {
    transform: translate3d(0.35rem, -0.45rem, 0);
  }

  62% {
    transform: translate3d(-0.3rem, 0.25rem, 0);
  }
}

@keyframes depthFloat {
  0%,
  100% {
    opacity: 0.76;
    transform: translate3d(0, 0, 0) scaleX(var(--depth-low, 0.88));
  }
  42% {
    opacity: 0.96;
    transform: scaleX(1);
  }
  70% {
    opacity: 0.84;
    transform: scaleX(var(--depth-mid, 0.94));
  }
}

@keyframes orderSweep {
  0%,
  22% {
    transform: translate3d(-125%, 0, 0);
  }
  48% {
    transform: translate3d(125%, 0, 0);
  }
  100% {
    transform: translate3d(125%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track {
    animation-duration: 44s;
  }

  .terminal-panel::after,
  .mini-book span::after {
    animation-duration: 10s;
  }

  .intel-card {
    transition:
      transform 560ms cubic-bezier(0.16, 1, 0.3, 1),
      border-color 420ms ease,
      background 420ms ease,
      box-shadow 560ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .intel-media img {
    transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 520ms ease;
  }

  .intel-card.has-media:hover,
  .intel-card.has-media:focus-within {
    transform: translate3d(0, -2px, 0);
  }

  .intel-card.has-media:hover .intel-media img,
  .intel-card.has-media:focus-within .intel-media img {
    transform: scale(1.008);
  }

  .system-orbit::after {
    animation-duration: 14s;
  }

  .orbit-ring {
    animation-duration: 13s;
  }

  .orbit-ring:nth-child(2) {
    animation-duration: 8s;
  }

  .orbit-scan {
    opacity: 0.42;
    animation-duration: 18s;
  }

  .orbit-pulse {
    animation-duration: 11s;
  }

  .orbit-core,
  .orbit-core::before {
    animation-duration: 7s;
  }

  .orbit-node {
    animation-duration: 9s;
  }

  .mascot-stage {
    animation-duration: 16s;
  }

  .mascot,
  .mascot-stage::before,
  .mascot-stage::after {
    animation-duration: 12s;
  }

  .trade-preview {
    animation-duration: 20s;
  }
}

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

  .nav-links {
    display: none;
  }

  .hero-inner,
  .board-layout,
  .faq-layout,
  .rules-layout,
  .system-heading,
  .visual-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: end;
    padding-top: 5rem;
  }

  .terminal-panel,
  .submit-panel {
    position: static;
  }

  .intel-list,
  .feature-grid,
  .docs-list,
  .fame-grid,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .link-card,
  .link-card:nth-child(1),
  .link-card:nth-child(2) {
    grid-column: auto;
  }

  .visual-section {
    min-height: auto;
  }

  .trade-preview {
    width: 100%;
  }

  .mascot-stage {
    justify-self: center;
    width: min(100%, 440px);
  }

  .mascot {
    max-height: 440px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 58px;
    padding: 0.65rem 1rem;
  }

  .brand-home span,
  .brand-credit,
  .header-action span {
    display: none;
  }

  .brand img {
    width: 104px;
  }

  .header-action {
    min-height: 36px;
    padding: 0 0.75rem;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .header-socials {
    gap: 0.25rem;
  }

  .social-link {
    width: 2rem;
    height: 2rem;
    border-radius: 7px;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero-section,
  .hero-inner {
    min-height: 720px;
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .segmented {
    display: grid;
    grid-template-columns: 1fr;
  }

  .intel-list,
  .feature-grid,
  .docs-list,
  .fame-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .system-orbit {
    min-height: 250px;
  }

  .orbit-node {
    min-width: 3.7rem;
    font-size: 0.66rem;
  }

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

  .board-section,
  .system-section,
  .trade-section,
  .fame-section,
  .faq-section,
  .links-section,
  .rules-section {
    padding: 4.5rem 0;
  }

  .visual-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .trade-heading h2 {
    font-size: 2.35rem;
  }

  .trade-preview {
    padding: 0.28rem;
  }

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