:root {
  --bg: #f6f4ef;
  --bg-soft: #fbfaf7;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #ffffff;
  --text: #18181b;
  --muted: #6f6b64;
  --soft: #b5aea4;
  --line: rgba(24, 24, 27, 0.08);
  --accent: #e16259;
  --accent-dark: #d34c43;
  --shadow-lg: 0 20px 60px rgba(23, 19, 11, 0.08);
  --shadow-md: 0 12px 30px rgba(23, 19, 11, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --content-width: 1180px;
  --content-narrow: 720px;
  --content-column: min(80vw, 1080px);
  --panel-gap: clamp(56px, 8vh, 96px);
  --transition: 180ms ease;
}

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

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  margin: 0;
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(225, 98, 89, 0.1), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.82), transparent 20%),
    linear-gradient(180deg, #f8f6f1 0%, #f4f1eb 100%);
  overflow: hidden;
}

body.menu-open {
  overflow-x: hidden;
}

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

button,
input,
[contenteditable="true"] {
  font: inherit;
}

button {
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
}

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

.page-shell {
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  padding: 0 20px;
  overscroll-behavior-y: contain;
}

.section,
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: var(--panel-gap);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section-shell {
  width: 100%;
  max-width: var(--content-column);
  margin: 0 auto;
  transition:
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms ease,
    filter 520ms ease;
}

.section-intro {
  max-width: none;
  margin-bottom: 36px;
}

.section-intro--split {
  display: block;
}

.eyebrow,
.section-tag,
.info-card__eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  line-height: 1.06;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.18;
}

.lead,
.section-subtitle,
.info-card p,
.editor-intro,
.hero-floating-card p,
.people-metric span,
.footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
  isolation: isolate;
}

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

.button-primary {
  border: 1px solid rgba(208, 86, 77, 0.15);
  background: linear-gradient(180deg, #ec7a71 0%, #df5e55 100%);
  color: #ffffff;
  box-shadow:
    0 16px 30px rgba(225, 98, 89, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button-primary:hover {
  background: linear-gradient(180deg, #ef8278 0%, #d8574e 100%);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  box-shadow:
    0 10px 24px rgba(23, 19, 11, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.button-dark {
  border: 1px solid rgba(24, 24, 27, 0.9);
  background: #18181b;
  color: #ffffff;
  box-shadow:
    0 18px 34px rgba(24, 24, 27, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button-large {
  min-height: 58px;
  padding-inline: 24px 18px;
}

.button-ghost {
  min-height: 40px;
  border: 1px dashed rgba(24, 24, 27, 0.12);
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

.button-ghost:hover {
  color: var(--text);
  background: #ffffff;
}

.button__label {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.button__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.94rem;
  transition:
    transform var(--transition),
    background-color var(--transition);
}

.button-primary:hover .button__icon,
.button-dark:hover .button__icon {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.22);
}

.button-secondary .button__icon,
.button-secondary .button__meta {
  color: var(--muted);
}

.button__meta {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(24, 24, 27, 0.05);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.hero-metrics div {
  padding-top: 18px;
  border-top: 1px solid rgba(24, 24, 27, 0.08);
}

.hero-metrics strong,
.people-metric strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.hero-visual {
  position: relative;
  min-height: auto;
}

.hero-manifesto {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  min-height: min(60svh, 620px);
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.52) 100%);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px);
}

.hero-manifesto::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 65%);
  pointer-events: none;
}

.hero-manifesto__stone {
  width: min(100%, 240px);
  margin: 0 auto;
}

.hero-manifesto__stone svg {
  fill: none;
  stroke: rgba(26, 26, 26, 0.9);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  font-size: inherit;
}

.hero-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #34312d;
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.02;
  text-align: center;
}

.hero-floating-card {
  position: static;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  width: 100%;
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(24, 24, 27, 0.1);
  background: transparent;
  box-shadow: none;
}

.hero-floating-card__label {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.problem-grid,
.solution-grid,
.demo-showcase {
  display: grid;
  gap: 24px;
}

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

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

.demo-showcase {
  grid-template-columns: 1fr;
  align-items: center;
}

.info-card {
  padding: 24px;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-md);
}

.info-card--statement {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68));
}

.info-card h3 {
  margin-bottom: 10px;
}

.tool-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.tool-caption {
  color: var(--muted);
}

.tool-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(24, 24, 27, 0.08);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  box-shadow: 0 6px 14px rgba(24, 20, 12, 0.04);
}

.tool-chip--word {
  color: #3a63c8;
}

.tool-chip--excel {
  color: #25724d;
}

.tool-chip--slide {
  color: #b96f29;
}

.tool-chip--design {
  color: #8b5bc7;
}

.audience-band,
.tool-collage,
.market-strip,
.adoption-spectrum,
.era-strip,
.developer-columns,
.plumbing-diagram,
.revenue-flow,
.roadmap-track {
  margin-top: 28px;
}

.audience-band {
  display: grid;
  gap: 24px;
}

.audience-band__mini {
  display: grid;
  gap: 10px;
}

.audience-band__main {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 12px;
  align-items: start;
}

.audience-group {
  display: grid;
  gap: 10px;
}

.audience-label {
  margin: 0;
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-family: "Times New Roman", Times, serif;
}

.audience-label--accent {
  color: var(--accent);
}

.audience-group--muted .audience-label {
  color: #a9a39a;
}

.people-row,
.people-wall {
  display: grid;
  gap: 8px;
}

.people-row {
  grid-auto-flow: column;
  justify-content: start;
}

.people-wall {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.mini-person {
  position: relative;
  width: 18px;
  height: 22px;
}

.mini-person::before,
.mini-person::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: currentColor;
}

.mini-person::before {
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.mini-person::after {
  bottom: 0;
  width: 16px;
  height: 10px;
  border-radius: 10px 10px 3px 3px;
}

.people-row--accent,
.people-wall--accent {
  color: var(--accent);
}

.people-wall--dark {
  color: #111111;
}

.people-wall--muted {
  color: #d9d5cf;
}

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

.tool-panel {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.tool-panel__window {
  position: relative;
  width: 100%;
  aspect-ratio: 1.55;
  border-radius: 16px;
  border: 1px solid rgba(24, 24, 27, 0.08);
  background: linear-gradient(180deg, #ece8e1, #d9d4cc);
  box-shadow: 0 12px 22px rgba(24, 20, 12, 0.06);
}

.tool-panel__window::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 18%;
  border-radius: 16px 16px 0 0;
  background: rgba(24, 24, 27, 0.12);
}

.tool-panel__window::after {
  content: "";
  position: absolute;
  inset: 24% 9% 12%;
  border-radius: 8px;
  border: 1px solid rgba(24, 24, 27, 0.08);
}

.tool-panel__window--office::after {
  background:
    linear-gradient(180deg, rgba(24, 24, 27, 0.1), rgba(24, 24, 27, 0.02)),
    linear-gradient(90deg, transparent 62%, rgba(24, 24, 27, 0.08) 62%, rgba(24, 24, 27, 0.08) 64%, transparent 64%);
}

.tool-panel__window--mail::after {
  background:
    repeating-linear-gradient(180deg, rgba(24, 24, 27, 0.1) 0 4px, transparent 4px 16px),
    linear-gradient(90deg, rgba(24, 24, 27, 0.08) 0 24%, transparent 24%);
}

.tool-panel__window--saas::after {
  background:
    linear-gradient(180deg, rgba(24, 24, 27, 0.08), transparent),
    repeating-linear-gradient(180deg, rgba(24, 24, 27, 0.08) 0 6px, transparent 6px 14px);
}

.tool-panel__window--design::after {
  background:
    linear-gradient(90deg, rgba(24, 24, 27, 0.08) 0 22%, transparent 22%),
    linear-gradient(180deg, rgba(24, 24, 27, 0.06), transparent);
}

.tool-panel__badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: -18px;
}

.tool-panel__badges--single {
  margin-top: -10px;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(24, 20, 12, 0.12);
}

.tool-badge--word {
  background: #4b68b4;
}

.tool-badge--excel {
  background: #43a45d;
}

.tool-badge--slide {
  background: #ea994e;
}

.tool-badge--gmail {
  background: #e46c60;
}

.tool-badge--saas {
  background: #8cc7bb;
  color: #1d6158;
  font-size: 23px;
}

.tool-badge--ps {
  background: #426eb2;
}

.tool-badge--ai {
  background: #df9a4d;
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.market-item {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 170px;
  color: #b5aea4;
}

.market-item h3,
.market-item p,
.market-item strong {
  margin: 0;
}

.market-item h3 {
  font-size: 1.1rem;
  font-weight: 500;
}

.market-item p {
  font-size: 0.95rem;
}

.market-item strong {
  margin-top: auto;
  font-size: 1rem;
  line-height: 1.45;
  color: transparent;
}

.market-item--active {
  color: var(--text);
}

.market-item--active strong,
.market-item--accent strong {
  color: var(--accent);
}

.market-item--accent h3 {
  color: var(--text);
}

.era-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: end;
  margin-top: 26px;
  margin-bottom: 26px;
  width: 669px;
}

.era-item {
  display: grid;
  gap: 10px;
  color: #c4bfb7;
}

.era-item__year {
  font-size: 41px;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.era-item:nth-child(1) .era-item__year {
  width: 219px;
  height: 80px;
  line-height: 37px;
  letter-spacing: -4px;
}

.era-item:nth-child(2) .era-item__year {
  width: 234px;
  height: 80px;
}

.era-item:nth-child(3) .era-item__year {
  width: 244px;
  height: 58px;
  margin-bottom: 2px;
}

.era-item strong {
  font-size: 22px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.era-item:nth-child(3) strong {
  margin-top: -2px;
}

.era-item small {
  font-size: 1rem;
  font-family: "Times New Roman", Times, serif;
}

.era-item--accent {
  color: var(--accent);
}

.developer-columns {
  display: flex;
  gap: 34px;
  justify-content: flex-start;
}

.developer-column {
  width: min(220px, 100%);
  display: grid;
  justify-items: center;
  gap: 12px;
}

.developer-column__head,
.developer-column__body {
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(24, 24, 27, 0.04);
  color: #b2aca3;
}

.developer-column__head {
  min-height: 120px;
  padding: 20px;
  border-bottom: 1px solid rgba(24, 24, 27, 0.06);
  font-size: 1rem;
}

.developer-column__body {
  min-height: 280px;
  color: #111111;
  font-size: 1.05rem;
}

.developer-column__person {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--text);
}

.developer-column__person .mini-person {
  color: #111111;
}

.adoption-spectrum {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: end;
}

.adoption-card {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.adoption-card__person svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: rgba(24, 24, 27, 0.88);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.adoption-card h3 {
  font-size: 1rem;
  font-weight: 500;
}

.adoption-stack {
  display: grid;
  gap: 8px;
  width: 100%;
}

.adoption-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 2px;
  background: rgba(24, 24, 27, 0.06);
  color: #b8b2a9;
  font-size: 0.94rem;
}

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

.adoption-stack__row--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.adoption-stack__top {
  width: fit-content;
  min-width: 100px;
  justify-self: center;
}

.plumbing-diagram {
  display: grid;
  gap: 22px;
}

.plumbing-diagram__top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
}

.plumbing-stack {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.plumbing-stack__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.plumbing-stack__row--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plumbing-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  background: rgba(24, 24, 27, 0.05);
  color: #b7b1a8;
  font-size: 0.96rem;
}

.plumbing-block--accent {
  background: rgba(122, 212, 238, 0.24);
  color: #5f9fc2;
}

.plumbing-diagram__divider {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  color: #aaa39a;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.plumbing-diagram__divider > span {
  font-family: "Times New Roman", serif;
  font-size: 20px;
}

.plumbing-diagram__divider::before {
  content: "";
  height: 1px;
  border-top: 2px dashed rgba(24, 24, 27, 0.12);
}

.plumbing-diagram__bottom {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.plumbing-source {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.plumbing-source__label {
  padding: 10px 18px;
  background: rgba(24, 24, 27, 0.04);
  color: #b4aea5;
  font-size: 0.95rem;
}

.plumbing-diagram__arrows {
  display: flex;
  justify-content: center;
  gap: 72px;
}

.plumbing-diagram__arrows span {
  position: relative;
  width: 2px;
  height: 56px;
  background: rgba(24, 24, 27, 0.14);
}

.plumbing-diagram__arrows span:nth-child(1) {
  transform: rotate(-42deg);
}

.plumbing-diagram__arrows span:nth-child(3) {
  transform: rotate(42deg);
}

.plumbing-diagram__arrows span::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(24, 24, 27, 0.14);
  border-right: 2px solid rgba(24, 24, 27, 0.14);
  transform: translateX(-50%) rotate(-45deg);
}

.plumbing-user .mini-person {
  color: #111111;
}

.revenue-flow {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.revenue-flow__user {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.revenue-flow__user .mini-person {
  color: #111111;
}

.revenue-flow__user strong,
.revenue-flow__step,
.revenue-price {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  letter-spacing: -0.04em;
}

.revenue-flow__user strong {
  font-weight: 500;
}

.revenue-flow__step:nth-child(2) {
  font-size: 21px;
  font-family: "Times New Roman", serif;
}

.revenue-flow__step:nth-child(4) {
  font-size: 21px;
  font-family: "Times New Roman", serif;
}

.revenue-price {
  font-family: "Times New Roman", Times, serif;
}

.revenue-output:nth-child(3) .revenue-price {
  letter-spacing: 1px;
}

.revenue-flow__step--accent {
  color: var(--accent);
}

.revenue-flow__card {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.revenue-card {
  width: 128px;
  height: 96px;
  border: 1px solid rgba(24, 24, 27, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 18px rgba(24, 20, 12, 0.05);
}

.revenue-card--bill {
  background:
    radial-gradient(circle at 72% 42%, #3672cd 0 18%, transparent 19%),
    conic-gradient(from 0deg at 72% 42%, #3672cd 0 28%, #d9bb39 28% 54%, #95bf3f 54% 78%, #d2794d 78% 100%),
    linear-gradient(180deg, transparent 0 100%);
  background-size: 34px 34px, 34px 34px, 100% 100%;
  background-repeat: no-repeat;
  background-position: 78% 42%, 78% 42%, 0 0;
}

.revenue-card--bill::before,
.revenue-card--list::before,
.revenue-card--chart::before,
.revenue-card--pay::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}

.revenue-card--bill::before {
  background:
    repeating-linear-gradient(180deg, rgba(24, 24, 27, 0.1) 0 3px, transparent 3px 12px),
    linear-gradient(90deg, rgba(24, 24, 27, 0.06) 0 42%, transparent 42%);
  background-size: 34% 42%, 100% 100%;
  background-repeat: no-repeat;
  background-position: 12% 22%, 0 0;
}

.revenue-card--list::before {
  background:
    linear-gradient(90deg, #4e8bc9 0 8px, transparent 8px),
    repeating-linear-gradient(180deg, rgba(24, 24, 27, 0.12) 0 2px, transparent 2px 16px);
  background-size: 12% 54%, 76% 66%;
  background-repeat: no-repeat;
  background-position: 14% 22%, 18% 18%;
}

.revenue-card--chart {
  background:
    radial-gradient(circle at 50% 48%, #3672cd 0 22%, transparent 23%),
    conic-gradient(from 0deg at 50% 48%, #3672cd 0 28%, #d9bb39 28% 54%, #95bf3f 54% 78%, #d2794d 78% 100%);
  background-size: 48px 48px, 48px 48px;
  background-repeat: no-repeat;
  background-position: center;
}

.revenue-card--pay::before {
  background:
    linear-gradient(180deg, rgba(24, 24, 27, 0.08) 0 16%, transparent 16%),
    linear-gradient(90deg, #2f85d1 0 58%, transparent 58%);
  background-size: 100% 100%, 58% 18%;
  background-repeat: no-repeat;
  background-position: 0 0, 12% 48%;
}

.revenue-flow__outputs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  width: 100%;
  max-width: 620px;
}

.revenue-output {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.roadmap-track {
  display: grid;
  gap: 22px;
}

.roadmap-track__title {
  margin: 0;
  color: var(--accent);
  font-size: 34px;
  letter-spacing: -0.05em;
}

.roadmap-grid {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 12px 20px;
  align-items: start;
}

.roadmap-grid__labels,
.roadmap-grid__lines,
.roadmap-grid__events,
.roadmap-grid__stages {
  grid-column: 2;
}

.roadmap-grid__labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: #9f998f;
  font-size: 0.95rem;
}

.roadmap-grid__lines {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 280px;
}

.roadmap-grid__lines span {
  border-left: 1px solid rgba(24, 24, 27, 0.12);
}

.roadmap-grid__lines span:last-child {
  border-right: 1px solid rgba(24, 24, 27, 0.12);
}

.roadmap-grid__events {
  position: absolute;
  left: 150px;
  right: 0;
  top: 84px;
  min-height: 200px;
}

.roadmap-event {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transform: translateX(-50%);
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  line-height: 1.5;
}

.roadmap-event--green {
  color: #6dae31;
}

.roadmap-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-top: 10px;
  border-radius: 999px;
  background: currentColor;
}

.roadmap-event:nth-child(1) {
  top: 60px;
}

.roadmap-event:nth-child(1) .roadmap-dot {
  font-size: 11px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
}

.roadmap-event:nth-child(1) > div {
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  width: 248px;
  height: 62px;
  padding-top: 2px;
}

.roadmap-event:nth-child(2) {
  top: 60px;
}

.roadmap-event:nth-child(2) .roadmap-dot {
  width: 5px;
  height: 5px;
}

.roadmap-event:nth-child(2) > div {
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
}

.roadmap-event:nth-child(3) .roadmap-dot {
  width: 5px;
  height: 5px;
}

.roadmap-event:nth-child(3) > div {
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
}

.roadmap-grid__stages {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.2fr 2fr;
  gap: 8px;
  margin-top: -8px;
}

.roadmap-grid__stages span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 12px;
  background: rgba(24, 24, 27, 0.05);
  font-size: 0.95rem;
}

.roadmap-grid__axis {
  grid-column: 1;
  grid-row: 2 / span 3;
  align-self: end;
  color: #9f998f;
  font-size: 15px;
  font-weight: 700;
  line-height: 23px;
  text-align: right;
  width: 125px;
  height: 59px;
}

.stack-grid {
  display: grid;
  gap: 14px;
}

.stack-card {
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 20px rgba(24, 20, 12, 0.04);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.stack-card:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 98, 89, 0.18);
  box-shadow: 0 14px 28px rgba(24, 20, 12, 0.06);
}

.stack-card__header {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 22px 24px;
  text-align: left;
  cursor: pointer;
}

.stack-card__index {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(225, 98, 89, 0.1);
  color: var(--accent);
  font-size: 0.94rem;
  font-weight: 600;
}

.stack-card__title {
  font-size: 1.1rem;
  font-weight: 600;
}

.stack-card__toggle {
  color: var(--soft);
  transition: transform var(--transition);
}

.stack-card.is-open .stack-card__toggle {
  transform: rotate(45deg);
}

.stack-card__body {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--muted);
  line-height: 1.75;
  transition: max-height 220ms ease, padding-bottom 220ms ease;
}

.stack-card.is-open .stack-card__body {
  max-height: 140px;
  padding-bottom: 24px;
}

.solution-notes {
  display: grid;
  gap: 14px;
}

.section--demo {
  position: relative;
}

.section--demo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 130px;
  width: min(1160px, calc(100% - 40px));
  height: calc(100% - 180px);
  transform: translateX(-50%);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.16));
  pointer-events: none;
}

.demo-sidebar-copy {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.feature-bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-bullet span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.feature-bullet p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.demo-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 26px 60px rgba(18, 14, 9, 0.08);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.demo-sidebar {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(247, 245, 240, 0.88);
  border-right: 0;
  border-bottom: 1px solid rgba(24, 24, 27, 0.06);
}

.demo-sidebar span {
  height: 8px;
  border-radius: 999px;
  background: #dfdad1;
}

.demo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(24, 24, 27, 0.06);
  background: rgba(255, 255, 255, 0.48);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}

.demo-status {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editor-page {
  position: relative;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 40px 28px 32px;
}

.editor-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(225, 98, 89, 0.1);
  color: var(--accent);
  font-weight: 700;
}

.editable-title {
  margin: 0;
  outline: none;
  font-size: clamp(1.9rem, 2.2vw, 2.5rem);
  line-height: 1.08;
}

.editable-title:focus,
.block-text[contenteditable="true"]:focus,
.block-heading[contenteditable="true"]:focus,
.todo-text[contenteditable="true"]:focus {
  background: rgba(246, 244, 239, 0.96);
}

.editor-intro {
  margin-top: 12px;
}

.editor-blocks {
  margin-top: 20px;
}

.editor-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 4px 0;
}

.editor-row:hover .block-handle {
  opacity: 1;
}

.block-handle {
  display: grid;
  place-items: center;
  width: 20px;
  height: 28px;
  color: #d1cbc3;
  font-size: 12px;
  opacity: 0;
  transition: opacity var(--transition);
  user-select: none;
}

.block {
  min-width: 0;
  animation: block-enter 200ms ease-out;
}

.block-heading,
.block-text {
  display: inline-block;
  min-width: 40px;
  outline: none;
  cursor: text;
}

.block-heading {
  font-size: 1.24rem;
  font-weight: 600;
}

.block-text,
.todo-text {
  color: #44413c;
  line-height: 1.72;
}

.block-todo {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.todo-toggle {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border: 1px solid rgba(24, 24, 27, 0.12);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition);
}

.todo-toggle svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.todo-toggle path {
  stroke-dasharray: 14;
  stroke-dashoffset: 14;
  transition: stroke-dashoffset 180ms ease;
}

.todo-toggle.is-checked {
  border-color: var(--accent);
  background: var(--accent);
}

.todo-toggle.is-checked path {
  stroke-dashoffset: 0;
}

.todo-text {
  flex: 1;
  min-width: 0;
  outline: none;
}

.todo-text.is-checked {
  color: var(--muted);
  text-decoration: line-through;
}

.block-image,
.block-data {
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 18px;
  background: #fbfbfb;
}

.block-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 164px;
  color: var(--muted);
  overflow: hidden;
}

.block-image::before {
  content: "";
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  border: 1px dashed rgba(24, 24, 27, 0.1);
  border-radius: 14px;
}

.block-image span {
  position: absolute;
  padding: 0 10px;
  background: #fbfbfb;
}

.block-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}

.data-metric {
  display: grid;
  gap: 6px;
}

.data-metric strong {
  font-size: 1.4rem;
}

.data-metric span {
  color: var(--muted);
  font-size: 0.86rem;
}

.editor-actions {
  margin-top: 10px;
}

.slash-menu {
  position: absolute;
  left: 48px;
  bottom: 22px;
  width: min(320px, calc(100% - 72px));
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(18, 14, 9, 0.12);
  overflow: hidden;
  z-index: 5;
}

.slash-menu__search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(24, 24, 27, 0.06);
  color: var(--muted);
}

.slash-menu__search input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
}

.slash-menu__list {
  max-height: 240px;
  overflow-y: auto;
}

.slash-option {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
  transition: background-color var(--transition);
}

.slash-option:hover,
.slash-option.is-active {
  background: var(--bg-soft);
}

.slash-option__icon {
  color: var(--muted);
}

.slash-option__label {
  display: grid;
  gap: 4px;
}

.slash-option__label strong {
  font-size: 0.95rem;
}

.slash-option__label span {
  color: var(--muted);
  font-size: 0.82rem;
}

.mission-layout {
  display: grid;
  gap: 30px;
  align-items: center;
}

.mission-intro {
  text-align: center;
  margin-inline: auto;
}

.mission-intro h2 span {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.mission-diagram {
  width: 100%;
  padding-top: 8px;
}

.mission-tree {
  width: min(100%, 820px);
  margin: 0 auto;
}

.mission-tree--exact {
  position: relative;
  top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 60px auto 50px auto 60px auto;
  justify-items: center;
  align-items: center;
}

.mission-tree--exact::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40px;
  width: 1px;
  height: 60px;
  background: #d8d2ca;
  transform: translateX(-50%);
}

.tree-person {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.tree-person svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: rgba(24, 24, 27, 0.78);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tree-person--accent {
  color: var(--accent);
}

.tree-person--accent svg {
  stroke: var(--accent);
}

.mission-tree__designer {
  grid-column: 1 / span 2;
  grid-row: 1;
}

.mission-tree__center,
.mission-tree__left,
.mission-tree__right {
  color: #959086;
  font-family: Verdana, Geneva, sans-serif;
  font-style: italic;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.mission-tree__center {
  grid-column: 1 / span 2;
  grid-row: 3;
  width: 136px;
  height: 40px;
  font-weight: 200;
  padding-top: 3px;
}

.mission-tree__left {
  grid-column: 1;
  grid-row: 5;
  position: relative;
  align-self: start;
  top: -3px;
}

.mission-tree__right {
  grid-column: 2;
  grid-row: 5;
  position: relative;
  align-self: start;
  top: -3px;
}

.mission-tree__client {
  grid-column: 1;
  grid-row: 7;
  height: 40px;
}

.mission-tree__developer {
  grid-column: 2;
  grid-row: 7;
}

.mission-tree__left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 140px;
  height: 1px;
  background: #d8d2ca;
  transform-origin: 0 0;
  transform: rotate(-28deg);
}

.mission-tree__right::before {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  width: 140px;
  height: 1px;
  background: #d8d2ca;
  transform-origin: 100% 0;
  transform: rotate(28deg);
}

.mission-tree__left::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 4px);
  width: 1px;
  height: 66px;
  background: #d8d2ca;
  transform: translateX(-50%);
}

.mission-tree__right::after {
  content: "";
  position: absolute;
  right: 50%;
  top: calc(100% + 4px);
  width: 1px;
  height: 66px;
  background: #d8d2ca;
  transform: translateX(50%);
}

.mission-tree__developer > span {
  color: rgb(225, 98, 89);
}

.mission-tree__developer svg {
  color: rgb(225, 98, 89);
  stroke: rgb(225, 98, 89);
}

.mission-tree__designer .tree-person span {
  width: 121px;
  height: 24px;
  margin-bottom: -9px;
}

.mission-tree__designer .tree-person svg {
  margin-bottom: -5px;
}

.cta-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 42px;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(225, 98, 89, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.cta-card .section-subtitle {
  max-width: 420px;
  margin: 12px auto 0;
}

.cta-card .footer-note {
  margin-top: 28px;
}

.reveal {
  opacity: 1;
}

.reveal .section-shell {
  opacity: 0.48;
  transform: translateY(56px) scale(0.975);
  filter: saturate(0.9);
}

.reveal.is-visible .section-shell {
  opacity: 0.78;
  transform: translateY(0) scale(0.992);
}

.reveal.is-current .section-shell {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}

.reveal.is-current::after {
  opacity: 1;
}

.reveal::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 72px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(225, 98, 89, 0.55), transparent);
  opacity: 0;
  transition: opacity 420ms ease;
}

@keyframes block-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  body {
    overflow: auto;
  }

  .page-shell {
    height: auto;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0 18px 96px;
  }

  .section,
  .hero {
    min-height: auto;
    padding-block: 92px 12px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-metrics,
  .audience-band__main,
  .tool-collage,
  .market-strip,
  .adoption-spectrum,
  .era-strip,
  .revenue-flow__outputs,
  .block-data {
    grid-template-columns: 1fr;
  }

  .developer-columns,
  .plumbing-diagram__top {
    flex-direction: column;
    display: flex;
  }

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

  .roadmap-grid__labels,
  .roadmap-grid__lines,
  .roadmap-grid__events,
  .roadmap-grid__stages,
  .roadmap-grid__axis {
    grid-column: auto;
  }

  .roadmap-grid__events {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    min-height: 180px;
  }

  .roadmap-event {
    font-size: 1.1rem;
  }

  .reveal .section-shell,
  .reveal.is-visible .section-shell,
  .reveal.is-current .section-shell {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .reveal::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-shell {
    max-width: min(100%, 92vw);
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .hero-manifesto {
    padding: 22px;
    min-height: 420px;
  }

  .hero-floating-card {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .developer-columns {
    gap: 22px;
  }

  .developer-column {
    width: 100%;
  }

  .roadmap-grid__labels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 10px;
  }

  .roadmap-grid__lines {
    min-height: 220px;
  }

  .roadmap-grid__stages {
    grid-template-columns: 1fr;
  }

  .info-card,
  .cta-card {
    padding: 22px;
    border-radius: 22px;
  }

  .demo-shell {
    border-radius: 24px;
  }

  .editor-page {
    padding-inline: 16px;
  }

  .slash-menu {
    left: 16px;
    width: calc(100% - 32px);
  }

  .mission-diagram {
    padding-top: 0;
  }

  .mission-tree--exact {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 18px;
  }

  .mission-tree--exact::before,
  .mission-tree--exact::after,
  .mission-tree__center::before,
  .mission-tree__center::after,
  .mission-tree__left::after,
  .mission-tree__right::after {
    display: none;
  }

  .mission-tree__designer,
  .mission-tree__center,
  .mission-tree__left,
  .mission-tree__right,
  .mission-tree__client,
  .mission-tree__developer {
    grid-column: auto;
    grid-row: auto;
  }
}

.slide-kicker {
  margin: 0 0 24px;
  color: #111111;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pdf-title {
  margin: 0;
  color: var(--accent);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

#markets-design-tools-notion .pdf-title {
  padding-bottom: 5px;
  margin-bottom: 23px;
}

#solution .pdf-title {
  font-size: 35px;
}

#markets-marketplace-today .pdf-title {
  font-size: 34px;
}

#problem .pdf-title {
  font-size: 34px;
}

.pdf-title em,
.pdf-demo-kicker em {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.pdf-subtitle,
.pdf-quote,
.pdf-demo-kicker {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 2.2rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.pdf-subtitle {
  margin-top: 10px;
  color: var(--accent);
}

.pdf-quote {
  margin-top: 42px;
  color: #b5aea4;
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-style: italic;
}

.slide-cover .section-shell,
.slide-background .section-shell,
.slide-mission .section-shell,
.slide-problem .section-shell,
.slide-solution .section-shell,
.slide-demo .section-shell,
.slide-markets .section-shell,
.slide-market-design .section-shell,
.slide-market-enterprise .section-shell,
.slide-market-marketplace .section-shell,
.slide-timing .section-shell,
.slide-roadmap .section-shell {
  max-width: min(92vw, 1180px);
}

.cover-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

.cover-meta {
  display: grid;
  gap: 26px;
  padding-top: 12px;
  color: #b6b0a8;
  font-size: 0.95rem;
}

.cover-brand {
  margin: 0;
  color: var(--accent);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.cover-meta p {
  margin: 0;
}

.cover-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  min-height: 64svh;
}

.cover-stone {
  width: min(100%, 170px);
}

.cover-quote {
  text-align: left;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.slide-background .section-shell,
.slide-mission .section-shell,
.slide-problem .section-shell,
.slide-solution .section-shell,
.slide-demo .section-shell,
.slide-markets .section-shell,
.slide-market-design .section-shell,
.slide-market-enterprise .section-shell,
.slide-market-marketplace .section-shell,
.slide-timing .section-shell,
.slide-roadmap .section-shell,
.slide-later .section-shell {
  display: grid;
  align-content: start;
}

.audience-band--pdf {
  margin-top: auto;
  padding-top: 30svh;
}

.audience-band--faded {
  opacity: 0.46;
  padding-top: 18svh;
}

.people-wall--ghost {
  color: #bdb7af;
}

.people-wall--ghost-light {
  color: #ece8e1;
}

.slide-problem .tool-collage {
  margin-top: 34px;
}

.pdf-solution-stack {
  display: grid;
  gap: 4px;
  margin-top: 34px;
}

.pdf-solution-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  min-height: 92px;
  padding: 0 40px;
  background: rgba(225, 98, 89, 0.08);
  color: var(--accent);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  letter-spacing: -0.03em;
}

.pdf-solution-row > span:nth-child(2) {
  font-family: "Times New Roman", serif;
  font-size: 21px;
}

.pdf-solution-row--muted {
  background: rgba(24, 24, 27, 0.03);
  color: #b5aea4;
}

.pdf-demo-kicker {
  margin-top: auto;
  margin-bottom: 34px;
  color: var(--accent);
}

.demo-showcase--pdf {
  grid-template-columns: 1fr;
}

.demo-showcase--pdf .demo-shell {
  width: min(100%, 980px);
}

.workflow-tree {
  display: grid;
  justify-items: center;
  gap: 36px;
  margin-top: 36px;
  margin-bottom: -46px;
}

.workflow-tree__person {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.workflow-tree__person svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: rgba(24, 24, 27, 0.78);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-tree__person--bottom {
  color: var(--accent);
}

.workflow-tree__person--bottom svg {
  stroke: var(--accent);
}

.workflow-tree__person:nth-child(1) {
  width: 220px;
  height: 41px;
}

.workflow-tree__person:nth-child(1) > strong {
  width: 143px;
  margin-bottom: -2px;
  font-size: 25px;
  font-weight: 500;
}

.workflow-tree__person:nth-child(3) {
  width: 175px;
}

.workflow-tree__person:nth-child(3) > strong {
  width: 109px;
  font-size: 25px;
  font-weight: 500;
}

.workflow-tree__center {
  position: relative;
  padding: 22px 0;
  color: #959086;
  font-family: Verdana, Geneva, sans-serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.35;
  text-align: center;
  letter-spacing: -0.02em;
}

.workflow-tree__center::before,
.workflow-tree__center::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 28px;
  background: #d8d2ca;
  transform: translateX(-50%);
}

.workflow-tree__center::before {
  bottom: 100%;
}

.workflow-tree__center::after {
  top: 100%;
}

.enterprise-pigeonholes {
  display: flex;
  gap: 22px;
  margin-top: 42px;
}

.enterprise-pigeonhole {
  display: grid;
  gap: 10px;
  width: min(220px, 100%);
}

.enterprise-pigeonhole__people {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 6px 8px;
  justify-content: start;
  color: #111111;
}

.enterprise-pigeonhole__box {
  display: grid;
  place-items: center;
  min-height: 270px;
  padding: 18px;
  background: rgba(24, 24, 27, 0.04);
  color: #b4aea5;
  text-align: center;
  font-size: 1rem;
}

.slide-later .section-shell {
  gap: 28px;
}

@media (max-width: 960px) {
  .cover-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cover-stage {
    flex-direction: column;
    gap: 28px;
    min-height: auto;
  }

  .cover-quote {
    text-align: center;
  }

  .audience-band--pdf,
  .audience-band--faded {
    padding-top: 8svh;
  }

  .enterprise-pigeonholes {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .slide-kicker {
    margin-bottom: 18px;
  }

  .pdf-title {
    font-size: clamp(1.7rem, 9vw, 2.5rem);
  }

  .pdf-subtitle,
  .pdf-quote,
  .pdf-demo-kicker {
    font-size: 1.25rem;
  }

  .pdf-solution-row {
    min-height: 68px;
    padding: 0 18px;
    font-size: 1.15rem;
  }

  .cover-brand {
    font-size: 2.3rem;
  }
}