:root {
  color-scheme: dark;
  --bg: #030805;
  --bg-2: #07120b;
  --panel: rgba(9, 20, 13, 0.78);
  --panel-2: rgba(13, 30, 18, 0.88);
  --line: rgba(114, 255, 143, 0.18);
  --line-strong: rgba(100, 255, 137, 0.42);
  --text: #eef8ef;
  --muted: #a8b9ab;
  --soft: #d7ead9;
  --green: #36f06c;
  --green-2: #74ff91;
  --green-deep: #0fb145;
  --yellow: #f4ff8f;
  --danger: #ff6f80;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
  --header: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(58, 244, 106, 0.18), transparent 34rem),
    radial-gradient(circle at 86% 11%, rgba(16, 169, 74, 0.15), transparent 30rem),
    linear-gradient(135deg, #020403 0%, var(--bg) 40%, #071108 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 82%);
  z-index: -2;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
::selection { background: rgba(78, 255, 117, 0.28); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 99;
  background: var(--green);
  color: #021006;
  padding: .75rem 1rem;
  border-radius: 999px;
  font-weight: 800;
}
.skip-link:focus { left: 1rem; }
.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.site-glow {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  pointer-events: none;
  z-index: -3;
}
.glow-a { left: -12rem; top: 6rem; background: var(--green); }
.glow-b { right: -12rem; top: 32rem; background: #11752f; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(116, 255, 145, 0.13);
  background: rgba(3, 8, 5, 0.78);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  text-decoration: none;
  min-width: max-content;
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(120, 255, 149, .28);
  box-shadow: 0 0 26px rgba(54, 240, 108, .16);
}
.brand-word {
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 1.06rem;
}
.brand-word span { color: var(--green-2); }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .92rem;
  color: var(--muted);
}
.nav-links a {
  text-decoration: none;
  padding: .65rem .78rem;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, .055); }
.nav-pill {
  color: #031207 !important;
  background: var(--green) !important;
  font-weight: 900;
}

.kicker {
  margin: 0 0 .82rem;
  color: var(--green-2);
  font-size: .78rem;
  letter-spacing: .18em;
  font-weight: 900;
  text-transform: uppercase;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(2.3rem, 5vw, 5.5rem) 0 2.2rem;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: .88;
  letter-spacing: -.075em;
  max-width: 860px;
}
.lede {
  color: var(--soft);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 760px;
  margin: 1.35rem 0 0;
}
.hero-actions, .live-actions, .tool-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.45rem;
}
.button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .88rem 1.08rem;
  color: var(--text);
  background: rgba(255, 255, 255, .06);
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: linear-gradient(135deg, var(--green), #92ffa7);
  color: #031207;
  box-shadow: 0 16px 40px rgba(54, 240, 108, .2);
}
.button.secondary { border-color: var(--line-strong); background: rgba(54, 240, 108, .08); }
.button.ghost { border-color: rgba(255,255,255,.1); color: var(--muted); }
.button.compact { padding: .68rem .86rem; font-size: .85rem; }
.button.full { width: 100%; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .62rem;
  margin-top: 1.3rem;
}
.trust-row span, .rating-breakdown span {
  border: 1px solid var(--line);
  background: rgba(3, 18, 9, .7);
  border-radius: 999px;
  padding: .46rem .66rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}
.genesis-card, .live-panel, .tool-card, .thesis-note, .field-card, .receipt-panel, .oracle-card, .post-kit {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 31, 18, .78), rgba(4, 13, 8, .9));
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}
.genesis-card {
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}
.genesis-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, transparent, rgba(69, 255, 105, .12), transparent 45%, rgba(69, 255, 105, .16), transparent);
  animation: slowSpin 18s linear infinite;
}
.genesis-card > * { position: relative; z-index: 1; }
.proof-topline {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--green-2);
  font-weight: 900;
  letter-spacing: .15em;
  font-size: .74rem;
  text-transform: uppercase;
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(54, 240, 108, .11), 0 0 18px var(--green);
}
.genesis-image-wrap {
  margin: 1rem 0 .85rem;
  border-radius: 26px;
  background: radial-gradient(circle, rgba(78, 255, 117, .14), rgba(0,0,0,.25));
  border: 1px solid rgba(118, 255, 145, .16);
  padding: .42rem;
  overflow: hidden;
}
.proof-logo {
  width: min(280px, 72%);
  margin: 0 auto;
  border-radius: 24px;
}
.proof-hero-bull {
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  border: 1px solid rgba(116, 255, 145, .18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38), 0 0 38px rgba(54, 240, 108, .12);
}
.tweet-link {
  display: block;
  text-decoration: none;
  border-radius: 18px;
  transition: transform .18s ease, filter .18s ease;
}
.tweet-link:hover { transform: translateY(-2px); filter: brightness(1.05); }
.tweet-snip {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  width: 100%;
  background: #fff;
}
.proof-caption { margin-top: 1rem; display: grid; gap: .35rem; }
.proof-caption strong { font-size: 1.28rem; }
.proof-caption span { color: var(--muted); }

.live-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 2.5rem;
}
.live-heading, .split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}
.live-heading h2, .split-heading h2, .section-heading h2, .flywheel-grid h2, .participation-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: .96;
  letter-spacing: -.055em;
}
.live-heading p, .split-heading p, .section-heading p, .flywheel-grid p, .participation-grid p {
  color: var(--muted);
  max-width: 720px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}
.stat-card {
  border: 1px solid rgba(116, 255, 145, 0.15);
  background: rgba(0, 0, 0, .24);
  border-radius: 22px;
  padding: 1rem;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.highlight-stat { background: linear-gradient(135deg, rgba(54, 240, 108, .16), rgba(0,0,0,.24)); }
.stat-label {
  color: var(--green-2);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: .73rem;
}
.stat-card strong {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  letter-spacing: -.045em;
  line-height: 1;
}
.stat-card small { color: var(--muted); }
.token-bar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: .9rem;
  border: 1px solid rgba(116, 255, 145, 0.12);
  border-radius: 20px;
  padding: .75rem .9rem;
  background: rgba(255,255,255,.035);
}
.token-bar div { display: grid; gap: .18rem; min-width: 160px; }
.token-bar span { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.copy-address {
  color: var(--soft);
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  font-weight: 900;
}
.fine-print, .helper {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 0;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(116, 255, 145, 0.12);
  background: rgba(0, 0, 0, .2);
}
.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  padding: .9rem 0;
}
.marquee span {
  color: var(--green-2);
  font-weight: 1000;
  letter-spacing: .14em;
  font-size: .82rem;
}

.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section-heading { text-align: center; margin-inline: auto; margin-bottom: 2rem; }
.section-heading.narrow { max-width: 820px; }
.tools-section { padding-top: 3rem; }
.tools-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1rem;
  align-items: stretch;
}
.tool-card { padding: clamp(1rem, 2vw, 1.4rem); }
.tool-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.tool-eyebrow {
  color: var(--green-2);
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .76rem;
}
.tool-badge {
  border: 1px solid var(--line-strong);
  background: rgba(54, 240, 108, .08);
  border-radius: 999px;
  padding: .32rem .55rem;
  font-weight: 950;
  color: var(--soft);
}
.generated-card {
  border-radius: 28px;
  min-height: 340px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 20% 0%, rgba(118, 255, 145, .22), transparent 18rem),
    linear-gradient(150deg, rgba(12, 32, 18, .96), rgba(2, 7, 4, .94));
  border: 1px solid rgba(116, 255, 145, .2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-label {
  color: var(--green-2);
  font-size: .76rem;
  letter-spacing: .18em;
  font-weight: 950;
}
.generated-card h3 {
  margin: 1.5rem 0 1rem;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -.055em;
}
.generated-card p { color: var(--muted); }
.thesis-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--green-2);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
}
textarea, input {
  width: 100%;
  border: 1px solid rgba(116, 255, 145, .18);
  background: rgba(0, 0, 0, .22);
  color: var(--text);
  border-radius: 18px;
  padding: .92rem 1rem;
  outline: none;
  resize: vertical;
}
textarea:focus, input:focus { border-color: var(--green-2); box-shadow: 0 0 0 4px rgba(54, 240, 108, .08); }
label { display: block; margin-bottom: .5rem; color: var(--soft); font-weight: 900; }
.compact-result {
  margin-top: .9rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(116, 255, 145, .14);
}
.meter-shell {
  position: relative;
  height: 94px;
  overflow: hidden;
  margin-bottom: .3rem;
}
.meter-arc {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 18px solid rgba(255, 255, 255, .08);
  border-bottom-color: transparent;
  border-left-color: rgba(54, 240, 108, .72);
  border-top-color: rgba(118, 255, 145, .8);
  border-right-color: rgba(244, 255, 143, .85);
  transform: rotate(45deg);
  margin: 10px auto 0;
}
.meter-needle {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 4px;
  height: 78px;
  background: var(--green-2);
  border-radius: 999px;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(-70deg);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 0 18px rgba(54,240,108,.8);
}
.rating-score {
  margin: 0;
  font-size: 2.45rem;
  font-weight: 1000;
  letter-spacing: -.05em;
}
.result-card h3 { margin: .2rem 0; font-size: 1.25rem; }
.result-card p { color: var(--muted); margin-top: .2rem; }
.rating-breakdown { display: flex; flex-wrap: wrap; gap: .42rem; margin: .8rem 0; }

.thesis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.thesis-note { padding: 1.25rem; min-height: 260px; }
.thesis-note.large-note { grid-column: span 2; }
.thesis-note h3, .field-card h3, .receipt-panel h3, .participation-actions h3 {
  margin: .6rem 0 .55rem;
  font-size: 1.35rem;
  letter-spacing: -.03em;
}
.thesis-note p, .field-card p, .receipt-panel p, .participation-actions p { color: var(--muted); }
.card-num {
  color: var(--green-2);
  font-weight: 1000;
  letter-spacing: .12em;
}
.accent-note { border-color: rgba(118, 255, 145, .4); background: linear-gradient(180deg, rgba(37, 121, 56, .32), rgba(4, 13, 8, .9)); }
.metrics-band, .builder-strip {
  margin-top: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .22);
  padding: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.2rem;
  align-items: center;
}
.metrics-copy h3 { margin: 0; font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -.05em; line-height: 1; }
.metrics-copy p { color: var(--muted); }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.metrics-grid div {
  padding: 1rem;
  border: 1px solid rgba(116, 255, 145, .13);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
}
.metrics-grid strong { display: block; font-size: 1.5rem; letter-spacing: -.04em; }
.metrics-grid span { color: var(--muted); font-size: .9rem; }

.flywheel-band {
  background:
    radial-gradient(circle at 82% 20%, rgba(54, 240, 108, .13), transparent 24rem),
    rgba(0, 0, 0, .18);
  border-block: 1px solid rgba(116, 255, 145, .12);
}
.flywheel-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1.4rem;
  align-items: center;
}
.quote-chip {
  margin-top: 1.2rem;
  border-left: 3px solid var(--green);
  background: rgba(54, 240, 108, .08);
  border-radius: 16px;
  padding: 1rem;
  font-weight: 900;
}
.wheel-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  padding: 1rem;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.22);
}
.wheel-step {
  min-height: 118px;
  border-radius: 24px;
  display: grid;
  align-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(116, 255, 145, .14);
  background: linear-gradient(145deg, rgba(54, 240, 108, .08), rgba(0,0,0,.16));
}
.wheel-step strong { color: var(--green-2); }
.wheel-step span { font-size: 1.1rem; font-weight: 950; }
.field-test {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.field-card { padding: 1.2rem; }
.horn-card { border-color: rgba(116, 255, 145, .38); }

.receipt-grid-v3 {
  display: grid;
  grid-template-columns: 1.35fr repeat(2, 1fr);
  gap: 1rem;
}
.main-receipt { grid-row: span 2; padding: 1.4rem; }
.main-receipt h3 { font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1; }
.stat-panel {
  min-height: 170px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stat-panel strong { font-size: 2.05rem; letter-spacing: -.05em; }

.blackbull-band {
  background: linear-gradient(180deg, rgba(12, 65, 27, .18), rgba(0,0,0,.1));
  border-block: 1px solid rgba(116, 255, 145, .12);
}
.participation-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 1.2rem;
  align-items: start;
}
.participation-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}
.participation-actions article {
  border: 1px solid rgba(116, 255, 145, .15);
  background: rgba(0,0,0,.2);
  border-radius: 24px;
  padding: 1rem;
  min-height: 220px;
}
.participation-actions span { color: var(--green-2); font-weight: 1000; }

.oracle-card {
  padding: 1.1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .8rem;
  align-items: center;
}
.oracle-card p {
  grid-column: 1 / -1;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  letter-spacing: -.04em;
  margin: .4rem 0;
}
.oracle-card .secondary { justify-self: start; }
.post-kit { padding: clamp(1rem, 3vw, 1.6rem); }
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}
.post-card {
  border: 1px solid rgba(116, 255, 145, .15);
  background: rgba(255,255,255,.035);
  color: var(--text);
  border-radius: 22px;
  text-align: left;
  padding: 1rem;
  min-height: 116px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.post-card:hover { transform: translateY(-2px); border-color: var(--line-strong); background: rgba(54,240,108,.07); }
.post-card strong { display: block; margin-bottom: .3rem; color: var(--green-2); }
.post-card span { color: var(--muted); }
.site-footer {
  border-top: 1px solid rgba(116, 255, 145, 0.12);
  padding: 2rem 0;
  background: rgba(0,0,0,.24);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}
.footer-inner p { color: var(--muted); max-width: 720px; margin: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes slowSpin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  :root { --header: auto; }
  .site-header { position: static; padding-block: .9rem; flex-wrap: wrap; }
  .nav-links { width: 100%; overflow-x: auto; padding-bottom: .2rem; }
  .hero, .tools-grid, .flywheel-grid, .participation-grid, .metrics-band { grid-template-columns: 1fr; }
  .stat-grid, .thesis-grid, .field-test, .receipt-grid-v3, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .thesis-note.large-note, .main-receipt { grid-column: auto; grid-row: auto; }
  .participation-actions { grid-template-columns: 1fr; }
  .live-heading, .split-heading { align-items: start; flex-direction: column; }
}
@media (max-width: 640px) {
  .shell { width: min(100% - 28px, var(--max)); }
  .hero-copy h1 { font-size: clamp(3.1rem, 16vw, 4.2rem); }
  .stat-grid, .thesis-grid, .field-test, .receipt-grid-v3, .post-grid, .metrics-grid { grid-template-columns: 1fr; }
  .wheel-card { grid-template-columns: repeat(2, 1fr); }
  .oracle-card { grid-template-columns: 1fr; }
  .footer-inner { align-items: start; flex-direction: column; }
  .genesis-card { padding: .85rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* v4.1 production tightening: compact live receipt strip */
.live-panel-compact {
  padding: clamp(.9rem, 2vw, 1.25rem);
  margin-top: -1.15rem;
  margin-bottom: clamp(1.1rem, 2.5vw, 1.8rem);
  border-radius: 24px;
}
.live-heading-compact {
  align-items: center;
  margin-bottom: .85rem;
}
.live-heading-compact h2 {
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  letter-spacing: -.055em;
}
.live-heading-compact .kicker { margin-bottom: .28rem; }
.live-heading-compact .live-actions { gap: .45rem; }
.compact-stat-grid {
  gap: .55rem;
}
.compact-stat-card {
  border-radius: 18px;
  min-height: 88px;
  padding: .72rem .82rem;
  gap: .45rem;
  justify-content: start;
}
.compact-stat-card .stat-label {
  font-size: .62rem;
  letter-spacing: .13em;
}
.compact-stat-card strong {
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  letter-spacing: -.055em;
  overflow-wrap: anywhere;
}
.compact-stat-card small {
  font-size: .72rem;
  line-height: 1.25;
}
.stat-card.is-estimate strong::before { content: ""; }
.stat-card .stat-action-link { color: var(--text); text-decoration: none; }
.stat-card .stat-action-link:hover { color: var(--green-2); }

.live-footer-line {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  margin-top: .7rem;
  color: var(--muted);
  font-size: .78rem;
}
.live-footer-line span:first-child {
  color: var(--soft);
  font-weight: 800;
}
.subtle-copy {
  color: var(--muted);
  border: 1px solid rgba(116, 255, 145, .13);
  border-radius: 999px;
  padding: .24rem .52rem;
  background: rgba(255,255,255,.03);
  font-size: .74rem;
}
.subtle-copy:hover { color: var(--green-2); border-color: var(--line-strong); }
.live-footer-line #statsNote { flex: 1 1 340px; }

/* v4.1 copy kit polish */
.improved-post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.improved-post-grid .post-card {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.improved-post-grid .post-card::after {
  content: "post";
  position: absolute;
  top: .72rem;
  right: .72rem;
  color: rgba(242,255,244,.46);
  border: 1px solid rgba(116,255,145,.12);
  border-radius: 999px;
  padding: .16rem .42rem;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.improved-post-grid .post-card:hover::after { color: var(--green-2); border-color: var(--line-strong); }
.improved-post-grid .post-card strong { padding-right: 3.1rem; }
.improved-post-grid .post-card span { line-height: 1.42; }

@media (max-width: 860px) {
  .live-heading-compact { align-items: start; }
  .compact-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .improved-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .live-panel-compact { margin-top: -.4rem; }
  .compact-stat-grid, .improved-post-grid { grid-template-columns: 1fr; }
  .compact-stat-card { min-height: 76px; }
  .live-footer-line { gap: .45rem; }
  .live-footer-line #statsNote { flex-basis: 100%; }
}

/* v4.4 live pulse cleanup */
.buy-stat-card {
  color: var(--text);
  text-decoration: none;
  position: relative;
  isolation: isolate;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.buy-stat-card::after {
  content: "↗";
  position: absolute;
  top: .72rem;
  right: .82rem;
  color: var(--green-2);
  font-weight: 1000;
  opacity: .72;
}
.buy-stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 14px 34px rgba(54, 240, 108, .12);
  background: linear-gradient(135deg, rgba(54, 240, 108, .22), rgba(0,0,0,.24));
}
.buy-stat-card:hover small { color: var(--green-2); }
.live-footer-line #statsNote { flex: 1 1 240px; }


/* v4.5 meme tools spotlight */
.quick-nav-actions {
  row-gap: .65rem;
}
.quick-nav-actions .button {
  min-height: 46px;
}
.tools-section {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-top: .9rem;
  border: 1px solid rgba(116, 255, 145, .22);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 8%, rgba(54, 240, 108, .22), transparent 18rem),
    radial-gradient(circle at 88% 18%, rgba(154, 255, 170, .12), transparent 18rem),
    linear-gradient(180deg, rgba(9, 26, 14, .98), rgba(4, 12, 7, .96));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .32), 0 0 0 1px rgba(54,240,108,.05) inset;
  overflow: hidden;
}
.tools-section::before,
.tools-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.tools-section::before {
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.4), transparent 80%);
  opacity: .35;
}
.tools-section::after {
  width: 340px;
  height: 340px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 240, 108, .20), transparent 70%);
  filter: blur(8px);
}
.tools-section > * {
  position: relative;
  z-index: 1;
}
.tools-section .split-heading {
  margin-bottom: 1.5rem;
}
.tools-section .split-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}
.tools-section .split-heading p:last-child {
  max-width: 520px;
  font-size: 1.02rem;
}
.tools-grid {
  gap: 1.15rem;
}
.tool-card {
  position: relative;
  border-color: rgba(116, 255, 145, .24);
  background: linear-gradient(180deg, rgba(13, 35, 18, .92), rgba(4, 13, 8, .98));
  box-shadow: 0 24px 60px rgba(0,0,0,.32), 0 0 0 1px rgba(54,240,108,.04) inset;
}
.generator-tool::before,
.meter-tool::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(118,255,145,.24), rgba(118,255,145,0), rgba(118,255,145,.18));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.generator-tool {
  transform: translateY(-2px);
}
.generated-card {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 18px 50px rgba(0,0,0,.24);
}
.improved-post-grid .post-card::after {
  content: "post to x";
}
.improved-post-grid .post-card {
  min-height: 148px;
}


/* v4.6: louder meme tools + creator footer */
.hero .trust-row { display: none !important; }
.tools-section {
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
  padding: clamp(1.45rem, 3vw, 2.4rem);
  border-width: 2px;
  border-color: rgba(112, 255, 145, .42);
  background:
    radial-gradient(circle at 10% 5%, rgba(74, 255, 120, .34), transparent 17rem),
    radial-gradient(circle at 74% 12%, rgba(142, 255, 162, .20), transparent 20rem),
    radial-gradient(circle at 50% 100%, rgba(49, 216, 86, .18), transparent 24rem),
    linear-gradient(180deg, rgba(13, 42, 20, .98), rgba(1, 8, 4, .98));
  box-shadow:
    0 0 0 1px rgba(166, 255, 184, .08) inset,
    0 0 55px rgba(54, 240, 108, .16),
    0 38px 110px rgba(0, 0, 0, .52);
}
.tools-section::before {
  opacity: .48;
  background:
    linear-gradient(90deg, rgba(116,255,145,.055) 1px, transparent 1px),
    linear-gradient(rgba(116,255,145,.045) 1px, transparent 1px);
  background-size: 26px 26px;
}
.tools-section::after {
  width: 460px;
  height: 460px;
  right: -160px;
  top: -160px;
  background: radial-gradient(circle, rgba(80, 255, 126, .34), transparent 68%);
  filter: blur(3px);
}
.tools-section .kicker::before {
  content: "⚡ ";
  color: var(--green-2);
}
.tools-section .split-heading {
  padding: .25rem .25rem .9rem;
  border-bottom: 1px solid rgba(116, 255, 145, .16);
}
.tools-section .split-heading h2 {
  text-shadow: 0 0 24px rgba(54, 240, 108, .18);
}
.tools-section .split-heading p:last-child {
  border: 1px solid rgba(116, 255, 145, .16);
  background: rgba(0,0,0,.22);
  border-radius: 22px;
  padding: .9rem 1rem;
}
.tools-grid {
  gap: clamp(1rem, 2vw, 1.45rem);
}
.tool-card {
  border-width: 2px;
  border-color: rgba(116, 255, 145, .30);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.035) inset,
    0 26px 70px rgba(0,0,0,.42),
    0 0 34px rgba(54, 240, 108, .09);
}
.tool-card:hover {
  border-color: rgba(141, 255, 164, .5);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.045) inset,
    0 30px 84px rgba(0,0,0,.48),
    0 0 46px rgba(54, 240, 108, .16);
}
.tool-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.tool-eyebrow::before {
  content: "";
  width: .58rem;
  height: .58rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(54,240,108,.10), 0 0 18px rgba(54,240,108,.72);
}
.generated-card {
  border-color: rgba(141, 255, 164, .38);
  background:
    radial-gradient(circle at 18% 0%, rgba(118, 255, 145, .34), transparent 19rem),
    radial-gradient(circle at 100% 80%, rgba(54, 240, 108, .15), transparent 18rem),
    linear-gradient(150deg, rgba(15, 52, 24, .98), rgba(1, 7, 4, .96));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 18px 52px rgba(0,0,0,.36),
    0 0 40px rgba(54, 240, 108, .10);
}
.meter-tool textarea {
  min-height: 190px;
  background: rgba(0,0,0,.34);
}
.meter-tool .compact-result {
  background:
    radial-gradient(circle at 50% 0%, rgba(54, 240, 108, .14), transparent 16rem),
    rgba(0,0,0,.25);
  border-color: rgba(116, 255, 145, .23);
}
.creator-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--soft);
  text-decoration: none;
  border: 1px solid rgba(116,255,145,.18);
  background: rgba(54,240,108,.06);
  border-radius: 999px;
  padding: .45rem .72rem .45rem .48rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.creator-link:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(54,240,108,.11);
}
.creator-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #031207;
  background: linear-gradient(135deg, var(--green), #a7ffb7);
  box-shadow: 0 0 22px rgba(54,240,108,.22);
  font-weight: 1000;
}
.creator-link strong { color: var(--green-2); }
@media (max-width: 780px) {
  .footer-inner { gap: 1rem; }
  .creator-link { align-self: flex-start; }
}
