:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #070707;
  --muted: #4e4e4b;
  --faint: #85847d;
  --rule: #deddd7;
  --glyph: #080808;
  --glyph-faint: #c9c8c1;
  --max: 1180px;
  --measure: 1100px;
  --font-serif: "Alegreya", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --font-sans: "Archivo", "Avenir Next", "Helvetica Neue", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-serif);
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  overflow-x: clip;
}

body::selection {
  background: #111111;
  color: #ffffff;
}

a {
  color: inherit;
}

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

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.brand-rhomb {
  display: inline-block;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  border: 2px solid currentColor;
}

.hero {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 38px 0 50px;
  text-align: center;
}

.hero-proof-lockup {
  width: clamp(8rem, 11vw, 10.75rem);
  aspect-ratio: 1.45;
  margin: 0 auto clamp(1.35rem, 2.4vw, 2rem);
  overflow: hidden;
  background: transparent;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 46%, rgb(0 0 0 / 0.9) 55%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, #000 0 46%, rgb(0 0 0 / 0.9) 55%, transparent 78%);
}

.hero-proof-lockup img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.2);
  transform: scale(1.48);
  transform-origin: center;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(2.35rem, 4.25vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.definition {
  position: relative;
  max-width: 680px;
  margin: clamp(1.25rem, 2vw, 1.7rem) auto 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.52;
  text-wrap: pretty;
}

.essay {
  position: relative;
  width: min(var(--measure), calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(7rem, 11vw, 10rem);
}

.narrative-act {
  position: relative;
  display: grid;
  gap: clamp(3rem, 5vw, 5.5rem);
}

.narrative-act + .narrative-act {
  margin-top: clamp(5rem, 9vw, 8rem);
}

.narrative-act-product {
  padding:
    clamp(6rem, 9vw, 9rem)
    0
    clamp(6rem, 9vw, 9rem);
  background: var(--ink);
  box-shadow: 0 0 0 100vmax var(--ink);
  color: #ffffff;
  clip-path: inset(0 -100vmax);
  overflow: hidden;
}

.narrative-act-closing {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.essay-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(3.5rem, 5rem) minmax(14rem, 0.88fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 3vw, 3.25rem);
  align-items: start;
  padding: 0;
}

.section-sigil {
  position: relative;
  z-index: 1;
  grid-column: 1;
  width: clamp(2.4rem, 4vw, 3.6rem);
  height: clamp(2.4rem, 4vw, 3.6rem);
  margin-top: -0.15rem;
  background: transparent;
  color: var(--glyph);
}

.section-sigil::before,
.section-sigil::after {
  position: absolute;
  box-sizing: border-box;
  content: "";
}

.sigil-proof {
  background: radial-gradient(circle at 50% 50%, currentColor 0 0.22rem, transparent 0.24rem);
}

.sigil-proof::before {
  inset: 28%;
  transform: rotate(45deg);
  border: 0.17rem solid currentColor;
}

.sigil-proof::after {
  inset: 12%;
  transform: rotate(45deg);
  border: 0.1rem solid color-mix(in srgb, currentColor 34%, transparent);
}

.sigil-scatter {
  background:
    radial-gradient(circle at 50% 50%, currentColor 0 0.22rem, transparent 0.24rem),
    radial-gradient(circle at 21% 25%, currentColor 0 0.17rem, transparent 0.19rem),
    radial-gradient(circle at 78% 21%, currentColor 0 0.16rem, transparent 0.18rem),
    radial-gradient(circle at 25% 80%, currentColor 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 82% 74%, currentColor 0 0.18rem, transparent 0.2rem);
}

.sigil-eye {
  background:
    linear-gradient(currentColor, currentColor) center / 74% 0.22rem no-repeat,
    radial-gradient(circle at 50% 50%, currentColor 0 0.2rem, transparent 0.22rem);
}

.sigil-eye::before {
  inset: 22%;
  transform: rotate(45deg);
  border: 0.15rem solid currentColor;
}

.sigil-eye::after {
  left: 18%;
  right: 18%;
  top: 34%;
  height: 0.18rem;
  transform: rotate(-8deg);
  background: currentColor;
}

.sigil-marker::before {
  left: calc(50% - 0.095rem);
  top: 7%;
  width: 0.19rem;
  height: 86%;
  background: currentColor;
}

.sigil-marker::after {
  inset: 29%;
  transform: rotate(45deg);
  border: 0.16rem solid currentColor;
  background: var(--bg);
}

.sigil-rhomb::before {
  inset: 20%;
  transform: rotate(45deg);
  border: 0.16rem solid currentColor;
}

.sigil-rhomb::after {
  inset: 34%;
  transform: rotate(45deg);
  border: 0.14rem solid currentColor;
}

.sigil-bracket::before,
.sigil-bracket::after {
  top: 18%;
  width: 30%;
  height: 62%;
  border-top: 0.16rem solid currentColor;
  border-bottom: 0.16rem solid currentColor;
}

.sigil-bracket::before {
  left: 12%;
  border-left: 0.2rem solid currentColor;
  transform: rotate(14deg);
}

.sigil-bracket::after {
  right: 12%;
  border-right: 0.2rem solid currentColor;
  transform: rotate(-14deg);
}

.sigil-forward::before {
  left: 34%;
  top: 17%;
  width: 0.22rem;
  height: 66%;
  background: currentColor;
  transform: rotate(-32deg);
}

.sigil-forward::after {
  right: 34%;
  top: 17%;
  width: 0.22rem;
  height: 66%;
  background: currentColor;
  transform: rotate(-32deg);
}

.sigil-place::before {
  inset: 26%;
  transform: rotate(45deg);
  border: 0.16rem solid currentColor;
}

.sigil-place::after {
  left: calc(50% - 0.08rem);
  top: 8%;
  width: 0.16rem;
  height: 84%;
  background:
    radial-gradient(circle at 50% 0, currentColor 0 0.2rem, transparent 0.22rem),
    linear-gradient(currentColor, currentColor) center / 0.12rem 100% no-repeat;
}

h2 {
  grid-column: 2;
  max-width: 100%;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.essay-section > p,
.essay-section > div:not(.section-sigil) {
  grid-column: 3;
}

p {
  max-width: 100%;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.25vw, 1.32rem);
  font-weight: 400;
  line-height: 1.56;
  letter-spacing: 0;
  text-wrap: pretty;
}

p + p {
  margin-top: 24px;
}

.essay-section-lead > p,
.closing-line {
  font-size: 20px;
  line-height: 1.58;
}

.closing-line {
  margin-top: 30px;
}

.closing-proof {
  max-width: 780px;
  margin-top: clamp(2.2rem, 5vw, 4rem);
  font-size: clamp(1.75rem, 3vw, 3.1rem);
  font-weight: 600;
  line-height: 1.05;
  text-wrap: balance;
}

.narrative-act-problem {
  min-height: 92vh;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(5.5rem, 9vw, 8rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  column-gap: clamp(4rem, 8vw, 8rem);
  row-gap: clamp(3.75rem, 6vw, 6rem);
  align-content: center;
}

.narrative-act-problem::before {
  position: absolute;
  right: -7rem;
  bottom: clamp(2rem, 5vw, 5rem);
  width: clamp(11rem, 22vw, 20rem);
  aspect-ratio: 1;
  border: 2px solid color-mix(in srgb, var(--glyph) 8%, transparent);
  transform: rotate(45deg);
  content: "";
  pointer-events: none;
}

.narrative-act-problem .essay-section-lead {
  grid-column: 1 / -1;
  grid-template-columns: minmax(5.5rem, 8.5rem) minmax(0, 1.08fr) minmax(0, 0.95fr);
  align-items: center;
}

.narrative-act-problem .essay-section-lead .section-sigil {
  width: clamp(5.25rem, 8vw, 7.75rem);
  height: clamp(5.25rem, 8vw, 7.75rem);
}

.narrative-act-problem .essay-section-lead h2 {
  font-size: clamp(2.2rem, 3.45vw, 3.45rem);
  font-weight: 700;
  line-height: 0.98;
}

.narrative-act-problem .essay-section-lead > p {
  max-width: 540px;
  font-size: clamp(1.22rem, 1.6vw, 1.5rem);
  line-height: 1.45;
}

.narrative-act-problem .essay-section-statement {
  grid-template-columns: minmax(3rem, 4.5rem) minmax(0, 1fr);
  gap: 1.4rem clamp(1.3rem, 2vw, 2rem);
  align-content: start;
}

.narrative-act-problem .essay-section-statement > h2,
.narrative-act-problem .essay-section-statement > p {
  grid-column: 2;
}

.narrative-act-problem .essay-section-statement > p {
  margin-top: 0.25rem;
}

.narrative-act-product::before {
  position: absolute;
  right: max(2rem, calc((100vw - var(--measure)) / 2 - 3rem));
  top: clamp(4rem, 8vw, 7rem);
  width: clamp(10rem, 24vw, 22rem);
  aspect-ratio: 1;
  border: 2px solid rgb(255 255 255 / 0.13);
  transform: rotate(45deg);
  content: "";
  pointer-events: none;
}

.narrative-act-product .essay-section {
  color: inherit;
}

.narrative-act-product .essay-section:first-child {
  z-index: 1;
  grid-column: 1 / -1;
  grid-template-columns: minmax(5.5rem, 8rem) minmax(0, 0.95fr) minmax(0, 0.95fr);
  align-items: center;
  margin-bottom: clamp(0.5rem, 2vw, 1.5rem);
}

.narrative-act-product .essay-section:first-child .section-sigil {
  width: clamp(5rem, 8vw, 7rem);
  height: clamp(5rem, 8vw, 7rem);
}

.narrative-act-product .essay-section:first-child h2 {
  max-width: 11ch;
  font-size: clamp(2.65rem, 4.65vw, 4.55rem);
  line-height: 0.94;
}

.narrative-act-product .essay-section:first-child p {
  max-width: 600px;
  color: rgb(255 255 255 / 0.88);
  font-size: clamp(1.25rem, 1.75vw, 1.58rem);
  line-height: 1.45;
}

.narrative-act-product .essay-section:not(:first-child) {
  z-index: 1;
  grid-template-columns: minmax(3rem, 4.5rem) minmax(0, 1fr);
  gap: 1.3rem clamp(1.25rem, 2vw, 2rem);
  max-width: 460px;
}

.narrative-act-product .essay-section:not(:first-child) > h2,
.narrative-act-product .essay-section:not(:first-child) > p {
  grid-column: 2;
}

.narrative-act-product .section-sigil {
  color: #ffffff;
}

.narrative-act-product .sigil-marker::after {
  background: var(--ink);
}

.narrative-act-product p {
  color: rgb(255 255 255 / 0.82);
}

.narrative-act-closing {
  min-height: 95vh;
  padding: clamp(5.5rem, 10vw, 9rem) 0 0;
  align-content: center;
}

.narrative-act-closing .essay-section:first-child {
  grid-template-columns: minmax(4rem, 6rem) minmax(0, 1.1fr) minmax(0, 0.72fr);
  align-items: center;
}

.narrative-act-closing .essay-section:first-child h2 {
  font-size: clamp(1.6rem, 2.75vw, 2.9rem);
  line-height: 1;
}

.essay-section-closing {
  grid-template-columns: minmax(4rem, 6rem) minmax(0, 0.76fr) minmax(0, 0.95fr);
  align-items: start;
}

.essay-section-closing .closing-proof {
  grid-column: 2 / 4;
  justify-self: end;
  max-width: 620px;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  font-size: clamp(2.35rem, 4.7vw, 4.9rem);
  line-height: 0.95;
}

.definition,
.brand {
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 920px) {
  .narrative-act-problem,
  .narrative-act-product,
  .narrative-act-closing {
    min-height: auto;
    grid-template-columns: 1fr;
    align-content: start;
  }

  .narrative-act-problem {
    padding: 4rem 0 5rem;
  }

  .narrative-act-problem::before,
  .narrative-act-product::before {
    display: none;
  }

  .narrative-act-product {
    padding: 4.75rem 0 5.25rem;
  }

  .narrative-act-closing {
    padding-top: 4.75rem;
  }

  .narrative-act-problem .essay-section-lead,
  .narrative-act-product .essay-section:first-child,
  .narrative-act-closing .essay-section:first-child,
  .essay-section-closing,
  .essay-section {
    grid-template-columns: 3rem 1fr;
    gap: 1.1rem;
  }

  h2,
  .essay-section > p,
  .essay-section > div:not(.section-sigil),
  .narrative-act-problem .essay-section-statement > h2,
  .narrative-act-problem .essay-section-statement > p,
  .narrative-act-product .essay-section:not(:first-child) > h2,
  .narrative-act-product .essay-section:not(:first-child) > p,
  .essay-section-closing .closing-proof {
    grid-column: 2;
  }

  .narrative-act-problem .essay-section-lead .section-sigil,
  .narrative-act-product .essay-section:first-child .section-sigil {
    width: 3rem;
    height: 3rem;
  }

  .narrative-act-problem .essay-section-lead h2,
  .narrative-act-product .essay-section:first-child h2 {
    font-size: clamp(2rem, 9vw, 3.5rem);
    line-height: 0.96;
  }

  .narrative-act-product .essay-section:first-child h2 {
    max-width: 12ch;
  }

  .narrative-act-product .essay-section:not(:first-child) {
    max-width: none;
  }

  .essay-section-closing .closing-proof {
    justify-self: start;
    max-width: 100%;
    margin-top: 2.6rem;
    font-size: clamp(2.35rem, 8vw, 3.7rem);
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .essay {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-header {
    padding-top: 22px;
  }

  .brand {
    gap: 10px;
    font-size: 15px;
  }

  .brand-rhomb {
    width: 15px;
    height: 15px;
  }

  .hero {
    padding: 34px 0 40px;
  }

  .definition {
    margin-top: 24px;
  }

  .essay {
    padding-bottom: 64px;
  }

  .narrative-act {
    gap: 3rem;
  }

  .narrative-act + .narrative-act {
    margin-top: 0;
  }

  .narrative-act-product {
    padding-right: 0;
    padding-left: 0;
  }

  .essay-section {
    grid-template-columns: 3rem 1fr;
    gap: 1.1rem;
  }

  .section-sigil {
    width: 2.5rem;
    height: 2.5rem;
  }

  h2 {
    margin-bottom: 18px;
  }

  .narrative-act-problem .essay-section-lead h2,
  .narrative-act-product .essay-section:first-child h2 {
    margin-bottom: 0;
  }

  .essay-section-lead > p,
  .closing-line {
    line-height: 1.58;
  }

  p + p {
    margin-top: 20px;
  }
}
