@font-face {
  font-family: "Fraunces";
  src: url("./fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("./fonts/fraunces-latin-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/inter-latin.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("./fonts/space-mono-latin-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("./fonts/space-mono-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Anton";
  src: url("./fonts/anton-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("./fonts/space-grotesk.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #050505;
  --surface: #0b0b0b;
  --graphite: #131413;
  --paper: #fafaf7;
  --muted: #a5aaa1;
  --muted-low: #747a71;
  --line: #282b26;
  --lime: #ccff00;
  --lime-soft: rgba(204, 255, 0, 0.1);
  --orange: #ff5a1f;
  --warning: #ffb020;
  --display: "Space Grotesk", "Arial Narrow", Arial, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --mono: "Space Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --signal: "Anton", Impact, sans-serif;
  --shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 20px 50px -34px rgba(0, 0, 0, 0.95);
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 8%, rgba(204, 255, 0, 0.055), transparent 29rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.006em;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:hover {
  color: var(--lime);
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--lime);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
}

.brand-name {
  max-width: 205px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.05;
  font-optical-sizing: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--paper);
}

.nav-report {
  border: 1px solid var(--lime);
  border-radius: 4px;
  padding: 10px 14px;
  color: var(--lime) !important;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  padding: clamp(72px, 11vw, 144px) 0 clamp(72px, 9vw, 112px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 0;
  background-image: url("./hero-road-city.png");
  background-position: center center;
  background-size: cover;
}

.hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.72) 43%, rgba(5, 5, 5, 0.2) 76%, rgba(5, 5, 5, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.08) 55%, rgba(5, 5, 5, 0.72) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: end;
}

.kicker,
.issue-label,
.eyebrow {
  margin: 0;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.report-hero h1,
.page-hero h1 {
  margin: 18px 0 24px;
  max-width: 12ch;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.97;
  font-weight: 650;
  letter-spacing: -0.055em;
  font-optical-sizing: auto;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--lime);
  font-weight: 500;
  font-style: normal;
}

.hero-copy {
  max-width: 650px;
  color: #c6cbc1;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 450;
  line-height: 1.5;
  letter-spacing: -0.022em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 18px;
  background: var(--surface);
  color: var(--paper);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--lime);
  color: var(--paper);
}

.button-primary {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 24px rgba(204, 255, 0, 0.16);
}

.button-primary:hover {
  background: #dcff4d;
  color: var(--ink);
}

.signal-panel,
.panel,
.report-card,
.fact-card,
.method-card,
.legal-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent 40%), var(--surface);
  box-shadow: var(--shadow);
}

.signal-panel {
  padding: 26px;
}

.signal-panel::before,
.signal-panel::after,
.panel::before,
.report-card::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.signal-panel::before,
.panel::before,
.report-card::before {
  left: -1px;
  top: -1px;
  border-left: 2px solid var(--lime);
  border-top: 2px solid var(--lime);
}

.signal-panel::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
}

.signal-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(204, 255, 0, 0.09), 0 0 20px rgba(204, 255, 0, 0.45);
}

.signal-title {
  margin: 24px 0 18px;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.08;
}

.signal-rows,
.fact-list {
  margin: 0;
}

.signal-row,
.fact-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.signal-row dt,
.fact-row dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-row dd,
.fact-row dd {
  margin: 0;
  color: var(--paper);
  font-weight: 600;
  text-align: right;
}

.source-note {
  margin: 18px 0 0;
  color: var(--muted-low);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.55;
}

.cta-note {
  margin: 14px 0 0;
  color: var(--muted-low);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.section {
  padding: clamp(72px, 9vw, 112px) 0;
  border-bottom: 1px solid var(--line);
}

.section-compact {
  padding: clamp(48px, 6vw, 72px) 0;
}

.section-header {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 32px;
  margin-bottom: 42px;
}

.section-header h2,
.report-section h2,
.legal-content h2 {
  margin: 0;
  max-width: 19ch;
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.03;
  font-weight: 620;
  letter-spacing: -0.04em;
  font-optical-sizing: auto;
  text-wrap: balance;
}

.section-header p {
  max-width: 680px;
  margin: 12px 0 0;
  color: #c1c6bc;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 450;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}

.method-card {
  min-height: 310px;
  border-left: 0;
  padding: 28px 24px;
}

.method-number {
  color: var(--lime);
  font-family: var(--signal);
  font-size: 62px;
  line-height: 0.88;
}

.method-card h3,
.fact-card h3,
.report-card h3 {
  margin: 56px 0 12px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 620;
  line-height: 1.08;
}

.method-card p,
.fact-card p,
.report-card p {
  margin: 0;
  color: var(--muted);
}

.report-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  overflow: hidden;
}

.report-main,
.report-side {
  padding: clamp(28px, 5vw, 56px);
}

.report-side {
  border-left: 1px solid var(--line);
  background: rgba(204, 255, 0, 0.025);
}

.campaign-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-left: 3px solid var(--orange);
  padding: 6px 10px;
  background: rgba(255, 90, 31, 0.08);
  color: #ff956d;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-card h3 {
  max-width: 14ch;
  margin: 28px 0 18px;
  font-size: clamp(36px, 5vw, 64px);
}

.report-summary {
  max-width: 620px;
  color: #c1c6bc !important;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 450;
  line-height: 1.52;
  letter-spacing: -0.02em;
}

.report-status {
  margin-bottom: 26px;
}

.quote-block {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.quote-mark {
  color: var(--lime);
  font-family: var(--display);
  font-size: 126px;
  line-height: 0.65;
}

blockquote {
  margin: 0;
  max-width: 850px;
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 520;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.quote-caption {
  margin-top: 24px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pending-panel {
  padding: clamp(28px, 5vw, 48px);
}

.pending-panel h2 {
  margin: 16px 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
}

.pending-panel p {
  max-width: 680px;
  color: #d2d6cd;
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 450;
  font-style: normal;
  line-height: 1.48;
  letter-spacing: -0.024em;
}

.community-section {
  background:
    radial-gradient(circle at 85% 50%, rgba(204, 255, 0, 0.09), transparent 28rem),
    var(--ink);
}

.community-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  border: 1px solid var(--line);
  border-left: 3px solid var(--lime);
  border-radius: 4px;
  padding: clamp(30px, 6vw, 64px);
  background: linear-gradient(135deg, rgba(204, 255, 0, 0.055), transparent 55%), var(--surface);
  box-shadow: var(--shadow);
}

.community-panel h2 {
  margin: 14px 0 16px;
  max-width: 17ch;
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 620;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.community-panel p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.community-actions {
  display: grid;
  gap: 12px;
}

.report-hero,
.page-hero {
  padding: clamp(64px, 10vw, 120px) 0 clamp(48px, 8vw, 88px);
  border-bottom: 1px solid var(--line);
}

.report-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: end;
}

.report-hero h1,
.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(52px, 8vw, 104px);
}

.report-lede,
.page-lede {
  max-width: 700px;
  margin: 0;
  color: #c6cbc1;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 450;
  line-height: 1.5;
  letter-spacing: -0.022em;
}

.report-index {
  color: var(--lime);
  font-family: var(--signal);
  font-size: clamp(96px, 16vw, 190px);
  line-height: 0.76;
  text-align: right;
}

.report-meta {
  margin-top: 24px;
  text-align: right;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.fact-card {
  min-height: 190px;
  padding: 24px;
}

.conversion-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--lime);
  border-radius: 4px;
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(100deg, rgba(204, 255, 0, 0.075), rgba(204, 255, 0, 0.015));
}

.conversion-panel h3 {
  margin: 8px 0 4px;
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.08;
}

.conversion-panel p:not(.issue-label) {
  margin: 0;
  color: var(--muted);
}

.conversion-panel .button {
  flex: 0 0 auto;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.highlight-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(204, 255, 0, 0.035), transparent 48%), var(--surface);
}

.highlight-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.1;
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
}

.mobile-join-bar {
  display: none;
}

.fact-card h3 {
  margin: 30px 0 8px;
}

.fact-value {
  margin-top: 24px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-line img {
  width: 18px;
  height: 18px;
}

.report-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 92px);
  padding: clamp(64px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}

.report-section h2 {
  font-size: clamp(32px, 4vw, 50px);
}

.report-body {
  max-width: 790px;
}

.report-body > :first-child {
  margin-top: 0;
}

.report-body p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.report-body strong,
.legal-content strong {
  color: var(--paper);
}

.steps,
.condition-list,
.source-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps {
  counter-reset: report-step;
}

.steps li {
  position: relative;
  counter-increment: report-step;
  padding: 22px 0 22px 74px;
  border-top: 1px solid var(--line);
}

.steps li::before {
  content: counter(report-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.steps h3,
.condition-list h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.steps p,
.condition-list p {
  margin: 0;
}

.condition-list li {
  position: relative;
  padding: 18px 18px 18px 52px;
  border-top: 1px solid var(--line);
}

.condition-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 23px;
  width: 16px;
  height: 16px;
  background: url("./icons/warning.svg") center / contain no-repeat;
}

.disclosure-box {
  border: 1px solid var(--lime);
  border-radius: 4px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--lime-soft);
}

.disclosure-box h2,
.disclosure-box h3 {
  color: var(--paper);
}

.disclosure-box p {
  color: #d4d8cf;
}

.source-list li {
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.source-list span {
  color: var(--muted-low);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-list .source-detail {
  color: var(--muted);
  font-family: var(--body);
  font-size: 15px;
  letter-spacing: normal;
  line-height: 1.55;
  text-transform: none;
}

.source-list a {
  overflow-wrap: anywhere;
}

.page-hero h1 {
  max-width: 12ch;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(32px, 7vw, 90px);
  padding: clamp(64px, 8vw, 96px) 0;
}

.legal-toc {
  align-self: start;
  position: sticky;
  top: 112px;
  border-left: 1px solid var(--line);
  padding-left: 20px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-content h2 {
  margin-top: 58px;
  font-size: 32px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-card {
  margin: 32px 0;
  padding: 24px;
}

.site-footer {
  padding: 48px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(125px, 0.45fr));
  gap: 44px;
}

.footer-brand p {
  max-width: 480px;
  color: var(--muted);
}

.footer-title {
  margin-bottom: 14px;
  color: var(--muted-low);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted-low);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
}

.error-code {
  color: var(--lime);
  font-family: var(--signal);
  font-size: clamp(120px, 28vw, 330px);
  line-height: 0.75;
}

.error-copy {
  max-width: 620px;
  margin-top: 26px;
}

.error-copy h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 68px);
}

.error-copy p {
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero::before {
    background-position: 67% top;
    background-size: 150% auto;
    background-repeat: no-repeat;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.22) 0%, rgba(5, 5, 5, 0.5) 58%, rgba(5, 5, 5, 0.88) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.56), rgba(5, 5, 5, 0.04));
  }

  .hero-grid,
  .report-hero-grid,
  .report-card,
  .report-section,
  .legal-layout,
  .community-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .report-hero-grid {
    align-items: start;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-side {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .report-index,
  .report-meta {
    text-align: left;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand-name {
    font-size: 16px;
  }

  .site-nav {
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .nav-report {
    padding: 8px 10px;
  }

  .hero {
    padding-top: 64px;
  }

  .section-header,
  .quote-block {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .quote-mark {
    font-size: 72px;
  }

  .facts-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .conversion-panel {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .fact-card {
    min-height: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .cashinstyle-page {
    padding-bottom: 82px;
  }

  .cashinstyle-page .site-footer {
    padding-bottom: 42px;
  }

  .mobile-join-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(204, 255, 0, 0.46);
    border-radius: 6px;
    padding: 10px;
    background: rgba(5, 5, 5, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.72), 0 0 28px rgba(204, 255, 0, 0.08);
    backdrop-filter: blur(16px);
  }

  .mobile-join-bar > span {
    display: grid;
    min-width: 0;
    font-size: 12px;
    line-height: 1.2;
  }

  .mobile-join-bar small {
    margin-top: 4px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
  }

  .mobile-join-bar .button {
    width: auto;
    min-height: 44px;
    flex: 0 0 auto;
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .method-card {
    min-height: auto;
  }

  .method-card h3 {
    margin-top: 34px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .signal-row,
  .fact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .signal-row dd,
  .fact-row dd {
    text-align: left;
  }

  .source-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

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