:root {
  --ink: #0b0f19;
  --muted: #5f6675;
  --soft: #f6f7f9;
  --panel: #ffffff;
  --line: #d9dde5;
  --line-strong: #111827;
  --cyan: #25f4ee;
  --blue: var(--cyan);
  --red: #fe2c55;
  --green: #139b68;
  --lime: #a3e635;
  --yellow: #f4b740;
  --shadow: 0 18px 50px rgb(15 23 42 / 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgb(37 244 238 / 0.08), transparent 320px),
    linear-gradient(90deg, rgb(254 44 85 / 0.04), transparent 360px),
    var(--soft);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body.home-page {
  background:
    radial-gradient(circle at 75% 18%, rgb(37 244 238 / 0.22), transparent 34vw),
    radial-gradient(circle at 16% 28%, rgb(254 44 85 / 0.12), transparent 32vw),
    linear-gradient(180deg, #0b0f19 0, #111827 58%, #f6f7f9 58%);
}

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

button,
input {
  font: inherit;
}

.site-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgb(217 221 229 / 0.8);
  background: rgb(246 247 249 / 0.88);
  backdrop-filter: blur(18px);
}

body.home-page .topbar {
  border-bottom-color: rgb(255 255 255 / 0.1);
  background: rgb(11 15 25 / 0.72);
  color: #fff;
}

body.home-page .nav {
  color: rgb(255 255 255 / 0.76);
}

body.home-page .nav a:hover {
  background: rgb(255 255 255 / 0.08);
  color: #fff;
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(37 244 238 / 0.9), rgb(254 44 85 / 0.9)),
    var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  color: #3f4654;
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  border-radius: 8px;
  padding: 8px 10px;
}

.nav a:hover {
  background: #fff;
  color: var(--ink);
}

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

h1,
h2,
h3,
.big-number,
.price {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #252b36;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 56px 0 64px;
}

.hero.compact {
  min-height: auto;
  padding: 64px 0 48px;
}

.home-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.88fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  padding-top: 82px;
  padding-bottom: 88px;
  color: #fff;
}

.home-hero-copy {
  max-width: 640px;
}

.home-hero .actions {
  display: grid;
  width: min(100%, 430px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.home-hero .button,
.home-hero .ghost-button {
  width: 100%;
  min-width: 0;
}

.home-hero h1 {
  max-width: 610px;
  font-size: clamp(54px, 6.4vw, 86px);
  text-wrap: balance;
}

.home-hero .eyebrow {
  border-color: rgb(255 255 255 / 0.18);
  background: rgb(255 255 255 / 0.08);
  color: #fff;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.12);
}

.home-hero .lede {
  color: rgb(255 255 255 / 0.72);
}

.home-hero .button {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.home-hero .ghost-button {
  border-color: rgb(255 255 255 / 0.28);
  background: rgb(255 255 255 / 0.06);
  color: #fff;
  backdrop-filter: blur(16px);
}

.home-profit-panel {
  position: relative;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  border: 1px solid #161b26;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(37 244 238 / 0.14), transparent 34%),
    linear-gradient(315deg, rgb(254 44 85 / 0.12), transparent 36%),
    #10151f;
  box-shadow:
    0 34px 90px rgb(0 0 0 / 0.36),
    0 0 0 1px rgb(255 255 255 / 0.05),
    inset 0 1px 0 rgb(255 255 255 / 0.08);
  color: #fff;
  padding: clamp(20px, 3vw, 28px);
}

.home-profit-panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 8px;
  background: var(--cyan);
  box-shadow: 14px 0 0 var(--red);
}

.home-profit-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgb(0 0 0 / 0.72), transparent 88%);
}

.preview-bar,
.preview-grid,
.fee-lines,
.sheet-callout {
  position: relative;
  z-index: 1;
  width: calc(100% - 42px);
  margin-left: 42px;
}

.preview-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
  padding-bottom: 16px;
  color: rgb(255 255 255 / 0.72);
  font-size: 13px;
  font-weight: 750;
}

.preview-bar strong {
  border: 1px solid rgb(163 230 53 / 0.36);
  border-radius: 999px;
  background: rgb(163 230 53 / 0.1);
  color: var(--lime);
  padding: 5px 9px;
  font-size: 11px;
  text-transform: uppercase;
}

.preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(164px, 0.72fr);
  gap: 12px;
  margin-top: 20px;
  min-width: 0;
}

.input-stack {
  display: grid;
  gap: 8px;
}

.input-stack label,
.profit-card,
.sheet-callout,
.fee-lines div {
  border: 1px solid rgb(255 255 255 / 0.13);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.07);
  backdrop-filter: blur(18px);
}

.input-stack label {
  display: flex;
  min-width: 0;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 13px;
}

.input-stack span,
.profit-card span,
.fee-lines span,
.sheet-callout span {
  color: rgb(255 255 255 / 0.62);
  font-size: 12px;
  font-weight: 700;
}

.input-stack strong,
.fee-lines strong {
  flex: 0 0 auto;
  font-size: 17px;
}

.profit-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 18px 16px;
  background:
    linear-gradient(135deg, rgb(37 244 238 / 0.22), rgb(254 44 85 / 0.14)),
    rgb(255 255 255 / 0.06);
}

.profit-card strong {
  margin: 8px 0 4px;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 0.95;
  text-shadow: 0 0 26px rgb(37 244 238 / 0.18);
}

.profit-card small {
  color: var(--lime);
  font-weight: 850;
}

.fee-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.fee-lines div {
  display: grid;
  min-width: 0;
  min-height: 66px;
  align-content: center;
  gap: 5px;
  padding: 11px 12px;
}

.sheet-callout {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 14px;
  background: #fff;
  color: var(--ink);
}

.sheet-callout span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
}

.sheet-callout a {
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 850;
}

.product-hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  padding-top: 64px;
}

.product-hero-copy {
  max-width: 620px;
  padding-top: 36px;
}

.product-hero h1 {
  max-width: 620px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.02;
}

.product-hero .lede {
  max-width: 560px;
  font-size: 18px;
}

.product-proof-grid {
  display: grid;
  max-width: 560px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.product-proof-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.92);
  box-shadow: 0 12px 28px rgb(15 23 42 / 0.06);
  padding: 14px;
}

.product-proof-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.product-proof-grid strong {
  color: var(--ink);
  font-size: 15px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.ghost-button,
.copy-button,
.preset-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

.button,
.ghost-button {
  padding: 0 16px;
}

.button {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 18px rgb(11 15 25 / 0.12);
}

.ghost-button {
  background: #fff;
  color: var(--ink);
}

.button:hover,
.ghost-button:hover,
.copy-button:hover,
.preset-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgb(15 23 42 / 0.12);
}

.panel,
.card,
.offer-box,
.article-main,
.dark-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.offer-box {
  position: relative;
  overflow: hidden;
}

.offer-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--red));
}

.product-cover {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-buy-card {
  max-width: 420px;
  margin-left: auto;
  background:
    linear-gradient(180deg, rgb(37 244 238 / 0.08), transparent 180px),
    var(--panel);
}

.product-buy-card .product-cover {
  max-height: 214px;
  background: #f2feff;
  object-fit: contain;
}

.product-buy-card .price {
  margin-bottom: 14px;
  font-size: clamp(42px, 3.8vw, 52px);
}

.product-buy-card .check-list {
  gap: 8px;
  margin-top: 14px;
}

.product-buy-card .check-item {
  min-height: 40px;
  padding: 10px 12px;
  font-size: 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.trust-pill {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.9);
  padding: 12px;
}

.trust-pill strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.trust-pill span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 24px;
  align-items: start;
}

.panel,
.card,
.offer-box {
  padding: clamp(20px, 3vw, 28px);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.icon-tile {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: #ecfeff;
  color: #0891b2;
  font-size: 20px;
  font-weight: 900;
}

.presets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}

.preset-button {
  min-height: 36px;
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  font-size: 13px;
}

.field-section {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.field-section-title {
  margin: 0;
  color: #252b36;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

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

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.input-wrap {
  display: flex;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.input-wrap:focus-within {
  border-color: #12c8c3;
  box-shadow: 0 0 0 3px rgb(37 244 238 / 0.18);
}

input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 12px;
  outline: none;
}

.suffix {
  display: grid;
  min-width: 42px;
  place-items: center;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.result-panel {
  position: sticky;
  top: 92px;
  background:
    linear-gradient(135deg, rgb(37 244 238 / 0.12), transparent 38%),
    linear-gradient(315deg, rgb(254 44 85 / 0.14), transparent 34%),
    #0b0f19;
  color: #fff;
}

.verdict {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 850;
}

.verdict.good {
  background: var(--green);
}

.verdict.thin {
  background: var(--yellow);
  color: var(--ink);
}

.verdict.bad {
  background: var(--red);
}

.profit-number {
  color: var(--cyan);
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.9;
}

.caption,
.fineprint {
  color: #cbd5e1;
}

.metric-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
  padding-bottom: 12px;
}

.metric span {
  color: #cbd5e1;
  font-size: 14px;
}

.metric strong,
.big-number {
  font-size: 24px;
  font-weight: 900;
}

.bars {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.bar-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 12px;
  color: #cbd5e1;
  font-size: 13px;
}

.bar {
  display: block;
  width: 20%;
  height: 14px;
  border-radius: 999px;
}

.copy-button {
  width: 100%;
  border-color: transparent;
  background: #fff;
  color: var(--ink);
}

.fineprint {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.section {
  padding: 34px 0 72px;
}

.article {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 28px;
  align-items: start;
  padding: 44px 0 76px;
}

.article-main {
  min-width: 0;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
}

.article-main h1 {
  font-size: clamp(40px, 5vw, 72px);
  overflow-wrap: anywhere;
}

.article-main h2 {
  margin-top: 34px;
  font-size: clamp(26px, 3vw, 38px);
}

.article-main p,
.article-main li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.article-main table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.article-main th,
.article-main td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
}

.article-main th {
  background: #f1f5f9;
  color: var(--ink);
}

.research-scorecard {
  margin: 28px 0;
  border: 1px solid rgb(37 244 238 / 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(37 244 238 / 0.12), transparent 36%),
    linear-gradient(315deg, rgb(254 44 85 / 0.1), transparent 38%),
    #0f1724;
  box-shadow: 0 22px 50px rgb(15 23 42 / 0.16);
  color: #fff;
  padding: clamp(18px, 3vw, 26px);
}

.article-visual {
  margin: 28px 0;
  border: 1px solid rgb(37 244 238 / 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(37 244 238 / 0.12), transparent 36%),
    linear-gradient(315deg, rgb(254 44 85 / 0.1), transparent 38%),
    #0f1724;
  box-shadow: 0 22px 50px rgb(15 23 42 / 0.16);
  color: #fff;
  padding: clamp(18px, 3vw, 26px);
}

.article-visual figcaption,
.research-scorecard figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
  padding-bottom: 14px;
}

.article-visual figcaption span,
.research-scorecard figcaption span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.article-visual figcaption strong,
.research-scorecard figcaption strong {
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.05;
  text-align: right;
  overflow-wrap: anywhere;
}

.article-image {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 28px 0;
  border: 1px solid rgb(15 23 42 / 0.14);
  border-radius: 8px;
  background: #0f1724;
  box-shadow: 0 22px 48px rgb(15 23 42 / 0.14);
}

.article-image img {
  display: block;
  width: 100%;
  height: auto;
}

.article-image figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  border-top: 1px solid rgb(255 255 255 / 0.12);
  background: #0f1724;
  color: rgb(255 255 255 / 0.72);
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.4;
}

.article-image figcaption strong {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.video-source-panel {
  margin: 28px 0;
  border: 1px solid rgb(15 23 42 / 0.12);
  border-radius: 8px;
  background: #fff;
  padding: clamp(18px, 3vw, 24px);
  box-shadow: 0 18px 42px rgb(15 23 42 / 0.08);
}

.video-source-panel h2 {
  margin-top: 0;
}

.video-source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.video-source-card {
  position: relative;
  display: grid;
  min-height: 164px;
  align-content: space-between;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgb(15 23 42 / 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(37 244 238 / 0.1), transparent 42%),
    linear-gradient(315deg, rgb(254 44 85 / 0.09), transparent 44%),
    #f8fafc;
  padding: 16px;
  color: var(--ink);
}

.video-source-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(15 23 42 / 0.16);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 35%, var(--red) 35% 48%, transparent 48%),
    linear-gradient(90deg, transparent 52%, var(--cyan) 52% 65%, transparent 65%),
    rgb(255 255 255 / 0.82);
}

.video-source-card span {
  width: fit-content;
  border: 1px solid rgb(15 23 42 / 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.video-source-card strong {
  display: block;
  max-width: calc(100% - 56px);
  margin: 12px 0 6px;
  font-size: 18px;
  line-height: 1.15;
}

.video-source-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.video-source-card a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 850;
}

.scorecard-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.scorecard-grid div {
  min-height: 150px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.07);
  padding: 14px;
}

.scorecard-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.1);
  color: var(--cyan);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 900;
}

.scorecard-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 15px;
  line-height: 1.15;
}

.scorecard-grid small {
  color: rgb(255 255 255 / 0.68);
  font-size: 12px;
  line-height: 1.4;
}

.waterfall-bars {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.bar {
  display: grid;
  min-height: 138px;
  align-content: end;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.07);
  padding: 12px;
}

.bar.sale {
  min-height: 190px;
  background: rgb(37 244 238 / 0.16);
}

.bar.net {
  min-height: 154px;
  background: rgb(163 230 53 / 0.14);
}

.bar span,
.budget-stack span {
  color: rgb(255 255 255 / 0.62);
  font-size: 12px;
  font-weight: 800;
}

.bar strong,
.budget-stack strong {
  margin-top: 6px;
  font-size: 20px;
}

.ladder-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ladder-steps div {
  min-height: 156px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.07);
  padding: 14px;
}

.ladder-steps span {
  display: inline-flex;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgb(37 244 238 / 0.14);
  color: var(--cyan);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 900;
}

.ladder-steps strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
}

.ladder-steps small {
  color: rgb(255 255 255 / 0.68);
  line-height: 1.4;
}

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

.budget-stack div {
  display: grid;
  width: max(var(--w), 44%);
  min-height: 50px;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 12px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgb(37 244 238 / 0.2), rgb(254 44 85 / 0.12)),
    rgb(255 255 255 / 0.07);
  padding: 10px 12px;
}

.zone-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.zone {
  position: relative;
  display: grid;
  min-height: 168px;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.07);
  padding: 16px;
}

.zone::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.28;
}

.zone.bad::before {
  background: linear-gradient(180deg, transparent 18%, rgb(254 44 85 / 0.72));
}

.zone.watch::before {
  background: linear-gradient(180deg, transparent 18%, rgb(251 191 36 / 0.62));
}

.zone.good::before {
  background: linear-gradient(180deg, transparent 18%, rgb(163 230 53 / 0.64));
}

.zone span,
.zone strong,
.fulfillment-grid span,
.fulfillment-grid strong,
.matrix-grid span,
.matrix-grid strong,
.matrix-grid small {
  position: relative;
  z-index: 1;
}

.zone span,
.fulfillment-grid span,
.matrix-grid span {
  color: rgb(255 255 255 / 0.62);
  font-size: 12px;
  font-weight: 850;
}

.zone strong {
  margin-top: 8px;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1;
}

.fulfillment-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.9fr 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.fulfillment-grid div {
  display: grid;
  min-height: 132px;
  align-content: space-between;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(37 244 238 / 0.16), transparent),
    rgb(255 255 255 / 0.07);
  padding: 14px;
}

.fulfillment-grid div:nth-child(2) {
  background:
    linear-gradient(180deg, rgb(254 44 85 / 0.16), transparent),
    rgb(255 255 255 / 0.09);
}

.fulfillment-grid strong {
  color: #fff;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.matrix-grid div {
  display: grid;
  min-height: 142px;
  align-content: space-between;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.07);
  padding: 14px;
}

.matrix-grid div:nth-child(1) {
  border-color: rgb(163 230 53 / 0.35);
}

.matrix-grid div:nth-child(2) {
  border-color: rgb(37 244 238 / 0.35);
}

.matrix-grid div:nth-child(3) {
  border-color: rgb(251 191 36 / 0.38);
}

.matrix-grid div:nth-child(4) {
  border-color: rgb(254 44 85 / 0.42);
}

.matrix-grid strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.1;
}

.matrix-grid small {
  color: var(--lime);
  font-weight: 900;
}

.breakeven-grid,
.formula-chain-grid,
.commission-grid,
.margin-floor-grid,
.launch-check-grid {
  display: grid;
  gap: 10px;
}

.breakeven-grid {
  grid-template-columns: 1fr 1fr 1.25fr;
}

.breakeven-grid div,
.formula-chain-grid div,
.commission-grid div,
.margin-floor-grid div,
.launch-check-grid div {
  display: grid;
  min-height: 126px;
  align-content: space-between;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.07);
  padding: 14px;
}

.breakeven-grid .highlight,
.formula-chain-grid .positive,
.commission-grid .active,
.margin-floor-grid .active {
  border-color: rgb(163 230 53 / 0.38);
  background:
    linear-gradient(180deg, rgb(163 230 53 / 0.16), transparent),
    rgb(255 255 255 / 0.08);
}

.breakeven-grid span,
.formula-chain-grid span,
.commission-grid span,
.margin-floor-grid span,
.launch-check-grid span,
.test-budget-grid span {
  color: rgb(255 255 255 / 0.62);
  font-size: 12px;
  font-weight: 850;
}

.breakeven-grid strong,
.formula-chain-grid strong,
.commission-grid strong,
.margin-floor-grid strong,
.launch-check-grid strong,
.test-budget-grid strong {
  color: #fff;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.formula-chain-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.formula-chain-grid div {
  min-height: 118px;
}

.formula-chain-grid strong {
  font-size: clamp(18px, 2.4vw, 26px);
}

.commission-grid,
.margin-floor-grid,
.launch-check-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.commission-grid small,
.margin-floor-grid small,
.launch-check-grid small {
  color: rgb(255 255 255 / 0.68);
  line-height: 1.35;
}

.test-budget-grid {
  display: grid;
  gap: 10px;
}

.test-budget-grid div {
  display: grid;
  width: max(var(--w), 46%);
  min-height: 54px;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 12px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgb(37 244 238 / 0.22), rgb(254 44 85 / 0.12)),
    rgb(255 255 255 / 0.07);
  padding: 10px 12px;
}

.launch-check-grid div {
  border-top: 4px solid var(--cyan);
}

.launch-check-grid div:nth-child(2) {
  border-top-color: var(--red);
}

.launch-check-grid div:nth-child(3) {
  border-top-color: var(--lime);
}

.example-visual-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(170px, 0.46fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.example-net-card {
  display: grid;
  min-width: 0;
  min-height: 220px;
  align-content: center;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgb(37 244 238 / 0.16), transparent 48%),
    linear-gradient(320deg, rgb(254 44 85 / 0.18), transparent 52%),
    rgb(255 255 255 / 0.07);
  padding: 20px;
}

.example-net-card span,
.example-net-card small,
.example-bar span {
  color: rgb(255 255 255 / 0.64);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.example-net-card strong {
  display: block;
  margin: 8px 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.95;
}

.example-net-card small {
  color: var(--lime);
}

.example-bars {
  display: grid;
  min-width: 0;
  gap: 9px;
}

.example-bar {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 46px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.055);
  padding: 10px 12px;
}

.example-bar i {
  position: absolute;
  inset: auto auto 0 0;
  width: var(--w);
  height: 3px;
  background: var(--red);
}

.example-bar.profit i {
  background: var(--lime);
}

.example-bar strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.plain-check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.plain-check-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px 14px;
}

.inline-actions {
  margin-top: 18px;
}

.examples-hero {
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.72fr);
}

.example-index-panel {
  padding: clamp(22px, 3vw, 30px);
}

.example-index-stats,
.example-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.example-index-stats {
  margin-top: 18px;
}

.example-index-stats span,
.example-card-meta span,
.example-card-meta strong {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  padding: 6px 9px;
  color: #394150;
  font-size: 12px;
  font-weight: 850;
}

.example-card {
  display: grid;
  align-content: start;
}

.example-card .mini-nav {
  align-self: end;
}

.example-card-meta {
  margin: 8px 0 2px;
}

.example-card-meta strong {
  border-color: rgb(19 155 104 / 0.24);
  background: rgb(19 155 104 / 0.08);
  color: #047857;
}

.source-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.source-list a {
  display: block;
  padding: 12px 14px;
  font-weight: 800;
}

.sidebar-stack {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.mini-nav {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mini-nav a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
  font-weight: 800;
}

.mini-nav a:hover {
  border-color: #12c8c3;
}

.formula-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 16px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  align-items: center;
  border-radius: 999px;
  background: #f8fafc;
  color: #394150;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 850;
}

.tag::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--red);
}

.muted {
  color: var(--muted);
  line-height: 1.65;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.price {
  margin: 0;
  font-size: 68px;
  font-weight: 900;
  line-height: 0.95;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  font-weight: 750;
}

.check {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-weight: 900;
}

.dark-box {
  background: var(--ink);
  color: #fff;
  padding: 24px;
}

.email-box {
  display: flex;
  gap: 10px;
}

.email-box input {
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 24px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer a {
  font-weight: 750;
}

@media (max-width: 920px) {
  .hero,
  .calculator-grid,
  .cards,
  .offer-grid,
  .trust-strip,
  .article,
  .examples-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .home-hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .home-hero h1 {
    font-size: clamp(48px, 12vw, 72px);
  }

  .product-hero {
    gap: 24px;
    padding-top: 36px;
  }

  .product-hero-copy,
  .product-buy-card {
    max-width: none;
  }

  .product-buy-card {
    margin-left: 0;
  }

  .home-profit-panel {
    max-width: 620px;
  }

  .result-panel,
  .sidebar-stack {
    position: static;
  }
}

@media (max-width: 560px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-shell {
    width: min(calc(100% - 20px), 1160px);
    min-width: 0;
  }

  .article,
  .article-main,
  .article-visual,
  .article-image,
  .video-source-panel {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .article {
    overflow: hidden;
  }

  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

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

  h1 {
    font-size: 42px;
  }

  .product-hero h1 {
    font-size: 40px;
  }

  .home-hero {
    padding-top: 32px;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .home-hero .actions {
    grid-template-columns: 1fr;
  }

  .home-profit-panel {
    padding: 18px;
  }

  .home-profit-panel::before {
    left: 16px;
    width: 6px;
    box-shadow: 10px 0 0 var(--red);
  }

  .preview-bar,
  .preview-grid,
  .fee-lines,
  .sheet-callout {
    width: calc(100% - 22px);
    margin-left: 22px;
  }

  .preview-bar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .fee-lines {
    grid-template-columns: 1fr;
  }

  .profit-card {
    min-height: 132px;
  }

  .sheet-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .actions {
    gap: 10px;
  }

  .product-proof-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .ghost-button {
    min-height: 40px;
    padding: 0 13px;
  }

  .product-buy-card .product-cover {
    max-height: 210px;
  }

  .field-grid,
  .email-box,
  .scorecard-grid,
  .video-source-grid {
    grid-template-columns: 1fr;
  }

  .email-box {
    display: grid;
  }

  .research-scorecard figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-visual figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-image figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-visual figcaption strong,
  .research-scorecard figcaption strong {
    font-size: 24px;
    text-align: left;
  }

  .article-main {
    padding: 22px;
  }

  .article-main table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }

  .article-main h1 {
    font-size: 28px;
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .article-main .lede {
    font-size: 15px;
  }

  .research-scorecard {
    margin-right: -8px;
    margin-left: -8px;
    padding: 18px;
  }

  .article-visual {
    margin-right: -8px;
    margin-left: -8px;
    overflow: hidden;
    padding: 18px;
  }

  .article-image img {
    max-width: 100%;
  }

  .waterfall-bars,
  .ladder-steps,
  .zone-track,
  .fulfillment-grid,
  .matrix-grid,
    .breakeven-grid,
    .formula-chain-grid,
    .commission-grid,
    .margin-floor-grid,
    .launch-check-grid,
    .example-visual-grid {
    grid-template-columns: 1fr;
  }

  .example-net-card {
    min-height: 160px;
  }

  .example-bar {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .bar,
  .bar.sale,
  .bar.net {
    min-height: 78px;
  }

  .zone,
  .fulfillment-grid div,
  .matrix-grid div {
    min-height: 96px;
  }

  .budget-stack div {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .test-budget-grid div {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .metric {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* 2026-06-04 final layout overrides */
.home-page {
  background:
    radial-gradient(circle at 20% 12%, rgb(37 244 238 / 13%), transparent 30%),
    radial-gradient(circle at 82% 16%, rgb(254 44 85 / 12%), transparent 28%),
    linear-gradient(135deg, #061018 0%, #0d1820 46%, #10141c 100%);
}

.home-page .topbar {
  border-bottom-color: rgb(255 255 255 / 8%);
  background: rgb(8 12 18 / 86%);
}

.home-hero {
  min-height: auto;
  padding-top: clamp(38px, 5vw, 58px);
  padding-bottom: clamp(30px, 4vw, 46px);
}

.home-hero h1 {
  font-size: clamp(46px, 5.7vw, 74px);
  line-height: .96;
}

.home-hero .lede {
  max-width: 600px;
}

.home-profit-panel {
  align-self: stretch;
}

.home-route-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 0 42px;
  margin-top: -10px;
}

.route-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 8px;
  background: rgb(255 255 255 / 6%);
  color: #fff;
  padding: 18px;
}

.route-card h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.04;
}

.route-card .muted {
  color: rgb(255 255 255 / 66%);
}

.route-card .tag {
  margin-bottom: 14px;
  background: rgb(255 255 255 / 10%);
  color: #fff;
}

.route-card .mini-nav {
  margin-top: auto;
}

.route-card .mini-nav a {
  border-color: rgb(255 255 255 / 18%);
  background: rgb(255 255 255 / 8%);
  color: #fff;
}

.primary-route {
  background: #fff;
  color: var(--ink);
}

.primary-route .muted {
  color: var(--muted);
}

.primary-route .tag {
  background: #f8fafc;
  color: #394150;
}

.primary-route .mini-nav a {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.section {
  padding: clamp(24px, 3vw, 38px) 0;
}

.section + .section {
  padding-top: 8px;
}

.section > h2 {
  margin-top: 0;
  margin-bottom: 18px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: stretch;
}

.card {
  display: flex;
  min-height: 0;
  flex-direction: column;
}

.card .mini-nav {
  margin-top: auto;
}

.article {
  padding: clamp(24px, 3vw, 38px) 0 clamp(38px, 4vw, 54px);
}

.article-main {
  padding: clamp(22px, 3vw, 34px);
}

.article-main h2 {
  margin-top: 26px;
}

.article-main table,
.article-image,
.article-visual,
.research-scorecard,
.video-source-panel {
  margin: 18px 0;
}

.article-image img {
  max-height: 430px;
  object-fit: contain;
  background: #eefafa;
}

.examples-hero {
  padding: clamp(18px, 3vw, 24px);
}

@media (max-width: 1020px) {
  .home-route-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .home-hero {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .home-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .home-route-strip {
    grid-template-columns: 1fr;
    padding-bottom: 30px;
  }

  .section {
    padding: 24px 0;
  }

  .article-main h2 {
    margin-top: 22px;
  }
}

/* 2026-06-04 readability pass */
.home-route-strip {
  padding-top: 28px;
  margin-top: 0;
}

.route-card {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.route-card .muted {
  color: var(--muted);
}

.route-card .tag {
  background: #f8fafc;
  color: #394150;
}

.route-card .mini-nav a {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.route-card .mini-nav a:hover {
  border-color: var(--ink);
}

.primary-route {
  border-color: rgb(255 255 255 / 16%);
  background: var(--ink);
  color: #fff;
}

.primary-route .muted {
  color: rgb(255 255 255 / 72%);
}

.primary-route .tag {
  background: rgb(255 255 255 / 10%);
  color: #fff;
}

.primary-route .mini-nav a {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

body:not(.home-page) .hero.compact {
  gap: clamp(24px, 4vw, 44px);
  padding: clamp(32px, 5vw, 56px) 0 clamp(28px, 4vw, 42px);
}

body:not(.home-page) .hero.compact h1 {
  max-width: 11ch;
  font-size: clamp(44px, 5.9vw, 74px);
  line-height: .98;
}

body:not(.home-page) .hero.compact .lede {
  max-width: 650px;
}

.article-main h1 {
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.02;
}

@media (max-width: 560px) {
  .topbar {
    gap: 14px;
    padding: 10px 0 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .nav {
    gap: 10px;
    font-size: 14px;
  }

  .home-hero {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 10.8vw, 44px);
    line-height: .98;
  }

  .home-hero .lede {
    font-size: 18px;
    line-height: 1.5;
  }

  body:not(.home-page) .hero.compact {
    gap: 20px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  body:not(.home-page) .hero.compact h1 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.02;
  }

  body:not(.home-page) .hero.compact .lede {
    font-size: 18px;
    line-height: 1.5;
  }

  .article-main h1 {
    font-size: clamp(34px, 9vw, 40px);
  }
}

/* 2026-06-04 mobile article overflow fix */
@media (max-width: 560px) {
  .article {
    display: block;
    overflow: visible;
    width: min(100%, calc(100vw - 20px));
  }

  .article-main,
  .article-image,
  .article-visual,
  .research-scorecard,
  .video-source-panel,
  .formula-box,
  .offer-box {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .article-main {
    overflow: visible;
  }

  .article-main h1,
  .article-main h2,
  .article-main p,
  .article-main li {
    max-width: 100%;
  }

  .article-image {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .article-image img {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .article-main table {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: normal;
  }

  .article-main th,
  .article-main td {
    min-width: 118px;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .article-main .mobile-stack-table {
    display: table;
    overflow-x: visible;
    white-space: normal;
  }

  .article-main .mobile-stack-table thead {
    display: none;
  }

  .article-main .mobile-stack-table,
  .article-main .mobile-stack-table tbody,
  .article-main .mobile-stack-table tr,
  .article-main .mobile-stack-table th,
  .article-main .mobile-stack-table td {
    width: 100%;
    min-width: 0;
  }

  .article-main .mobile-stack-table tbody,
  .article-main .mobile-stack-table tr,
  .article-main .mobile-stack-table th,
  .article-main .mobile-stack-table td {
    display: block;
  }

  .article-main .mobile-stack-table tr {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .article-main .mobile-stack-table th,
  .article-main .mobile-stack-table td {
    border: 0;
    text-align: left;
  }

  .article-main .mobile-stack-table td + td,
  .article-main .mobile-stack-table th + td {
    border-top: 1px solid var(--line);
  }
}

/* 2026-06-04 batch3 mobile containment */
@media (max-width: 560px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .site-shell,
  .topbar,
  .article,
  .article-main,
  .sidebar-stack,
  .offer-box,
  .video-source-panel,
  .video-source-grid,
  .video-source-card,
  .article-image,
  .article-visual,
  .research-scorecard,
  .formula-box,
  .cards,
  .card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .site-shell {
    width: calc(100% - 20px);
    margin-right: auto;
    margin-left: auto;
  }

  .article {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding-top: 26px;
  }

  .article-main {
    overflow: hidden;
    padding: 22px;
  }

  .article-main h1,
  .article-main h2,
  .article-main h3,
  .article-main p,
  .article-main li,
  .article-main a,
  .article-main td,
  .article-main th,
  .offer-box h2,
  .offer-box p,
  .card h3,
  .card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .article-main h1 {
    font-size: clamp(31px, 8.3vw, 36px);
    line-height: 1.08;
  }

  .article-main h2 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.12;
  }

  .article-main p,
  .article-main li {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .article-image,
  .article-visual,
  .research-scorecard {
    margin-right: 0;
    margin-left: 0;
  }

  .article-image {
    overflow: hidden;
  }

  .article-image img {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .article-image figcaption {
    min-width: 0;
  }

  .cards {
    grid-template-columns: minmax(0, 1fr);
  }
}
