:root {
  color-scheme: dark;
  --bg: #050605;
  --bg-2: #0b0f0b;
  --ink: #f7f7ee;
  --soft-ink: #d8ddcf;
  --muted: #919b89;
  --line: rgba(238, 247, 222, 0.14);
  --line-strong: rgba(238, 247, 222, 0.24);
  --panel: rgba(10, 14, 10, 0.72);
  --panel-2: rgba(18, 23, 17, 0.84);
  --bull-black: #101410;
  --bull-black-2: #252b25;
  --beanie: #c89491;
  --beanie-2: #f0b9b2;
  --accent: #d7a09c;
  --accent-2: #f0c6be;
  --moss: #8ea866;
  --lime: var(--accent);
  --lime-2: #9f706f;
  --gold: #ffd36a;
  --clay: #cf9792;
  --radius: 8px;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
  --display: "Space Grotesk", "Manrope", system-ui, sans-serif;
  --body: "Manrope", system-ui, sans-serif;
  font-family: var(--body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 9% 5%, rgba(216, 160, 156, 0.1), transparent 28rem),
    radial-gradient(circle at 82% 22%, rgba(207, 151, 146, 0.12), transparent 30rem),
    linear-gradient(145deg, #050605 0%, #0c1209 52%, #050605 100%);
  color: var(--ink);
}

body::selection {
  background: var(--accent-2);
  color: #160f0f;
}

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

button {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  padding: 18px clamp(18px, 4vw, 54px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px;
  background: rgba(5, 7, 5, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px) saturate(145%);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  position: relative;
  gap: 11px;
  padding-left: 12px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-2), var(--beanie));
  box-shadow: 0 0 18px rgba(216, 160, 156, 0.34);
  transform: translateY(-50%);
}

.nav-links {
  gap: 6px;
}

.nav-links a,
.action-button,
.contract-button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--soft-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a:hover,
.contract-button:hover,
.action-button:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 160, 156, 0.42);
  background: rgba(216, 160, 156, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 72px) 76px;
  border-bottom: 1px solid var(--line);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-backdrop img {
  position: absolute;
  right: -8vw;
  top: -18vh;
  width: min(760px, 66vw);
  opacity: 0.13;
  filter: blur(18px) saturate(125%);
  transform: rotate(-6deg);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.8), rgba(5, 6, 5, 0.22) 48%, rgba(5, 6, 5, 0.76)),
    linear-gradient(180deg, transparent 0%, rgba(5, 6, 5, 0.88) 96%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
  width: min(1280px, 100%);
  margin: 0 auto;
}

.hero-copy-block,
.hero-visual-block {
  min-width: 0;
}

.micro-label {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0;
}

h1 {
  max-width: 8ch;
  margin-bottom: 22px;
  font-size: clamp(5.4rem, 10.4vw, 10.8rem);
  line-height: 0.84;
}

.hero-lede {
  max-width: 670px;
  margin-bottom: 30px;
  color: var(--soft-ink);
  font-size: clamp(1.1rem, 1.65vw, 1.48rem);
  font-weight: 600;
  line-height: 1.55;
}

.split-system {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin-bottom: 22px;
}

.split-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 34px;
  overflow: hidden;
  border: 1px solid rgba(238, 247, 222, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.split-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bull-side {
  background: linear-gradient(135deg, #060806, var(--bull-black-2));
  box-shadow: inset 0 0 0 1px rgba(238, 247, 222, 0.1);
}

.beanie-side {
  background: linear-gradient(135deg, var(--beanie), var(--beanie-2));
  color: #160f0f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.split-card,
.metric-card,
.ledger-shell,
.lore-post,
.cycle-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: var(--shadow);
}

.split-card {
  padding: 20px;
}

.split-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--beanie-2);
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.9;
}

.ansem-card strong {
  color: var(--ink);
  text-shadow: 0 0 22px rgba(238, 247, 222, 0.14);
}

.wif-card strong {
  color: var(--beanie-2);
}

.split-card span {
  display: block;
  color: var(--ink);
  font-weight: 800;
}

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

.contract-button {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  gap: 12px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  cursor: pointer;
}

.contract-button span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contract-button strong {
  min-width: 0;
  max-width: min(44vw, 360px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.92rem;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-color: rgba(216, 160, 156, 0.5);
  background: linear-gradient(135deg, var(--accent-2), var(--beanie));
  color: #160f0f;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(216, 160, 156, 0.18);
}

.hero-visual-block {
  position: relative;
  display: grid;
  place-items: center;
}

.bull-portrait {
  position: relative;
  width: min(520px, 100%);
  margin: 0;
}

.bull-portrait::before {
  content: "";
  position: absolute;
  inset: -9%;
  border-radius: 42%;
  background:
    radial-gradient(circle at 50% 48%, rgba(216, 160, 156, 0.12), transparent 60%),
    radial-gradient(circle at 58% 30%, rgba(207, 151, 146, 0.14), transparent 46%);
  filter: blur(28px);
}

.bull-portrait::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.bull-portrait img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(216, 160, 156, 0.2);
  border-radius: 22px;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.54),
    0 0 64px rgba(216, 160, 156, 0.08);
}

.cycle-panel {
  position: absolute;
  right: -18px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(340px, 90%);
  padding: 16px;
  background: rgba(8, 11, 8, 0.78);
  backdrop-filter: blur(20px);
}

.cycle-ring {
  --cycle-progress: 0deg;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #080b08 0 57%, transparent 58%),
    conic-gradient(var(--accent-2) var(--cycle-progress), rgba(255, 255, 255, 0.09) 0);
  box-shadow: inset 0 0 0 1px rgba(216, 160, 156, 0.16);
}

.cycle-ring span {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.cycle-panel p,
.cycle-panel strong,
.cycle-panel small {
  display: block;
  margin: 0;
}

.cycle-panel p,
.metric-card span,
.ledger-header span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cycle-panel strong {
  margin: 5px 0;
  font-weight: 900;
}

.cycle-panel small,
.metric-card small,
.distribution-item small {
  color: var(--muted);
}

.lore-section,
.distribution-section {
  padding: 96px clamp(20px, 5vw, 72px);
}

.lore-section {
  position: relative;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(216, 160, 156, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 42%);
}

.lore-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.lore-header .micro-label {
  margin-bottom: 0;
}

.lore-header h2 {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  line-height: 1;
}

.section-kicker {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto 30px;
}

.section-kicker > div:not(.tab-line) {
  min-width: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 6vw, 5.9rem);
  line-height: 0.92;
}

.tab-line {
  display: flex;
  align-self: stretch;
  min-width: 150px;
  border-bottom: 1px solid var(--line);
}

.tab-line button {
  position: relative;
  align-self: end;
  min-height: 44px;
  border: 0;
  padding: 0 0 14px;
  background: transparent;
  color: var(--ink);
  cursor: default;
  font-weight: 900;
}

.tab-line button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--beanie));
  box-shadow: 0 0 20px rgba(216, 160, 156, 0.42);
}

.tweet-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(7, 9, 7, 0.68);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.lore-post {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  overflow: hidden;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 10px;
  background:
    radial-gradient(circle at 16% 0%, rgba(216, 160, 156, 0.1), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014)),
    rgba(6, 8, 6, 0.9);
}

.lore-post::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(216, 160, 156, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lore-post::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -24%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(216, 160, 156, 0.07);
  filter: blur(30px);
  pointer-events: none;
}

.wif-post {
  background:
    radial-gradient(circle at 84% 0%, rgba(240, 198, 190, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(240, 198, 190, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(8, 9, 8, 0.92);
}

.post-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.post-topline img {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(240, 198, 190, 0.34);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.post-topline strong,
.post-topline span {
  display: block;
}

.post-topline strong {
  color: var(--ink);
  font-weight: 900;
}

.post-topline span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.lore-post p {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

.lore-post p strong {
  color: var(--accent-2);
}

.post-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.post-footer span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.post-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(216, 160, 156, 0.28);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--accent-2);
  font-size: 0.86rem;
  font-weight: 900;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.post-footer a:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 160, 156, 0.54);
  background: rgba(216, 160, 156, 0.08);
}

.distribution-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent),
    rgba(5, 6, 5, 0.22);
}

.fees-board {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(216, 160, 156, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 16% 0%, rgba(216, 160, 156, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(7, 9, 7, 0.82);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.fees-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}

.fees-head,
.cycle-board,
.route-board,
.ledger-shell {
  position: relative;
  z-index: 1;
}

.fees-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
  border-bottom: 1px solid var(--line);
}

.fees-head h2 {
  max-width: 8ch;
}

.cycle-board {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(220px, 0.65fr);
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.cycle-main,
.fee-stat {
  min-height: 190px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(8, 11, 8, 0.86);
}

.cycle-main {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
}

.cycle-ring.large {
  width: 132px;
  height: 132px;
}

.cycle-ring.large span {
  font-size: 1.8rem;
}

.cycle-main span,
.fee-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cycle-main strong,
.fee-stat strong {
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 0.98;
}

.fee-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.fee-stat::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(240, 198, 190, 0.72), rgba(240, 198, 190, 0.08));
}

.fee-stat strong {
  margin: auto 0 8px;
  font-size: clamp(3.1rem, 5vw, 4.8rem);
  letter-spacing: 0;
}

.fee-stat em {
  display: block;
  margin-bottom: 18px;
  color: var(--soft-ink);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-board {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 12px;
  padding: clamp(18px, 3vw, 26px);
  border-bottom: 1px solid var(--line);
}

.route-board article {
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.026);
}

.route-index,
.route-pool span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-board strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.route-pool {
  position: relative;
  overflow: hidden;
}

.route-pool em {
  position: absolute;
  right: 16px;
  bottom: 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-style: normal;
  font-weight: 700;
  line-height: 0.8;
  opacity: 0.18;
}

.ansem-route {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent),
    linear-gradient(135deg, #080a08, rgba(37, 43, 37, 0.86)) !important;
}

.wif-route {
  border-color: rgba(216, 160, 156, 0.24) !important;
  background:
    linear-gradient(135deg, rgba(240, 198, 190, 0.14), transparent),
    rgba(17, 12, 12, 0.72) !important;
}

.distribution-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.sticky-copy {
  position: sticky;
  top: 110px;
  display: block;
  align-self: start;
  margin: 0;
}

.fee-dashboard {
  min-width: 0;
}

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

.metric-card {
  min-height: 166px;
  padding: 20px;
}

.metric-card.highlight {
  border-color: rgba(216, 160, 156, 0.28);
  background:
    radial-gradient(circle at 20% 0%, rgba(216, 160, 156, 0.12), transparent 44%),
    var(--panel-2);
}

.metric-card strong {
  display: block;
  margin: 11px 0 8px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.ledger-shell {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ledger-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.ledger-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.7fr 0.78fr auto;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ledger-header h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.distribution-list {
  display: grid;
}

.distribution-empty {
  display: grid;
  gap: 18px;
  min-height: 196px;
  padding: 24px 20px;
  color: var(--muted);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 160, 156, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.018);
}

.distribution-empty strong {
  color: var(--soft-ink);
  font-size: 0.95rem;
  font-weight: 900;
}

.empty-rails {
  display: grid;
  gap: 10px;
}

.empty-rails span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.075), rgba(216, 160, 156, 0.12), rgba(255, 255, 255, 0.035));
}

.empty-rails span:nth-child(2) {
  width: 92%;
}

.empty-rails span:nth-child(3) {
  width: 84%;
}

.empty-rails span:nth-child(4) {
  width: 76%;
}

.empty-rails span:nth-child(5) {
  width: 68%;
}

.distribution-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.7fr 0.78fr auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.distribution-item:last-child {
  border-bottom: 0;
}

.distribution-item:hover {
  background: rgba(216, 160, 156, 0.045);
}

.distribution-item strong {
  display: block;
  margin-bottom: 3px;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pool-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.pool-pill.ansem {
  background: linear-gradient(135deg, #080a08, var(--bull-black-2));
  color: var(--ink);
}

.pool-pill.wif {
  background: linear-gradient(135deg, var(--beanie), var(--beanie-2));
  color: #160f0f;
}

.distribution-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(216, 160, 156, 0.28);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--accent-2);
  font-size: 0.86rem;
  font-weight: 900;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.distribution-item a:hover {
  border-color: rgba(216, 160, 156, 0.54);
  background: rgba(216, 160, 156, 0.08);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(216, 160, 156, 0.34);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(5, 7, 5, 0.9);
  color: var(--ink);
  box-shadow: var(--shadow);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

@media (max-width: 1040px) {
  .hero-grid,
  .distribution-layout {
    grid-template-columns: 1fr;
  }

  .cycle-board,
  .route-board {
    grid-template-columns: 1fr;
  }

  .hero-copy-block {
    order: 2;
  }

  .hero-visual-block {
    order: 1;
  }

  h1 {
    max-width: 9ch;
  }

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 10px;
  }

  .hero-section,
  .lore-section,
  .distribution-section {
    width: 100%;
    max-width: 100vw;
    padding-right: 18px;
    padding-left: 18px;
  }

  .nav-shell {
    align-items: stretch;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    border-radius: 20px;
    flex-direction: column;
    padding: 12px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1.15fr 0.82fr 0.7fr;
  }

  .nav-links a {
    min-width: 0;
    min-height: 42px;
    padding: 0 6px;
    font-size: 0.78rem;
  }

  .hero-section {
    padding-top: 148px;
  }

  .hero-grid,
  .hero-copy-block,
  .hero-visual-block,
  .bull-portrait,
  .cycle-panel,
  .fees-board,
  .cycle-board,
  .route-board,
  .section-kicker,
  .tweet-stage,
  .distribution-layout,
  .fee-dashboard,
  .ledger-shell {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .split-system,
  .tweet-stage,
  .metric-grid,
  .ledger-columns {
    grid-template-columns: 1fr;
  }

  .fees-head {
    display: grid;
  }

  .cycle-main,
  .fee-stat {
    min-height: 140px;
  }

  .section-kicker {
    display: block;
  }

  .tab-line {
    margin-bottom: 28px;
  }

  .distribution-item {
    grid-template-columns: 1fr 1fr;
  }

  .distribution-item a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    width: min(370px, calc(100vw - 20px));
    max-width: min(370px, calc(100vw - 20px));
    margin-left: 0;
    margin-right: 0;
  }

  .hero-grid,
  .hero-copy-block,
  .hero-visual-block,
  .bull-portrait,
  .cycle-panel,
  .fees-board,
  .cycle-board,
  .route-board,
  .section-kicker,
  .tweet-stage,
  .distribution-layout,
  .fee-dashboard,
  .ledger-shell {
    max-width: min(354px, calc(100vw - 36px));
    margin-left: 0;
    margin-right: 0;
  }

  h1 {
    max-width: 7ch;
    font-size: clamp(3.6rem, 17vw, 4.65rem);
  }

  h2 {
    font-size: clamp(2.5rem, 13vw, 3.8rem);
  }

  .fees-head,
  .cycle-main,
  .fee-stat,
  .route-board,
  .ledger-header,
  .distribution-empty {
    padding-right: 18px;
    padding-left: 18px;
  }

  .cycle-main {
    align-items: flex-start;
    gap: 18px;
  }

  .cycle-ring.large {
    width: 104px;
    height: 104px;
  }

  .cycle-ring.large span {
    font-size: 1.42rem;
  }

  .ledger-columns {
    display: none;
  }

  .hero-lede {
    max-width: min(354px, calc(100vw - 36px));
    font-size: 1rem;
  }

  .bull-portrait img {
    border-radius: 16px;
  }

  .cycle-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .contract-row {
    display: grid;
  }

  .contract-button,
  .action-button {
    width: 100%;
  }

  .contract-button strong {
    max-width: 150px;
  }

  .ledger-header,
  .distribution-item {
    padding: 16px;
  }
}
