:root {
  --display: "Urbanist", sans-serif;
  --mono: "Urbanist", sans-serif;
  --brilio-ease: cubic-bezier(.645, .045, .355, 1);
  --brilio-purple: #5700ef;
  --brilio-cream: #ffddb7;
  --brilio-bg: #111013;
  --brilio-panel: #1c1b1e;
  --brilio-muted: #909dac;
}

/* Brilio-inspired wave loader. */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  color: #f9f9f9;
  transform: none;
  transition: transform .8s var(--brilio-ease), visibility 0s .8s;
}

.loader svg {
  position: absolute;
  inset: auto 0 0;
  width: 100vw;
  height: 110vh;
  fill: var(--brilio-bg);
  transform-origin: top center;
}

.loader-container {
  position: relative;
  z-index: 2;
}

.loaded {
  display: flex;
  gap: .42rem;
  font: 500 1rem/1 var(--display);
  letter-spacing: .5rem;
  text-transform: uppercase;
}

.loaded span {
  animation: loader-animation 1s infinite alternate;
}

.loaded span:nth-child(2) { animation-delay: .1s; }
.loaded span:nth-child(3) { animation-delay: .2s; }
.loaded span:nth-child(4) { animation-delay: .3s; }
.loaded span:nth-child(5) { animation-delay: .4s; }
.loaded span:nth-child(6) { animation-delay: .5s; }
.loaded span:nth-child(7) { animation-delay: .6s; }

@keyframes loader-animation {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: .24; transform: translateY(-.35rem); }
}

.loader.done {
  transform: translateY(-110%);
  visibility: hidden;
}

.loader.done .loaded {
  opacity: 0;
  transform: translateY(-3rem);
  transition: opacity .45s ease, transform .45s ease;
}

.loader.done svg {
  transform: translateY(-8vh) scaleY(.05);
  transition: transform .75s var(--brilio-ease);
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.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;
}

body {
  font-family: var(--display);
  background: var(--brilio-bg);
  letter-spacing: 0;
}

#magic-cursor {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 10000;
  width: 30px;
  height: 30px;
  pointer-events: none;
}

#cursor {
  position: fixed;
  display: flex;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 2px solid rgba(144, 157, 172, .78);
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(-50px, -50px, 0);
  transition: opacity .2s ease, transform .18s ease, border-color .2s ease;
  mix-blend-mode: difference;
}

#cursor.hovered {
  opacity: 0 !important;
  transform: scale(2);
}

.theme-toggle {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .055);
  color: inherit;
  border-radius: 999px;
  padding: .55rem .82rem;
  margin-left: clamp(1rem, 2.4vw, 2rem);
  cursor: pointer;
  font: 700 .62rem/1 var(--display);
  text-transform: lowercase;
  letter-spacing: .04em;
  transition: background .35s var(--brilio-ease), color .35s var(--brilio-ease), border-color .35s var(--brilio-ease), transform .35s var(--brilio-ease);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  background: #fff;
  border-color: #fff;
  color: #000;
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 1.6vw, 1.4rem);
  width: 100%;
  min-width: 0;
  color: #f9f9f9;
  padding: clamp(1.3rem, 2vw, 2.25rem) var(--pad);
  background: linear-gradient(180deg, rgba(17, 16, 19, .76), rgba(17, 16, 19, .18), transparent);
  border-bottom: 0;
}

.brand,
.desktop-nav,
.header-cta,
.menu-toggle {
  font-family: var(--display);
}

.brand {
  flex: 0 0 auto;
  color: inherit;
  font: 800 clamp(1.45rem, 2.15vw, 2.65rem)/1 var(--display);
  letter-spacing: -.055em;
  text-transform: none;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(1.1rem, 2.35vw, 3.6rem);
  margin: 0 0 0 auto;
  min-width: 0;
  font: 750 clamp(.88rem, 1.05vw, 1.2rem)/1 var(--display);
  letter-spacing: -.035em;
  text-transform: none;
}

.desktop-nav a,
.header-cta {
  position: relative;
  color: rgba(255, 255, 255, .96);
  white-space: nowrap;
}

.desktop-nav a.active,
.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: rgba(255, 255, 255, .58);
}

.desktop-nav a:after,
.header-cta:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.45rem;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .35s var(--brilio-ease);
}

.desktop-nav a:hover:after,
.desktop-nav a.active:after,
.header-cta:hover:after {
  width: 100%;
}

.hero {
  min-height: 92svh;
  justify-content: center;
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  background: var(--brilio-bg);
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .12) 44%, rgba(0, 0, 0, .84)),
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .9) 90%);
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), transparent 18%, transparent 82%, rgba(255, 255, 255, .04)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 8px);
  mix-blend-mode: screen;
  opacity: .2;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: contrast(1.04) brightness(.9);
  transform: scale(1.01);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.small-label,
.event-card span {
  margin: 0 0 .85rem;
  font: 600 .68rem var(--mono);
  text-transform: uppercase;
  letter-spacing: .14em;
}

.countdown-rail {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  bottom: clamp(2rem, 4vw, 3.5rem);
  width: min(18rem, calc(100vw - (var(--pad) * 2) - 7rem));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(28, 27, 30, .52);
  backdrop-filter: blur(14px);
  transition: transform .35s var(--brilio-ease), border-color .35s var(--brilio-ease), background .35s var(--brilio-ease);
}

.countdown-rail:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 221, 183, .5);
  background: rgba(28, 27, 30, .72);
}

.countdown-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem 1rem;
  align-items: end;
  padding: .85rem .95rem;
}

.countdown-panel p {
  margin: 0;
  font: 700 .58rem var(--mono);
  text-transform: uppercase;
  letter-spacing: .16em;
}

.countdown-panel time {
  color: rgba(255, 255, 255, .72);
  font: 400 .6rem var(--mono);
  text-transform: uppercase;
  text-align: right;
}

.countdown {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .45rem;
}

.countdown span {
  min-width: 0;
}

.countdown b {
  display: block;
  font: 700 clamp(1rem, 1.4vw, 1.45rem)/.82 var(--display);
  letter-spacing: 0;
}

.countdown small {
  display: block;
  margin-top: .28rem;
  color: rgba(255, 255, 255, .56);
  font: 500 .48rem var(--mono);
  text-transform: uppercase;
  letter-spacing: .1em;
}

@keyframes countdownMarquee {
  to {
    transform: translateX(-50%);
  }
}

.wordmark {
  z-index: 2;
  align-self: center;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2rem 4rem rgba(0, 0, 0, .8);
  animation: titleRise .9s var(--brilio-ease) both .35s;
}

.hero-bottom {
  z-index: 3;
  justify-content: flex-end;
}

.hero-bottom p {
  max-width: 28rem;
}

.showcase {
  background: #0a0a0a;
  color: #f5f5f1;
  overflow: hidden;
}

.circle-link,
.pill,
.text-link,
.event-card a,
.direct-email {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: color .35s var(--brilio-ease), border-color .35s var(--brilio-ease), transform .35s var(--brilio-ease), background .35s var(--brilio-ease);
}

.circle-link:before,
.pill:before,
.text-link:before,
.event-card a:before,
.direct-email:before {
  content: "";
  position: absolute;
  left: var(--magnet-x, 50%);
  top: var(--magnet-y, 50%);
  z-index: -1;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #f9f9f9;
  transform: translate(-50%, -50%);
  transition: width .45s ease-in-out, height .45s ease-in-out;
}

.circle-link:hover:before,
.pill:hover:before,
.text-link:hover:before,
.event-card a:hover:before,
.direct-email:hover:before {
  width: 230%;
  height: 600%;
}

.pill:hover,
.text-link:hover,
.event-card a:hover,
.direct-email:hover {
  color: #030712;
  transform: translateY(-2px);
}

.circle-link:hover {
  color: #030712;
  transform: translateY(-4px) rotate(4deg);
}

.manifesto,
.excerpt,
.contact {
  background: #f8f8f9;
}

.themes,
.author,
.showcase,
footer {
  background: var(--brilio-bg);
}

.display,
.author-copy h2,
.read h2,
.contact h2,
.showcase-copy h2,
.chapter h3,
.event-card strong {
  font-weight: 600;
  letter-spacing: 0;
}

.chapter,
.book-mockup img,
.author-art,
.statement,
.event-card {
  transition: transform .45s var(--brilio-ease), opacity .45s var(--brilio-ease), background .45s var(--brilio-ease), border-color .45s var(--brilio-ease);
}

.chapter:hover {
  transform: translateX(1rem);
}

.book-mockup:hover img {
  transform: rotateY(-4deg) rotateZ(-.6deg) translateY(-.5rem) scale(1.015);
}

.reveal {
  opacity: 0;
  transform: translateY(58px) rotate(.001deg);
  transition: opacity .9s var(--brilio-ease), transform .9s var(--brilio-ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) rotate(.001deg);
}

@keyframes heroDrift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.045) translate3d(-1.2%, -.8%, 0); }
}

@keyframes titleRise {
  from {
    opacity: 0;
    transform: translateY(4rem) scaleY(1.18);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1.25);
  }
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(18rem, .9fr) minmax(20rem, .75fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  margin-top: clamp(4rem, 7vw, 7rem);
}

.book-stage {
  position: relative;
  min-height: clamp(32rem, 56vw, 48rem);
  display: grid;
  place-items: center;
}

.book-stage:before {
  content: "";
  position: absolute;
  inset: 8% 0 0 12%;
  background: linear-gradient(100deg, rgba(255, 255, 255, .14), transparent 54%);
  transform: skewY(-5deg);
}

.book-copy {
  position: absolute;
  left: -6%;
  right: -10%;
  top: 43%;
  color: rgba(255, 255, 255, .055);
  font: clamp(5rem, 13vw, 12rem)/.78 var(--display);
  text-transform: uppercase;
  letter-spacing: 0;
  transform: scaleX(.8);
}

.book-mockup {
  position: relative;
  z-index: 1;
  width: min(24rem, 74vw);
  margin: 0;
  aspect-ratio: 2 / 3;
  perspective: 1200px;
}

.book-mockup:before {
  content: "";
  position: absolute;
  inset: 2.2% auto 2.2% -7%;
  width: 8%;
  background: linear-gradient(90deg, #050505, #2a2a2a 42%, #060606);
  transform: skewY(-7deg);
  transform-origin: right;
  box-shadow: inset -1px 0 rgba(255, 255, 255, .2);
}

.book-mockup:after {
  content: "";
  position: absolute;
  left: 10%;
  right: 0;
  bottom: -8%;
  height: 10%;
  background: rgba(0, 0, 0, .65);
  filter: blur(24px);
  transform: skewX(-18deg);
}

.book-mockup img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, .62);
  transform: rotateY(-9deg) rotateZ(-1.5deg);
  transform-origin: left center;
}

.showcase-copy h2 {
  font: clamp(2.7rem, 5.8vw, 6.6rem)/.88 var(--display);
  letter-spacing: 0;
  margin: 0 0 2rem;
  text-transform: uppercase;
}

.showcase-copy > p:not(.small-label) {
  color: #aaa;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.7;
  max-width: 34rem;
}

.event-card {
  display: grid;
  gap: .75rem;
  max-width: 25rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.event-card strong {
  font: clamp(2.2rem, 4vw, 4.5rem)/.9 var(--display);
  text-transform: uppercase;
  letter-spacing: 0;
}

.event-card a {
  width: fit-content;
  padding-bottom: .45rem;
  border-bottom: 1px solid;
  font: 500 .7rem var(--mono);
  text-transform: uppercase;
  word-break: break-word;
}

.direct-email {
  display: inline-block;
  margin-top: .35rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid;
  font: 500 .72rem var(--mono);
  text-transform: uppercase;
  word-break: break-word;
}

body.light-theme {
  --black: #0a0a0a;
  --white: #f7f7f3;
  --gray: #52524e;
  --line: rgba(0, 0, 0, .16);
  background: #f7f7f3;
  color: #0a0a0a;
}

body.light-theme .site-header {
  color: #111;
  background: rgba(247, 247, 243, .84);
  border-color: rgba(0, 0, 0, .12);
  backdrop-filter: blur(18px);
}

body.light-theme .desktop-nav a,
body.light-theme .header-cta {
  color: rgba(10, 10, 10, .92);
}

body.light-theme .desktop-nav a.active,
body.light-theme .desktop-nav a:hover,
body.light-theme .desktop-nav a:focus-visible {
  color: rgba(10, 10, 10, .52);
}

body.light-theme #cursor {
  border-color: rgba(3, 7, 18, .55);
}

body.light-theme .menu-toggle span {
  background: #111;
}

body.light-theme .theme-toggle {
  background: rgba(0, 0, 0, .04);
  border-color: rgba(0, 0, 0, .28);
}

body.light-theme .theme-toggle:hover,
body.light-theme .theme-toggle:focus-visible {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}

body.light-theme .hero {
  color: #fff;
}

body.light-theme .manifesto,
body.light-theme .excerpt,
body.light-theme .read,
body.light-theme .contact {
  background: #f7f7f3;
  color: #0a0a0a;
}

body.light-theme .themes,
body.light-theme .author,
body.light-theme footer {
  background: #111;
  color: #fff;
}

body.light-theme .showcase {
  background: #efefea;
  color: #0a0a0a;
}

body.light-theme .showcase .eyebrow.light {
  border-color: rgba(0, 0, 0, .18);
}

body.light-theme .book-copy {
  color: rgba(0, 0, 0, .055);
}

body.light-theme .showcase-copy > p:not(.small-label) {
  color: #4b4b47;
}

body.light-theme .event-card {
  border-color: rgba(0, 0, 0, .22);
}

@media (max-width: 1180px) {
  .site-header {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }

  .desktop-nav {
    gap: clamp(.9rem, 1.8vw, 1.8rem);
    font-size: clamp(.82rem, 1vw, .98rem);
  }

  .theme-toggle {
    margin-left: .4rem;
  }
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .brand {
    font-size: clamp(1.5rem, 3vw, 2.05rem);
  }

  .theme-toggle {
    margin-left: auto;
    margin-right: .25rem;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
    margin-left: .2rem;
  }

  .menu-toggle span {
    width: 24px;
  }
}

@media (max-width: 760px) {
  .theme-toggle {
    margin-left: auto;
    margin-right: .3rem;
    padding: .55rem .78rem;
  }

  .site-header {
    gap: .45rem;
    padding-left: max(1rem, var(--pad));
    padding-right: max(1rem, var(--pad));
  }

  .mobile-menu {
    z-index: 45;
    padding-top: 6.4rem;
  }

  .mobile-menu nav a {
    font-size: clamp(2.15rem, 11vw, 4rem);
    line-height: 1.05;
  }

  .hero {
    min-height: 92svh;
    padding-bottom: 1.5rem;
  }

  .hero:before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .08) 40%, rgba(0, 0, 0, .94)),
      linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .04) 55%, rgba(0, 0, 0, .58));
  }

  .hero-image img {
    object-position: 50% 50%;
    transform: scale(1.04);
  }

  .wordmark {
    font-size: clamp(4.1rem, 19vw, 6rem);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .countdown-rail {
    left: var(--pad);
    right: auto;
    bottom: 1.25rem;
    width: min(14.5rem, calc(100vw - (var(--pad) * 2) - 4.8rem));
  }

  .countdown-panel {
    gap: .5rem .7rem;
    padding: .7rem .75rem;
  }

  .countdown b {
    font-size: clamp(.82rem, 3.8vw, 1.18rem);
  }

  .countdown small {
    font-size: .38rem;
  }

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

  .book-stage {
    min-height: 30rem;
  }

  .book-copy {
    left: -15%;
    right: -30%;
    top: 40%;
  }

  .book-mockup {
    width: min(20rem, 76vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .countdown-track {
    animation: none;
  }
}

/* Final Rebound art direction pass. */
.hero-title-block {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: clamp(.55rem, 1vw, .9rem);
  text-align: center;
}

.wordmark {
  margin: 0;
  font-size: clamp(4.9rem, 16vw, 18rem);
  line-height: .82;
  transform: none !important;
  transform-origin: center;
  letter-spacing: 0;
}

.hero-tagline {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font: 700 clamp(.72rem, 1.05vw, .95rem)/1.1 var(--display);
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: titleRise .9s var(--brilio-ease) both .48s;
}

@keyframes titleRise {
  from {
    opacity: 0;
    transform: translateY(4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.display {
  font-size: clamp(3.1rem, 7.2vw, 7.6rem);
}

.body-copy p {
  font-size: clamp(.95rem, 1.12vw, 1.12rem);
  line-height: 1.55;
}

.body-copy .lead {
  font-size: clamp(1.12rem, 1.65vw, 1.65rem);
  line-height: 1.26;
}

.statement p {
  font-size: clamp(2.1rem, 5vw, 5.5rem);
}

.showcase-copy h2 {
  font-size: clamp(2.2rem, 4.6vw, 5.4rem);
  line-height: .9;
}

.showcase-copy > p:not(.small-label) {
  max-width: 28rem;
  font-size: clamp(.95rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.excerpt blockquote {
  font-size: clamp(2rem, 4.4vw, 4.8rem);
}

.author-copy > p {
  font-size: clamp(.95rem, 1.1vw, 1.05rem);
  line-height: 1.6;
}

.event-card a,
.direct-email {
  font-variant-caps: all-small-caps;
  text-transform: lowercase;
  letter-spacing: .08em;
}

.direct-email {
  font-weight: 700;
  font-size: .7rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  margin-top: .35rem;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form .input-row {
  margin-top: 0;
}

.input-row textarea {
  width: 100%;
  min-height: 8rem;
  border: 0;
  background: transparent;
  padding: 1rem 0;
  color: inherit;
  font: inherit;
  font-size: 1.05rem;
  line-height: 1.5;
  resize: vertical;
  outline: none;
}

.send-email {
  justify-self: start;
  margin-top: .75rem;
  border: 1px solid #0a0a0a;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  padding: .95rem 1.25rem;
  cursor: pointer;
  font: 700 .72rem var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: transform .35s var(--brilio-ease), background .35s var(--brilio-ease), color .35s var(--brilio-ease);
}

.send-email:hover,
.send-email:focus-visible {
  transform: translateY(-2px);
  background: transparent;
  color: #0a0a0a;
}

.send-email:disabled {
  cursor: wait;
  opacity: .58;
  transform: none;
}

body.light-theme .send-email:hover,
body.light-theme .send-email:focus-visible {
  color: #0a0a0a;
}

.form-fineprint {
  margin: .15rem 0 -.35rem;
  color: inherit;
  font-size: .74rem;
  line-height: 1.45;
  opacity: .64;
}

.form-status {
  min-height: 1.4em;
  margin: .2rem 0 0;
  font-size: .82rem;
  line-height: 1.45;
  color: inherit;
  opacity: .82;
}

@media (max-width: 760px) {
  .wordmark {
    font-size: clamp(3.8rem, 17vw, 5.6rem);
  }

  .hero-tagline {
    font-size: .58rem;
    letter-spacing: .12em;
  }
}

/* Flow tightening and hero tagline animation. */
.hero {
  min-height: 90svh;
}

.wordmark {
  font-size: clamp(5.2rem, 17vw, 19rem);
}

.hero-title-block {
  gap: clamp(.85rem, 1.25vw, 1.15rem);
}

.hero-tagline {
  width: 0;
  max-width: 30ch;
  overflow: hidden;
  white-space: nowrap;
  color: rgba(255, 255, 255, .94);
  border-right: 1px solid rgba(255, 255, 255, .78);
  font-size: clamp(.92rem, 1.32vw, 1.18rem);
  letter-spacing: .13em;
  text-shadow: 0 .8rem 2rem rgba(0, 0, 0, .75);
  animation: taglineType 7.2s steps(29, end) infinite, caretBlink .8s step-end infinite;
}

@keyframes taglineType {
  0%,
  8% {
    width: 0;
  }
  42%,
  68% {
    width: 30ch;
  }
  92%,
  100% {
    width: 0;
  }
}

@keyframes caretBlink {
  50% {
    border-color: transparent;
  }
}

.section-pad {
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.manifesto-grid {
  margin-top: clamp(2.6rem, 4vw, 4rem);
}

.statement {
  margin-top: clamp(4rem, 6vw, 6rem);
  padding-top: clamp(3.2rem, 4.5vw, 5rem);
  padding-bottom: clamp(3.2rem, 4.5vw, 5rem);
}

.showcase-grid,
.excerpt-grid {
  margin-top: clamp(3rem, 4.5vw, 4.8rem);
}

.excerpt-library {
  position: relative;
  background:
    radial-gradient(circle at 30% 12%, rgba(255, 255, 255, .06), transparent 16rem),
    linear-gradient(180deg, #101012, #080808);
  color: #f8f8f8;
  overflow: hidden;
}

.excerpt-library:before {
  content: "";
  position: absolute;
  top: clamp(5rem, 10vw, 9rem);
  left: 29%;
  width: clamp(3rem, 5.2vw, 5rem);
  aspect-ratio: 1;
  border: 2px solid rgba(144, 157, 172, .68);
  border-radius: 50%;
  pointer-events: none;
}

.excerpt-library-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(15rem, .42fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 8rem);
}

.excerpt-heading h2 {
  margin: .8rem 0 0;
  color: #fff;
  font: 500 clamp(2.7rem, 5vw, 6rem)/.96 var(--display);
  letter-spacing: -.065em;
}

.excerpt-list {
  display: grid;
}

.excerpt-item {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  align-items: center;
  width: 100%;
  padding: clamp(1.4rem, 3vw, 2.55rem) 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.excerpt-index,
.excerpt-item small {
  color: rgba(144, 157, 172, .86);
  font: 650 clamp(.88rem, 1.1vw, 1.08rem)/1.35 var(--display);
}

.excerpt-item strong {
  display: block;
  color: #fff;
  font: 500 clamp(2.1rem, 4vw, 4.25rem)/1 var(--display);
  letter-spacing: -.055em;
}

.excerpt-item small {
  display: block;
  margin-top: .75rem;
}

.excerpt-item b {
  color: #fff;
  font: 400 clamp(1.4rem, 2vw, 2.2rem)/1 var(--display);
  transition: transform .35s var(--brilio-ease);
}

.excerpt-item:hover b,
.excerpt-item:focus-visible b {
  transform: translate(4px, -4px);
}

.excerpt-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: var(--pad);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility 0s .35s;
}

.excerpt-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .35s ease;
}

.excerpt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(18px);
}

.excerpt-dialog {
  position: relative;
  z-index: 1;
  width: min(58rem, 100%);
  max-height: min(78vh, 54rem);
  overflow: auto;
  padding: clamp(1.6rem, 4vw, 3.2rem);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: clamp(1.3rem, 3vw, 2.4rem);
  background: #f4f4f6;
  color: #070a12;
  box-shadow: 0 3rem 8rem rgba(0, 0, 0, .45);
  outline: none;
}

.excerpt-dialog h2 {
  max-width: 12ch;
  margin: .8rem 0 1.4rem;
  color: #070a12;
  font: 550 clamp(2.2rem, 5vw, 5rem)/.95 var(--display);
  letter-spacing: -.065em;
}

.excerpt-modal-copy {
  display: grid;
  gap: 1rem;
  color: rgba(7, 10, 18, .72);
  font-size: clamp(.98rem, 1.15vw, 1.12rem);
  line-height: 1.72;
}

.excerpt-modal-copy p {
  margin: 0;
}

.excerpt-close {
  position: sticky;
  top: 0;
  float: right;
  width: 2.65rem;
  aspect-ratio: 1;
  border: 1px solid rgba(7, 10, 18, .18);
  border-radius: 50%;
  background: #070a12;
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

body.light-theme .excerpt-library {
  background:
    radial-gradient(circle at 30% 12%, rgba(0, 0, 0, .045), transparent 16rem),
    linear-gradient(180deg, #f7f7f3, #ecece7);
  color: #0a0a0a;
}

body.light-theme .excerpt-library:before {
  border-color: rgba(82, 82, 78, .52);
}

body.light-theme .excerpt-heading h2,
body.light-theme .excerpt-item strong,
body.light-theme .excerpt-item b {
  color: #0a0a0a;
}

body.light-theme .excerpt-item {
  border-bottom-color: rgba(0, 0, 0, .28);
}

body.light-theme .excerpt-index,
body.light-theme .excerpt-item small {
  color: rgba(10, 10, 10, .56);
}

.themes-heading {
  margin: clamp(3rem, 4.5vw, 4.8rem) 0;
}

.author-copy h2 {
  margin: clamp(2rem, 3.4vw, 3.6rem) 0;
}

.read h2 {
  margin: clamp(2.5rem, 4.5vw, 4.5rem) 0;
}

.contact {
  padding-top: clamp(4rem, 6.5vw, 6.5rem);
  padding-bottom: clamp(4rem, 6.5vw, 6.5rem);
}

@media (max-width: 760px) {
  .hero {
    min-height: 88svh;
  }

  .wordmark {
    font-size: clamp(4.2rem, 18vw, 6rem);
  }

  .hero-tagline {
    font-size: .72rem;
    letter-spacing: .08em;
  }

  .section-pad {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Final editorial tightening: Brilio-style casing, calmer copy, compact sections. */
.section-pad {
  padding-top: clamp(3.4rem, 5.4vw, 5.8rem);
  padding-bottom: clamp(3.4rem, 5.4vw, 5.8rem);
}

.eyebrow,
.small-label {
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: none;
}

.showcase-grid {
  grid-template-columns: minmax(17rem, .74fr) minmax(21rem, .92fr);
  gap: clamp(2.5rem, 5.8vw, 7rem);
  margin-top: clamp(2.3rem, 4vw, 4.5rem);
}

.showcase-copy h2 {
  margin: 0 0 1rem;
  font: 500 clamp(2.4rem, 4.9vw, 5.6rem)/.92 var(--display);
  letter-spacing: -.055em;
  text-transform: none;
}

.showcase-copy > p:not(.small-label) {
  max-width: 27rem;
  color: rgba(255, 255, 255, .58);
  font-size: clamp(.92rem, 1.08vw, 1.04rem);
  line-height: 1.58;
}

.home-preorder {
  display: grid;
  position: relative;
  gap: 1.35rem;
  max-width: 34rem;
  margin-top: clamp(1.7rem, 3vw, 2.6rem);
  padding: clamp(1.55rem, 2.7vw, 2.55rem);
  border: 0;
  border-radius: clamp(1.8rem, 4vw, 3.4rem);
  background: #f4f4f6;
  color: #070a12;
  box-shadow: 0 2.4rem 6rem rgba(0, 0, 0, .34);
}

.date-line,
.price-line {
  display: grid;
  gap: .75rem;
}

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

.date-line span {
  min-height: 4.6rem;
  padding: .95rem 0;
  border: 0;
  border-bottom: 1px solid rgba(7, 10, 18, .12);
  border-radius: 0;
  background: transparent;
}

.date-line small,
.price-line .tier-card span,
.micro-link {
  display: block;
  color: rgba(7, 10, 18, .48);
  font: 700 .62rem/1 var(--mono);
  letter-spacing: .12em;
  text-transform: none;
}

.date-line b {
  display: block;
  margin-top: .8rem;
  color: #070a12;
  font: 600 clamp(1.08rem, 1.75vw, 1.65rem)/1 var(--display);
  letter-spacing: -.02em;
}

.price-line {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
}

.price-line .tier-card {
  min-height: auto;
  padding: .92rem 1.05rem;
  border: 1px solid rgba(7, 10, 18, .38);
  border-radius: 999px;
  background: transparent;
  color: #070a12;
  cursor: pointer;
  text-align: center;
  transition: transform .35s var(--brilio-ease), border-color .35s var(--brilio-ease), background .35s var(--brilio-ease);
}

.price-line .tier-card:hover,
.price-line .tier-card:focus-visible,
.price-line .tier-card.active {
  transform: translateY(-3px);
  border-color: #070a12;
  background: #070a12;
  color: #fff;
}

.price-line .tier-card strong {
  display: block;
  margin-top: .45rem;
  color: currentColor;
  font: 650 clamp(1rem, 1.55vw, 1.35rem)/1 var(--display);
  letter-spacing: -.04em;
  text-transform: none;
}

.home-pay-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .9rem;
  align-items: center;
}

.home-pay-row input {
  width: 100%;
  min-height: 4rem;
  border: 0;
  border-bottom: 1px solid rgba(7, 10, 18, .12);
  border-radius: 0;
  background: transparent;
  color: #070a12;
  padding: .5rem 0;
  outline: none;
  font: 650 1rem var(--display);
}

.home-pay-row input::placeholder {
  color: rgba(7, 10, 18, .42);
  text-transform: none;
}

.home-pay-row .checkout-button {
  position: static;
  min-width: clamp(8.5rem, 13vw, 11rem);
  min-height: 3.65rem;
  border: 1px solid #020511;
  border-radius: 999px;
  background: #020511;
  color: #fff;
  padding: 0 1.35rem;
  cursor: pointer;
  font: 850 .72rem/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform .35s var(--brilio-ease), background .35s var(--brilio-ease), color .35s var(--brilio-ease), opacity .35s var(--brilio-ease);
}

.home-pay-row .checkout-button:before,
.home-pay-row .checkout-button:after {
  content: none;
}

.home-pay-row .checkout-button:hover,
.home-pay-row .checkout-button:focus-visible {
  transform: translateY(-2px);
  background: transparent;
  color: #020511;
}

.home-pay-row .checkout-button:disabled {
  cursor: wait;
  opacity: .58;
}

.home-preorder .pay-status {
  min-height: 1.3em;
  margin: -.2rem 0 0;
  color: rgba(7, 10, 18, .58);
  font: 500 .68rem/1.4 var(--mono);
}

.micro-link {
  width: fit-content;
  padding-bottom: .28rem;
  border-bottom: 1px solid rgba(7, 10, 18, .2);
}

.author-portrait {
  background: #0b0b0d;
  border-radius: 0;
  box-shadow: none;
}

.author-portrait:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 22%, rgba(0, 0, 0, .24)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 8px);
  mix-blend-mode: screen;
  opacity: .2;
  pointer-events: none;
}

.author-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  filter: grayscale(1) contrast(1.1) brightness(.96);
  transform: none;
}

.author-copy h2 {
  text-transform: none;
}

.author-lead {
  color: rgba(255, 255, 255, .82) !important;
  font-size: clamp(1rem, 1.35vw, 1.28rem) !important;
  line-height: 1.55 !important;
}

.author-bio {
  display: grid;
  gap: .85rem;
  max-width: 43rem;
}

.author-bio p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: clamp(.88rem, 1vw, .98rem);
  line-height: 1.68;
}

.author-bio strong {
  color: #fff;
  font-weight: 700;
}

body.light-theme .author-lead {
  color: rgba(255, 255, 255, .82) !important;
}

body.light-theme .author-bio p {
  color: rgba(255, 255, 255, .62);
}

body.light-theme .author-bio strong {
  color: #fff;
}

.manifesto-grid,
.showcase-grid,
.excerpt-grid {
  margin-top: clamp(2.2rem, 3.7vw, 4.2rem);
}

.statement {
  margin-top: clamp(3rem, 4.8vw, 5rem);
  padding-top: clamp(2.6rem, 3.8vw, 4.2rem);
  padding-bottom: clamp(2.6rem, 3.8vw, 4.2rem);
}

body.light-theme .showcase-copy > p:not(.small-label) {
  color: rgba(10, 10, 10, .62);
}

@media (max-width: 760px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-copy h2 {
    font-size: clamp(2.45rem, 12vw, 4.5rem);
  }

  .date-line,
  .price-line,
  .home-pay-row {
    grid-template-columns: 1fr;
  }

  .home-pay-row .checkout-button {
    width: 100%;
    position: static;
    aspect-ratio: auto;
    min-height: 3.25rem;
    font-size: .62rem;
  }

  .home-pay-row .checkout-button:after {
    content: none;
  }

  .home-pay-row .checkout-button:before {
    content: none;
  }

  .excerpt-library-grid,
  .excerpt-item {
    grid-template-columns: 1fr;
  }

  .excerpt-library:before {
    left: auto;
    right: var(--pad);
    opacity: .55;
  }

  .excerpt-item {
    gap: .75rem;
  }

  .excerpt-index {
    font-size: .78rem;
  }

  .excerpt-item strong {
    font-size: clamp(2.1rem, 12vw, 3.6rem);
  }

  .excerpt-item b {
    justify-self: end;
  }

  .excerpt-dialog {
    max-height: 82vh;
  }

  .author-portrait {
    min-height: 32rem;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 1.38rem;
  }

  .theme-toggle {
    padding: .5rem .64rem;
    font-size: .58rem;
  }

  .menu-toggle {
    padding: .4rem .2rem;
  }

  .menu-toggle span {
    width: 22px;
    margin: 5px;
  }
}
