:root {
  --paper: #ffffff;
  --ink: #18171f;
  --muted: rgba(24, 23, 31, 0.7);
  --line: #18171f;
  --brand: #4f46e5;
  --signal: #ff3d86;
  --soft: #f3f3f6;
  --type: "Bricolage Grotesque", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 1240px;
  --reading: 760px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--type);
  font-optical-sizing: auto;
}

body::selection {
  background: var(--brand);
  color: var(--paper);
}

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

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

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

h1,
h2,
h3 {
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

p,
a,
li,
span,
strong {
  overflow-wrap: anywhere;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border: 2px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

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

.top-strip {
  overflow: clip;
  border-bottom: 2px solid var(--line);
  background: var(--brand);
  color: var(--paper);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.top-strip-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.top-strip span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 24px;
  white-space: nowrap;
}

.top-strip span::before {
  content: "+";
  margin-right: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 12px max(20px, calc((100% - var(--shell)) / 2));
  border-bottom: 2px solid var(--line);
  background: var(--paper);
}

.brand {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-symbol {
  width: 46px;
  height: auto;
  flex: 0 0 46px;
}

.brand-wordmark {
  display: inline-block;
  white-space: nowrap;
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1;
}

.brand-primary {
  color: var(--brand);
}

.brand-accent {
  color: var(--signal);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  padding: 9px 11px;
  border: 1px solid transparent;
  font-size: 0.76rem;
}

.nav-links a:hover,
.nav-links a.is-current {
  border-color: var(--line);
  background: var(--soft);
}

.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  border: 2px solid var(--line);
  font-size: 0.78rem;
  font-weight: 900;
}

.nav-cta {
  min-height: 44px;
  justify-self: end;
  background: var(--signal);
  box-shadow: 4px 4px 0 var(--line);
}

.primary-button {
  background: var(--signal);
  box-shadow: 5px 5px 0 var(--line);
}

.secondary-button {
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--brand);
}

.eyebrow,
.section-kicker {
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 20px;
  padding: 6px 9px;
  border: 2px solid var(--line);
  background: var(--brand);
  color: var(--paper);
  box-shadow: 3px 3px 0 var(--line);
}

.eyebrow.pink {
  background: var(--signal);
  color: var(--ink);
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--brand);
}

.blog-hero {
  border-bottom: 2px solid var(--line);
  background: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.75fr);
  gap: 72px;
  align-items: center;
  min-height: 590px;
  padding: 72px 0;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 4.8rem;
  font-weight: 780;
  line-height: 0.95;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.56;
}

.hero-receipt {
  border: 2px solid var(--line);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
}

.receipt-bar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 2px solid var(--line);
  background: var(--soft);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.receipt-question {
  padding: 24px;
  border-bottom: 2px solid var(--line);
}

.receipt-question span,
.receipt-result > span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.receipt-question p {
  margin-bottom: 0;
  font-size: 1.7rem;
  font-weight: 780;
  line-height: 1.12;
}

.receipt-result {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.receipt-result > span {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.receipt-result strong {
  min-width: 0;
  padding: 18px 10px;
  border-right: 1px solid var(--line);
  font-size: 0.88rem;
  text-align: center;
}

.receipt-result strong:last-child {
  border-right: 0;
  background: var(--signal);
}

.category-bar {
  border-bottom: 2px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.category-list {
  display: flex;
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-list a {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 0.78rem;
  font-weight: 800;
}

.category-list a:hover {
  background: var(--brand);
}

.articles-section {
  padding: 96px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  gap: 68px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading h2,
.inline-audit h2,
.newsletter-note h2,
.more-reading h2 {
  margin-bottom: 0;
  font-size: 3.8rem;
  font-weight: 760;
  line-height: 0.98;
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.55;
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  margin-bottom: 18px;
  border: 2px solid var(--line);
  background: var(--paper);
  box-shadow: 9px 9px 0 var(--brand);
}

.article-visual {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-right: 2px solid var(--line);
  background: var(--brand);
  color: var(--paper);
}

.visual-label {
  width: fit-content;
  margin-bottom: 24px;
  padding: 7px 9px;
  border: 2px solid var(--paper);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-query {
  margin-bottom: 18px;
  padding: 18px;
  border: 2px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 780;
  line-height: 1.2;
  box-shadow: 5px 5px 0 var(--ink);
}

.visual-answer,
.visual-missing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 12px 14px;
  border: 2px solid var(--paper);
  font-size: 0.82rem;
}

.visual-answer {
  margin-bottom: 8px;
  background: var(--ink);
}

.visual-missing {
  background: var(--signal);
  color: var(--ink);
}

.featured-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.card-meta span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  background: var(--soft);
  font-size: 0.65rem;
  font-weight: 850;
  text-transform: uppercase;
}

.card-meta span:first-child {
  background: var(--brand);
  color: var(--paper);
}

.featured-copy h3 {
  margin-bottom: 20px;
  font-size: 2.7rem;
  font-weight: 760;
  line-height: 1;
}

.featured-copy > p,
.article-card > p {
  color: var(--muted);
  line-height: 1.55;
}

.featured-copy > p {
  font-size: 1.08rem;
}

.article-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 10px 0 4px;
  border-bottom: 2px solid var(--line);
  font-size: 0.82rem;
  font-weight: 900;
}

.article-link:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.article-card {
  position: relative;
  display: flex;
  min-height: 390px;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  border: 2px solid var(--line);
  background: var(--paper);
}

.article-card:nth-child(3n + 2) {
  background: var(--soft);
}

.card-number {
  display: grid;
  width: 58px;
  height: 52px;
  place-items: center;
  margin-bottom: 34px;
  border: 2px solid var(--line);
  background: var(--brand);
  color: var(--paper);
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--line);
}

.card-number.accent-number {
  background: var(--signal);
  color: var(--ink);
}

.article-card h3 {
  margin-bottom: 14px;
  font-size: 1.75rem;
  font-weight: 760;
  line-height: 1.08;
}

.inline-audit {
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: var(--brand);
  color: var(--paper);
}

.audit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 80px;
  align-items: center;
  padding: 88px 0;
}

.audit-copy p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.55;
}

.audit-copy > span,
.article-end-cta > span {
  display: block;
  margin-top: 16px;
  font-size: 0.67rem;
  font-weight: 850;
  text-transform: uppercase;
}

.newsletter-note {
  padding: 74px 0;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 28px;
  border: 2px solid var(--line);
  background: var(--soft);
  box-shadow: 8px 8px 0 var(--signal);
}

.newsletter-mark {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  background: var(--brand);
  color: var(--paper);
  font-size: 2rem;
  font-weight: 900;
}

.newsletter-note h2 {
  margin-bottom: 14px;
  font-size: 2.6rem;
}

.newsletter-note p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(150px, 0.65fr) minmax(300px, 1fr);
  gap: 62px;
  padding: 60px 0 48px;
}

.footer-brand {
  color: var(--paper);
}

.footer-brand .brand-primary {
  color: var(--paper);
}

.footer-intro p {
  max-width: 340px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.footer-group {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-group strong {
  margin-bottom: 7px;
  color: var(--signal);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.footer-group a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.footer-group a:hover {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.policy-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy-links strong {
  grid-column: 1 / -1;
}

.footer-bottom {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

/* Article detail */

.article-hero {
  border-bottom: 2px solid var(--line);
  background: var(--brand);
  color: var(--paper);
}

.article-hero-shell {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0 72px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
}

.breadcrumbs a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-hero .eyebrow {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--signal);
}

.article-hero h1 {
  max-width: 1020px;
  margin-bottom: 26px;
  font-size: 5rem;
  font-weight: 780;
  line-height: 0.94;
}

.article-deck {
  max-width: 800px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.3rem;
  line-height: 1.52;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-byline span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, var(--reading));
  gap: 80px;
  width: min(1070px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 100px;
}

.article-sidebar {
  min-width: 0;
}

.article-sidebar > nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 2px;
  border-top: 2px solid var(--line);
}

.article-sidebar nav strong {
  padding: 14px 0 10px;
  color: var(--brand);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.article-sidebar nav a {
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.25;
}

.article-sidebar nav a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sidebar-check {
  margin-top: 32px;
  padding: 16px;
  border: 2px solid var(--line);
  background: var(--soft);
  box-shadow: 5px 5px 0 var(--brand);
}

.sidebar-check span {
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sidebar-check p {
  margin: 10px 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.sidebar-check a {
  font-size: 0.74rem;
  font-weight: 900;
}

.article-body {
  min-width: 0;
}

.article-body > section {
  scroll-margin-top: 110px;
  margin-bottom: 78px;
}

.article-body > section:last-child {
  margin-bottom: 0;
}

.article-body .lead {
  margin-bottom: 28px;
  font-size: 1.5rem;
  font-weight: 650;
  line-height: 1.42;
}

.article-body p,
.article-body li {
  font-size: 1.06rem;
  line-height: 1.72;
}

.article-body p {
  margin-bottom: 24px;
}

.article-body h2 {
  margin-bottom: 24px;
  font-size: 3.2rem;
  font-weight: 760;
  line-height: 1;
}

.article-body h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  font-weight: 760;
  line-height: 1.15;
}

.pull-quote {
  margin: 42px 0 0;
  padding: 26px;
  border: 2px solid var(--line);
  border-left: 12px solid var(--signal);
  background: var(--soft);
}

.pull-quote span {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pull-quote p {
  margin-bottom: 0;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
}

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

.three-needs > div {
  min-width: 0;
  padding: 18px;
  border: 2px solid var(--line);
}

.three-needs > div:nth-child(2) {
  background: var(--brand);
  color: var(--paper);
}

.three-needs span {
  display: block;
  margin-bottom: 30px;
  color: var(--signal);
  font-size: 1.2rem;
  font-weight: 900;
}

.three-needs h3 {
  font-size: 1.25rem;
}

.three-needs p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.three-needs > div:nth-child(2) p {
  color: rgba(255, 255, 255, 0.78);
}

.reason-list {
  margin-top: 42px;
  border-top: 2px solid var(--line);
}

.reason-list > section {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  padding: 32px 0;
  border-bottom: 2px solid var(--line);
}

.reason-number {
  display: grid;
  width: 54px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--line);
  background: var(--brand);
  color: var(--paper);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--line);
}

.reason-list > section:nth-child(even) .reason-number {
  background: var(--signal);
  color: var(--ink);
}

.reason-list p {
  margin-bottom: 0;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
  border: 2px solid var(--line);
}

.before-after > div {
  padding: 16px;
}

.before-after > div:first-child {
  border-right: 1px solid var(--line);
  background: var(--soft);
}

.before-after > div:last-child {
  background: var(--brand);
  color: var(--paper);
}

.before-after span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.before-after p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.action-plan {
  display: grid;
  gap: 12px;
  margin: 36px 0 42px;
  padding: 0;
  list-style: none;
}

.action-plan li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 2px solid var(--line);
}

.action-plan li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--signal);
  font-size: 1.2rem;
  font-weight: 900;
}

.action-plan h3 {
  margin-top: 2px;
}

.action-plan p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.do-not-box {
  padding: 26px;
  border: 2px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 7px 7px 0 var(--signal);
}

.do-not-box h3 {
  color: var(--signal);
}

.do-not-box ul {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
  padding-left: 22px;
}

.do-not-box li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.5;
}

.product-truth {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0;
}

.product-truth > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px;
  border: 2px solid var(--line);
}

.product-truth > div:last-child {
  background: var(--brand);
  color: var(--paper);
}

.product-truth span {
  margin-bottom: 18px;
  color: var(--signal);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-truth strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.product-truth p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.product-truth > div:last-child p {
  color: rgba(255, 255, 255, 0.78);
}

.product-truth a {
  width: fit-content;
  margin-top: auto;
  border-bottom: 2px solid currentColor;
  font-size: 0.76rem;
  font-weight: 900;
}

.article-end-cta {
  padding: 40px;
  border: 2px solid var(--line);
  background: var(--brand);
  color: var(--paper);
  box-shadow: 9px 9px 0 var(--ink);
}

.article-end-cta h2 {
  max-width: 620px;
}

.article-end-cta > p {
  color: rgba(255, 255, 255, 0.84);
}

.article-end-cta .primary-button {
  color: var(--ink);
}

.more-reading {
  padding: 82px 0;
  border-top: 2px solid var(--line);
  background: var(--soft);
}

.more-reading h2 {
  max-width: 760px;
  margin-bottom: 32px;
}

.more-reading-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

@media (prefers-reduced-motion: no-preference) {
  .nav-cta,
  .primary-button,
  .secondary-button,
  .article-card,
  .featured-article {
    transition:
      transform 180ms ease,
      box-shadow 180ms ease;
  }

  .hero-copy > *,
  .article-hero-shell > * {
    animation: reveal-up 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-copy > :nth-child(2),
  .article-hero-shell > :nth-child(2) {
    animation-delay: 70ms;
  }

  .hero-copy > :nth-child(3),
  .article-hero-shell > :nth-child(3) {
    animation-delay: 140ms;
  }

  .hero-receipt {
    animation: receipt-enter 720ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
  }
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .nav-cta:hover,
  .primary-button:hover,
  .secondary-button:hover {
    transform: translate3d(-2px, -2px, 0);
  }

  .article-card:hover,
  .featured-article:hover {
    transform: translate3d(-3px, -3px, 0);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes receipt-enter {
  from {
    opacity: 0;
    transform: translate3d(24px, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    gap: 42px;
  }

  .hero-copy h1,
  .article-hero h1 {
    font-size: 4rem;
  }

  .footer-main {
    grid-template-columns: 1fr 0.7fr 1fr;
    gap: 34px;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .featured-article,
  .audit-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
    padding: 58px 0 68px;
  }

  .hero-receipt {
    max-width: 620px;
  }

  .section-heading {
    gap: 18px;
  }

  .article-visual {
    min-height: 380px;
    border-right: 0;
    border-bottom: 2px solid var(--line);
  }

  .featured-copy {
    min-height: 410px;
  }

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

  .newsletter-grid .secondary-button {
    grid-column: 2;
  }

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

  .footer-intro {
    grid-column: 1 / -1;
  }

  .article-shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .article-sidebar > nav {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding-top: 14px;
    border-bottom: 2px solid var(--line);
  }

  .article-sidebar nav strong {
    grid-column: 1 / -1;
  }

  .article-sidebar nav a {
    padding: 9px;
    border: 1px solid var(--line);
  }

  .sidebar-check {
    display: none;
  }
}

@media (max-width: 660px) {
  .page-shell,
  .article-hero-shell,
  .article-shell {
    width: calc(100% - 32px);
  }

  .top-strip span {
    min-height: 32px;
    padding: 0 14px;
  }

  .top-strip span::before {
    margin-right: 14px;
  }

  .site-header {
    min-height: 62px;
    padding: 9px 14px;
  }

  .brand {
    min-height: 39px;
    gap: 8px;
  }

  .brand-symbol {
    width: 39px;
    flex-basis: 39px;
  }

  .brand-wordmark {
    font-size: 0.96rem;
  }

  .nav-cta {
    width: 44px;
    min-height: 42px;
    padding: 0;
  }

  .nav-cta-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero-copy h1,
  .article-hero h1 {
    font-size: 3rem;
    line-height: 0.98;
  }

  .hero-lede,
  .article-deck {
    font-size: 1.05rem;
  }

  .hero-grid {
    min-height: 0;
    padding: 48px 0 58px;
  }

  .hero-receipt {
    box-shadow: 7px 7px 0 var(--ink);
  }

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

  .receipt-question {
    padding: 18px;
  }

  .receipt-question p {
    font-size: 1.35rem;
  }

  .receipt-result {
    grid-template-columns: 1fr;
  }

  .receipt-result strong {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .receipt-result strong:last-child {
    border-bottom: 0;
  }

  .category-list {
    width: 100%;
  }

  .articles-section {
    padding: 68px 0;
  }

  .section-heading h2,
  .inline-audit h2,
  .more-reading h2 {
    font-size: 2.65rem;
  }

  .featured-article {
    box-shadow: 7px 7px 0 var(--brand);
  }

  .article-visual {
    min-height: 340px;
    padding: 20px;
  }

  .visual-query {
    font-size: 1.05rem;
  }

  .featured-copy {
    min-height: 0;
    padding: 28px 22px;
  }

  .featured-copy h3 {
    font-size: 2rem;
  }

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

  .article-card {
    min-height: 360px;
    padding: 22px;
  }

  .audit-grid {
    gap: 30px;
    padding: 66px 0;
  }

  .newsletter-note {
    padding: 60px 0;
  }

  .newsletter-grid {
    grid-template-columns: 1fr;
    padding: 22px;
    box-shadow: 6px 6px 0 var(--signal);
  }

  .newsletter-grid .secondary-button {
    grid-column: 1;
  }

  .newsletter-note h2 {
    font-size: 2.2rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-intro {
    grid-column: 1;
  }

  .policy-links {
    grid-template-columns: 1fr;
  }

  .policy-links strong {
    grid-column: 1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .article-hero-shell {
    padding: 42px 0 52px;
  }

  .breadcrumbs {
    margin-bottom: 38px;
  }

  .article-shell {
    padding: 54px 0 72px;
  }

  .article-sidebar > nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-body > section {
    margin-bottom: 60px;
  }

  .article-body .lead {
    font-size: 1.25rem;
  }

  .article-body p,
  .article-body li {
    font-size: 1rem;
  }

  .article-body h2 {
    font-size: 2.5rem;
  }

  .three-needs,
  .product-truth,
  .before-after {
    grid-template-columns: 1fr;
  }

  .before-after > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .reason-list > section {
    grid-template-columns: 1fr;
  }

  .action-plan li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .article-end-cta {
    padding: 28px 22px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .more-reading {
    padding: 62px 0;
  }
}

@media (max-width: 380px) {
  .hero-copy h1,
  .article-hero h1 {
    font-size: 2.65rem;
  }

  .section-heading h2,
  .inline-audit h2,
  .more-reading h2 {
    font-size: 2.25rem;
  }

  .article-body h2 {
    font-size: 2rem;
  }

  .article-end-cta h2 {
    font-size: 1.7rem;
  }

  .article-sidebar > nav {
    grid-template-columns: 1fr;
  }

  .action-plan li {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
