:root {
  --paper: #f2ede3;
  --paper-deep: #e4dccd;
  --ink: #16211f;
  --ink-soft: #53615d;
  --forest: #173b34;
  --forest-light: #275248;
  --red: #a82f28;
  --gold: #c59743;
  --white: #fffdf7;
  --line: rgba(22, 33, 31, 0.18);
  --line-light: rgba(255, 253, 247, 0.2);
  --sans: "DM Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  --display: "Noto Serif SC", Georgia, serif;
  --utility: "Libre Franklin", "PingFang SC", sans-serif;
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--white);
  background: var(--red);
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: var(--z-skip-link);
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(242, 237, 227, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(22, 33, 31, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
}

.brand-seal {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.brand-lockup {
  display: grid;
  gap: 0.08rem;
  line-height: 1.15;
}

.brand-lockup strong {
  font-family: var(--utility);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
}

.brand-lockup small {
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.1vw, 2rem);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.main-nav a:not(.nav-blog)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.main-nav .nav-blog {
  padding: 0.62rem 0.85rem;
  color: var(--white);
  background: var(--forest);
}

.main-nav .nav-blog:hover,
.main-nav .nav-blog:focus-visible {
  color: var(--white);
  background: var(--forest-light);
}

.header-tools,
.language-switcher {
  display: flex;
  align-items: center;
}

.header-tools {
  gap: 0.8rem;
}

.language-switcher {
  gap: 0.15rem;
  padding: 0.18rem;
  border: 1px solid var(--line);
}

.lang-btn {
  min-width: 42px;
  padding: 0.34rem 0.5rem;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 700;
}

.lang-btn[aria-pressed="true"] {
  color: var(--white);
  background: var(--ink);
}

.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  place-content: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 1px;
  display: block;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
}

.kicker {
  margin: 0 0 1.1rem;
  color: var(--red);
  font-family: var(--utility);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero h1,
.section-heading h2,
.method-intro h2,
.journey-top h2,
.about-copy h2,
.audience-intro h2,
.closing h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.5rem, 7.8vw, 7rem);
  line-height: 0.98;
}

.hero-deck {
  max-width: 710px;
  margin: 2rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.4;
}

.hero-note {
  max-width: 650px;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  font-family: var(--utility);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #86231e;
}

.button-quiet {
  color: var(--ink);
  border-color: var(--ink);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.editor-note {
  position: relative;
  min-height: 490px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
  border-top: 7px solid var(--gold);
}

.editor-note-topline {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  left: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--utility);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.live-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 0.45rem;
  background: var(--gold);
  border-radius: 50%;
  vertical-align: 1px;
}

.editor-mark {
  position: absolute;
  top: 2.4rem;
  right: -1.1rem;
  color: rgba(255, 253, 247, 0.07);
  font-family: var(--display);
  font-size: 16rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.editor-note h2 {
  position: relative;
  max-width: 360px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
}

.editor-note > p {
  position: relative;
  max-width: 420px;
  margin: 1.2rem 0 1.8rem;
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.94rem;
}

.editor-signoff {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
  font-family: var(--utility);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
}

.proof-strip {
  color: var(--white);
  background: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid p {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--line-light);
}

.proof-grid p:first-child {
  border-left: 1px solid var(--line-light);
}

.proof-grid span {
  color: var(--gold);
  font-family: var(--utility);
  font-size: 0.62rem;
}

.proof-grid strong {
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.3;
}

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

.section-heading {
  max-width: 810px;
  margin-bottom: clamp(2.75rem, 6vw, 5rem);
}

.section-heading h2,
.method-intro h2,
.journey-top h2,
.about-copy h2,
.audience-intro h2,
.closing h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.08;
}

.section-heading > p:last-child,
.split-heading > p,
.method-intro > p:last-child,
.journey-top > p {
  color: var(--ink-soft);
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: end;
}

.split-heading > p {
  max-width: 430px;
  margin: 0 0 0.4rem;
}

.article-list {
  border-top: 2px solid var(--ink);
}

.lead-article,
.article-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 36px;
  gap: 1.25rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease;
}

.lead-article {
  padding: 2.5rem 1rem 2.5rem 0;
}

.article-row {
  padding: 1.55rem 1rem 1.55rem 0;
}

.lead-article:hover,
.article-row:hover,
.lead-article:focus-visible,
.article-row:focus-visible {
  background: rgba(255, 253, 247, 0.55);
}

.article-index,
.article-arrow {
  font-family: var(--utility);
  font-size: 0.72rem;
}

.article-index {
  color: var(--red);
}

.article-arrow {
  align-self: center;
  justify-self: end;
  font-size: 1.15rem;
}

.article-meta {
  margin: 0 0 0.55rem;
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.article-body h3 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.28;
}

.lead-article .article-body h3 {
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
  line-height: 1.15;
}

.article-body > p:last-child {
  max-width: 720px;
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  margin-top: 2rem;
  padding-bottom: 0.2rem;
  color: var(--red);
  border-bottom: 1px solid currentColor;
  font-family: var(--utility);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.lenses {
  background: var(--white);
}

.lens-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.lens-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  padding: 1.4rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.lens-number {
  color: var(--red);
  font-family: var(--utility);
  font-size: 0.65rem;
  font-weight: 700;
}

.lens-card h3 {
  margin: auto 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  font-weight: 600;
}

.lens-card p {
  min-height: 76px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.89rem;
}

.lens-question {
  margin-top: 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-family: var(--utility);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lens-finance {
  color: var(--white);
  background: var(--forest);
}

.lens-finance p {
  color: rgba(255, 253, 247, 0.72);
}

.lens-finance .lens-question {
  border-color: var(--line-light);
}

.method {
  color: var(--white);
  background: var(--forest);
  border-color: var(--line-light);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.method .kicker,
.method .system-output {
  color: var(--gold);
}

.method-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.method-intro > p:last-child {
  margin-top: 1.6rem;
  color: rgba(255, 253, 247, 0.7);
}

.system-list {
  border-top: 1px solid var(--line-light);
}

.system-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 1.3rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-light);
}

.system-code {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--gold);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
}

.system-item h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
}

.system-item p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 253, 247, 0.7);
  font-size: 0.9rem;
}

.system-output {
  align-self: start;
  padding-top: 0.35rem;
  font-family: var(--utility);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.journey {
  background: var(--paper-deep);
}

.journey-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.journey-top > p {
  max-width: 430px;
  margin: 0;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.journey-steps li {
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-right: 1px solid var(--line);
}

.journey-steps li:last-child {
  border-right: 0;
}

.journey-steps li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -0.62rem;
  z-index: var(--z-media);
  width: 1.25rem;
  height: 1.25rem;
  display: grid;
  place-items: center;
  background: var(--paper-deep);
  font-family: var(--utility);
  font-size: 0.8rem;
}

.journey-steps span {
  color: var(--red);
  font-family: var(--utility);
  font-size: 0.65rem;
}

.journey-steps strong {
  margin: auto 0 0.3rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
}

.journey-steps small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.about {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.about-portrait {
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  color: var(--white);
  background: var(--red);
  border: 16px solid var(--paper-deep);
  outline: 1px solid var(--ink);
}

.about-portrait span {
  align-self: center;
  margin: auto 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 700;
  writing-mode: vertical-rl;
  letter-spacing: 0.12em;
}

.about-portrait small {
  font-family: var(--utility);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.about-copy > p:not(.kicker) {
  max-width: 690px;
  color: var(--ink-soft);
}

.about-copy .about-lead {
  margin-top: 2rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.55;
}

.about-copy blockquote {
  max-width: 680px;
  margin: 2.3rem 0 0;
  padding: 1.2rem 0 1.2rem 1.5rem;
  border-left: 4px solid var(--red);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.38;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr 0.75fr;
  gap: 1.25rem;
  align-items: stretch;
}

.audience-intro {
  padding-right: 2rem;
}

.audience-intro h2 {
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.audience-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--ink);
}

.audience-card > span {
  color: var(--red);
  font-family: var(--utility);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.audience-card h3 {
  margin: auto 0 1rem;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.audience-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.audience-primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.audience-primary > span,
.audience-primary p {
  color: rgba(255, 253, 247, 0.78);
}

.closing {
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: var(--white);
  background: var(--ink);
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 4rem;
  align-items: end;
}

.closing .kicker {
  color: var(--gold);
}

.closing h2 {
  max-width: 830px;
}

.closing-actions {
  display: grid;
  gap: 0.75rem;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--gold);
}

.button-outline-light {
  color: var(--white);
  border-color: var(--line-light);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: var(--white);
}

.site-footer {
  padding: 4rem 0 2rem;
  background: var(--paper-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-grid > div > p {
  max-width: 380px;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 0.75rem 2rem;
  align-content: start;
}

.footer-nav a {
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

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

@media (max-width: 1040px) {
  .main-nav {
    gap: 1rem;
  }

  .main-nav a:not(.nav-blog) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 7vw, 5.4rem);
  }

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

  .proof-grid p:nth-child(3) {
    border-left: 1px solid var(--line-light);
  }

  .proof-grid p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .lens-card {
    grid-column: span 5;
  }

  .lens-finance {
    grid-column: span 10;
    min-height: 250px;
  }

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

  .method-intro {
    position: static;
  }

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

  .audience-intro {
    grid-column: 1 / -1;
    max-width: 780px;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

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

  .header-inner {
    min-height: 68px;
  }

  .brand-seal {
    width: 36px;
    height: 36px;
  }

  .language-switcher {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    height: calc(100dvh - 68px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 1rem 16px 2rem;
    visibility: hidden;
    opacity: 0;
    background: var(--paper);
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a,
  .main-nav a:not(.nav-blog) {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 600;
  }

  .main-nav .nav-blog {
    margin-top: 1rem;
    padding: 1rem;
    border: 0;
    font-family: var(--utility);
    font-size: 0.8rem;
    text-align: center;
  }

  .hero {
    padding-top: 3.6rem;
  }

  .hero-grid,
  .split-heading,
  .journey-top,
  .about-layout,
  .closing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .editor-note {
    min-height: 430px;
  }

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

  .proof-grid p,
  .proof-grid p:first-child,
  .proof-grid p:nth-child(3) {
    min-height: 68px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
  }

  .lead-article,
  .article-row {
    grid-template-columns: 34px minmax(0, 1fr) 22px;
    gap: 0.7rem;
  }

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

  .lens-card,
  .lens-finance {
    min-height: 260px;
    grid-column: auto;
  }

  .system-item {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .system-output {
    grid-column: 2;
    padding-top: 0;
  }

  .journey-steps {
    grid-template-columns: 1fr;
    border: 1px solid var(--ink);
  }

  .journey-steps li {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .journey-steps li:last-child {
    border-bottom: 0;
  }

  .journey-steps li:not(:last-child)::after {
    top: auto;
    right: 1rem;
    bottom: -0.65rem;
    transform: rotate(90deg);
  }

  .about-portrait {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }

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

  .audience-intro {
    grid-column: auto;
  }

  .audience-card {
    min-height: 300px;
  }

  .closing-actions {
    max-width: 430px;
  }

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

@media (max-width: 440px) {
  .brand-lockup small {
    display: none;
  }

  .hero-actions,
  .hero-actions .button,
  .closing-actions .button {
    width: 100%;
  }

  .editor-signoff,
  .footer-bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
