.home-editorial {
  --home-ink: #15231d;
  --home-paper: #edf2e9;
  --home-white: #fffef9;
  --home-apple: #4cae50;
  --home-signal: #d4473d;
  --home-blue: #5370ff;
  --home-yellow: #efb936;
  --home-muted: #667068;
  margin-top: -6rem;
  padding: 7.5rem 0 5rem;
  background:
    linear-gradient(rgba(21, 35, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 35, 29, 0.035) 1px, transparent 1px), var(--home-paper);
  background-size: 32px 32px;
  color: var(--home-ink);
}

.home-shell {
  width: min(100% - 2rem, 90rem);
  margin-inline: auto;
}

.home-editorial h1,
.home-editorial h2,
.home-editorial h3,
.home-editorial p {
  color: inherit;
}

.home-editorial h1,
.home-editorial h2,
.home-editorial h3 {
  text-wrap: balance;
}

.home-editorial p {
  text-wrap: pretty;
}

.home-color-rail {
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.7fr 0.55fr 0.8fr 0.4fr;
  height: 8px;
}

.home-color-rail span:nth-child(1) {
  background: var(--home-apple);
}

.home-color-rail span:nth-child(2) {
  background: var(--home-signal);
}

.home-color-rail span:nth-child(3) {
  background: var(--home-blue);
}

.home-color-rail span:nth-child(4) {
  background: var(--home-yellow);
}

.home-kicker,
.home-section-mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Fira Code', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-kicker > span,
.home-section-mark > span:last-child {
  opacity: 0.55;
}

.home-kicker p {
  margin: 0 auto 0 0;
}

.home-section-mark {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(21, 35, 29, 0.25);
  color: var(--home-ink);
}

.home-section-mark--light {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--home-white);
}

.home-mono-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Fira Code', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-mono-label svg {
  width: 1rem;
  height: 1rem;
}

.home-button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0.65rem;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.2;
  touch-action: manipulation;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.home-button:hover {
  transform: translateY(-2px);
}

.home-button svg,
.home-text-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 180ms ease;
}

.home-button:hover svg,
.home-text-link:hover svg {
  transform: translateX(3px);
}

.home-button--signal {
  background: var(--home-signal);
  color: #fff;
}

.home-button--signal:hover {
  background: #bd392f;
}

.home-button--quiet {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--home-white);
}

.home-button--quiet:hover {
  border-color: var(--home-white);
  background: rgba(255, 255, 255, 0.08);
}

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

.home-button--paper:hover {
  background: var(--home-paper);
}

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

.home-button--ink:hover {
  background: #26372f;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  color: var(--home-ink);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--home-apple);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3rem;
}

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

.home-hero {
  position: relative;
  display: grid;
  min-height: 43rem;
  grid-template-columns: minmax(0, 1.12fr) minmax(22rem, 0.88fr);
  overflow: hidden;
  border-radius: 1.25rem;
  background: var(--home-ink);
  color: var(--home-white);
  box-shadow: 0 30px 80px -48px rgba(21, 35, 29, 0.85);
}

.home-hero__copy {
  display: flex;
  flex-direction: column;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 5vw, 5rem) 3rem;
}

.home-hero__title {
  max-width: 12ch;
  margin: clamp(3.5rem, 8vh, 6.5rem) 0 0;
  color: var(--home-white) !important;
  font-size: clamp(3.4rem, 7.5vw, 7.4rem) !important;
  font-weight: 780 !important;
  letter-spacing: -0.075em !important;
  line-height: 0.86 !important;
}

.home-hero__title span {
  display: block;
  margin-top: 0.15em;
  color: #cdea81;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.home-hero__lead {
  max-width: 40rem;
  margin-top: 2rem;
  color: rgba(255, 254, 249, 0.76) !important;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.home-hero__proof {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: auto;
  padding-top: 3rem;
}

.home-hero__proof > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.home-hero__proof strong {
  color: var(--home-white);
  font-size: 1rem;
}

.home-hero__proof span {
  max-width: 18rem;
  color: rgba(255, 254, 249, 0.58);
  font-size: 0.75rem;
  line-height: 1.45;
}

.home-hero__portrait {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.home-hero__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(21, 35, 29, 0.22));
  pointer-events: none;
}

.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 40%;
  filter: saturate(0.92) contrast(1.03);
}

.home-hero__portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 1.1rem;
  background: rgba(255, 254, 249, 0.94);
  color: var(--home-ink);
}

.home-hero__portrait figcaption > span {
  display: block;
  color: var(--home-signal);
  font-family: 'Fira Code', monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero__portrait figcaption p {
  max-width: 29rem;
  margin-top: 0.55rem;
  font-size: 0.84rem;
  line-height: 1.5;
}

.home-hero__portrait figcaption a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.7rem;
  font-size: 0.75rem;
  font-weight: 750;
}

.home-hero__portrait figcaption svg {
  width: 0.85rem;
  height: 0.85rem;
}

.home-hero__margin-note {
  position: absolute;
  right: calc(44% - 0.65rem);
  bottom: 1.5rem;
  z-index: 3;
  margin: 0;
  color: rgba(255, 255, 255, 0.55) !important;
  font-family: 'Fira Code', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.home-logo-strip {
  margin: 1.25rem 0 0;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(21, 35, 29, 0.15);
  background: rgba(255, 254, 249, 0.72);
}

.home-logo-strip h2 {
  margin-bottom: 1.25rem;
  color: var(--home-muted);
  font-family: 'Fira Code', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.home-paths-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.5fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  margin: clamp(5rem, 10vw, 9rem) 0 3rem;
  scroll-margin-top: 7rem;
}

.home-paths-intro h2 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 5vw, 5.2rem) !important;
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.95;
}
