/* —— Blackout OG —— */
:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --text: #e8e8e8;
  --text-muted: #8a8a8a;
  --text-dim: #5c5c5c;
  --glow: rgba(255, 255, 255, 0.06);
  --glow-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --btn-glow: 0 0 28px rgba(255, 255, 255, 0.08);
  --card-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 36px rgba(255, 255, 255, 0.035);
  /* Aligned with .news-ticker__kicker (#ff6b4a) */
  --crypto: #ff6b4a;
  --crypto-dim: rgba(255, 107, 74, 0.45);
  --crypto-glow: rgba(255, 107, 74, 0.12);
  --font-mono: "IBM Plex Mono", ui-monospace, "Cascadia Code", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Intro —— */
.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: #000;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}

.intro.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro__inner {
  max-width: 32rem;
  width: 100%;
  text-align: center;
}

.intro__line {
  margin: 0 0 1.5rem;
  min-height: 1.75em;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

.intro__line.is-visible {
  opacity: 1;
  visibility: visible;
}

.intro__typed-shell {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(0.9375rem, 2.6vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.65;
  color: var(--text);
  text-align: left;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.14), 0 0 1px rgba(255, 255, 255, 0.35);
}

.intro__caret {
  display: inline-block;
  width: 0.5ch;
  height: 1.05em;
  margin-left: 2px;
  background: var(--crypto);
  vertical-align: -0.12em;
  box-shadow: 0 0 12px var(--crypto-dim);
  animation: intro-caret-blink 0.95s steps(1, end) infinite;
}

.intro__caret.intro__caret--off {
  visibility: hidden;
  animation: none;
  box-shadow: none;
}

@keyframes intro-caret-blink {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.intro__cta-wrap {
  margin-top: 2rem;
  min-height: 3rem;
}

#enter-blackout:not([hidden]) {
  animation: intro-btn-in 0.55s var(--ease-out) both;
}

@keyframes intro-btn-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* —— Buttons —— */
.btn {
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.875rem 1.75rem;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  transition: border-color 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
    transform 0.4s var(--ease-out), background 0.45s var(--ease-out);
}

.btn:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: var(--btn-glow);
  background: rgba(255, 255, 255, 0.035);
}

.btn:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.4);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.98);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 0.875rem;
}

#enter-blackout {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}

#enter-blackout:not([hidden]) {
  opacity: 1;
}

/* —— Main —— */
.main {
  min-height: 100vh;
}

.main.is-visible {
  animation: mainIn 0.85s var(--ease) forwards;
}

@keyframes mainIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* —— Site header (logo) —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.65rem clamp(1.25rem, 5vw, 2rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.site-header__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.site-header__wordmark {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.sound-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  font-family: inherit;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out), background 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.sound-toggle:hover {
  color: var(--text-muted);
  border-color: rgba(255, 255, 255, 0.16);
}

.sound-toggle:focus-visible {
  outline: 1px solid rgba(255, 107, 74, 0.55);
  outline-offset: 2px;
}

.sound-toggle:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.sound-toggle--on {
  color: var(--text);
  border-color: rgba(255, 107, 74, 0.35);
  background: rgba(255, 107, 74, 0.08);
  box-shadow: 0 0 20px rgba(255, 107, 74, 0.08);
}

.sound-toggle__icon {
  flex-shrink: 0;
  display: block;
}

.sound-toggle__icon--on {
  display: none;
}

.sound-toggle--on .sound-toggle__icon--off {
  display: none;
}

.sound-toggle--on .sound-toggle__icon--on {
  display: block;
}

/* —— Page header (full-width band below navbar) —— */
.page-header {
  position: relative;
  padding: calc(4.5rem + env(safe-area-inset-top, 0px)) clamp(1.5rem, 5vw, 2.5rem) clamp(1.75rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 42%), var(--bg);
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  pointer-events: none;
}

.page-header__inner {
  max-width: min(56rem, 100%);
  margin: 0 auto;
  text-align: center;
}

.page-header__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.75;
}

.page-header__title {
  margin: 0 0 1rem;
  font-size: clamp(1.125rem, 2.4vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: var(--text);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.page-header__meta {
  margin: 0;
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* —— Breaking news ticker (below page header) —— */
.news-ticker {
  position: relative;
  background: linear-gradient(
    180deg,
    #1a1512 0%,
    #120d0b 48%,
    #0d0908 100%
  );
  border-top: 1px solid rgba(180, 60, 45, 0.45);
  border-bottom: 1px solid rgba(0, 0, 0, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 120, 80, 0.12), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.news-ticker::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(120, 30, 20, 0.35) 0%, transparent 18%, transparent 82%, rgba(120, 30, 20, 0.35) 100%);
  z-index: 1;
}

.news-ticker__mask {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0.55rem 0;
}

.news-ticker__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: newsTickerMarquee 52s linear infinite;
}

@keyframes newsTickerMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.news-ticker__text {
  flex: 0 0 auto;
  margin: 0;
  padding: 0 3rem;
  max-width: none;
  font-size: clamp(0.75rem, 1.35vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: rgba(248, 236, 224, 0.92);
  white-space: nowrap;
}

.news-ticker__kicker {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crypto);
  text-shadow: 0 0 18px rgba(255, 107, 74, 0.35);
  margin-right: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .news-ticker__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1.25rem;
  }

  .news-ticker__text {
    white-space: normal;
    text-align: center;
    padding: 0;
  }

  .news-ticker__text[aria-hidden="true"] {
    display: none;
  }
}

/* —— Landing layout: News | Main | Chart —— */
.landing-layout {
  display: grid;
  gap: 1rem;
  max-width: 90rem;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1rem, 3vw, 1.75rem) clamp(2rem, 5vw, 3rem);
  align-items: stretch;
}

@media (min-width: 1024px) {
  .landing-layout {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr) minmax(260px, 320px);
    gap: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .landing-layout {
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr) minmax(280px, 360px);
    gap: 1.5rem;
  }
}

.landing-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(20, 20, 20, 0.95) 0%, rgba(8, 8, 8, 0.98) 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 18px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.landing-panel__head {
  flex-shrink: 0;
  padding: 1rem 1.125rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.35);
}

.landing-panel__label {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}

.landing-panel__sub {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  line-height: 1.4;
}

.landing-panel--news {
  order: 2;
}

.landing-panel--main {
  order: 1;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.landing-panel--chart {
  order: 3;
}

@media (min-width: 1024px) {
  .landing-panel--news {
    order: 1;
  }

  .landing-panel--main {
    order: 2;
  }

  .landing-panel--chart {
    order: 3;
    position: sticky;
    top: calc(3.75rem + 0.5rem);
    align-self: start;
    max-height: calc(100vh - 5rem);
  }

  .landing-panel--news {
    position: sticky;
    top: calc(3.75rem + 0.5rem);
    align-self: start;
    max-height: calc(100vh - 5rem);
  }
}

.landing-panel--news .news-sidebar__panels {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0 0.65rem 0.85rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}

.landing-panel--news .news-sidebar__panels::-webkit-scrollbar {
  width: 6px;
}

.landing-panel--news .news-sidebar__panels::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
}

.news-sidebar__tabs {
  display: flex;
  gap: 0;
  margin: 0 0.65rem 0.65rem;
  padding: 3px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.news-sidebar__tab {
  flex: 1;
  margin: 0;
  padding: 0.45rem 0.5rem;
  font-family: inherit;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.25s var(--ease-out), background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.news-sidebar__tab:hover {
  color: var(--text-muted);
}

.news-sidebar__tab[aria-selected="true"] {
  color: var(--text);
  background: rgba(255, 107, 74, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 107, 74, 0.25);
}

.news-sidebar__tab:focus-visible {
  outline: 1px solid rgba(255, 107, 74, 0.5);
  outline-offset: 2px;
}

.news-sidebar__panel--x {
  padding-top: 0.15rem;
}

.news__grid--sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.news__grid--sidebar .card__body {
  padding: 1rem 1rem 0.85rem;
}

.news__grid--sidebar .card__title {
  font-size: 0.9375rem;
}

.news__grid--sidebar .card__text {
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news__grid--sidebar .card--news:hover,
.news__grid--sidebar .card--news:focus-visible {
  transform: none;
}

.news__grid--sidebar .card--news {
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.news__grid--sidebar .card--news:hover,
.news__grid--sidebar .card--news:focus-visible {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

/* —— News cards (sidebar grid) —— */
.card--news {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  cursor: pointer;
  outline: none;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out), filter 0.3s var(--ease-out);
}

.card--news:hover,
.card--news:focus-visible {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: var(--card-shadow-hover);
  filter: brightness(1.05);
}

.card--news:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.25);
  outline-offset: 3px;
}

.card--news.is-expanded {
  transform: scale(1.01);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--card-shadow-hover);
}

.card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #0a0a0a;
}

.card__body {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.375rem 1.25rem;
}

.card__meta {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.card__title {
  margin: 0 0 0.625rem;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}

.card__text {
  margin: 0 0 1.125rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-muted);
}

.card__link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dim);
  border-bottom: 1px solid transparent;
  transition: color 0.4s var(--ease-out), border-color 0.4s var(--ease-out),
    text-shadow 0.4s var(--ease-out);
}

.card__link:hover {
  color: rgba(220, 220, 220, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.card__link:focus-visible {
  outline: none;
  color: var(--text-muted);
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.1);
}

.card__expand {
  position: relative;
  z-index: 2;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1.375rem;
  border-top: 1px solid transparent;
  transition: max-height 0.45s var(--ease-out), opacity 0.45s var(--ease-out),
    padding 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}

.card--news.is-expanded .card__expand {
  max-height: 12rem;
  opacity: 1;
  padding: 0 1.375rem 1.35rem;
  border-top-color: rgba(255, 255, 255, 0.06);
}

.card__extra {
  margin: 0 0 0.75rem;
  padding-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-muted);
}

.card__time {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* —— X signal wire (sidebar embeds) —— */
.landing-panel__head--wire {
  padding-bottom: 0.65rem;
}

.x-feed__mast {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.x-feed__mast-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crypto);
  box-shadow: 0 0 12px var(--crypto-glow);
  animation: xWirePulse 2s ease-in-out infinite;
}

@keyframes xWirePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.92);
  }
}

.x-feed__intro {
  margin: 0 0 0.65rem;
  padding: 0.65rem 0.7rem;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  border-left: 2px solid rgba(255, 107, 74, 0.45);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 0 6px 6px 0;
}

.x-feed__item {
  position: relative;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(22, 16, 14, 0.95) 0%, rgba(8, 7, 7, 0.98) 100%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 107, 74, 0.07);
  overflow: hidden;
  opacity: 0;
  animation: xFeedItemIn 0.7s var(--ease-out) forwards;
}

.x-feed__item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 107, 74, 0.06);
}

.x-feed > .x-feed__item:nth-child(1) {
  animation-delay: 0.06s;
}

.x-feed > .x-feed__item:nth-child(2) {
  animation-delay: 0.12s;
}

.x-feed > .x-feed__item:nth-child(3) {
  animation-delay: 0.18s;
}

.x-feed > .x-feed__item:nth-child(4) {
  animation-delay: 0.24s;
}

.x-feed > .x-feed__item:nth-child(5) {
  animation-delay: 0.3s;
}

@keyframes xFeedItemIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.x-feed__item-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  padding: 0.5rem 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.x-feed__sig {
  color: var(--crypto);
}

.x-feed__live {
  color: var(--crypto);
  font-size: 0.45rem;
  animation: xWirePulse 1.8s ease-in-out infinite;
}

.x-feed__embed {
  padding: 0.35rem 0.4rem 0.5rem;
  min-height: 2.5rem;
  overflow: hidden;
}

.x-feed__embed .twitter-tweet {
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

.x-feed__embed iframe {
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 6px !important;
}

.x-feed__open {
  display: block;
  padding: 0.45rem 0.65rem 0.6rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: var(--text-dim);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
  transition: color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.x-feed__open:hover {
  color: var(--crypto);
  background: rgba(255, 107, 74, 0.06);
}

.x-feed__item--manual .x-feed__manual {
  padding: 0.65rem 0.65rem 0.5rem;
}

.x-feed__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crypto);
}

.x-feed__deck {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(240, 236, 232, 0.95);
}

.x-feed__hook {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-muted);
}

.x-feed__media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.x-feed__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 107, 74, 0.12);
  border-radius: inherit;
}

.x-feed__video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.x-feed__photo {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
}

.x-feed__cite {
  margin: 0.55rem 0 0.35rem;
  font-size: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

.x-feed__cite-link {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s var(--ease-out);
}

.x-feed__cite-link:hover {
  color: var(--crypto);
}

.x-feed__open--primary {
  margin-top: 0.15rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text);
  background: rgba(255, 107, 74, 0.1);
  border-top: 1px solid rgba(255, 107, 74, 0.2);
}

.x-feed__open--primary:hover {
  color: var(--crypto);
  background: rgba(255, 107, 74, 0.14);
}

.x-feed__badge {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .x-feed__mast-dot,
  .x-feed__live {
    animation: none;
  }

  .x-feed__item {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

.landing-panel--chart .token-chart--panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 0;
  padding: 0.65rem 0.75rem 1rem;
}

.landing-panel--chart .token-chart__frame {
  flex: 1;
  min-height: 320px;
}

.landing-panel--chart .token-chart__frame iframe {
  height: min(420px, 52vh);
}

@media (min-width: 1024px) {
  .landing-panel--chart .token-chart__frame iframe {
    height: min(460px, calc(100vh - 12rem));
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4.25rem, 11vw, 6.5rem) clamp(1.5rem, 6vw, 4rem) clamp(3rem, 10vw, 6rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}

.hero--in-layout {
  min-height: 0;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2rem) clamp(2rem, 5vw, 2.75rem);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.045) 0%, transparent 55%), var(--bg);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35), 0 20px 56px rgba(0, 0, 0, 0.38);
}

.hero__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 80% at 50% -20%, rgba(255, 255, 255, 0.04), transparent 50%);
  opacity: 0.9;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 100%);
}

.hero__glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 45%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse closest-side, rgba(255, 255, 255, 0.06), transparent 100%);
  filter: blur(40px);
}

.hero--in-layout .hero__content {
  max-width: min(36rem, 100%);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #050505;
  background-image: url("assets/hero-blackout-og.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.88) 0%,
    rgba(10, 10, 10, 0.45) 38%,
    rgba(6, 6, 6, 0.82) 100%
  );
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.022;
  pointer-events: none;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 4px
    );
  animation: grainPulse 22s ease-in-out infinite alternate;
}

@keyframes grainPulse {
  0% {
    transform: translate(0, 0);
    opacity: 0.018;
  }
  100% {
    transform: translate(-0.4%, 0.35%);
    opacity: 0.03;
  }
}

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

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: min(42rem, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.75), 0 0 48px rgba(0, 0, 0, 0.45);
}

.hero__sub {
  margin: 0;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.65);
}

.hero__ca {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  width: 100%;
  max-width: min(21.5rem, 100%);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-ca-card {
  width: 100%;
  text-align: center;
}

.hero-ca-card__label {
  margin: 0 0 0.6rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.75;
}

.hero-ca-card__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem 0.95rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-ca-card__addr {
  display: block;
  margin: 0;
  padding: 0.65rem 0.7rem;
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: clamp(0.625rem, 2.8vw, 0.6875rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(232, 232, 232, 0.95);
  word-break: break-all;
  text-align: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.hero-ca-card__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
}

.hero-ca-card__feedback {
  min-height: 1.25rem;
  margin: 0;
  padding: 0.5rem 0 0;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  width: 100%;
}

/* —— Manifesto (audience + 2026 signals, crypto HUD) —— */
.manifesto {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 5vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 107, 74, 0.04) 0%, transparent 55%), #050505;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  isolation: isolate;
}

.manifesto::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(60%, 28rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--crypto-dim), transparent);
  z-index: 2;
  pointer-events: none;
}

.manifesto__gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 70% at 50% 0%, rgba(255, 107, 74, 0.07) 0%, transparent 55%);
  opacity: 0.55;
  animation: manifestoGradient 28s ease-in-out infinite alternate;
}

@keyframes manifestoGradient {
  0% {
    opacity: 0.4;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0.62;
    transform: translate(0, 0.5%) scale(1.01);
  }
}

.manifesto__noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 107, 74, 0.03) 0,
      rgba(255, 107, 74, 0.03) 1px,
      transparent 1px,
      transparent 5px
    );
}

.manifesto__scan {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 107, 74, 0.03) 50%,
    transparent 100%
  );
  background-size: 100% 120%;
  animation: manifestoScan 8s linear infinite;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, transparent 0%, black 40%, black 60%, transparent 100%);
}

@keyframes manifestoScan {
  0% {
    background-position: 0 -100%;
  }
  100% {
    background-position: 0 200%;
  }
}

.manifesto__inner {
  position: relative;
  z-index: 2;
  max-width: 72rem;
  margin: 0 auto;
}

.manifesto__hud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: clamp(2rem, 5vw, 2.75rem);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.manifesto__hud-brand {
  color: var(--text);
  text-shadow: 0 0 24px var(--crypto-glow);
}

.manifesto__hud-sep {
  opacity: 0.35;
}

.manifesto__hud-tag {
  color: var(--crypto);
  opacity: 0.75;
}

.manifesto__hud-pill {
  margin-left: 0.25rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255, 107, 74, 0.25);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--text-muted);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  box-shadow: 0 0 20px var(--crypto-glow);
}

.manifesto__panels {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2rem);
  align-items: stretch;
}

@media (min-width: 900px) {
  .manifesto__panels {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: clamp(1rem, 2.5vw, 1.75rem);
  }
}

.manifesto__panel {
  position: relative;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(18, 22, 20, 0.95) 0%, rgba(6, 8, 8, 0.98) 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 20px 56px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 107, 74, 0.06);
}

.manifesto__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 74, 0.2), transparent);
  opacity: 0.75;
  pointer-events: none;
}

.manifesto__panel-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.manifesto__panel-idx {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--crypto);
  opacity: 0.85;
}

.manifesto__panel-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.manifesto__line {
  margin: 0 0 1.1rem;
  font-size: clamp(0.9375rem, 1.9vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.manifesto__line:last-child {
  margin-bottom: 0;
}

.manifesto__line--accent {
  color: var(--text);
  border-left: 2px solid rgba(255, 107, 74, 0.5);
  padding-left: 1rem;
  margin-top: 0.25rem;
}

.manifesto__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 4rem;
  padding: 0.5rem 0;
}

@media (max-width: 899px) {
  .manifesto__connector {
    flex-direction: row;
    min-height: auto;
    padding: 0 0.5rem;
  }

  .manifesto__connector-line:first-child {
    flex: 1;
    max-width: 40%;
  }

  .manifesto__connector-line:last-child {
    flex: 1;
    max-width: 40%;
  }
}

.manifesto__connector-line {
  flex: 1;
  width: 1px;
  min-height: 2rem;
  background: linear-gradient(180deg, transparent, rgba(255, 107, 74, 0.35), transparent);
}

@media (max-width: 899px) {
  .manifesto__connector-line {
    width: auto;
    height: 1px;
    min-height: 0;
    min-width: 2rem;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 74, 0.35), transparent);
  }
}

.manifesto__connector-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 74, 0.5);
  background: radial-gradient(circle at 30% 30%, var(--crypto), rgba(255, 107, 74, 0.15));
  box-shadow: 0 0 16px var(--crypto-glow);
  flex-shrink: 0;
}

.manifesto__micro {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--crypto-dim);
  opacity: 0.9;
}

.manifesto__headline {
  margin: 0 0 1.35rem;
  font-size: clamp(1.125rem, 2.4vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.manifesto__headline-line {
  display: block;
  text-shadow: 0 0 40px rgba(255, 107, 74, 0.08);
}

.manifesto__prose {
  margin: 0;
}

.manifesto__prose-line {
  margin: 0 0 1.1rem;
  font-size: clamp(0.875rem, 1.75vw, 0.9375rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.manifesto__prose-line:last-child {
  margin-bottom: 0;
}

.manifesto__prose-line--terminal {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: rgba(200, 210, 210, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.1rem;
  margin-top: 0.25rem;
}

.manifesto__hash {
  margin: 1.25rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.55;
  word-break: break-all;
}

.manifesto__hash-dim {
  opacity: 0.35;
}

.manifesto__reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.manifesto__panels.is-in-view .manifesto__reveal {
  opacity: 1;
  transform: translateY(0);
}

.manifesto__panels.is-in-view .manifesto__panel--access > .manifesto__reveal:nth-child(2) {
  transition-delay: 0ms;
}

.manifesto__panels.is-in-view .manifesto__panel--access > .manifesto__reveal:nth-child(3) {
  transition-delay: 80ms;
}

.manifesto__panels.is-in-view .manifesto__panel--access > .manifesto__reveal:nth-child(4) {
  transition-delay: 160ms;
}

.manifesto__panels.is-in-view .manifesto__panel--access > .manifesto__reveal:nth-child(5) {
  transition-delay: 240ms;
}

.manifesto__panels.is-in-view .manifesto__panel--signal > .manifesto__micro.manifesto__reveal {
  transition-delay: 100ms;
}

.manifesto__panels.is-in-view .manifesto__panel--signal .manifesto__headline .manifesto__reveal:nth-child(1) {
  transition-delay: 180ms;
}

.manifesto__panels.is-in-view .manifesto__panel--signal .manifesto__headline .manifesto__reveal:nth-child(2) {
  transition-delay: 260ms;
}

.manifesto__panels.is-in-view .manifesto__panel--signal .manifesto__prose .manifesto__reveal:nth-child(1) {
  transition-delay: 340ms;
}

.manifesto__panels.is-in-view .manifesto__panel--signal .manifesto__prose .manifesto__reveal:nth-child(2) {
  transition-delay: 420ms;
}

.manifesto__panels.is-in-view .manifesto__panel--signal .manifesto__prose .manifesto__reveal:nth-child(3) {
  transition-delay: 500ms;
}

.manifesto__panels.is-in-view .manifesto__panel--signal .manifesto__prose .manifesto__reveal:nth-child(4) {
  transition-delay: 580ms;
}

.manifesto__panels.is-in-view .manifesto__panel--signal > .manifesto__hash.manifesto__reveal {
  transition-delay: 660ms;
}

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

  .manifesto__scan {
    animation: none;
    opacity: 0.15;
  }

  .manifesto__reveal {
    transition-duration: 0.01ms;
  }
}

/* —— Copy button (hero mint, etc.) —— */
.btn--copy {
  flex-shrink: 0;
  padding: 0.4rem 0.75rem;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
}

/* —— Token chart (landing sidebar) —— */
.token-chart {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.token-chart__label {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.token-chart__frame {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0a0a;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.token-chart__frame iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.token-chart__open {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dim);
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
    text-shadow 0.3s var(--ease-out);
}

.token-chart__open:hover {
  color: var(--text-muted);
  border-bottom-color: rgba(255, 255, 255, 0.15);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.06);
}

@media (max-width: 599px) {
  .token-chart__frame iframe {
    height: 380px;
  }
}

/* —— Final CTA —— */
.final-cta {
  padding: clamp(6rem, 14vw, 10rem) clamp(1.5rem, 6vw, 4rem);
  text-align: center;
  border-top: 1px solid var(--border);
}

.final-cta__text {
  margin: 0 0 2.5rem;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.final-cta__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(2rem, 7vw, 3.75rem);
}

.circle-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  max-width: 11rem;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.circle-link:hover {
  color: var(--text);
}

.circle-link:focus-visible {
  outline: none;
}

.circle-link:focus-visible .circle-link__badge {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px rgba(255, 255, 255, 0.45);
}

.circle-link:active {
  transform: translateY(1px);
}

.circle-link__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.35));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 28px rgba(0, 0, 0, 0.45);
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.circle-link:hover .circle-link__badge {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 36px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.circle-link__badge--x {
  color: #fff;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.12), #0a0a0a);
}

.circle-link__badge--dex {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.04), #000000);
}

.circle-link__icon {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.circle-link__icon--dex {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  display: block;
}

.circle-link__label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.circle-link__meta {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.circle-link:hover .circle-link__meta {
  color: var(--text-muted);
}

/* —— Footer —— */
.footer {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.footer__logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  opacity: 0.88;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.footer__mark {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}
