/* Rook marketing site — matches dashboard cyberpunk tokens */
:root {
  --bg-deep: #0d0221;
  --bg-darker: #05010f;
  --cyan: #05d9e8;
  --pink: #ff2a6d;
  --yellow: #fcee09;
  --green: #39ff14;
  --muted: #94a3b8;
  --text: #e2e8f0;
  --panel: rgba(13, 2, 33, 0.88);
  --border: rgba(100, 116, 139, 0.35);
  --max: 1120px;
  --radius: 14px;
  --font-mono: "JetBrains Mono", "Consolas", "Courier New", monospace;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 120% 80% at 0% 0%, rgba(255, 42, 109, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse 90% 70% at 100% 10%, rgba(5, 217, 232, 0.1) 0%, transparent 42%),
    linear-gradient(165deg, var(--bg-darker) 0%, var(--bg-deep) 40%, #0a1628 100%);
  min-height: 100vh;
}

/* Members host not live — hide Login/Account CTAs until site-nav sets .members-ctas-on */
html:not(.members-ctas-on) [data-nav="login"],
html:not(.members-ctas-on) [data-nav="account"],
html:not(.members-ctas-on) [data-members-cta] {
  display: none !important;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(5, 1, 15, 0.82);
  border-bottom: 1px solid rgba(255, 42, 109, 0.25);
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--cyan);
  text-decoration: none;
  z-index: 2;
}

.logo-mark {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(5, 217, 232, 0.4));
}

.logo-mark-img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(5, 217, 232, 0.35);
  background: rgba(5, 1, 15, 0.9);
  flex-shrink: 0;
}

/* Mobile-first: hamburger + full-width drawer */
.nav-toggle {
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(5, 217, 232, 0.35);
  border-radius: 10px;
  background: rgba(5, 217, 232, 0.08);
  color: var(--cyan);
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(5, 217, 232, 0.16);
  outline: 2px solid rgba(5, 217, 232, 0.45);
  outline-offset: 2px;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.site-nav.is-open .nav-toggle-bars {
  background: transparent;
}

.site-nav.is-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-nav.is-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-links {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0.15rem;
  width: 100%;
  margin: 0.35rem 0 0;
  padding: 0.65rem 0.75rem 0.85rem;
  border: 1px solid rgba(255, 42, 109, 0.22);
  border-radius: 12px;
  background: rgba(5, 1, 15, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.site-nav.is-open .nav-links {
  display: flex;
}

.nav-links a {
  color: var(--muted);
  font-size: 1rem;
  text-decoration: none;
  padding: 0.7rem 0.55rem;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cyan);
  background: rgba(5, 217, 232, 0.08);
}

.nav-links a[aria-current="page"] {
  color: var(--cyan);
}

.nav-links a.btn {
  margin-top: 0.35rem;
  justify-content: center;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 861px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 1.25rem;
  }

  .nav-links a {
    font-size: 0.92rem;
    padding: 0;
    border-radius: 0;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: transparent;
  }

  .nav-links a.btn {
    margin-top: 0;
  }

  body.nav-open {
    overflow: auto;
  }
}

.live-sync-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(5, 217, 232, 0.15);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.55);
  flex-shrink: 0;
}

.live-sync-ts {
  margin-left: auto;
  color: var(--cyan);
}

.early-access-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 0.35rem;
  margin-bottom: 0.25rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(252, 238, 9, 0.35);
  background: linear-gradient(
    90deg,
    rgba(252, 238, 9, 0.08) 0%,
    rgba(255, 42, 109, 0.06) 55%,
    rgba(5, 217, 232, 0.05) 100%
  );
  box-shadow: 0 0 24px rgba(252, 238, 9, 0.08);
}

/* Status chip only — must not look like a button (CTA is .early-access-link). */
.early-access-badge {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(252, 238, 9, 0.85);
  background: transparent;
  border: 1px solid rgba(252, 238, 9, 0.35);
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
  pointer-events: none;
  user-select: none;
  cursor: default;
}

.early-access-copy {
  flex: 1 1 16rem;
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.45;
}

.early-access-copy strong {
  color: var(--yellow);
  font-weight: 700;
}

.early-access-link {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bg-darker);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(5, 217, 232, 0.25);
}

.early-access-link:hover {
  background: #3ae4f0;
  text-decoration: none;
  filter: brightness(1.05);
}

.building-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.building-now,
.building-shipped {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
}

.building-now h3,
.building-shipped h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  color: var(--cyan);
}

.building-now p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.shipped-list .muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.building-discoveries {
  margin-top: 1.25rem;
}

.discoveries-kill {
  font-style: italic;
  margin: 0.5rem 0 0.75rem;
  border-left: 3px solid var(--accent);
  padding-left: 0.75rem;
}

.discoveries-list li::before {
  content: "◆ ";
  color: var(--accent);
  font-size: 0.75rem;
}

.shipped-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.shipped-list li {
  margin-bottom: 0.45rem;
}

.shipped-list .muted {
  color: var(--muted);
  opacity: 0.85;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.roadmap-col {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  min-height: 12rem;
}

.roadmap-col h3 {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.timeline-active {
  margin-bottom: 0.5rem;
  border: 1px solid rgba(80, 220, 160, 0.35);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  background: rgba(40, 120, 90, 0.12);
}
.timeline-active .timeline-day {
  color: #6dffb0;
}

.roadmap-now h3 {
  color: var(--green);
}

.roadmap-next h3 {
  color: var(--cyan);
}

.roadmap-later h3 {
  color: var(--pink);
}

.roadmap-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.roadmap-list li {
  margin-bottom: 0.55rem;
}

.roadmap-list-cards li {
  list-style: none;
  margin-left: -1.1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(5, 1, 15, 0.45);
  border: 1px solid rgba(100, 116, 139, 0.25);
  margin-bottom: 0.5rem;
}

.roadmap-card-title {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

.roadmap-card-gate {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.roadmap-private {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 42, 109, 0.35);
  background: rgba(255, 42, 109, 0.05);
}

.roadmap-private h4 {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: var(--pink);
}

.roadmap-private-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* IP protection track (roadmap section) */
.ip-protection-track {
  margin-top: 2.5rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(5, 217, 232, 0.28);
  border-radius: var(--radius);
  background: rgba(5, 1, 15, 0.55);
}

.ip-protection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.ip-protection-header h3 {
  margin: 0;
  font-family: var(--font-mono);
  color: var(--cyan);
  font-size: 1.05rem;
}

.ip-protection-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.ip-protection-badge.good {
  border-color: rgba(57, 255, 20, 0.45);
  color: var(--green);
}

.ip-protection-badge.warn {
  border-color: rgba(252, 238, 9, 0.45);
  color: var(--yellow);
}

.progress-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 1.25rem;
  flex-wrap: wrap;
}

.progress-bar {
  flex: 1;
  min-width: 160px;
  height: 10px;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.35);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transition: width 0.35s ease;
}

.progress-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
}

.ip-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.ip-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--border);
  font-size: 0.88rem;
}

.ip-step.pass {
  border-color: rgba(57, 255, 20, 0.25);
}

.ip-step-id {
  font-family: var(--font-mono);
  color: var(--cyan);
  font-weight: 600;
}

.ip-step-label {
  color: var(--text);
}

.ip-step-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
}

.ip-step.pass .ip-step-status {
  color: var(--green);
}

.ip-tier-b-title {
  margin: 1.5rem 0 0.65rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ip-tier-b-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.ip-tier-b-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px dashed var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.ip-tier-b-gate {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--yellow);
  white-space: nowrap;
}

.ip-protection-foot {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .ip-step {
    grid-template-columns: 2.25rem 1fr;
  }
  .ip-step-status {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .building-grid {
    grid-template-columns: 1fr;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(255, 42, 109, 0.9), rgba(255, 42, 109, 0.65));
  color: #fff;
  border-color: rgba(255, 42, 109, 0.6);
  box-shadow: 0 0 20px rgba(255, 42, 109, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 0 28px rgba(255, 42, 109, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border-color: rgba(5, 217, 232, 0.45);
}

.btn-ghost:hover {
  background: rgba(5, 217, 232, 0.08);
}

.btn-login {
  background: rgba(5, 217, 232, 0.1);
  color: var(--cyan);
  border-color: rgba(5, 217, 232, 0.55);
  box-shadow: 0 0 14px rgba(5, 217, 232, 0.15);
}

.btn-login:hover {
  background: rgba(5, 217, 232, 0.18);
  box-shadow: 0 0 20px rgba(5, 217, 232, 0.28);
}

.nav-links a[data-nav="account"] {
  font-family: var(--font-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted, #94a3b8);
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-brand {
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(5, 217, 232, 0.28);
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(5, 217, 232, 0.12) 0%, transparent 65%),
    rgba(5, 1, 15, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.hero-brand img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(58vh, 520px);
  object-fit: contain;
  object-position: center top;
}

.hero-brand-caption {
  margin: 0;
  padding: 0.65rem 0.9rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid rgba(5, 217, 232, 0.18);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  line-height: 1.12;
  margin: 0 0 0.75rem;
  font-weight: 800;
}

.hero h1 .accent {
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(5, 217, 232, 0.35);
}

.hero h2.hero-sub {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.35;
  font-weight: 600;
  color: var(--text);
  max-width: 34rem;
  margin: 0 0 1rem;
}

.hero-orient {
  margin: 0 0 1rem;
  max-width: 38rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text);
}

.orient-bullets {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  max-width: 40rem;
}

.orient-bullets li {
  margin: 0 0 0.55rem;
  padding: 0.65rem 0.85rem;
  border-left: 2px solid rgba(5, 217, 232, 0.45);
  background: rgba(5, 217, 232, 0.05);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.orient-bullets strong {
  color: var(--cyan);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

/* Dashboard preview card */
.preview-card {
  background: linear-gradient(145deg, rgba(13, 2, 33, 0.95), rgba(26, 10, 46, 0.78));
  border: 1px solid rgba(255, 42, 109, 0.28);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.preview-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
}

.preview-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: rgba(57, 255, 20, 0.12);
  color: var(--green);
  border: 1px solid rgba(57, 255, 20, 0.4);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.metric {
  background: rgba(5, 1, 15, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem;
}

.metric-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.metric-value {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--cyan);
}

.metric-value.good {
  color: var(--green);
}

.metric-value.warn {
  color: var(--yellow);
}

.skip-bar {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 10px;
  background: rgba(252, 238, 9, 0.06);
  border: 1px solid rgba(252, 238, 9, 0.35);
  font-size: 0.88rem;
}

.skip-bar strong {
  color: var(--yellow);
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

section h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.section-intro {
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 2rem;
}

/* Manifesto */
.manifesto {
  border-block: 1px solid rgba(255, 42, 109, 0.2);
  background: rgba(13, 2, 33, 0.4);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.manifesto-item {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
}

.manifesto-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--cyan);
}

.manifesto-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.manifesto-item.never {
  border-color: rgba(255, 42, 109, 0.45);
  box-shadow: inset 3px 0 0 var(--pink);
}

/* Compare table */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

table.compare th,
table.compare td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(100, 116, 139, 0.2);
}

table.compare th {
  background: rgba(5, 1, 15, 0.8);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

table.compare td:first-child {
  color: var(--text);
  font-weight: 500;
}

table.compare .them {
  color: var(--muted);
}

table.compare .us {
  color: var(--green);
  font-weight: 500;
}

table.compare tr:last-child td {
  border-bottom: none;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.pillar {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(13, 2, 33, 0.92), rgba(10, 22, 40, 0.85));
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.pillar:hover {
  border-color: rgba(5, 217, 232, 0.4);
}

.pillar-icon {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--pink);
  margin-bottom: 0.75rem;
}

.pillar h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.pillar p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Timeline */
.timeline {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline-step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(100, 116, 139, 0.2);
  background: rgba(13, 2, 33, 0.5);
}

.timeline-step:last-child {
  border-bottom: none;
}

.timeline-day {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--pink);
  font-weight: 700;
}

.timeline-step h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.timeline-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.price-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(5, 217, 232, 0.5);
  box-shadow: 0 0 30px rgba(5, 217, 232, 0.12);
}

.price-card h3 {
  margin: 0 0 0.25rem;
}

.price {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  color: var(--cyan);
  margin: 0.5rem 0 1rem;
}

.price span {
  font-size: 0.85rem;
  color: var(--muted);
}

.price-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  flex: 1;
  font-size: 0.9rem;
  color: var(--muted);
}

.price-card li {
  margin-bottom: 0.4rem;
}

.price-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1.5rem;
  font-style: italic;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--cyan);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item div {
  padding: 0 1.25rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* CTA band */
.cta-band {
  padding: 3rem 0;
  text-align: center;
}

.cta-inner {
  padding: 2.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 42, 109, 0.15), rgba(5, 217, 232, 0.1));
  border: 1px solid rgba(255, 42, 109, 0.35);
}

.cta-inner h2 {
  margin-bottom: 0.75rem;
}

.cta-inner p {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 42, 109, 0.2);
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--text);
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.4rem;
}

.disclaimer {
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 42, 109, 0.08);
  border: 1px solid rgba(255, 42, 109, 0.25);
  font-size: 0.8rem;
  line-height: 1.5;
}

.footer-brand-sub {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--muted, #94a3b8);
  letter-spacing: 0.02em;
}

.footer-social {
  margin: 0.85rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
}

.footer-social a {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(5, 217, 232, 0.35);
  padding-bottom: 1px;
}

.footer-social a:hover {
  color: var(--text);
  border-bottom-color: var(--pink);
  text-decoration: none;
}

.footer-legal {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted, #94a3b8);
}

/* North star + vision + goals */
.north-star-band {
  padding: 4rem 0 3rem;
  background:
    linear-gradient(180deg, rgba(5, 217, 232, 0.06) 0%, transparent 100%),
    rgba(5, 1, 15, 0.35);
  border-bottom: 1px solid rgba(5, 217, 232, 0.15);
}

.north-star-band h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  max-width: 36rem;
  margin: 0;
}

.north-star-orient {
  margin: 0 0 0.75rem;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

/* The Great Review — hard / right decision callout */
.great-review {
  margin: 1.5rem 0 1.75rem;
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(252, 238, 9, 0.4);
  background:
    linear-gradient(135deg, rgba(252, 238, 9, 0.1) 0%, rgba(255, 42, 109, 0.08) 45%, rgba(5, 217, 232, 0.06) 100%);
  box-shadow: 0 0 40px rgba(252, 238, 9, 0.08);
}

.great-review-badge {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.25rem 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(252, 238, 9, 0.45);
  border-radius: 999px;
  background: rgba(252, 238, 9, 0.08);
}

.great-review h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  line-height: 1.2;
  color: var(--yellow);
}

.great-review-lead {
  margin: 0 0 0.85rem;
  max-width: 44rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--text);
  font-weight: 500;
}

.great-review-stance {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

.pivot-arc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 0 1.75rem;
}

.pivot-card {
  padding: 1.1rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(100, 116, 139, 0.35);
  background: rgba(5, 1, 15, 0.45);
}

.pivot-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

.pivot-card-label {
  margin: 0 0 0.55rem !important;
  font-family: var(--font-mono);
  font-size: 0.72rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan) !important;
}

.pivot-card-emphasis {
  border-color: rgba(252, 238, 9, 0.4);
  background: rgba(252, 238, 9, 0.06);
}

.pivot-card-emphasis .pivot-card-label {
  color: var(--yellow) !important;
}

.pivot-card-emphasis p {
  color: var(--text);
}

@media (max-width: 860px) {
  .pivot-arc {
    grid-template-columns: 1fr;
  }
}

.north-star-lead {
  margin: 0.85rem 0 0;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
}

.north-star-tagline {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--cyan);
  margin: 0.75rem 0 0;
}

.north-star-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  margin-top: 2rem;
}

.viability-ladder-wrap h3,
.principles-wrap h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.viability-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.viability-badge.good {
  border-color: rgba(57, 255, 20, 0.45);
  color: var(--green);
}

.viability-badge.warn {
  border-color: rgba(252, 238, 9, 0.45);
  color: var(--yellow);
}

.ladder-caption {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.viability-ladder {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.ladder-step {
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.45;
  background: rgba(15, 23, 42, 0.45);
}

.ladder-step.past {
  opacity: 0.55;
  border-color: rgba(57, 255, 20, 0.2);
}

.ladder-step.current {
  border-color: rgba(252, 238, 9, 0.45);
  background: rgba(252, 238, 9, 0.06);
  box-shadow: 0 0 20px rgba(252, 238, 9, 0.08);
}

.ladder-step.future {
  opacity: 0.85;
}

.ladder-id {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cyan);
  display: inline-block;
  min-width: 11rem;
}

.principles-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.principles-list li {
  font-size: 0.9rem;
  line-height: 1.45;
  padding-left: 0.85rem;
  border-left: 2px solid rgba(255, 42, 109, 0.35);
}

.vision-phases {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.vision-phase {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.4);
}

.vision-phase-id {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--pink);
  font-size: 0.95rem;
}

.vision-phase h4 {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
}

.vision-phase p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.never-ship {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 42, 109, 0.25);
  background: rgba(255, 42, 109, 0.05);
}

.never-ship h4 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: var(--pink);
}

.never-ship-list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.never-ship-list li {
  margin-bottom: 0.35rem;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.goals-col {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
}

.goals-col h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.goals-horizon {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

.goals-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.goals-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.88rem;
}

.goals-list li span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.audience-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.45);
}

.audience-card.primary {
  border-color: rgba(5, 217, 232, 0.35);
  background: rgba(5, 217, 232, 0.04);
}

.audience-card.muted {
  opacity: 0.88;
}

.audience-card h3 {
  margin: 0 0 0.65rem;
  font-size: 0.98rem;
}

.audience-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* SILENCESTORM roadmap band */
.silencestorm-band {
  border-top: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
}

.silencestorm-band .early-access-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.silencestorm-tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent, #22d3ee);
}

.footer-trademarks {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text-muted, #94a3b8);
  margin: 1rem 0 0.75rem;
  max-width: 52rem;
}

/* Truth Certificate sample */
.cert-sample {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(13, 2, 33, 0.95), rgba(10, 22, 40, 0.9));
  border: 1px solid rgba(57, 255, 20, 0.35);
  box-shadow: inset 3px 0 0 var(--green);
}

.cert-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cert-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  background: rgba(57, 255, 20, 0.15);
  color: var(--green);
  border: 1px solid rgba(57, 255, 20, 0.45);
}

.cert-id {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
}

.cert-lead {
  margin: 0 0 1rem;
  color: var(--text);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cert-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.65rem;
  min-width: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  background: rgba(5, 1, 15, 0.55);
  border: 1px solid var(--border);
  font-size: 0.88rem;
}

.cert-row span {
  color: var(--muted);
  flex: 0 0 auto;
  max-width: 42%;
}

.cert-row strong {
  flex: 1 1 auto;
  min-width: 0;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cert-row strong.good {
  color: var(--green);
}

.cert-row strong.warn {
  color: var(--yellow);
}

@media (max-width: 720px) {
  .cert-row-viability,
  .cert-row-focus {
    grid-column: 1 / -1;
  }
}

.cert-quote {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--cyan);
  background: rgba(5, 217, 232, 0.06);
  font-size: 0.9rem;
  color: var(--muted);
}

.cert-fine {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.cert-fine code {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cyan);
}

/* Waitlist feedback */
.signup-consent {
  margin: 0.85rem auto 0;
  max-width: 32rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

/* Legal draft pages */
.legal-page {
  padding: 3rem 0 4rem;
}

.legal-inner {
  max-width: 44rem;
}

.legal-inner h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
}

.legal-inner h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  color: var(--cyan);
}

.legal-inner p,
.legal-inner li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.legal-inner ul {
  padding-left: 1.2rem;
}

.legal-meta {
  font-size: 0.88rem !important;
  margin-bottom: 1.25rem !important;
}

.legal-banner {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(252, 238, 9, 0.35);
  background: rgba(252, 238, 9, 0.07);
  color: var(--text) !important;
  font-size: 0.92rem !important;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.25rem;
  font-size: 0.88rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid rgba(100, 116, 139, 0.35);
  padding: 0.55rem 0.65rem;
  text-align: left;
  vertical-align: top;
  color: var(--muted);
}

.legal-table th {
  color: var(--cyan);
  background: rgba(5, 217, 232, 0.06);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-nav {
  margin-top: 2.5rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(100, 116, 139, 0.35);
  font-size: 0.9rem !important;
}

.waitlist-msg {
  margin: 1rem auto 0;
  max-width: 28rem;
  font-size: 0.9rem;
  min-height: 1.25rem;
}

.waitlist-msg.success {
  color: var(--green);
}

.waitlist-msg.warn {
  color: var(--yellow);
}

.waitlist-msg.bad {
  color: var(--pink);
}

@media (max-width: 860px) {
  .early-access-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .early-access-link {
    width: 100%;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-brand img {
    max-height: min(42vh, 360px);
  }

  .north-star-grid,
  .goals-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .ladder-id {
    display: block;
    min-width: 0;
    margin-bottom: 0.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Glossary */
.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;
}

.glossary-page {
  padding-bottom: 3rem;
}

.glossary-hero {
  padding: 2.5rem 0 1.25rem;
}

.glossary-lead {
  max-width: 36rem;
  margin-bottom: 1.25rem;
}

.glossary-search-label {
  display: block;
  max-width: 28rem;
}

.glossary-search {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(5, 217, 232, 0.35);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  outline: none;
}

.glossary-search:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(5, 217, 232, 0.15);
}

.glossary-filter-status {
  min-height: 1.25rem;
  margin: 0.5rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}

.glossary-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  position: sticky;
  top: 0.65rem;
  z-index: 5;
  padding: 0.55rem 0;
  background: linear-gradient(
    180deg,
    rgba(6, 10, 18, 0.96) 0%,
    rgba(6, 10, 18, 0.88) 70%,
    transparent 100%
  );
}

.glossary-cat {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cyan);
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(5, 217, 232, 0.35);
  border-radius: 8px;
  background: rgba(5, 217, 232, 0.06);
}

.glossary-cat:hover {
  background: rgba(5, 217, 232, 0.14);
  text-decoration: none;
}

.glossary-body {
  max-width: 46rem;
}

.glossary-section {
  margin-bottom: 2.75rem;
  scroll-margin-top: 4.5rem;
}

.glossary-section-head h2 {
  margin: 0.15rem 0 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.glossary-section-head p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.glossary-list {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.glossary-term {
  margin: 0;
  padding: 0.95rem 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.glossary-term dt {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--yellow);
  margin: 0 0 0.4rem;
  scroll-margin-top: 5rem;
}

.glossary-term dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.glossary-term dd strong {
  color: var(--text);
}

.glossary-empty {
  padding: 1.25rem;
  border: 1px dashed rgba(252, 238, 9, 0.35);
  border-radius: 12px;
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.glossary-foot {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .glossary-cats {
    top: 0.35rem;
    gap: 0.4rem;
  }

  .glossary-cat {
    font-size: 0.68rem;
    padding: 0.35rem 0.55rem;
  }
}

/* Desk Diary */

/* Journey timeline — horizontal, neon */
.blog-journey {
  padding: 0 0 1.75rem;
}

.blog-journey-inner {
  max-width: min(100% - 2rem, 1120px);
  margin-inline: auto;
}

.blog-journey-head {
  margin-bottom: 1rem;
}

.blog-journey-head h2 {
  margin: 0.25rem 0 0.45rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: #e2e8f0;
}

.blog-journey-lead {
  margin: 0;
  max-width: 40rem;
  color: #94a3b8;
  line-height: 1.55;
}

.blog-timeline-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.75rem 0.15rem 1.25rem;
  scrollbar-color: #05d9e8 rgba(0, 0, 0, 0.35);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.blog-timeline {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: max-content;
  padding: 1.1rem 0.5rem 0.35rem;
}

.blog-timeline::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 2.15rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 42, 109, 0.15),
    rgba(5, 217, 232, 0.85),
    rgba(252, 238, 9, 0.75),
    rgba(57, 255, 20, 0.65),
    rgba(255, 42, 109, 0.55)
  );
  box-shadow: 0 0 18px rgba(5, 217, 232, 0.35);
  z-index: 0;
}

.blog-timeline-node {
  position: relative;
  z-index: 1;
  flex: 0 0 11.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 0 0.45rem;
}

.blog-timeline-node:hover {
  text-decoration: none;
}

.blog-timeline-dot {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 2px solid #05d9e8;
  background: #05010f;
  box-shadow: 0 0 0 4px rgba(5, 217, 232, 0.12), 0 0 16px rgba(5, 217, 232, 0.45);
  margin-bottom: 0.85rem;
}

.blog-timeline-node.tone-origin .blog-timeline-dot {
  border-color: #ff2a6d;
  box-shadow: 0 0 0 4px rgba(255, 42, 109, 0.15), 0 0 16px rgba(255, 42, 109, 0.45);
}

.blog-timeline-node.tone-pivot .blog-timeline-dot,
.blog-timeline-node.tone-kill .blog-timeline-dot {
  border-color: #fcee09;
  box-shadow: 0 0 0 4px rgba(252, 238, 9, 0.15), 0 0 16px rgba(252, 238, 9, 0.4);
}

.blog-timeline-node.tone-now .blog-timeline-dot {
  border-color: #39ff14;
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.15), 0 0 16px rgba(57, 255, 20, 0.45);
}

.blog-timeline-card {
  width: 100%;
  padding: 0.75rem 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(5, 217, 232, 0.3);
  background: linear-gradient(165deg, rgba(13, 2, 33, 0.96), rgba(5, 1, 15, 0.9));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  min-height: 9.5rem;
}

a.blog-timeline-node:hover .blog-timeline-card {
  transform: translateY(-3px);
  border-color: rgba(5, 217, 232, 0.7);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(5, 217, 232, 0.15);
}

.blog-timeline-date {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff2a6d;
  margin-bottom: 0.35rem;
}

.blog-timeline-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  line-height: 1.3;
  color: #e2e8f0;
}

.blog-timeline-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #94a3b8;
}

.blog-timeline-hint {
  margin: 0.35rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #05d9e8;
}

.blog-timeline-node.is-pending .blog-timeline-card {
  opacity: 0.72;
  border-style: dashed;
}

.blog-page {
  padding-bottom: 3.5rem;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(5, 217, 232, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(255, 42, 109, 0.06), transparent 50%);
}

.blog-hero {
  padding: 2.75rem 0 1.5rem;
}

.blog-hero h1 {
  margin: 0.35rem 0 0.85rem;
  letter-spacing: -0.02em;
}

.blog-hero .hero-lead {
  max-width: 38rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  line-height: 1.55;
}

.blog-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 44rem;
  margin-bottom: 0.35rem;
}

.blog-modes,
.blog-sort {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.blog-mode,
.blog-sort-btn {
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(252, 238, 9, 0.35);
  background: rgba(252, 238, 9, 0.06);
  color: #fde68a;
  cursor: pointer;
}

.blog-mode.is-active,
.blog-sort-btn.is-active {
  border-color: rgba(252, 238, 9, 0.75);
  background: rgba(252, 238, 9, 0.16);
  color: #fffbeb;
  box-shadow: 0 0 14px rgba(252, 238, 9, 0.2);
}

.blog-filter-count {
  opacity: 0.75;
  font-weight: 500;
  margin-left: 0.15rem;
}

.blog-sort-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.blog-era-clear,
.blog-filter-clear {
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 42, 109, 0.45);
  background: rgba(255, 42, 109, 0.08);
  color: #fda4af;
  cursor: pointer;
}

.blog-featured {
  padding: 0 0 1.5rem;
}

.blog-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.85rem;
  margin-top: 0.65rem;
}

.blog-featured-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(5, 217, 232, 0.28);
  background: linear-gradient(165deg, rgba(5, 217, 232, 0.08), rgba(0, 0, 0, 0.35));
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.blog-featured-card:hover {
  text-decoration: none;
  border-color: rgba(5, 217, 232, 0.65);
  transform: translateY(-1px);
}

.blog-featured-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.35rem;
}

.blog-featured-card h3 {
  margin: 0.35rem 0 0;
  font-size: 0.98rem;
  line-height: 1.35;
  color: #e2e8f0;
}

.blog-journey-hint {
  margin: 0.55rem 0 0;
  font-size: 0.85rem;
}

.blog-timeline-node {
  cursor: pointer;
}

.blog-timeline-node.is-era-active .blog-timeline-card {
  border-color: rgba(5, 217, 232, 0.75);
  box-shadow: 0 0 22px rgba(5, 217, 232, 0.25);
}

.blog-timeline-node.is-search-dim {
  opacity: 0.35;
}

.blog-timeline-read {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
}

.blog-timeline-read:hover {
  text-decoration: underline;
}

.blog-archive-head {
  margin-bottom: 1rem;
}

.blog-archive-title {
  margin: 0.25rem 0 0;
  font-size: 1.35rem;
  color: #e2e8f0;
}

.blog-month-group {
  margin-bottom: 1.75rem;
}

.blog-month-heading {
  margin: 0 0 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  padding-bottom: 0.45rem;
}

/* Compact spine on small screens — shorter cards */
@media (max-width: 720px) {
  .blog-timeline-node {
    flex-basis: 8.5rem;
  }

  .blog-timeline-card p:not(.blog-timeline-hint) {
    display: none;
  }

  .blog-timeline-card h3 {
    font-size: 0.82rem;
  }

  .blog-toolbar {
    max-width: 100%;
  }
}


.blog-search-label {
  display: block;
  margin: 0;
}

.blog-search {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(5, 217, 232, 0.35);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  outline: none;
  color-scheme: dark;
}

.blog-search::placeholder {
  color: rgba(148, 163, 184, 0.75);
}

.blog-search:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(5, 217, 232, 0.15);
}

.blog-search::-webkit-search-decoration,
.blog-search::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
}

.blog-filter {
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.42rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(5, 217, 232, 0.35);
  background: rgba(5, 217, 232, 0.06);
  color: var(--cyan);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.blog-filter:hover {
  background: rgba(5, 217, 232, 0.14);
  color: var(--cyan);
}

.blog-filter.is-active {
  color: var(--bg-deep);
  background: var(--cyan);
  border-color: var(--cyan);
}

.blog-filter-status {
  min-height: 1.2rem;
  margin: 0.35rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}

.blog-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: 1.75rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.2rem 1.2rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(13, 2, 33, 0.95), rgba(5, 1, 15, 0.88));
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 100%;
}

.blog-card:hover {
  border-color: rgba(5, 217, 232, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}

.blog-card h2 {
  margin: 0.15rem 0 0.25rem;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--text);
}

.blog-card .muted {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  flex: 1;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.15rem 0 0.2rem;
}

.blog-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(5, 217, 232, 0.35);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  background: rgba(5, 217, 232, 0.06);
}

.blog-post {
  padding: 2.25rem 0 2.5rem;
  max-width: 720px;
}

.blog-post > .section-label {
  margin-bottom: 0.35rem;
}

.blog-post h1 {
  margin: 0.2rem 0 0.85rem;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 38rem;
}

.blog-post h1 .accent {
  display: inline-block;
  margin-top: 0.2rem;
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(5, 217, 232, 0.35);
}

/* Intro — coloured panel, separate paragraphs (not one dense slab) */
.blog-intro-panel {
  margin: 1.15rem 0 1.25rem;
  padding: 1.15rem 1.2rem 1.05rem;
  max-width: 40rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 42, 109, 0.35);
  border-left: 3px solid var(--pink);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(5, 217, 232, 0.1), transparent 55%),
    linear-gradient(145deg, rgba(13, 2, 33, 0.98), rgba(5, 1, 15, 0.92));
  box-shadow:
    0 0 28px rgba(255, 42, 109, 0.08),
    0 14px 36px rgba(0, 0, 0, 0.35);
}

.blog-intro-eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
}

.blog-intro-para {
  margin: 0 0 1.15rem;
  font-size: 1.06rem;
  line-height: 1.9;
  letter-spacing: 0.015em;
  color: var(--text);
}

.blog-intro-para:last-child {
  margin-bottom: 0;
}

.blog-intro-para:first-of-type {
  color: #f1f5f9;
  font-size: 1.12rem;
  line-height: 1.85;
}

/* Historic journey posts — more air, no present-tense pulse clutter */
.blog-post-historic .blog-intro-panel {
  margin-bottom: 1.5rem;
}

.blog-post-historic .blog-intro-para {
  margin-bottom: 1.35rem;
  line-height: 1.95;
}

.blog-post-historic .blog-block {
  margin-bottom: 0.25rem;
}

.blog-post-historic .blog-prose {
  line-height: 1.85;
  font-size: 1.05rem;
}

.blog-post-historic .blog-section-lead {
  margin-bottom: 0.95rem;
  line-height: 1.65;
}

.blog-em-cyan {
  color: var(--cyan);
  font-weight: 600;
  text-shadow: 0 0 14px rgba(5, 217, 232, 0.25);
}

.blog-em-pink {
  color: var(--pink);
  font-weight: 600;
}

.blog-em-yellow {
  color: var(--yellow);
  font-weight: 600;
}

.blog-em-green {
  color: var(--green);
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 0.92em;
  letter-spacing: 0.04em;
}

/* legacy single-slab class — keep readable if old HTML cached */
.blog-intro {
  margin: 1rem 0 0.85rem;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.85;
  letter-spacing: 0.01em;
  color: var(--text);
}

.blog-disclaimer {
  margin: 0 0 1.35rem;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* Override global section { padding: 4rem 0 } — that emptied the diary */
.blog-post section,
.blog-post .blog-block {
  padding: 0;
  margin: 0;
}

.blog-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.blog-block {
  padding: 0.95rem 1.05rem 1rem !important;
  border-radius: var(--radius);
  border: 1px solid rgba(5, 217, 232, 0.28);
  background:
    linear-gradient(145deg, rgba(13, 2, 33, 0.95), rgba(5, 1, 15, 0.88)),
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(5, 217, 232, 0.08), transparent 55%);
  box-shadow:
    0 0 0 1px rgba(255, 42, 109, 0.06) inset,
    0 12px 32px rgba(0, 0, 0, 0.28);
}

.blog-block h2 {
  margin: 0 0 0.4rem;
  padding: 0 0 0.5rem;
  border-bottom: 1px solid rgba(5, 217, 232, 0.22);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(5, 217, 232, 0.35);
}

.blog-section-lead {
  margin: 0 0 0.7rem;
  max-width: 36rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.blog-prose {
  margin: 0;
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
}

.blog-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-list li {
  margin: 0 0 0.45rem;
  padding: 0.55rem 0.75rem;
  border-left: 2px solid rgba(5, 217, 232, 0.45);
  background: rgba(5, 217, 232, 0.05);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.blog-list li:last-child {
  margin-bottom: 0;
}

.blog-kill {
  margin: 0.15rem 0 0;
  padding: 0.95rem 1.05rem;
  border-left: 3px solid var(--pink);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 42, 109, 0.1);
  box-shadow: 0 0 24px rgba(255, 42, 109, 0.08);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  line-height: 1.55;
}


.blog-extra-pill {
  margin: 0 0 0.85rem;
  padding: 0.95rem 1.05rem 1rem;
  max-width: 40rem;
  border-radius: var(--radius);
  border: 1px solid rgba(5, 217, 232, 0.3);
  background:
    radial-gradient(ellipse 60% 70% at 100% 0%, rgba(5, 217, 232, 0.08), transparent 55%),
    linear-gradient(145deg, rgba(13, 2, 33, 0.98), rgba(5, 1, 15, 0.92));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.blog-clock-pill {
  border-color: rgba(5, 217, 232, 0.45);
  border-left: 3px solid #05d9e8;
}

.blog-clock-pill.tone-today {
  border-left-color: #fcee09;
}

.blog-clock-pill.tone-passed {
  border-left-color: #94a3b8;
}

.blog-silence-pill {
  border-color: rgba(252, 238, 9, 0.35);
  border-left: 3px solid #fcee09;
}

.blog-term-pill {
  border-color: rgba(255, 42, 109, 0.4);
  border-left: 3px solid #ff2a6d;
}

.blog-extra-eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #05d9e8;
  text-shadow: 0 0 14px rgba(5, 217, 232, 0.25);
}

.blog-silence-pill .blog-extra-eyebrow {
  color: #fcee09;
  text-shadow: 0 0 14px rgba(252, 238, 9, 0.25);
}

.blog-term-pill .blog-extra-eyebrow {
  color: #ff2a6d;
  text-shadow: 0 0 14px rgba(255, 42, 109, 0.3);
}

.blog-extra-lead {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #94a3b8;
}

.blog-extra-headline {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: #e2e8f0;
}

.blog-clock-pill .blog-extra-headline {
  color: #05d9e8;
  text-shadow: 0 0 16px rgba(5, 217, 232, 0.3);
}

.blog-extra-body {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #e2e8f0;
}

.blog-extra-meta {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: #94a3b8;
}

.blog-extra-meta a {
  color: #ff2a6d;
  font-weight: 600;
}

.blog-stats-pill {
  margin: 0 0 1.15rem;
  padding: 1rem 1.1rem 1.05rem;
  max-width: 40rem;
  border-radius: var(--radius);
  border: 1px solid rgba(5, 217, 232, 0.35);
  background:
    radial-gradient(ellipse 60% 70% at 0% 0%, rgba(57, 255, 20, 0.06), transparent 55%),
    linear-gradient(145deg, rgba(13, 2, 33, 0.98), rgba(5, 1, 15, 0.92));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.blog-stats-eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  text-shadow: 0 0 14px rgba(57, 255, 20, 0.25);
}

.blog-stats-lead {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.blog-stats-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
}

.blog-stats-card {
  margin: 0;
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(5, 217, 232, 0.22);
  background: rgba(0, 0, 0, 0.35);
  border-left: 3px solid rgba(148, 163, 184, 0.45);
}

.blog-stats-card.tone-good { border-left-color: var(--green); }
.blog-stats-card.tone-warn { border-left-color: var(--yellow); }
.blog-stats-card.tone-bad { border-left-color: var(--pink); }

.blog-stats-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.2rem;
}

.blog-stats-coin {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(5, 217, 232, 0.3);
}

.blog-stats-status {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.blog-stats-lane {
  display: block;
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--muted);
}

.blog-stats-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.blog-stats-metric {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.blog-stats-metric strong {
  color: var(--text);
  font-weight: 700;
}

.blog-stats-card.tone-good .blog-stats-metric strong { color: var(--green); }
.blog-stats-card.tone-bad .blog-stats-metric strong { color: var(--pink); }

.blog-share-pill,
.blog-share {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  margin: 0.95rem 0 1.1rem;
  padding: 1rem 1.1rem 1.05rem;
  max-width: 40rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 42, 109, 0.4);
  border-left: 3px solid #ff2a6d;
  color-scheme: dark;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(5, 217, 232, 0.12), transparent 55%),
    linear-gradient(145deg, rgba(13, 2, 33, 0.98), rgba(5, 1, 15, 0.94));
  box-shadow:
    0 0 28px rgba(255, 42, 109, 0.12),
    0 14px 36px rgba(0, 0, 0, 0.35);
}

.blog-share-pill[data-share-placement="bottom"],
.blog-share[data-share-placement="bottom"] {
  margin: 1.15rem 0 0.5rem;
}

.blog-share-eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff2a6d;
  text-shadow: 0 0 16px rgba(255, 42, 109, 0.35);
}

.blog-share-lead {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #94a3b8;
}

.blog-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

button.blog-share-btn {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(5, 217, 232, 0.55) !important;
  background: rgba(5, 1, 15, 0.92) !important;
  color: #05d9e8 !important;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(5, 217, 232, 0.12);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

button.blog-share-btn:hover {
  background: rgba(5, 217, 232, 0.16) !important;
  border-color: #05d9e8 !important;
  box-shadow: 0 0 22px rgba(5, 217, 232, 0.28);
  transform: translateY(-1px);
  color: #e2e8f0 !important;
}

button.blog-share-btn-copy {
  border-color: rgba(255, 42, 109, 0.6) !important;
  color: #ff2a6d !important;
  box-shadow: 0 0 14px rgba(255, 42, 109, 0.12);
}

button.blog-share-btn-copy:hover {
  background: rgba(255, 42, 109, 0.14) !important;
  border-color: #ff2a6d !important;
  box-shadow: 0 0 22px rgba(255, 42, 109, 0.28);
  color: #fff !important;
}

button.blog-share-btn-native {
  border-color: rgba(252, 238, 9, 0.55) !important;
  color: #fcee09 !important;
}

.blog-share-ico {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  display: block;
}

.blog-share-btn-text {
  line-height: 1;
}

.blog-share-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #39ff14;
  min-height: 1em;
}

.blog-back {
  margin-top: 1.5rem;
}

.mono {
  font-family: var(--font-mono);
}

@media (max-width: 640px) {
  .blog-hero {
    padding-top: 2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-share-pill,
  .blog-share {
    max-width: 100%;
  }

  button.blog-share-btn {
    flex: 1 1 auto;
    min-width: calc(50% - 0.35rem);
  }
}
