body.home-editorial {
  --paper: #f8f5ee;
  --paper-2: #f1ece1;
  --ink: #14181f;
  --ink-2: #34394a;
  --muted: #6b6f7a;
  --line: #d9d2c2;
  --line-2: #c4bba6;
  --accent: #0e6b62;
  --accent-soft: #c8e0db;
  --hi: #b0411b;
  --shadow-1: 0 1px 0 rgba(20, 24, 31, 0.04), 0 12px 30px -18px rgba(20, 24, 31, 0.25);
  --shadow-pdf: 0 40px 80px -30px rgba(20, 24, 31, 0.4), 0 18px 30px -20px rgba(20, 24, 31, 0.25);
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Source Sans 3", sans-serif;
}

body.home-editorial::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.45;
  z-index: 1;
}

body.home-editorial .site-footer,
body.home-editorial main {
  position: relative;
  z-index: 1;
}

body.home-editorial .site-header {
  position: sticky;
  top: 0;
  z-index: 250;
  min-height: 0;
  background: color-mix(in oklab, var(--paper) 97%, white 3%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px -20px rgba(20, 24, 31, 0.35);
}

body.home-editorial .site-header-inner {
  max-width: 1240px;
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 32px;
}

body.home-editorial .site-header .logo,
body.home-editorial h1,
body.home-editorial h2,
body.home-editorial h3 {
  font-family: "Playfair Display", serif;
  color: var(--ink);
}

body.home-editorial .site-header .logo {
  font-size: 19px;
  letter-spacing: -0.02em;
}

body.home-editorial .site-header .logo span {
  color: var(--accent);
}

body.home-editorial .site-header .nav-burger {
  color: var(--ink);
}

body.home-editorial .site-header nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

body.home-editorial .site-header nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 6px;
}

body.home-editorial .site-header nav a:hover,
body.home-editorial .site-header nav a.active {
  color: var(--ink);
  background: var(--paper-2);
}

body.home-editorial .site-header .nav-cta {
  background: var(--ink) !important;
  color: var(--paper) !important;
}

body.home-editorial .site-header .nav-cta:hover {
  background: var(--accent) !important;
}

body.home-editorial .home-shell {
  overflow: hidden;
}

body.home-editorial .home-shell .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

body.home-editorial .home-shell p {
  color: var(--ink-2);
}

body.home-editorial .hero,
body.home-editorial .section,
body.home-editorial .trust-section,
body.home-editorial .final-cta {
  padding-left: 0;
  padding-right: 0;
}

body.home-editorial .hero {
  padding-top: 64px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

body.home-editorial .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

body.home-editorial .hero-issue {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

body.home-editorial .hero-issue .num {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-style: italic;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}

body.home-editorial .hero-issue .vline {
  width: 1px;
  height: 14px;
  background: var(--line-2);
}

body.home-editorial .hero-issue .live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
}

body.home-editorial .hero-issue .live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: home-pulse-dot 2s infinite;
}

body.home-editorial .hero h1 {
  font-size: clamp(40px, 6.5vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}

body.home-editorial .hero h1 .row {
  display: block;
}

body.home-editorial .hero-qm-line {
  white-space: nowrap;
}

body.home-editorial .hero-qm-word {
  color: var(--hi);
  font-style: normal;
}

body.home-editorial .serif-i {
  color: var(--hi);
  font-style: italic;
}

body.home-editorial .hero-lead {
  max-width: 580px;
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.55;
}

body.home-editorial .hero-lead .underline {
  box-shadow: inset 0 -8px 0 var(--accent-soft);
}

body.home-editorial .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

body.home-editorial .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 7px;
  border: 1px solid transparent;
  font: 600 15px/1 "Manrope", sans-serif;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.home-editorial .btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 8px 26px -8px rgba(20, 24, 31, 0.3);
}

body.home-editorial .btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

body.home-editorial .btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}

body.home-editorial .btn-ghost:hover {
  border-color: var(--ink);
}

body.home-editorial .btn .arrow {
  transition: transform 0.25s ease;
}

body.home-editorial .btn:hover .arrow {
  transform: translateX(3px);
}

body.home-editorial .cta-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}

body.home-editorial .cta-meta .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line-2);
}

body.home-editorial .cta-meta strong,
body.home-editorial .counter-emph {
  color: var(--ink);
}

body.home-editorial .counter-emph {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
}

body.home-editorial .hero-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  order: -1;
}

body.home-editorial .pdf-stage {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
}

body.home-editorial .pdf-shadow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 70%;
  height: 30px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(20, 24, 31, 0.35), transparent 70%);
  filter: blur(14px);
}

body.home-editorial .pdf-cover {
  position: relative;
  width: clamp(280px, 34vw, 420px);
  aspect-ratio: 5 / 7;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-pdf);
  transform-style: preserve-3d;
}

body.home-editorial .floating {
  animation: home-float 6s ease-in-out infinite;
}

body.home-editorial .pdf-edge {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: -8px;
  width: 8px;
  background: linear-gradient(90deg, color-mix(in oklab, var(--paper) 70%, var(--line-2)), var(--paper));
  border-left: 1px solid var(--line-2);
  border-radius: 2px 0 0 2px;
}

body.home-editorial .pdf-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(225deg, var(--paper-2) 50%, transparent 50%);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.home-editorial .pdf-face {
  position: absolute;
  inset: 0;
  padding: 28px 26px;
  background: linear-gradient(135deg, transparent 0%, color-mix(in oklab, var(--paper) 96%, var(--ink)) 120%), var(--paper);
}

body.home-editorial .pdf-face-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.home-editorial .pdf-tag {
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

body.home-editorial .pdf-title {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 2.2vw, 36px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

body.home-editorial .pdf-title-amp {
  margin: 4px 0;
  font-size: 0.6em;
  font-style: italic;
  font-weight: 400;
  color: var(--hi);
}

body.home-editorial .pdf-rule {
  height: 1px;
  margin: 16px 0;
  background: var(--line);
}

body.home-editorial .pdf-bullets-mini {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  font-size: 11px;
}

body.home-editorial .pdf-bullets-mini li {
  position: relative;
  padding-left: 12px;
  color: var(--ink-2);
  font-weight: 500;
}

body.home-editorial .pdf-bullets-mini li::before {
  content: "·";
  position: absolute;
  top: -2px;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

body.home-editorial .pdf-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

body.home-editorial .pdf-foot-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

body.home-editorial .pdf-foot-pages {
  margin-left: auto;
}

body.home-editorial .pdf-sticker {
  position: absolute;
  top: 8%;
  right: 6%;
  z-index: 3;
  display: flex;
  width: 96px;
  height: 96px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  box-shadow: 0 14px 30px -12px rgba(14, 107, 98, 0.55);
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  transform: rotate(-12deg);
  animation: home-sticker-wobble 5s ease-in-out infinite;
}

body.home-editorial .trust-section {
  padding-top: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

body.home-editorial .trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

body.home-editorial .trust-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-transform: none;
}

body.home-editorial .trust-tools .tool {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.home-editorial .trust-tools .swatch {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

body.home-editorial .marquee {
  margin-top: 14px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

body.home-editorial .marquee-track {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 4px 0;
  animation: home-scroll 38s linear infinite;
}

body.home-editorial .marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-style: italic;
  color: var(--ink-2);
}

body.home-editorial .marquee-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

body.home-editorial .section {
  padding-top: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--line);
}

body.home-editorial .section-head {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 40px;
  margin-bottom: 56px;
  align-items: start;
}

body.home-editorial .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

body.home-editorial .eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--ink);
}

body.home-editorial .section-head h2 {
  max-width: 880px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

body.home-editorial .section-head .lead {
  max-width: 640px;
  margin-top: 18px;
  font-size: 17px;
  color: var(--muted);
}

body.home-editorial .ps-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

body.home-editorial .ps-row {
  display: grid;
  grid-template-columns: 60px 1fr 60px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}

body.home-editorial .ps-row:hover {
  background: var(--paper-2);
}

body.home-editorial .ps-num {
  padding-top: 4px;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-style: italic;
  color: var(--muted);
  line-height: 1;
}

body.home-editorial .ps-tag {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

body.home-editorial .ps-tag.teal {
  color: var(--accent);
}

body.home-editorial .ps-prob p,
body.home-editorial .ps-sol p {
  font-size: 17px;
  color: var(--ink);
}

body.home-editorial .ps-prob p {
  font-weight: 500;
}

body.home-editorial .ps-sol p {
  font-weight: 600;
}

body.home-editorial .ps-note {
  display: block;
  margin-top: 6px;
  font-family: "Playfair Display", serif;
  font-size: 12px;
  font-style: italic;
  color: var(--muted);
}

body.home-editorial .ps-arrow {
  padding-top: 14px;
  color: var(--accent);
}

body.home-editorial .roi-mini {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-2);
  box-shadow: var(--shadow-1);
}

body.home-editorial .roi-row {
  margin-bottom: 18px;
}

body.home-editorial .roi-row:last-child {
  margin-bottom: 0;
}

body.home-editorial .roi-row label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

body.home-editorial .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

body.home-editorial .chip {
  padding: 9px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  font: 600 13px/1 "Manrope", sans-serif;
  transition: all 0.15s;
}

body.home-editorial .chip:hover {
  border-color: var(--ink);
  color: var(--ink);
}

body.home-editorial .chip.on {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

body.home-editorial .roi-mini-result {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

body.home-editorial .roi-num {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: "Playfair Display", serif;
  font-size: 84px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

body.home-editorial .roi-num .unit {
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

body.home-editorial .roi-sub {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

body.home-editorial .roi-bar {
  width: 100%;
  height: 4px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--line);
}

body.home-editorial .roi-bar-fill {
  height: 100%;
  background: var(--accent);
  transition: width 0.4s ease;
}

body.home-editorial .read-more {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

body.home-editorial .rm-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  gap: 14px;
  padding: 36px 32px;
  background: var(--paper);
  text-decoration: none;
  transition: background 0.25s;
}

body.home-editorial .rm-card:hover {
  background: var(--paper-2);
}

body.home-editorial .rm-num {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
}

body.home-editorial .rm-card h3 {
  font-size: 26px;
  letter-spacing: -0.01em;
}

body.home-editorial .rm-card p {
  flex: 1;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

body.home-editorial .rm-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

body.home-editorial .rm-link .arrow {
  transition: transform 0.25s;
}

body.home-editorial .rm-card:hover .rm-link .arrow {
  transform: translateX(4px);
}

body.home-editorial .final-cta {
  padding-top: 100px;
  padding-bottom: 100px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

body.home-editorial .final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

body.home-editorial .final-cta h2 {
  margin-top: 14px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.5vw, 60px);
  color: var(--paper);
}

body.home-editorial .final-cta h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

body.home-editorial .final-cta p {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: 17px;
  color: color-mix(in oklab, var(--paper) 70%, transparent);
}

body.home-editorial .final-cta .btn-primary {
  background: var(--paper);
  color: var(--ink);
}

body.home-editorial .final-cta .btn-primary:hover {
  background: var(--accent);
  color: var(--paper);
}

body.home-editorial .final-cta .btn-ghost {
  color: var(--paper);
  border-color: color-mix(in oklab, var(--paper) 24%, transparent);
}

body.home-editorial .final-cta .btn-ghost:hover {
  border-color: var(--paper);
}

body.home-editorial .final-cta-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

body.home-editorial .fc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--paper) 10%, transparent);
}

body.home-editorial .fc-item:last-child {
  border-bottom: none;
}

body.home-editorial .fc-item .check {
  display: flex;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
}

body.home-editorial .fc-item p {
  margin: 0;
  max-width: none;
  color: color-mix(in oklab, var(--paper) 80%, transparent);
}

body.home-editorial .fc-item strong {
  color: var(--paper);
}

body.home-editorial .site-footer {
  padding: 48px 0 32px;
  background: var(--paper-2);
  color: var(--muted);
  font-size: 13px;
}

body.home-editorial .site-footer .footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

body.home-editorial .site-footer,
body.home-editorial .site-footer a {
  color: var(--muted);
}

body.home-editorial .site-footer a:hover {
  color: var(--ink);
}

body.home-editorial ::selection {
  background: var(--ink);
  color: var(--paper);
}

body.home-editorial :focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@keyframes home-pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(14, 107, 98, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(14, 107, 98, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 107, 98, 0); }
}

@keyframes home-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes home-sticker-wobble {
  0%, 100% { transform: rotate(-12deg); }
  50% { transform: rotate(-8deg) scale(1.04); }
}

@keyframes home-scroll {
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  body.home-editorial .hero-grid,
  body.home-editorial .final-cta-grid {
    grid-template-columns: 1fr;
  }

  body.home-editorial .hero-side {
    min-height: 380px;
    order: 0;
  }

  body.home-editorial .read-more {
    grid-template-columns: 1fr 1fr;
  }

  body.home-editorial .rm-card {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  body.home-editorial .site-header-inner {
    gap: 12px;
  }

  body.home-editorial .site-header nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    width: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: color-mix(in oklab, var(--paper) 97%, white 3%);
    box-shadow: 0 18px 40px -24px rgba(20, 24, 31, 0.45);
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    z-index: 280;
  }

  body.home-editorial .site-header.nav-open nav {
    display: flex;
  }

  body.home-editorial .site-header .nav-burger {
    display: block;
    flex: 0 0 auto;
  }

  body.home-editorial .site-header nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 12px;
    white-space: normal;
  }

  body.home-editorial .site-header .nav-cta {
    justify-content: center;
  }
}

@media (max-width: 880px) {
  body.home-editorial .roi-mini,
  body.home-editorial .read-more {
    grid-template-columns: 1fr;
  }

  body.home-editorial .ps-row {
    grid-template-columns: 60px 1fr;
    gap: 16px 20px;
  }

  body.home-editorial .ps-arrow {
    display: none;
  }

  body.home-editorial .ps-prob,
  body.home-editorial .ps-sol {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  body.home-editorial .home-shell .container,
  body.home-editorial .site-footer .footer-inner {
    padding: 0 20px;
  }

  body.home-editorial .site-header-inner {
    padding: 12px 20px;
  }

  body.home-editorial .hero {
    padding-top: 40px;
    padding-bottom: 56px;
  }

  body.home-editorial .hero h1 {
    font-size: clamp(32px, 12vw, 52px);
  }

  body.home-editorial .hero-qm-line {
    white-space: normal;
  }

  body.home-editorial .hero-issue {
    gap: 8px 12px;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  body.home-editorial .hero-issue .vline {
    display: none;
  }

  body.home-editorial .hero-lead,
  body.home-editorial .section-head .lead,
  body.home-editorial .final-cta p,
  body.home-editorial .ps-prob p,
  body.home-editorial .ps-sol p {
    font-size: 16px;
  }

  body.home-editorial .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  body.home-editorial .cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  body.home-editorial .hero-side {
    min-height: 0;
  }

  body.home-editorial .pdf-cover {
    width: min(100%, 340px);
  }

  body.home-editorial .pdf-sticker {
    width: 76px;
    height: 76px;
    font-size: 18px;
  }

  body.home-editorial .section,
  body.home-editorial .final-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  body.home-editorial .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 36px;
  }

  body.home-editorial .ps-row {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  body.home-editorial .roi-mini {
    gap: 24px;
    padding: 24px 20px;
  }

  body.home-editorial .roi-mini-result {
    padding: 20px;
  }

  body.home-editorial .roi-num {
    font-size: 56px;
  }

  body.home-editorial .roi-num .unit {
    font-size: 20px;
  }

  body.home-editorial .rm-card {
    padding: 28px 22px;
  }

  body.home-editorial .rm-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 520px) {
  body.home-editorial .home-shell .container,
  body.home-editorial .site-footer .footer-inner {
    padding: 0 22px;
  }

  body.home-editorial .site-header-inner {
    gap: 16px;
    padding: 12px 22px;
  }

  body.home-editorial .site-header .logo {
    min-width: 0;
    font-size: 17px;
  }

  body.home-editorial .site-header nav {
    left: 14px;
    right: 14px;
  }

  body.home-editorial .trust-tools {
    gap: 10px 14px;
    font-size: 12px;
  }

  body.home-editorial .marquee-item {
    font-size: 15px;
  }

  body.home-editorial .section-head h2,
  body.home-editorial .final-cta h2 {
    font-size: clamp(28px, 10vw, 40px);
  }

  body.home-editorial .cta-meta {
    gap: 10px 14px;
  }

  body.home-editorial .cta-meta .sep {
    display: none;
  }
}
