:root {
  --bg: #07100f;
  --bg-2: #0b1918;
  --panel: rgba(16, 31, 30, 0.76);
  --panel-strong: rgba(20, 43, 41, 0.92);
  --line: rgba(185, 255, 230, 0.14);
  --text: #ecfffa;
  --muted: #9dbab3;
  --soft: #d2f5ed;
  --accent: #6fffd2;
  --accent-2: #f2c36b;
  --risk: #ff7f6f;
  --hold: #8eb7ff;
  --violet: #b8a7ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(111, 255, 210, 0.18), transparent 32rem),
    radial-gradient(circle at 88% 18%, rgba(242, 195, 107, 0.12), transparent 30rem),
    linear-gradient(135deg, var(--bg), #091311 45%, #030706);
  color: var(--text);
  font-family: "Aptos", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 86%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(185, 255, 230, 0.08);
  background: rgba(7, 16, 15, 0.62);
  backdrop-filter: blur(18px);
}

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

.brand {
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, var(--accent), var(--accent-2), var(--risk), var(--accent));
  box-shadow: 0 0 26px rgba(111, 255, 210, 0.55);
}

.nav-links {
  justify-content: flex-end;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  outline: 0;
}

.section-grid,
.content-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.72fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-explainer {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 24px;
  max-width: 640px;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 6.5vw, 5.75rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--text), var(--accent) 55%, var(--accent-2));
  background-clip: text;
  -webkit-background-clip: text;
  padding-bottom: 0.1em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.business-question {
  max-width: 720px;
  color: var(--soft);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.result-statement,
.section-heading p,
.split p,
.proof p {
  color: var(--muted);
  font-size: 1.1rem;
}

.tool-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.tool-stack span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft);
  font-weight: 700;
}

.hero-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 30px;
}

.hero-stat-strip div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(111, 255, 210, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.04);
}

.hero-stat-strip strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-stat-strip span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-panel,
.action-dashboard,
.proof,
.implication,
.problem {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(20, 43, 41, 0.84), rgba(7, 16, 15, 0.72));
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 28px;
  isolation: isolate;
}

.hero-panel::before {
  position: absolute;
  inset: -40% -30% auto auto;
  z-index: -1;
  width: 320px;
  height: 320px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 255, 210, 0.22), transparent 64%);
  filter: blur(4px);
}

.hero-panel::after {
  position: absolute;
  inset: auto -24px -24px auto;
  z-index: -1;
  width: 210px;
  height: 210px;
  content: "";
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(242, 195, 107, 0.16), rgba(255, 127, 111, 0.09));
  transform: rotate(14deg);
}

.panel-topline,
.site-footer,
.proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.panel-topline {
  color: var(--muted);
}

.panel-topline strong {
  color: var(--text);
}

.diagnostic-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 36px 0 28px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.diag-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.diag-section.aggregate {
  padding: 20px;
  border-radius: 16px;
  background: rgba(111, 255, 210, 0.04);
  border: 1px solid rgba(111, 255, 210, 0.12);
  align-items: center;
  text-align: center;
}

.diag-section.aggregate .diag-metric {
  flex-direction: column;
  gap: 4px;
}

.diag-section.aggregate .diag-metric span {
  font-size: 1rem;
}

.diag-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.diag-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.diag-metric strong {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
}

.diag-metric span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--soft);
}

.diag-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  width: 100%;
}

.diag-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.diag-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.chip-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--soft);
  width: 76px;
}

.chip-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  width: 58px;
  text-align: right;
}

.chip-value.warning-text {
  color: var(--accent-2);
}

.chip-track {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.chip-fill {
  height: 100%;
  width: var(--w);
  border-radius: inherit;
  transform-origin: left;
  animation: growBar 1.15s ease both;
}

.chip-fill.strong {
  background: var(--accent);
}

.chip-fill.warning {
  background: var(--accent-2);
}


.hero-metric .counter,
.large-number .counter {
  display: block;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.hero-metric p,
.action-note p {
  color: var(--muted);
}

.mini-bars {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.mini-bars span {
  display: flex;
  align-items: center;
  min-width: 96px;
  width: var(--w);
  height: 24px;
  padding-left: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.mini-bars em {
  color: rgba(4, 16, 13, 0.9);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.mini-bars span:nth-child(2) {
  background: var(--accent-2);
}

.mini-bars span:nth-child(3) {
  background: var(--hold);
}

.mini-bars span:nth-child(4) {
  background: var(--risk);
}

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.panel-footer strong {
  color: var(--soft);
}

.split,
.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 44px;
  align-items: start;
}

.logic-flow,
.platform-grid,
.efficiency-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.logic-card,
.platform-card,
.efficiency-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.logic-card:hover,
.logic-card:focus-visible,
.logic-card.is-active,
.platform-card:hover,
.platform-card:focus-visible,
.platform-card.is-active,
.efficiency-card:hover,
.efficiency-card:focus-visible,
.efficiency-card.is-active {
  transform: translateY(-6px);
  border-color: rgba(111, 255, 210, 0.42);
  background: var(--panel-strong);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  outline: 0;
}

.insight-card {
  cursor: pointer;
}

.insight-card .card-insight {
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
  color: var(--soft);
  font-size: 0.98rem;
  line-height: 1.5;
  border-top: 1px solid transparent;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 260ms ease, margin-top 260ms ease, padding-top 260ms ease, opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.insight-card:hover .card-insight,
.insight-card:focus-visible .card-insight,
.insight-card.is-active .card-insight {
  max-height: 220px;
  margin-top: 18px;
  padding-top: 16px;
  border-color: var(--line);
  opacity: 1;
  transform: translateY(0);
}

.card-insight.compact {
  color: #ffd9d4;
  font-size: 0.9rem;
}

.logic-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logic-card p,
.platform-card p,
.platform-card span,
.efficiency-card p {
  color: var(--muted);
}

.logic-card.decision {
  background: linear-gradient(145deg, rgba(111, 255, 210, 0.18), rgba(242, 195, 107, 0.1));
}

.action-dashboard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 28px;
  margin-top: 34px;
}

.action-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.action-card {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.action-card::after {
  position: absolute;
  inset: auto -20px -52px auto;
  width: 132px;
  height: 132px;
  content: "";
  border-radius: 50%;
  background: currentColor;
  opacity: 0.12;
}

.action-card:hover,
.action-card:focus-visible,
.action-card.is-active {
  transform: translateY(-5px);
  border-color: rgba(111, 255, 210, 0.38);
  background: rgba(255, 255, 255, 0.07);
  outline: 0;
}

.action-card span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.action-card strong {
  display: block;
  margin: 22px 0 8px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.action-card p {
  margin-bottom: 0;
  color: var(--soft);
  font-weight: 800;
}

.action-card .card-insight {
  position: relative;
  z-index: 1;
}

.increase-card {
  color: var(--accent);
}

.review-card {
  color: var(--accent-2);
}

.hold-card {
  color: var(--hold);
}

.reduce-card {
  color: var(--risk);
}

.action-chart {
  display: grid;
  gap: 18px;
}

.stacked-chart {
  display: flex;
  overflow: hidden;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.stacked-chart span {
  display: block;
  width: var(--w);
  animation: growBar 1.15s ease both;
}

.bar-row {
  display: grid;
  grid-template-columns: 165px 1fr 80px;
  gap: 18px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(185, 255, 230, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  transition: background 180ms ease, border-color 180ms ease;
}

.bar-row:hover {
  border-color: rgba(111, 255, 210, 0.22);
  background: rgba(255, 255, 255, 0.045);
}

.bar-row span {
  color: var(--soft);
  font-weight: 700;
}

.bar-row strong {
  text-align: right;
}

.bar-track {
  overflow: hidden;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.bar-fill {
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  transform-origin: left;
  animation: growBar 1.15s ease both;
}

.increase {
  background: linear-gradient(90deg, var(--accent), rgba(111, 255, 210, 0.7));
}

.review {
  background: linear-gradient(90deg, rgba(111, 255, 210, 0.65), rgba(111, 255, 210, 0.3));
}

.hold {
  background: linear-gradient(90deg, var(--hold), #c7dcff);
}

.reduce {
  background: linear-gradient(90deg, rgba(111, 255, 210, 0.4), rgba(111, 255, 210, 0.15));
}

.large-number small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: normal;
}

.action-note {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(185, 255, 230, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.action-note p:last-child {
  margin-bottom: 0;
}

.platform-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.platform-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.platform-card strong {
  display: block;
  margin-top: 24px;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.platform-card.highlight {
  border-color: rgba(111, 255, 210, 0.34);
  background: linear-gradient(145deg, rgba(111, 255, 210, 0.16), rgba(16, 31, 30, 0.74));
}

.platform-card.spotlight::before,
.platform-card.spotlight-risk::before {
  position: absolute;
  inset: 18px 18px auto auto;
  width: 58px;
  height: 58px;
  content: "";
  border-radius: 18px;
  background:
    linear-gradient(currentColor, currentColor) center / 28px 3px no-repeat,
    linear-gradient(90deg, currentColor, currentColor) center / 3px 28px no-repeat;
  opacity: 0.26;
  transform: rotate(45deg);
}

.platform-card.spotlight {
  color: var(--accent);
}

.platform-card.spotlight-risk {
  color: var(--risk);
}

.platform-card.risk {
  border-color: rgba(255, 127, 111, 0.42);
  background: linear-gradient(145deg, rgba(255, 127, 111, 0.16), rgba(16, 31, 30, 0.74));
}

.risk-stack {
  display: grid;
  gap: 10px;
}

.risk-stack span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.risk-stack strong {
  display: inline;
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  letter-spacing: normal;
}

.efficiency-summary {
  max-width: 920px;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 127, 111, 0.24);
  border-radius: 22px;
  color: var(--soft);
  background: linear-gradient(135deg, rgba(255, 127, 111, 0.1), rgba(111, 255, 210, 0.05));
  font-weight: 700;
}

.efficiency-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.efficiency-card strong {
  display: block;
  margin: 0;
}

.efficiency-card.warning {
  border-color: rgba(255, 127, 111, 0.35);
}

.efficiency-card.leader {
  border-color: rgba(111, 255, 210, 0.26);
}

.efficiency-metric {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 28px 0 18px;
}

.efficiency-metric span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.efficiency-metric strong {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.efficiency-card p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.meter {
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.meter span {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.warning .meter span {
  background: linear-gradient(90deg, var(--risk), var(--accent-2));
}

.risk-badge {
  display: inline-flex;
  padding: 10px 12px;
  border: 1px solid rgba(255, 127, 111, 0.42);
  border-radius: 999px;
  color: #ffd3ce;
  background: rgba(255, 127, 111, 0.1);
  font-weight: 800;
}

.cpa-card .risk-badge {
  margin-top: 4px;
}

.proof {
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.proof::after {
  position: absolute;
  inset: auto 28px 28px auto;
  width: 76px;
  height: 76px;
  content: "";
  border: 1px solid rgba(111, 255, 210, 0.18);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(111, 255, 210, 0.08), rgba(242, 195, 107, 0.08));
  transform: rotate(12deg);
}

.proof + .proof {
  margin-top: -66px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(111, 255, 210, 0.45);
  background: rgba(111, 255, 210, 0.12);
  outline: 0;
}

.button.primary {
  color: #04100d;
  background: var(--accent);
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 24px 48px;
  color: var(--muted);
}

.site-footer a {
  color: var(--accent);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.22);
  }
}

@keyframes growBar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero,
  .split,
  .section-heading,
  .action-dashboard {
    grid-template-columns: 1fr;
  }

  .logic-flow,
  .platform-grid,
  .efficiency-grid,
  .efficiency-board {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .logic-card.decision {
    grid-column: span 2;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    padding: 18px;
  }

  .nav-links {
    gap: 8px;
    width: 100%;
    font-size: 0.98rem;
  }

  .nav-links a {
    min-height: 42px;
    padding: 9px 11px;
    background: rgba(255, 255, 255, 0.035);
  }

  .brand {
    font-size: 1rem;
  }

  .section-grid,
  .content-section {
    padding: 62px 18px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
    letter-spacing: -0.045em;
  }

  h2 {
    letter-spacing: -0.03em;
  }

  .hero-panel {
    min-height: auto;
  }

  .logic-flow,
  .platform-grid,
  .efficiency-grid,
  .efficiency-board,
  .action-cards,
  .hero-stat-strip,
  .action-note {
    grid-template-columns: 1fr;
  }

  .logic-card.decision {
    grid-column: auto;
  }

  .bar-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bar-row strong {
    text-align: left;
  }

  .proof,
  .panel-topline,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof + .proof {
    margin-top: -34px;
  }

  .proof::after {
    opacity: 0.45;
  }

  .button-row {
    width: 100%;
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }
}

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