/* Self-hosted fonts (replaces render-blocking Google Fonts @import). Same faces
   as v2.css; the browser coalesces the shared family + src so nothing loads twice. */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/anton-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2");
}

:root {
  --black: #050505;
  --ink: #111111;
  --graphite: #242424;
  --grey-900: #303030;
  --grey-700: #575757;
  --grey-500: #8a8a8a;
  --grey-200: #d9d9d9;
  --grey-100: #eeeeee;
  --paper: #fbfbfa;
  --paper-warm: #f4f4f1;
  --shade: #f1ffd0;
  --white: #ffffff;
  --accent: #cfff35;
  --accent-text: #587000;
  --accent-soft: #f7ffe6;
  --accent-ink: #111111;
  --accent-two: #111111;
  --accent-two-soft: #f1f1ee;
  --max: 1240px;
  --wide: 1440px;
  --font-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  --font-display: Anton, "Archivo Black", Impact, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input {
  font: inherit;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border: 1px solid var(--black);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 34px;
  color: var(--black);
  background: rgba(252, 252, 250, 0.98);
  border-bottom: 1px solid var(--black);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.light-header,
.site-header.is-scrolled {
  color: var(--black);
  background: rgba(252, 252, 250, 0.98);
  border-bottom: 1px solid var(--black);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  text-decoration: none;
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  width: 58px;
  height: 42px;
  border: 1px solid currentColor;
  background: var(--white);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1;
}

.brand-mark span {
  display: grid;
  place-items: center;
}

.brand-mark span:nth-child(2) {
  color: var(--accent);
  background: var(--black);
}

.brand-text {
  color: var(--black);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand-ledger {
  align-items: stretch;
  gap: 0;
}

.brand-ledger-text {
  display: block;
  width: 126px;
  height: 42px;
  padding: 2px 6px 3px 0;
  overflow: hidden;
  border-top: 3px solid currentColor;
  border-bottom: 1px solid currentColor;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 0.82;
  text-transform: uppercase;
}

.brand-ledger-text span {
  display: block;
  padding: 1px 0;
  border-bottom: 1px solid currentColor;
}

.brand-ledger-text span:last-child {
  border-bottom: 0;
}

.brand-wordmark {
  display: inline-grid;
  gap: 3px;
  align-items: center;
  min-width: 148px;
  text-decoration: none;
}

.brand-wordmark-name {
  display: inline-block;
  width: max-content;
  color: var(--black);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  transform: scaleX(0.9);
  transform-origin: left center;
}

.brand-wordmark-sub {
  display: block;
  width: 128px;
  padding-top: 4px;
  border-top: 1px solid currentColor;
  color: var(--black);
  font-size: 0.55rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mobile-home-link {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-left: auto;
  padding: 0 12px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  border-color: currentColor;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 42px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-toggle::before {
  transform: translateY(-7px);
  box-shadow: 0 7px 0 currentColor;
}

.nav-toggle::after {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
  box-shadow: none;
}

.nav-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  display: grid;
  align-items: end;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 36%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 110px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 760px;
  font-size: 5.4rem;
  font-weight: 900;
  line-height: 1;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.hero-subcopy {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--grey-200);
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

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

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

.button-outline {
  color: var(--black);
  background: transparent;
  border-color: var(--black);
}

.button-dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button-dark:hover,
.button-dark:focus,
.button-light:hover,
.button-light:focus {
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--black);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.44);
}

.hero-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 0.85rem;
  font-weight: 900;
}

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

[id] {
  scroll-margin-top: 96px;
}

.magazine-front {
  width: min(100% - 56px, var(--wide));
  margin: 0 auto;
  padding: 96px 0 104px;
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(520px, 1.14fr);
  gap: 64px;
  align-items: center;
  background:
    linear-gradient(90deg, transparent 0 44%, var(--accent-soft) 44% 44.6%, var(--paper-warm) 44.6% 100%);
}

.front-masthead {
  position: relative;
  padding: 38px 40px 38px 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.front-masthead::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 7px;
  background: var(--accent);
  pointer-events: none;
}

.issue-line {
  margin: 0 0 30px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.masthead-title {
  position: relative;
  display: inline-grid;
  padding-right: 54px;
  font-family: var(--font-display);
  font-size: clamp(5.6rem, 8.6vw, 7.9rem);
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.masthead-title span {
  display: block;
  white-space: nowrap;
}

.masthead-title em {
  position: absolute;
  right: 4px;
  bottom: 0.05em;
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.18em;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.front-copy {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--grey-900);
  font-size: 1.08rem;
  font-weight: 700;
}

.front-author-note {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  max-width: 560px;
  margin-top: 30px;
  padding: 20px 0 0;
  border-top: 1px solid var(--black);
}

.front-author-photo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--accent);
  border: 1px solid var(--black);
  font-family: var(--font-display);
  line-height: 1;
}

.front-author-note strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.front-author-note p {
  margin: 5px 0 0;
  color: var(--grey-700);
  font-size: 0.9rem;
  font-weight: 700;
}

.front-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.cover-feature {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  box-shadow: 9px 9px 0 var(--accent);
}

.cover-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.cover-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.36) 52%, rgba(0, 0, 0, 0.03) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 9px
    );
}

.cover-feature-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 42px;
}

.cover-feature-copy h2 {
  max-width: 620px;
  font-family: var(--font-display);
  font-size: 3.95rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.cover-feature-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--grey-200);
  font-size: 1.05rem;
}

.cover-author {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 430px;
  margin: 28px 0 12px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.46);
}

.author-photo-placeholder {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--white);
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-display);
  line-height: 1;
}

.cover-author strong,
.cover-author div span {
  display: block;
}

.cover-author strong {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cover-author div span {
  color: var(--grey-200);
  font-size: 0.82rem;
  font-weight: 700;
}

.light-link {
  color: var(--white);
}

.beat-strip {
  width: min(100% - 56px, var(--wide));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.beat-strip p {
  margin: 0;
  padding: 19px 20px;
  background: var(--black);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.beat-strip div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding: 0 22px;
}

.beat-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 11px 0;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.beat-strip span + span::before {
  content: "/";
  margin: 0 16px;
  color: var(--grey-500);
  font-weight: 600;
}

.issue-edition {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: stretch;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.issue-edition-lede {
  padding: 44px 0;
}

.issue-edition-lede h2 {
  max-width: 520px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.issue-edition-lede p:not(.eyebrow) {
  max-width: 520px;
  color: var(--grey-700);
  font-weight: 700;
}

.issue-index {
  display: grid;
  grid-template-columns: 1fr;
  align-self: center;
  border-left: 0;
}

.issue-index article {
  min-height: 0;
  padding: 24px 0;
  border-right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 26px;
  border-bottom: 1px solid var(--black);
  background: transparent;
}

.issue-index article:first-child {
  border-top: 1px solid var(--black);
}

.issue-index span {
  flex: 0 0 145px;
  color: var(--grey-700);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.issue-index h3 {
  max-width: 580px;
  font-size: 1.3rem;
  line-height: 1.15;
}

.magazine-section {
  width: min(100% - 56px, var(--wide));
}

.editorial-heading h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.96;
}

.section-inverse {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 76px max(24px, calc((100% - var(--max)) / 2));
  background: var(--black);
  color: var(--white);
}

.section-ruled {
  border-top: 1px solid var(--black);
}

.section-kicker {
  max-width: var(--max);
  margin: 0 auto 24px;
  color: var(--grey-500);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.ledger-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--grey-700);
  border-left: 1px solid var(--grey-700);
}

.ledger-grid article {
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid var(--grey-700);
  border-bottom: 1px solid var(--grey-700);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ledger-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-text);
}

.ledger-grid h2 {
  font-size: 2rem;
}

.section-header {
  margin-bottom: 44px;
}

.section-header h2 {
  max-width: 860px;
  font-size: 3rem;
}

.split-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  font-weight: 900;
}

.editorial-photo-slot {
  position: relative;
  min-height: 300px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--black);
  background:
    linear-gradient(135deg, transparent 0 49%, rgba(5, 5, 5, 0.16) 49.2% 50.8%, transparent 51% 100%),
    repeating-linear-gradient(90deg, rgba(5, 5, 5, 0.055) 0 1px, transparent 1px 42px),
    var(--white);
  padding: 18px;
}

.editorial-photo-slot::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(5, 5, 5, 0.22);
  pointer-events: none;
}

.editorial-photo-slot::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 34%;
  aspect-ratio: 1;
  border: 1px solid rgba(5, 5, 5, 0.2);
  background: var(--accent-soft);
  transform: rotate(-8deg);
}

.editorial-photo-slot span,
.editorial-photo-slot figcaption {
  position: relative;
  z-index: 1;
}

.editorial-photo-slot span {
  align-self: flex-start;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 3px 8px;
  color: var(--accent-ink);
  background: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.editorial-photo-slot figcaption {
  max-width: 78%;
  color: var(--black);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.photo-slot-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, transparent 0 49%, rgba(207, 255, 53, 0.5) 49.2% 50.8%, transparent 51% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px),
    var(--black);
}

.photo-slot-dark::before {
  border-color: rgba(255, 255, 255, 0.32);
}

.photo-slot-dark::after {
  background: rgba(207, 255, 53, 0.18);
  border-color: rgba(207, 255, 53, 0.55);
}

.photo-slot-dark figcaption {
  color: var(--white);
}

.image-strip,
.resource-visual-row {
  width: min(100% - 56px, var(--wide));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 28px;
}

.image-strip .editorial-photo-slot {
  min-height: 340px;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
  gap: 36px;
}

.feature-lead,
.post-card,
.feature-stack .post-card {
  background: var(--paper);
  border: 1px solid var(--black);
}

.feature-lead .post-card-inner,
.post-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.feature-lead .post-card-inner {
  min-height: 680px;
}

.post-card a {
  min-height: 100%;
}

.post-card-copy {
  padding: 26px;
}

.feature-lead .post-card-copy {
  min-height: 300px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-card-visual {
  min-height: 170px;
  border-bottom: 1px solid var(--black);
  display: flex;
  align-items: end;
  padding: 14px;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(0, 0, 0, 0.08) 48% 49%, transparent 49% 100%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 12px),
    var(--white);
}

.post-card-visual img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  display: block;
  object-fit: cover;
}

.feature-lead .post-card-visual {
  min-height: 260px;
}

.feature-lead .post-card-visual img {
  min-height: 260px;
}

.post-card-visual span {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 42px;
  padding: 0 10px;
  color: var(--accent-ink);
  background: var(--accent);
  border: 1px solid var(--black);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.post-card--ipo-equity .post-card-visual {
  background:
    linear-gradient(135deg, transparent 0 52%, var(--accent) 52% 56%, transparent 56% 100%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 14px),
    var(--white);
}

.post-card--founder-money .post-card-visual {
  background:
    radial-gradient(circle at 74% 26%, var(--black) 0 18%, transparent 18.5%),
    linear-gradient(90deg, var(--accent-soft) 0 42%, var(--white) 42% 100%);
}

.post-card--equity-comp .post-card-visual {
  background:
    linear-gradient(90deg, var(--accent-two) 0 16%, transparent 16% 100%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.12) 0 1px, transparent 1px 18px),
    var(--accent-two-soft);
}

.post-card--operator-money .post-card-visual {
  background:
    linear-gradient(90deg, var(--black) 0 30%, transparent 30% 100%),
    linear-gradient(0deg, transparent 0 64%, var(--accent) 64% 72%, transparent 72% 100%),
    var(--white);
}

.post-card--angel-investing .post-card-visual {
  background:
    linear-gradient(90deg, var(--black) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, transparent 0 46%, var(--accent) 46% 50%, transparent 50% 100%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 16px),
    var(--white);
}

.post-card--future-of-work .post-card-visual {
  background:
    linear-gradient(0deg, var(--accent-soft) 0 34%, transparent 34% 100%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0 1px, transparent 1px 20px),
    var(--white);
}

.post-card--fintech-banking .post-card-visual,
.post-card--fraud-risk .post-card-visual {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 11px),
    var(--black);
}

.post-card--fintech-banking .post-card-visual span,
.post-card--fraud-risk .post-card-visual span {
  color: var(--white);
  background: var(--accent-two);
}

.post-card h3,
.feature-lead h3 {
  font-size: 1.55rem;
  line-height: 1.05;
}

.feature-lead h3 {
  font-family: var(--font-display);
  font-size: 3.55rem;
  font-weight: 400;
  line-height: 0.97;
  text-transform: uppercase;
  max-width: 800px;
}

.post-card p,
.feature-lead p {
  color: var(--grey-700);
  margin: 14px 0 0;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--grey-700);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.departments-section {
  width: min(100% - 56px, var(--wide));
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.pillar {
  grid-column: span 2;
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.pillar:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.pillar:hover,
.pillar:focus {
  background: var(--black);
  color: var(--white);
}

.pillar span {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pillar strong {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.operator-ledger {
  width: min(100% - 56px, var(--wide));
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 52px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.operator-proof {
  padding: 48px 48px 48px 0;
  border-right: 1px solid var(--black);
}

.operator-proof h2 {
  max-width: 620px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.operator-proof p:not(.eyebrow) {
  max-width: 620px;
  color: var(--grey-700);
  font-size: 1.05rem;
  font-weight: 700;
}

.operator-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--black);
}

.operator-proof-grid article {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.operator-proof-grid article:nth-child(2),
.operator-proof-grid article:nth-child(3) {
  background: var(--accent-soft);
}

.operator-proof-grid span,
.investment-strip span {
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.operator-proof-grid h3 {
  font-family: var(--font-display);
  font-size: 1.58rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.investment-strip {
  width: min(100% - 56px, var(--wide));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(6, 1fr);
  border-left: 1px solid var(--black);
  border-top: 1px solid var(--black);
}

.investment-strip span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  text-align: center;
}

.investment-strip span:first-child {
  color: var(--white);
  background: var(--black);
}

.social-ledger {
  width: min(100% - 56px, var(--wide));
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) minmax(0, 1fr);
  gap: 52px;
  border-top: 1px solid var(--black);
}

.social-ledger-head {
  padding: 42px 0;
}

.social-ledger-head h2 {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--black);
  border-top: 1px solid var(--black);
}

.social-card {
  min-height: 230px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  color: inherit;
  background: var(--paper);
  text-decoration: none;
}

.social-card:nth-child(even) {
  background: var(--accent-soft);
}

.social-card:hover,
.social-card:focus {
  color: var(--white);
  background: var(--black);
}

.social-card span {
  display: grid;
  place-items: center;
  width: auto;
  min-width: 58px;
  height: 48px;
  padding: 0 10px;
  border: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-card h3 {
  font-family: var(--font-display);
  font-size: 1.78rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.social-card p {
  margin: 12px 0 0;
  color: inherit;
  font-size: 0.95rem;
}

.newsletter-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: 72px;
  border-top: 4px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.newsletter-band-mockup {
  grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 0.95fr);
  align-items: stretch;
}

.newsletter-band h2 {
  font-size: 2.8rem;
  max-width: 720px;
}

.newsletter-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter-copy p:not(.eyebrow, .form-note) {
  max-width: 680px;
  color: var(--grey-700);
  font-weight: 700;
}

.newsletter-copy .signup-form {
  max-width: 520px;
  margin-top: 20px;
}

.brief-mockup {
  position: relative;
  min-height: 480px;
  padding: 22px;
  border: 1px solid var(--black);
  background: var(--white);
  box-shadow: 10px 10px 0 var(--accent-two);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}

.brief-mockup::before {
  content: "";
  position: absolute;
  inset: 52px 0 auto;
  height: 1px;
  background: var(--black);
}

.brief-mockup-top,
.brief-columns {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-subject {
  margin-top: 22px;
  padding: 12px 0;
  color: var(--grey-700);
  font-size: 0.92rem;
  font-weight: 800;
}

.brief-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 34px 0;
}

.brief-main h3 {
  max-width: 540px;
  font-family: var(--font-display);
  font-size: 3.85rem;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.brief-main p:not(.eyebrow) {
  max-width: 560px;
  color: var(--grey-700);
  font-weight: 700;
}

.brief-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 16px;
}

.brief-columns div {
  padding-right: 12px;
}

.brief-columns span,
.brief-columns strong {
  display: block;
}

.brief-columns span {
  color: var(--grey-500);
}

.brief-columns strong {
  margin-top: 4px;
  color: var(--black);
}

.signup-form {
  display: grid;
  gap: 10px;
}

.signup-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--white);
}

.signup-form label {
  font-weight: 900;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--grey-700);
  font-size: 0.82rem;
}

.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: min(var(--max), calc(100% - 48px));
}

.media-panel {
  min-height: 420px;
  padding: 42px;
  border: 1px solid var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.media-panel + .media-panel {
  border-left: 1px solid var(--black);
}

.media-panel h2 {
  font-size: 3.1rem;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.media-panel p {
  max-width: 520px;
  color: var(--grey-700);
  font-size: 1.05rem;
}

.video-panel {
  background: var(--black);
  color: var(--white);
}

.video-panel p {
  color: var(--grey-200);
}

.podcast-panel {
  background: var(--white);
}

.resource-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.resource-row article,
.resource-grid article,
.format-grid article,
.episode-card,
.guest-list,
.aside-block {
  border: 1px solid var(--black);
  background: var(--white);
  padding: 24px;
}

.resource-row h3,
.resource-grid h2,
.format-grid h3,
.episode-card h2,
.guest-list h2 {
  margin-top: 12px;
  font-size: 1.55rem;
  line-height: 1.05;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  color: var(--accent-ink);
  background: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-shell {
  padding-top: 72px;
}

.page-hero {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 62px;
  border-bottom: 1px solid var(--black);
}

.page-hero h1,
.podcast-hero h1 {
  max-width: 980px;
  font-size: 4.7rem;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow),
.podcast-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--grey-700);
  font-size: 1.25rem;
  font-weight: 700;
}

.angel-board {
  width: min(100% - 56px, var(--wide));
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  gap: 28px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.angel-thesis {
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--black);
}

.angel-thesis h2,
.content-engine h2 {
  max-width: 720px;
  font-family: var(--font-display);
  font-size: 4.3rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.angel-thesis p:not(.eyebrow) {
  max-width: 620px;
  color: var(--grey-700);
  font-weight: 700;
}

.angel-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--black);
}

.angel-card-grid article,
.portfolio-grid article,
.content-engine-grid article {
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: var(--white);
  padding: 22px;
}

.angel-card-grid article {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.angel-card-grid article:nth-child(2) {
  background: var(--accent-soft);
}

.angel-card-grid span,
.portfolio-grid span,
.content-engine-grid span {
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.angel-card-grid h3,
.content-engine-grid h3 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.angel-card-grid p,
.portfolio-grid p {
  color: var(--grey-700);
  font-weight: 700;
}

.portfolio-section {
  width: min(100% - 56px, var(--wide));
}

.portfolio-intro {
  max-width: 860px;
  margin: -10px 0 28px;
  color: var(--grey-700);
  font-size: 1.05rem;
  font-weight: 700;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--black);
  border-top: 1px solid var(--black);
}

.portfolio-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.portfolio-grid article:nth-child(odd) {
  background: var(--paper);
}

.portfolio-card-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.portfolio-logo {
  width: 132px;
  height: 76px;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--black);
  background: var(--white);
  padding: 12px;
  box-shadow: 5px 5px 0 var(--accent-soft);
}

.portfolio-logo-square {
  width: 96px;
  height: 96px;
  padding: 10px;
}

.portfolio-logo-wide {
  width: 156px;
}

.portfolio-logo img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}

.portfolio-logo-stack {
  width: 158px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 8px;
}

.portfolio-logo-stack img {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(16, 16, 16, 0.16);
  background: var(--paper);
  padding: 5px;
}

.portfolio-card-copy {
  margin-top: 26px;
}

.portfolio-grid span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 3px 8px;
  color: var(--accent-ink);
  background: var(--accent);
}

.portfolio-grid h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 3.1rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.portfolio-meta {
  margin: 8px 0 0;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.content-engine {
  width: min(100% - 56px, var(--wide));
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(0, 1fr);
  gap: 28px;
  border-top: 1px solid var(--black);
}

.content-engine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--black);
  border-top: 1px solid var(--black);
}

.content-engine-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content-engine-grid article:nth-child(4) {
  color: var(--white);
  background: var(--black);
}

.newsletter-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 36px;
  align-items: start;
}

.newsletter-promise h2 {
  font-size: 2.4rem;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.newsletter-photo-slot {
  margin-top: 30px;
  min-height: 260px;
}

.social-directory {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-top: 56px;
  padding-bottom: 56px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.social-directory > a,
.social-directory-pending {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--black);
  color: inherit;
  background: var(--white);
  text-decoration: none;
}

.social-directory > :first-child {
  border-left: 1px solid var(--black);
}

.social-directory > a:hover,
.social-directory > a:focus {
  color: var(--white);
  background: var(--black);
}

.social-directory > :nth-child(even) {
  background: var(--accent-soft);
}

.social-directory span,
.social-directory small {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-directory strong {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1.04;
  text-transform: uppercase;
}

.social-directory-pending {
  color: var(--grey-500);
}

.number-list {
  margin: 24px 0 0;
  padding-left: 1.3rem;
  font-size: 1.05rem;
}

.number-list li + li {
  margin-top: 12px;
}

.signup-form-block {
  border: 1px solid var(--black);
  background: var(--white);
  padding: 24px;
}

.newsletter-side-stack {
  display: grid;
  gap: 20px;
}

.brief-mockup-compact {
  min-height: 360px;
  box-shadow: 7px 7px 0 var(--accent);
}

.brief-mockup-compact .brief-main h3 {
  font-size: 2.8rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.filter-bar a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--black);
  padding: 7px 11px;
  text-decoration: none;
  font-weight: 900;
}

.filter-bar a:hover,
.filter-bar a:focus {
  color: var(--white);
  background: var(--black);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.post-grid-large .post-card a {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 140px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(260px, 340px);
  gap: 60px;
}

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

.article-body h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.article-deck {
  margin: 22px 0 0;
  color: var(--grey-700);
  font-size: 1.28rem;
  font-weight: 700;
}

.article-meta {
  margin: 28px 0;
  padding: 12px 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  color: var(--grey-700);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-hero-image,
.article-hero-placeholder {
  margin: 0 0 34px;
  border: 1px solid var(--black);
}

.article-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.article-hero-image figcaption {
  padding: 10px 12px;
  border-top: 1px solid var(--black);
  color: var(--grey-700);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-hero-placeholder .post-card-visual {
  min-height: 280px;
  border-bottom: 0;
}

.article-content {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.62;
}

.article-content h2 {
  margin: 38px 0 12px;
  font-family: var(--font-sans);
  font-size: 2rem;
  line-height: 1.05;
}

.article-content h3 {
  margin: 30px 0 10px;
  font-family: var(--font-sans);
  font-size: 1.35rem;
  line-height: 1.08;
}

.article-content p {
  margin: 0 0 18px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px;
  padding-left: 1.2rem;
}

.article-content li + li {
  margin-top: 8px;
}

.article-content blockquote {
  margin: 32px 0;
  padding: 18px 0 18px 22px;
  border-left: 5px solid var(--accent);
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.15;
}

.article-aside {
  display: grid;
  align-content: start;
  gap: 18px;
}

.aside-block h2 {
  margin: 0 0 20px;
  font-size: 1.6rem;
}

.source-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1rem;
  color: var(--grey-700);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}

.source-list a {
  color: inherit;
}

.video-board {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 22px;
}

.video-frame {
  min-height: 430px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.video-still-slot {
  width: min(440px, 100%);
  min-height: 210px;
  margin-bottom: auto;
  border-color: rgba(255, 255, 255, 0.8);
}

.video-frame h2 {
  margin: 18px 0 0;
  max-width: 680px;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.video-frame p {
  max-width: 580px;
  color: var(--grey-200);
}

.clip-stack {
  display: grid;
  gap: 16px;
}

.clip-stack article {
  min-height: 132px;
  border: 1px solid var(--black);
  background: var(--white);
  padding: 18px;
}

.clip-stack span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.clip-stack h3 {
  margin-top: 14px;
  font-size: 1.35rem;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.podcast-hero {
  margin-top: 72px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: var(--black);
  color: var(--white);
  padding: 90px max(24px, calc((100% - var(--max)) / 2)) 70px;
}

.podcast-hero p:not(.eyebrow) {
  color: var(--grey-200);
}

.podcast-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 22px;
}

.podcast-set-slot {
  grid-column: 1 / -1;
  min-height: 320px;
}

.feature-episode {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plain-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 13px 0;
  border-top: 1px solid var(--black);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.resource-grid article {
  min-height: 240px;
}

.about-layout {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 144px 0 96px;
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.portrait-placeholder {
  min-height: 560px;
  border: 1px solid var(--black);
  background:
    linear-gradient(135deg, transparent 0 48%, var(--black) 49% 51%, transparent 52% 100%),
    var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
  padding: 30px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.portrait-monogram {
  font-family: var(--font-display);
  font-size: clamp(6rem, 11vw, 9rem);
  font-weight: 400;
  line-height: 0.82;
}

.portrait-name {
  max-width: 260px;
  padding-top: 12px;
  border-top: 1px solid var(--black);
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: left;
}

.about-copy h1 {
  font-family: var(--font-display);
  font-size: 3.7rem;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--grey-700);
  font-size: 1.18rem;
  font-weight: 700;
}

.career-ledger,
.image-brief {
  width: min(100% - 56px, var(--wide));
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: 28px;
  border-top: 1px solid var(--black);
}

.career-ledger-head,
.image-brief > div:first-child {
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--black);
}

.career-ledger h2,
.image-brief h2 {
  max-width: 620px;
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.career-ledger-head p:not(.eyebrow) {
  max-width: 560px;
  color: var(--grey-700);
  font-weight: 700;
}

.about-investments {
  width: min(100% - 56px, var(--wide));
  display: block;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.about-investments-copy {
  padding: 28px 0 26px;
}

.about-investments-copy h2 {
  max-width: 900px;
  font-family: var(--font-display);
  font-size: 3.55rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.about-investments-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--grey-700);
  font-weight: 700;
}

.fine-context {
  max-width: 560px;
  color: var(--grey-700);
  font-size: 0.88rem;
  font-weight: 800;
}

.about-investment-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 28px;
}

.about-investment-grid article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--black);
  background: var(--white);
  padding: 16px;
}

.about-investment-grid article:nth-child(even) {
  background: var(--accent-soft);
}

.about-investment-grid figure {
  width: 100%;
  height: 76px;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--black);
  background: var(--white);
  padding: 10px;
}

.about-investment-grid img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}

.about-crypto-logos {
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.about-crypto-logos img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(5, 5, 5, 0.18);
  padding: 4px;
}

.about-investment-grid span,
.about-investment-grid p {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-investment-grid span {
  display: inline-flex;
  align-self: flex-start;
  min-height: 24px;
  align-items: center;
  margin-top: 14px;
  padding: 3px 7px;
  background: var(--accent);
}

.about-investment-grid h3 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.about-investment-grid p {
  margin: 12px 0 0;
  color: var(--grey-700);
}

.career-ledger-grid,
.image-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--black);
  border-top: 1px solid var(--black);
}

.career-ledger-grid article,
.image-brief-grid article {
  min-height: 176px;
  padding: 18px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.career-ledger-grid article:nth-child(even),
.image-brief-grid article:nth-child(2) {
  background: var(--accent-soft);
}

.career-ledger-grid span,
.image-brief-grid span {
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.career-ledger-grid h3,
.image-brief-grid h3 {
  font-family: var(--font-display);
  font-size: 1.46rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.image-brief-grid p {
  color: var(--grey-700);
  font-weight: 700;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.manifesto-grid article {
  border: 1px solid var(--black);
  padding: 24px;
  background: var(--white);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.manifesto-grid span {
  font-family: var(--font-serif);
  color: var(--accent-text);
  font-size: 3.2rem;
}

.manifesto-grid h2 {
  font-size: 1.8rem;
}

.narrow-page {
  max-width: 920px;
  margin: 0 auto;
}

.legal-copy {
  width: auto;
}

.legal-copy h2 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.legal-copy p {
  font-family: var(--font-serif);
  font-size: 1.13rem;
  line-height: 1.62;
}

.template-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}

.template-board {
  width: min(100% - 56px, var(--wide));
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(260px, 0.62fr) minmax(340px, 1fr);
  gap: 22px;
  align-items: start;
}

.template-card {
  display: grid;
  gap: 12px;
}

.template-canvas {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.template-square {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(90deg, transparent 0 58%, var(--accent) 58% 62%, transparent 62% 100%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 12px),
    var(--white);
}

.template-vertical {
  aspect-ratio: 9 / 16;
  min-height: 620px;
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 14px),
    var(--black);
}

.template-wide {
  aspect-ratio: 16 / 9;
  margin-top: 140px;
  color: var(--white);
  background:
    linear-gradient(90deg, var(--black) 0 70%, var(--accent-two) 70% 100%);
}

.template-wide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 54%, rgba(207, 255, 53, 0.9) 54% 58%, transparent 58% 100%);
  pointer-events: none;
}

.template-mark {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  width: 68px;
  height: 48px;
  border: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: 1rem;
}

.template-mark span {
  display: grid;
  place-items: center;
}

.template-mark span:nth-child(2) {
  color: var(--accent-ink);
  background: var(--accent);
}

.template-kicker,
.template-footer,
.template-meta {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.template-canvas h2 {
  position: relative;
  z-index: 1;
  max-width: 92%;
  font-family: var(--font-display);
  font-size: 3.35rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.template-vertical h2 {
  font-size: 3.05rem;
}

.template-wide h2 {
  max-width: 66%;
  font-size: 2.7rem;
  line-height: 0.96;
}

.template-wide .template-caption {
  font-size: 0.9rem;
  line-height: 1.3;
}

.template-wide .template-footer {
  padding-top: 6px;
  line-height: 1;
}

.template-caption {
  position: relative;
  z-index: 1;
  max-width: 78%;
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
}

.template-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid currentColor;
  padding-top: 12px;
}

.template-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--grey-700);
}

.template-meta strong {
  color: var(--black);
}

.template-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.template-cta h2 {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.template-cta p:not(.eyebrow) {
  max-width: 620px;
  color: var(--grey-700);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto minmax(220px, 320px);
  gap: 30px;
  align-items: start;
  padding: 36px 28px;
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--black);
}

.footer-brand {
  margin: 0 0 8px;
  font-weight: 900;
}

.site-footer p {
  margin: 0;
  color: var(--grey-200);
}

.site-footer nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 900;
}

.social-footer {
  max-width: 260px;
}

.social-footer span {
  color: var(--grey-500);
  font-weight: 700;
}

.fine-print {
  color: var(--grey-500);
  font-size: 0.82rem;
}

.skeleton {
  min-height: 190px;
  border: 1px solid var(--black);
  background:
    linear-gradient(90deg, var(--white) 25%, var(--grey-100) 50%, var(--white) 75%);
  background-size: 300% 100%;
  animation: skeleton 1.4s infinite;
}

.skeleton-large {
  min-height: 420px;
}

@keyframes skeleton {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

@media (max-width: 1180px) {
  .magazine-front {
    grid-template-columns: 1fr;
    width: min(100% - 40px, var(--max));
  }

  .issue-edition {
    grid-template-columns: 1fr;
  }

  .issue-edition-lede {
    padding-right: 0;
    border-right: 0;
  }

  .cover-feature {
    min-height: 540px;
  }

  .beat-strip {
    width: min(100% - 40px, var(--max));
  }

  .social-ledger {
    grid-template-columns: 1fr;
    width: min(100% - 40px, var(--max));
  }

  .operator-ledger,
  .angel-board,
  .content-engine,
  .career-ledger,
  .about-investments,
  .image-brief {
    grid-template-columns: 1fr;
    width: min(100% - 40px, var(--max));
  }

  .operator-proof,
  .angel-thesis,
  .career-ledger-head,
  .about-investments-copy,
  .image-brief > div:first-child {
    padding-right: 0;
    border-right: 0;
  }

  .investment-strip {
    width: min(100% - 40px, var(--max));
    grid-template-columns: repeat(4, minmax(180px, 1fr));
  }

  .template-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 40px, var(--max));
  }

  .template-wide {
    margin-top: 0;
  }

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

  .social-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .social-directory > :nth-child(4) {
    border-left: 1px solid var(--black);
  }

  .departments-section,
  .magazine-section {
    width: min(100% - 40px, var(--max));
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .section-header h2,
  .feature-lead h3,
  .media-panel h2,
  .video-frame h2,
  .page-hero h1,
  .podcast-hero h1 {
    font-size: 3.3rem;
  }

  .pillar-grid,
  .format-grid,
  .feature-stack,
  .operator-proof-grid,
  .angel-card-grid,
  .portfolio-grid,
  .content-engine-grid,
  .career-ledger-grid,
  .image-brief-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar,
  .pillar:nth-last-child(-n + 2) {
    grid-column: auto;
  }

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

  .ledger-grid,
  .manifesto-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .site-header {
    padding: 13px 16px;
  }

  .page-shell {
    padding-top: 36px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mobile-home-link {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    z-index: 70;
    display: none;
    min-height: calc(100dvh - 69px);
    padding: 22px 18px 34px;
    gap: 0;
    align-content: start;
    overflow-y: auto;
    background: var(--paper);
    color: var(--black);
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav::before {
    content: "Money for Operators";
    display: block;
    padding: 0 0 18px;
    color: var(--grey-700);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .site-nav a {
    padding: 18px 0 16px;
    border-top: 1px solid var(--black);
    font-family: var(--font-display);
    font-size: clamp(2.55rem, 13vw, 4.7rem);
    font-weight: 400;
    line-height: 0.96;
    text-transform: uppercase;
  }

  .site-nav a:last-child {
    border-bottom: 1px solid var(--black);
  }

  .hero {
    min-height: 82vh;
  }

  .magazine-front {
    width: 100%;
    padding: 46px 18px 68px;
    gap: 46px;
    background:
      linear-gradient(90deg, transparent 0 calc(50% - 1px), var(--accent-soft) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px) 100%);
  }

  .front-masthead {
    padding: 24px 16px 30px 0;
  }

  .masthead-title {
    display: block;
    padding-right: 0;
    font-size: clamp(4.2rem, 15vw, 6.8rem);
    line-height: 0.96;
  }

  .masthead-title em {
    position: static;
    display: inline-block;
    margin-top: 12px;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }

  .front-copy {
    margin-top: 20px;
    font-size: 1.05rem;
    line-height: 1.42;
  }

  .front-actions {
    display: grid;
    gap: 10px;
  }

  .cover-feature {
    min-height: 600px;
    box-shadow: 7px 7px 0 var(--accent);
  }

  .cover-feature-copy {
    padding: 28px 24px;
  }

  .cover-feature-copy h2 {
    font-size: clamp(3.2rem, 11vw, 4.2rem);
    line-height: 0.96;
  }

  .beat-strip {
    grid-template-columns: 1fr;
  }

  .beat-strip div {
    border-top: 1px solid var(--black);
  }

  .hero-content {
    width: min(100% - 32px, 720px);
    padding: 130px 0 86px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-copy {
    font-size: 1.2rem;
  }

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

  .section,
  .page-hero,
  .about-layout,
  .article-shell {
    width: min(100% - 32px, var(--max));
  }

  .section {
    padding: 88px 0;
  }

  .section-inverse {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 58px 16px;
  }

  .split-header,
  .template-cta,
  .newsletter-band,
  .newsletter-band-mockup,
  .newsletter-feature,
  .media-split,
  .feature-grid,
  .video-board,
  .podcast-board,
  .social-ledger,
  .about-layout,
  .article-shell,
  .template-board,
  .operator-ledger,
  .angel-board,
  .content-engine,
  .career-ledger,
  .about-investments,
  .image-brief {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .newsletter-band,
  .newsletter-band-mockup,
  .social-ledger,
  .media-split,
  .operator-ledger {
    gap: 42px;
  }

  .issue-edition {
    gap: 36px;
  }

  .issue-edition-lede,
  .operator-proof,
  .social-ledger-head {
    padding: 34px 0;
  }

  .about-layout {
    padding-top: 52px;
    gap: 48px;
  }

  .split-header {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }

  .media-panel + .media-panel {
    border-left: 1px solid var(--black);
    border-top: 0;
  }

  .resource-row,
  .resource-grid,
  .issue-index,
  .operator-proof-grid,
  .angel-card-grid,
  .portfolio-grid,
  .content-engine-grid,
  .career-ledger-grid,
  .about-investment-grid,
  .image-brief-grid {
    grid-template-columns: 1fr;
  }

  .article-aside {
    order: -1;
  }

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

  .social-directory > :nth-child(3),
  .social-directory > :nth-child(5) {
    border-left: 1px solid var(--black);
  }

  .social-directory > :nth-child(4) {
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding: 14px;
  }

  .brand-text {
    display: none;
  }

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

  .brand-ledger-text {
    width: 102px;
    height: 42px;
    font-size: 0.76rem;
  }

  .brand-wordmark {
    min-width: 132px;
  }

  .brand-wordmark-name {
    font-size: 1.28rem;
    transform: scaleX(0.88);
  }

  .brand-wordmark-sub {
    width: 112px;
    font-size: 0.5rem;
  }

  .mobile-home-link {
    min-height: 42px;
    padding: 0 10px;
  }

  .site-nav {
    top: 71px;
    min-height: calc(100dvh - 71px);
    padding: 24px 14px 34px;
  }

  .site-nav a {
    font-size: clamp(2.45rem, 16vw, 3.65rem);
  }

  .hero h1,
  .section-header h2,
  .feature-lead h3,
  .newsletter-band h2,
  .media-panel h2,
  .video-frame h2,
  .page-hero h1,
  .podcast-hero h1,
  .article-body h1,
  .about-copy h1,
  .social-ledger-head h2 {
    font-size: 2.55rem;
  }

  .magazine-front,
  .magazine-section,
  .departments-section,
  .social-ledger {
    width: 100%;
  }

  .magazine-front {
    padding-top: 28px;
  }

  .operator-ledger,
  .angel-board,
  .portfolio-section,
  .content-engine,
  .career-ledger,
  .about-investments,
  .image-brief {
    width: min(100% - 28px, var(--max));
  }

  .beat-strip {
    width: 100%;
    display: grid;
    padding: 0;
  }

  .beat-strip div {
    flex-wrap: wrap;
    gap: 0;
    overflow: visible;
    padding: 8px 14px;
    scrollbar-width: none;
  }

  .beat-strip div::-webkit-scrollbar {
    display: none;
  }

  .beat-strip p {
    margin: 0;
  }

  .beat-strip span {
    flex: 0 0 auto;
    min-width: 0;
    min-height: 36px;
    border: 0;
    font-size: 0.7rem;
  }

  .beat-strip span + span::before {
    margin: 0 10px;
  }

  .issue-index article {
    flex-direction: column;
    gap: 8px;
    padding: 18px 0;
  }

  .issue-index span {
    flex: 0 0 auto;
  }

  .issue-index h3 {
    max-width: none;
  }

  .operator-proof-grid article,
  .career-ledger-grid article {
    min-height: 0;
    gap: 42px;
    justify-content: flex-start;
  }

  .investment-strip {
    width: 100%;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 14px 2px;
    border: 0;
    scrollbar-width: none;
  }

  .investment-strip::-webkit-scrollbar {
    display: none;
  }

  .investment-strip span {
    flex: 0 0 auto;
    min-width: 168px;
    min-height: 44px;
    border: 1px solid var(--black);
  }

  .front-masthead {
    padding: 20px 8px 24px 0;
  }

  .masthead-title {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    font-size: clamp(3rem, 15vw, 3.9rem);
    line-height: 0.97;
  }

  .masthead-title span {
    white-space: normal;
    max-width: 100%;
  }

  .masthead-title em {
    margin-top: 10px;
    font-size: 0.62rem;
  }

  .front-copy {
    font-size: 1.02rem;
  }

  .front-author-note {
    margin-top: 22px;
    align-items: center;
  }

  .front-author-note p {
    display: none;
  }

  .front-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .front-actions .button {
    min-width: 0;
    padding-inline: 10px;
    font-size: 0.76rem;
  }

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

  .issue-edition-lede h2,
  .brief-main h3,
  .operator-proof h2,
  .angel-thesis h2,
  .content-engine h2,
  .career-ledger h2,
  .image-brief h2 {
    font-size: 3.2rem;
  }

  .template-vertical {
    min-height: 560px;
  }

  .template-canvas h2,
  .template-vertical h2,
  .template-wide h2,
  .template-cta h2 {
    max-width: 100%;
    font-size: 2.65rem;
  }

  .template-wide h2 {
    max-width: 68%;
    font-size: 1.65rem;
  }

  .template-wide .template-caption {
    max-width: 70%;
    font-size: 0.72rem;
  }

  .template-wide .template-kicker,
  .template-wide .template-footer {
    font-size: 0.5rem;
    line-height: 1;
  }

  .template-wide .template-footer {
    padding-top: 4px;
    white-space: nowrap;
  }

  .template-wide .template-mark {
    width: 48px;
    height: 32px;
    font-size: 0.72rem;
  }

  .social-card {
    min-height: 180px;
    padding: 18px;
  }

  .social-card h3 {
    font-size: 1.45rem;
  }

  .social-card p {
    font-size: 0.84rem;
  }

  .cover-feature {
    min-height: 560px;
    box-shadow: 5px 5px 0 var(--accent);
  }

  .cover-feature-copy {
    padding: 24px 20px;
  }

  .cover-feature-copy h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3rem);
    line-height: 0.97;
  }

  .cover-feature-copy p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .hero-actions,
  .signup-form {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .post-grid,
  .pillar-grid,
  .format-grid,
  .feature-stack,
  .operator-proof-grid,
  .angel-card-grid,
  .portfolio-grid,
  .content-engine-grid,
  .career-ledger-grid,
  .about-investment-grid,
  .image-brief-grid {
    grid-template-columns: 1fr;
  }

  .feature-lead .post-card-inner {
    min-height: 420px;
  }

  .pillar {
    min-height: 210px;
    padding: 22px;
  }

  .image-strip .editorial-photo-slot {
    min-height: 300px;
  }

  .media-panel {
    min-height: 340px;
    padding: 28px;
  }

  .brief-mockup {
    min-height: 420px;
    box-shadow: 6px 6px 0 var(--accent-two);
  }

  .page-hero {
    padding-top: 64px;
  }

  .portrait-placeholder {
    min-height: 420px;
    padding: 24px;
  }

  .social-directory {
    width: min(100% - 28px, var(--max));
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .social-directory > a,
  .social-directory-pending {
    min-height: 170px;
    padding: 16px;
  }

  .social-directory strong {
    font-size: 1.55rem;
  }

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

.masthead-title,
.cover-feature-copy h2,
.issue-edition-lede h2,
.issue-index h3,
.feature-lead h3,
.pillar strong,
.operator-proof h2,
.operator-proof-grid h3,
.social-ledger-head h2,
.newsletter-band h2,
.brief-main h3,
.media-panel h2,
.video-frame h2,
.page-hero h1,
.podcast-hero h1,
.angel-thesis h2,
.content-engine h2,
.angel-card-grid h3,
.portfolio-grid h3,
.content-engine-grid h3,
.newsletter-promise h2,
.article-body h1,
.about-copy h1,
.career-ledger h2,
.image-brief h2,
.about-investments-copy h2,
.about-investment-grid h3,
.career-ledger-grid h3,
.image-brief-grid h3,
.manifesto-grid h2,
.template-canvas h2,
.template-cta h2 {
  line-height: 1.04;
}

.logo-hero {
  padding-bottom: 46px;
}

.logo-direction-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: min(100% - 56px, var(--wide));
}

.logo-option {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--black);
  background: var(--white);
}

.logo-option:nth-child(even) {
  background: var(--accent-soft);
}

.logo-option.is-selected {
  box-shadow: inset 0 0 0 3px var(--black);
}

.logo-option.is-selected > div:last-child > span::after {
  content: " selected";
}

.logo-preview {
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
  border-bottom: 1px solid var(--black);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 5, 5, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
}

.logo-option > div:last-child {
  padding: 18px;
}

.logo-option > div:last-child > span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 28px;
  padding: 0 8px;
  color: var(--accent-ink);
  background: var(--accent);
  border: 1px solid var(--black);
  font-size: 0.74rem;
  font-weight: 900;
}

.logo-option h2 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.logo-option p {
  margin: 14px 0 0;
  color: var(--grey-700);
  font-weight: 700;
}

.logo-current {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 116px;
  height: 84px;
  border: 1px solid var(--black);
  background: var(--white);
}

.logo-current span,
.logo-monogram span,
.logo-monogram strong {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 400;
}

.logo-current span:nth-child(2) {
  color: var(--accent);
  background: var(--black);
}

.logo-option-one .logo-preview strong {
  margin-top: 14px;
  font-weight: 900;
}

.logo-stacked {
  position: relative;
  display: grid;
  padding-right: 36px;
  font-family: var(--font-display);
  max-width: 100%;
  font-size: clamp(2.7rem, 2.8vw, 3.35rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.logo-stacked span {
  position: absolute;
  right: 0;
  bottom: 0;
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: 0.28em;
}

.logo-rouquairol {
  width: 100%;
  text-align: center;
}

.logo-rouquairol strong {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 2.4vw, 2.75rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
  transform: scaleX(0.9);
  transform-origin: center;
}

.logo-rouquairol span {
  display: inline-block;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--black);
  max-width: 100%;
  font-weight: 900;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.logo-ledger {
  width: 100%;
  border-top: 4px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.logo-ledger span {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--black);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.logo-ledger span:last-child {
  border-bottom: 0;
}

.logo-monogram {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  width: min(220px, 100%);
  min-height: 120px;
  border: 1px solid var(--black);
  background: var(--white);
}

.logo-monogram span {
  background: var(--accent);
  border-right: 1px solid var(--black);
  font-size: 2.2rem;
}

.logo-monogram strong {
  color: var(--white);
  background: var(--black);
  font-size: 4.8rem;
}

@media (max-width: 1180px) {
  .logo-direction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 40px, var(--max));
  }
}

@media (max-width: 640px) {
  .front-author-note {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 12px;
  }

  .front-author-photo {
    width: 48px;
    height: 48px;
  }

  .logo-direction-grid {
    grid-template-columns: 1fr;
    width: min(100% - 28px, var(--max));
    gap: 14px;
  }

  .logo-option {
    min-height: 0;
  }

  .logo-preview {
    min-height: 220px;
  }
}

/* Long-form resource guides */
.resource-guide {
  background: var(--paper);
}

.resource-guide-hero {
  width: min(100% - 56px, var(--wide));
  margin: 0 auto;
  padding: 118px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 72px;
  align-items: end;
  border-bottom: 1px solid var(--black);
}

.resource-guide-hero h1 {
  max-width: 1060px;
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 8vw, 7.4rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.resource-guide-deck {
  max-width: 840px;
  margin: 30px 0 0;
  color: var(--grey-700);
  font-size: 1.3rem;
  font-weight: 700;
}

.resource-guide-meta {
  margin: 0;
  border-top: 1px solid var(--black);
}

.resource-guide-meta div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--black);
}

.resource-guide-meta dt,
.resource-guide-meta dd {
  margin: 0;
}

.resource-guide-meta dt {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-guide-meta dd {
  color: var(--grey-700);
  font-size: 0.88rem;
  font-weight: 700;
}

.resource-toolbar {
  position: sticky;
  top: 71px;
  z-index: 35;
  width: 100%;
  min-height: 74px;
  padding: 12px max(28px, calc((100% - var(--wide)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid var(--black);
}

.resource-progress {
  min-width: min(480px, 48vw);
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr);
  gap: 18px;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-progress progress {
  width: 100%;
  height: 8px;
  appearance: none;
  border: 0;
  background: var(--grey-700);
}

.resource-progress progress::-webkit-progress-bar { background: var(--grey-700); }
.resource-progress progress::-webkit-progress-value { background: var(--accent); }
.resource-progress progress::-moz-progress-bar { background: var(--accent); }

.resource-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.resource-toolbar .button {
  min-height: 42px;
  padding: 8px 14px;
}

.resource-reset {
  border: 0;
  padding: 8px 0;
  color: var(--grey-200);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.resource-guide-layout {
  width: min(100% - 56px, var(--wide));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 84px;
  align-items: start;
}

.resource-toc {
  position: sticky;
  top: 174px;
  padding: 72px 0;
}

.resource-toc a {
  display: block;
  padding: 11px 0;
  border-top: 1px solid var(--grey-200);
  color: var(--grey-700);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.resource-toc a:last-child {
  border-bottom: 1px solid var(--grey-200);
}

.resource-toc a:hover,
.resource-toc a:focus {
  color: var(--black);
  background: var(--accent-soft);
}

.resource-guide-content {
  min-width: 0;
  max-width: 1040px;
  border-left: 1px solid var(--black);
  border-right: 1px solid var(--black);
}

.guide-intro,
.guide-section {
  padding: 88px 64px;
}

.guide-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 52px;
}

.guide-section {
  border-top: 1px solid var(--black);
}

.guide-dropcap {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 1.45;
}

.guide-dropcap::first-letter {
  float: left;
  margin: 8px 10px 0 0;
  font-family: var(--font-display);
  font-size: 5.4rem;
  line-height: 0.7;
}

.guide-section-heading {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 38px;
}

.guide-section-heading > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--black);
  background: var(--accent);
  border: 1px solid var(--black);
  font-family: var(--font-serif);
  font-size: 1.55rem;
}

.guide-section-heading h2 {
  max-width: 820px;
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.02;
  text-transform: uppercase;
}

.guide-section > p {
  max-width: 800px;
  color: var(--grey-700);
  font-size: 1.08rem;
  font-weight: 650;
}

.guide-callout,
.guide-warning {
  padding: 28px;
  border: 1px solid var(--black);
}

.guide-callout {
  background: var(--accent-soft);
  box-shadow: 7px 7px 0 var(--accent);
}

.guide-warning {
  margin-top: 34px;
  color: var(--white);
  background: var(--black);
}

.guide-callout span,
.guide-warning strong {
  display: block;
  margin-bottom: 16px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-callout strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.06;
  text-transform: uppercase;
}

.guide-warning p {
  margin: 0;
  color: var(--grey-200);
}

.checklist-block {
  margin-top: 34px;
  border-top: 2px solid var(--black);
}

.checklist-block h3 {
  margin: 0;
  padding: 18px 0;
  font-size: 1.15rem;
}

.checklist-block label {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--grey-200);
  font-weight: 650;
  cursor: pointer;
}

.checklist-block label:last-child {
  border-bottom: 1px solid var(--black);
}

.checklist-block input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--black);
}

.checklist-block label:has(input:checked) span {
  color: var(--grey-500);
  text-decoration: line-through;
}

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

.guide-table-wrap {
  width: 100%;
  margin-top: 34px;
  overflow-x: auto;
}

.guide-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--white);
}

.guide-table th,
.guide-table td {
  padding: 16px;
  border: 1px solid var(--black);
  text-align: left;
  vertical-align: top;
}

.guide-table th {
  color: var(--black);
  background: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-table td:first-child {
  font-weight: 900;
}

.guide-note {
  max-width: 820px;
  margin-top: 22px;
  color: var(--grey-700);
  font-size: 0.84rem !important;
  font-weight: 700;
}

.guide-timeline,
.guide-protocol {
  margin: 38px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.guide-timeline li,
.guide-protocol li {
  min-height: 180px;
  padding: 20px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: var(--white);
}

.guide-timeline li:nth-child(even),
.guide-protocol li:nth-child(even) {
  background: var(--accent-soft);
}

.guide-timeline span,
.guide-protocol span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
}

.guide-stat-row {
  margin: 36px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.guide-stat-row div {
  min-height: 150px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.guide-stat-row span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-stat-row strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.guide-question-grid,
.fraud-pattern-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.guide-question-grid article,
.fraud-pattern-grid article {
  min-height: 210px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--black);
  background: var(--white);
}

.guide-question-grid article:nth-child(2),
.guide-question-grid article:nth-child(3),
.fraud-pattern-grid article:nth-child(even) {
  background: var(--accent-soft);
}

.guide-question-grid span,
.fraud-pattern-grid span {
  color: var(--grey-700);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-question-grid h3,
.fraud-pattern-grid h3 {
  margin: 40px 0 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.fraud-pattern-grid p {
  color: var(--grey-700);
  font-size: 0.9rem;
}

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

.worksheet-grid label {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.worksheet-grid textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  resize: vertical;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--white);
  font: inherit;
  text-transform: none;
}

.guide-sources ul {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--black);
}

.guide-sources li {
  border-bottom: 1px solid var(--black);
}

.guide-sources a {
  display: block;
  padding: 18px 0;
  font-weight: 800;
}

.resource-emergency {
  width: 100%;
  padding: 42px max(28px, calc((100% - var(--wide)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 60px;
  align-items: end;
  color: var(--white);
  background: var(--black);
  border-bottom: 8px solid var(--accent);
}

.resource-emergency h2 {
  max-width: 900px;
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.04;
  text-transform: uppercase;
}

.resource-emergency > p {
  color: var(--grey-200);
  font-weight: 700;
}

.guide-response-list {
  margin-top: 36px;
  border-top: 1px solid var(--black);
}

.guide-response-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--black);
}

.guide-response-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.guide-response-list ol {
  margin: 0;
  padding-left: 1.2rem;
}

.guide-response-list li + li {
  margin-top: 8px;
}

.resource-card-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 900;
}

@media (max-width: 1040px) {
  .resource-guide-hero {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .resource-guide-meta {
    max-width: 620px;
  }

  .resource-guide-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .resource-toc {
    position: static;
    padding: 38px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 22px;
  }

  .resource-toc .eyebrow {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .resource-guide-hero {
    width: min(100% - 28px, var(--wide));
    padding: 68px 0 48px;
  }

  .resource-guide-hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.8rem);
  }

  .resource-guide-deck {
    margin-top: 22px;
    font-size: 1.05rem;
  }

  .resource-toolbar {
    position: static;
    padding: 14px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .resource-progress {
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .resource-toolbar-actions {
    justify-content: space-between;
  }

  .resource-toolbar .button {
    width: auto;
  }

  .resource-guide-layout {
    width: 100%;
  }

  .resource-toc {
    width: calc(100% - 28px);
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-guide-content {
    border-right: 0;
    border-left: 0;
  }

  .guide-intro,
  .guide-section {
    padding: 64px 18px;
  }

  .guide-intro,
  .checklist-columns,
  .worksheet-grid,
  .resource-emergency {
    grid-template-columns: 1fr;
  }

  .guide-section-heading {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .guide-section-heading > span {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .guide-section-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  .guide-dropcap {
    font-size: 1.35rem;
  }

  .guide-callout strong {
    font-size: 1.7rem;
  }

  .guide-timeline,
  .guide-protocol,
  .guide-stat-row,
  .guide-question-grid,
  .fraud-pattern-grid {
    grid-template-columns: 1fr;
  }

  .guide-timeline li,
  .guide-protocol li,
  .guide-stat-row div,
  .guide-question-grid article,
  .fraud-pattern-grid article {
    min-height: 0;
  }

  .guide-table {
    min-width: 640px;
  }

  .resource-emergency {
    padding: 48px 18px;
    gap: 20px;
  }

  .guide-response-list article {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media print {
  @page { margin: 16mm; }
  .site-header,
  .site-footer,
  .resource-toolbar,
  .resource-toc,
  .resource-emergency .eyebrow,
  .skip-link { display: none !important; }
  body { background: #fff; color: #000; font-size: 10pt; }
  .resource-guide-hero,
  .resource-guide-layout { width: 100%; }
  .resource-guide-hero { padding: 0 0 14mm; grid-template-columns: 1fr; gap: 8mm; }
  .resource-guide-hero h1 { font-size: 36pt; }
  .resource-guide-content { max-width: none; border: 0; }
  .guide-intro,
  .guide-section { padding: 12mm 0; }
  .guide-section { break-before: page; }
  .guide-intro { grid-template-columns: 1fr 0.7fr; }
  .guide-section-heading h2 { font-size: 25pt; }
  .resource-emergency { padding: 10mm; color: #fff !important; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .guide-callout,
  .guide-warning,
  .guide-section-heading > span,
  .guide-table th,
  .tag { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .guide-question-grid article,
  .fraud-pattern-grid article,
  .guide-response-list article,
  .checklist-block label { break-inside: avoid; }
  a { color: #000; text-decoration: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 8pt; overflow-wrap: anywhere; }
}

/* Public-site simplification: focused landing page, finished stories and one CTA. */
.site-nav .nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus {
  border-color: var(--black);
  background: var(--accent);
  color: var(--black);
}

.landing-hero {
  padding-top: 72px;
  padding-bottom: 84px;
  grid-template-columns: minmax(420px, 0.9fr) minmax(500px, 1.1fr);
}

.landing-hero .front-masthead {
  padding-top: 28px;
  padding-bottom: 30px;
}

.landing-hero .issue-line {
  margin-bottom: 22px;
}

.landing-hero .masthead-title {
  font-size: clamp(5.2rem, 7.8vw, 7.3rem);
}

.landing-hero .front-copy {
  margin-top: 24px;
}

.hero-signup {
  max-width: 560px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--black);
}

.hero-signup > label {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.signup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.signup-row input,
.signup-row .button {
  min-height: 52px;
}

.landing-feature {
  min-height: 590px;
}

.home-stories {
  padding-top: 94px;
  padding-bottom: 94px;
}

.home-story-stack {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.home-story-stack .post-card a {
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  grid-template-rows: 1fr;
}

.home-story-stack .post-card-visual {
  min-height: 0;
  height: 100%;
  border-right: 1px solid var(--black);
  border-bottom: 0;
}

.home-brief {
  padding-top: 94px;
  padding-bottom: 94px;
}

.home-brief .newsletter-copy .button {
  align-self: flex-start;
  margin-top: 18px;
}

.home-about-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 64px;
  align-items: stretch;
  padding-top: 94px;
  padding-bottom: 94px;
  border-top: 1px solid var(--black);
}

.home-about-copy {
  max-width: 760px;
}

.home-about-copy h2,
.home-brief h2,
.home-connect h2,
.stories-guides h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.home-about-copy h2 {
  margin-top: 12px;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
}

.home-about-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--grey-700);
  font-size: 1.08rem;
  font-weight: 700;
}

.archive-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  text-decoration: none;
}

.archive-card span,
.archive-card small {
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.archive-card strong {
  max-width: 360px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.home-connect {
  padding-top: 72px;
  padding-bottom: 94px;
  border-top: 1px solid var(--black);
}

.home-social-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.home-social-links a {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  text-decoration: none;
}

.home-social-links a:hover,
.home-social-links a:focus {
  background: var(--accent-soft);
}

.home-social-links span {
  color: var(--grey-700);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-social-links strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.stories-live-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.stories-guides {
  padding-top: 88px;
  padding-bottom: 104px;
}

.stories-guides h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

@media (max-width: 1040px) {
  .landing-hero {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .landing-hero .masthead-title {
    font-size: clamp(4.4rem, 8.4vw, 6.1rem);
  }

  .home-story-stack .post-card a {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .home-story-stack .post-card-visual {
    min-height: 150px;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--black);
  }
}

@media (max-width: 840px) {
  .site-nav .nav-cta {
    padding: 18px 12px 16px;
    border: 0;
    border-top: 1px solid var(--black);
  }

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

  .landing-feature {
    min-height: 520px;
  }

  .home-about-strip {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .signup-row {
    grid-template-columns: 1fr;
  }

  .landing-hero .masthead-title {
    font-size: clamp(3.1rem, 15vw, 4.2rem);
  }

  .home-stories,
  .home-brief,
  .home-about-strip,
  .home-connect,
  .stories-live-section,
  .stories-guides {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .home-story-stack {
    grid-template-rows: auto;
  }

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

  .home-social-links a {
    min-height: 118px;
  }

  .archive-card {
    min-height: 250px;
  }

  .archive-card strong {
    font-size: 2.25rem;
  }
}
