/* ============================================
   STONKS SZN — Wall Street Trading Desk
   ============================================ */

:root {
  --bnb-gold: #F0B90B;
  --bnb-gold-dark: #C99400;
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --charcoal-mid: #2a2a2a;
  --cream: #F5F0E6;
  --cream-dark: #E8E0D0;
  --paper: #FAF7F2;
  --green: #1a7a3a;
  --red: #b52a2a;
  --mono: ui-monospace, "Cascadia Code", "Consolas", "Courier New", monospace;
  --headline: "Arial Narrow", "Helvetica Neue Condensed", Impact, "Arial Black", sans-serif;
  --editorial: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
  --header-h: 60px;
  --ticker-h: 32px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--bnb-gold);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--bnb-gold);
  color: var(--black);
  border-color: var(--bnb-gold-dark);
}

.btn-primary:hover {
  background: var(--bnb-gold-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--black);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 2px solid var(--bnb-gold);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  gap: 1rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.header-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid var(--bnb-gold);
}

.header-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.header-name {
  font-family: var(--headline);
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.header-ticker {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--bnb-gold);
  letter-spacing: 0.12em;
}

.header-chain {
  font-family: var(--mono);
  font-size: 0.55rem;
  color: rgba(245, 240, 230, 0.5);
  letter-spacing: 0.1em;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-menu a {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 230, 0.75);
  padding: 0.4rem 0.65rem;
  border: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--bnb-gold);
  border-color: rgba(240, 185, 11, 0.3);
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---- TICKER ---- */
.ticker-wrap {
  background: var(--charcoal);
  border-bottom: 1px solid var(--bnb-gold-dark);
  height: var(--ticker-h);
  overflow: hidden;
  position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--charcoal), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--charcoal), transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}

.ticker-track span {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--bnb-gold);
  padding: 0 2rem;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "◆";
  margin-left: 2rem;
  color: rgba(240, 185, 11, 0.4);
  font-size: 0.5rem;
}

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

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 0.25rem 0;
    padding: 0.25rem;
    height: auto;
  }
  .ticker-wrap {
    height: auto;
    min-height: var(--ticker-h);
  }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--cream);
  overflow: hidden;
  min-height: calc(100vh - var(--header-h) - var(--ticker-h));
  min-height: calc(100dvh - var(--header-h) - var(--ticker-h));
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 185, 11, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 185, 11, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-grid-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8px,
    rgba(240, 185, 11, 0.08) 8px,
    rgba(240, 185, 11, 0.08) 9px
  );
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  gap: 2rem;
  align-items: center;
  min-height: inherit;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--bnb-gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-line {
  display: block;
  font-family: var(--headline);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.02em;
}

.hero-line--1 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--cream);
}

.hero-line--2 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--bnb-gold);
  margin-left: 0.15em;
}

.hero-tagline {
  font-family: var(--headline);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.06em;
  margin-top: 1.25rem;
  color: var(--cream);
  text-transform: uppercase;
}

.hero-sub {
  font-family: var(--editorial);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(245, 240, 230, 0.7);
  margin-top: 0.5rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid rgba(240, 185, 11, 0.25);
  background: rgba(240, 185, 11, 0.04);
  max-width: 420px;
}

.hero-meta dt {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 230, 0.45);
}

.hero-meta dd {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cream);
}

.meta-alert {
  color: var(--red) !important;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-doge {
  width: min(520px, 100%);
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.hero-badge {
  position: absolute;
  top: 5%;
  left: 0;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--black);
  background: var(--bnb-gold);
  padding: 0.35rem 0.6rem;
  z-index: 3;
  transform: rotate(-3deg);
}

.hero-stamp {
  position: absolute;
  bottom: 10%;
  right: 0;
  font-family: var(--headline);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--bnb-gold);
  border: 3px solid var(--bnb-gold);
  padding: 0.5rem 0.75rem;
  transform: rotate(8deg);
  opacity: 0.85;
  z-index: 3;
  line-height: 1.2;
  text-align: center;
}

/* ---- DESK ---- */
.desk {
  background: var(--charcoal);
  color: var(--cream);
  border-top: 3px solid var(--bnb-gold);
  border-bottom: 3px solid var(--bnb-gold);
}

.desk-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.25rem 2rem 0.75rem;
  border-bottom: 1px solid rgba(240, 185, 11, 0.2);
}

.desk-header h2 {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--bnb-gold);
}

.desk-status {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 230, 0.45);
}

.blink-cursor {
  color: var(--bnb-gold);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

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

.desk-table-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 0;
}

.desk-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
}

.desk-table th,
.desk-table td {
  padding: 0.65rem 2rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.desk-table th {
  color: rgba(245, 240, 230, 0.45);
  font-weight: 400;
  width: 40%;
}

.desk-table td {
  color: var(--bnb-gold);
  font-weight: 700;
}

.desk-table tr:hover td {
  background: rgba(240, 185, 11, 0.05);
}

.desk-aside {
  border-left: 1px solid rgba(240, 185, 11, 0.2);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.desk-note {
  font-family: var(--editorial);
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(245, 240, 230, 0.4);
  line-height: 1.6;
}

.desk-terminal {
  font-family: var(--mono);
  font-size: 0.65rem;
  padding: 0.75rem;
  background: var(--black);
  border: 1px solid rgba(240, 185, 11, 0.3);
}

.terminal-label {
  display: block;
  color: rgba(245, 240, 230, 0.4);
  margin-bottom: 0.35rem;
  letter-spacing: 0.1em;
}

#desk-status-text {
  color: var(--bnb-gold);
  letter-spacing: 0.06em;
}

/* ---- NARRATIVE ---- */
.narrative {
  background: var(--paper);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.narrative-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1px 2fr;
  gap: 2.5rem;
  align-items: start;
}

.narrative-col p {
  font-family: var(--editorial);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--charcoal);
}

.narrative-col p + p {
  margin-top: 0.35rem;
}

.narrative-rule {
  background: var(--black);
  width: 1px;
  align-self: stretch;
}

.narrative-lead {
  font-size: 1.2rem !important;
  font-weight: 700;
  line-height: 1.5 !important;
  margin-bottom: 1rem;
}

.narrative-body {
  font-size: 0.95rem !important;
  color: rgba(10, 10, 10, 0.65) !important;
}

.narrative-body + .narrative-body {
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .narrative-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.25rem;
  }

  .narrative-rule {
    width: 100%;
    height: 2px;
  }
}

/* ---- DESK WIRE (X EMBED) ---- */
.wire {
  background: var(--charcoal);
  color: var(--cream);
  border-top: 3px solid var(--bnb-gold);
  border-bottom: 1px solid var(--black);
}

.wire-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

.wire-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(245, 240, 230, 0.15);
  padding-bottom: 0.75rem;
}

.wire-header h2 {
  font-family: var(--headline);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--bnb-gold);
}

.wire-source {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 230, 0.55);
  text-transform: uppercase;
}

.wire-lede {
  font-family: var(--editorial);
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(245, 240, 230, 0.85);
  margin-bottom: 1.5rem;
}

.wire-embed {
  display: flex;
  justify-content: center;
}

.wire-embed .twitter-tweet {
  margin: 0 auto !important;
}

@media (max-width: 768px) {
  .wire-inner {
    padding: 2rem 1rem 2.5rem;
  }
}

/* ---- CONTRACT ---- */
.contract {
  background: var(--paper);
  border-bottom: 1px solid var(--cream-dark);
}

.contract-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 1.5rem 2rem;
  align-items: center;
}

.contract-copy h2 {
  font-family: var(--headline);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.contract-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--charcoal-mid);
}

.contract-label strong {
  color: var(--red);
}

.contract-note {
  font-family: var(--editorial);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(10, 10, 10, 0.55);
  margin-top: 0.35rem;
}

.contract-box {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--black);
  background: var(--cream);
  grid-column: 1 / -1;
}

.contract-address {
  flex: 1;
  font-family: var(--mono);
  font-size: clamp(1rem, 3vw, 1.4rem);
  letter-spacing: 0.08em;
  padding: 1rem 1.25rem;
  word-break: break-all;
  color: var(--black);
}

.btn-copy {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 1rem 1.5rem;
  background: var(--black);
  color: var(--bnb-gold);
  border-left: 2px solid var(--black);
  position: relative;
  min-width: 90px;
  transition: background 0.15s;
}

.btn-copy:hover {
  background: var(--charcoal);
}

.btn-copy:focus-visible {
  outline: 2px solid var(--bnb-gold);
  outline-offset: -2px;
}

.btn-copy .copied-text {
  display: none;
}

.btn-copy.is-copied {
  background: var(--green);
  color: var(--cream);
}

.btn-copy.is-copied .copy-text {
  display: none;
}

.btn-copy.is-copied .copied-text {
  display: inline;
}

.contract-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  grid-column: 1 / -1;
}

.contract .btn-outline {
  color: var(--black);
  border-color: var(--black);
}

.contract .btn-outline:hover {
  background: var(--black);
  color: var(--cream);
}

/* ---- THESIS ---- */
.thesis {
  background: var(--cream);
  border-top: 4px double var(--black);
  border-bottom: 4px double var(--black);
}

.thesis-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 220px;
  grid-template-rows: auto auto auto;
  gap: 1.5rem 3rem;
}

.thesis-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 2px solid var(--black);
  padding-bottom: 0.75rem;
}

.thesis-header h2 {
  font-family: var(--editorial);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

.thesis-edition {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(10, 10, 10, 0.45);
}

.thesis-quote {
  grid-column: 1;
  border: none;
  padding: 0;
}

.thesis-main {
  font-family: var(--headline);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--black);
}

.thesis-body {
  grid-column: 1;
  border-left: 3px solid var(--black);
  padding-left: 1.5rem;
}

.thesis-text {
  font-family: var(--editorial);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 520px;
}

.thesis-notes {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.thesis-notes li {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(10, 10, 10, 0.5);
}

.thesis-notes li::before {
  content: "▸ ";
  color: var(--bnb-gold-dark);
}

.thesis-portrait {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: start;
  border: 1px solid var(--black);
  padding: 0.5rem;
  background: var(--paper);
  transform: rotate(1.5deg);
}

.thesis-portrait img {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.thesis-portrait figcaption {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  color: rgba(10, 10, 10, 0.45);
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ---- HISTORY ---- */
.history {
  background: var(--black);
  color: var(--cream);
  padding: 3rem 2rem;
}

.history h2 {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--bnb-gold);
  max-width: 1440px;
  margin: 0 auto 2rem;
}

.history-chart-wrap {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.history-chart {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(240, 185, 11, 0.2);
  background: var(--charcoal);
}

.crash-line {
  fill: none;
  stroke: var(--red);
  stroke-width: 2.5;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw-crash 2s ease forwards;
}

.hold-line {
  stroke: var(--bnb-gold);
  stroke-width: 3;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw-hold 1.5s ease 0.5s forwards;
}

@keyframes draw-crash {
  to { stroke-dashoffset: 0; }
}

@keyframes draw-hold {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .crash-line, .hold-line {
    stroke-dashoffset: 0;
    animation: none;
  }
}

.history-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin-top: 1.5rem;
  gap: 0;
  border-top: 2px solid rgba(240, 185, 11, 0.3);
}

.history-event {
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.history-event:last-child {
  border-right: none;
}

.history-event::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--red);
  border: 2px solid var(--black);
}

.history-event--today::before {
  background: var(--bnb-gold);
}

.history-year {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--bnb-gold);
  margin-bottom: 0.5rem;
}

.history-action {
  display: block;
  font-family: var(--headline);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.history-event--today .history-action {
  color: var(--bnb-gold);
}

.history-legend {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.legend-crash { color: var(--red); }
.legend-hold { color: var(--bnb-gold); }

/* ---- ANALYSIS ---- */
.analysis {
  background: var(--bnb-gold);
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.analysis-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: center;
}

.analysis-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.analysis h2 {
  font-family: var(--headline);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.analysis-statements p {
  font-family: var(--headline);
  font-size: clamp(1.15rem, 3.2vw, 2.35rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.analysis-statements p + p {
  margin-top: 0.65rem;
}

.analysis-hold {
  background: var(--black);
  color: var(--bnb-gold);
  display: inline-block;
  padding: 0.15rem 0.5rem;
  margin-top: 0.25rem;
}

.analysis-meta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.analysis-meta dt {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  opacity: 0.55;
}

.analysis-meta dd {
  font-family: var(--headline);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.rec-hold {
  color: var(--green);
  font-family: var(--mono) !important;
  font-size: 1.4rem !important;
  letter-spacing: 0.15em !important;
}

.analysis-visual {
  position: relative;
}

.analysis-visual img {
  width: 100%;
  border: 3px solid var(--black);
  position: relative;
  z-index: 1;
}

.tv-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.06) 2px,
    rgba(0, 0, 0, 0.06) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* ---- ROUTINE ---- */
.routine {
  background: var(--charcoal);
  color: var(--cream);
  padding: 3rem 2rem;
  position: relative;
}

.routine h2 {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--bnb-gold);
  max-width: 1440px;
  margin: 0 auto 2rem;
}

.routine-sequence {
  list-style: none;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(240, 185, 11, 0.25);
  background: var(--black);
}

.routine-sequence li {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 1rem 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  flex: 1 1 auto;
  min-width: 0;
}

.routine-sequence li.routine-arrow {
  flex: 0 0 auto;
  padding: 1rem 0.5rem;
  color: var(--bnb-gold);
  font-size: 1rem;
  border-right: none;
}

.routine-time {
  display: block;
  font-size: 0.55rem;
  color: rgba(245, 240, 230, 0.35);
  margin-bottom: 0.25rem;
  letter-spacing: 0.1em;
}

.routine-clock {
  position: absolute;
  top: 3rem;
  right: 2rem;
  font-family: var(--mono);
  text-align: right;
}

.clock-label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 230, 0.35);
}

.clock-display {
  font-size: 1rem;
  color: var(--bnb-gold);
  letter-spacing: 0.1em;
}

/* ---- HOW TO BUY ---- */
.how-to-buy {
  background: var(--paper);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--cream-dark);
}

.how-to-buy h2 {
  font-family: var(--headline);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.buy-steps {
  list-style: none;
  max-width: 900px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid var(--black);
}

.buy-steps li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--black);
  text-align: left;
}

.buy-steps li:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bnb-gold-dark);
  background: var(--black);
  padding: 0.25rem 0.5rem;
  min-width: 2.5rem;
  text-align: center;
  flex-shrink: 0;
}

.step-text {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.buy-link {
  margin-top: 0.5rem;
}

/* ---- ARCHIVES ---- */
.archives {
  background: var(--cream-dark);
  padding: 3rem 2rem;
  border-top: 3px solid var(--black);
}

.archives-header {
  max-width: 1440px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.archives-header h2 {
  font-family: var(--headline);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.archives-sub {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(10, 10, 10, 0.45);
}

.archives-wall {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.archive-item {
  background: var(--paper);
  border: 1px solid var(--black);
  padding: 0.75rem;
  position: relative;
}

.archive-banner {
  transform: rotate(-0.5deg);
  box-shadow: 4px 4px 0 var(--black);
}

.archive-logo {
  transform: rotate(2deg);
  margin-top: 2rem;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.archive-item figcaption {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: rgba(10, 10, 10, 0.5);
  margin-top: 0.6rem;
  line-height: 1.4;
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
  padding-top: 0.5rem;
}

/* ---- CLOSING ---- */
.closing {
  background: var(--black);
  color: var(--cream);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  border-top: 4px solid var(--bnb-gold);
}

.closing-bell {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.closing h2 {
  font-family: var(--headline);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.closing h2 span {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

.closing h2 span:last-child {
  color: var(--bnb-gold);
}

.closing-brand p {
  font-family: var(--editorial);
  font-size: 1rem;
}

.closing-ticker {
  font-family: var(--mono);
  font-size: 1.2rem !important;
  letter-spacing: 0.15em;
  color: var(--bnb-gold);
  margin: 0.25rem 0;
}

.closing-tag {
  font-style: italic;
  opacity: 0.65;
  margin-bottom: 2rem !important;
}

.closing-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--charcoal);
  color: rgba(245, 240, 230, 0.6);
  border-top: 1px solid rgba(240, 185, 11, 0.2);
  padding: 1.5rem 2rem;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 1rem 2rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  border: 1px solid rgba(240, 185, 11, 0.3);
}

.footer-brand p {
  font-family: var(--headline);
  font-size: 0.85rem;
  color: var(--cream);
  line-height: 1.3;
}

.footer-ticker {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--bnb-gold) !important;
  letter-spacing: 0.1em;
}

.footer-chain {
  font-family: var(--mono);
  font-size: 0.55rem;
  opacity: 0.5;
  letter-spacing: 0.08em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: flex-end;
}

.footer-nav a {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  transition: color 0.15s;
}

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

.footer-disclaimer {
  grid-column: 1 / -1;
  font-family: var(--editorial);
  font-size: 0.75rem;
  font-style: italic;
  text-align: center;
  opacity: 0.45;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- RESPONSIVE: TABLET ---- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .hero-visual {
    order: -1;
    max-height: 380px;
    overflow: hidden;
  }

  .hero-doge {
    width: min(380px, 80%);
    margin: 0 auto;
  }

  .hero-badge,
  .hero-stamp {
    display: none;
  }

  .desk-table-wrap {
    grid-template-columns: 1fr;
  }

  .desk-aside {
    border-left: none;
    border-top: 1px solid rgba(240, 185, 11, 0.2);
  }

  .thesis-inner {
    grid-template-columns: 1fr;
  }

  .thesis-portrait {
    grid-column: 1;
    grid-row: auto;
    max-width: 220px;
    margin-top: 1rem;
  }

  .analysis-inner {
    grid-template-columns: 1fr;
  }

  .analysis-visual {
    max-width: 280px;
  }

  .archives-wall {
    grid-template-columns: 1fr;
  }

  .archive-logo {
    margin-top: 0;
    max-width: 300px;
  }

  .routine-clock {
    position: static;
    text-align: left;
    margin-top: 1.5rem;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---- RESPONSIVE: MOBILE ---- */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    border-bottom: 2px solid var(--bnb-gold);
    padding: 0.5rem 0;
    z-index: 999;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header-nav {
    position: relative;
  }

  .header-actions .btn-outline:not(.btn-x) {
    display: none;
  }

  .hero-line--1,
  .hero-line--2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .hero-meta {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-cta .btn {
    flex: 1 1 100%;
    text-align: center;
  }

  .desk-table th,
  .desk-table td {
    padding: 0.6rem 1rem;
    font-size: 0.72rem;
  }

  .desk-table {
    display: block;
    overflow-x: auto;
  }

  .contract-inner {
    grid-template-columns: 1fr;
    padding: 2rem 1.25rem;
  }

  .thesis-main {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .history-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .history-event:nth-child(2) {
    border-right: none;
  }

  .routine-sequence {
    flex-direction: column;
    align-items: stretch;
  }

  .routine-sequence li {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .routine-sequence li.routine-arrow {
    text-align: center;
    padding: 0.25rem;
    border-bottom: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 375px) {
  .header-inner {
    padding: 0 0.75rem;
  }

  .header-name {
    font-size: 0.8rem;
  }

  .hero-inner {
    padding: 1.5rem 1rem;
  }

  .contract-address {
    font-size: 0.9rem;
    padding: 0.75rem;
  }

  .btn-copy {
    padding: 0.75rem 1rem;
    min-width: 70px;
  }

  .history-timeline {
    grid-template-columns: 1fr;
  }

  .history-event {
    border-right: none;
  }
}
