:root {
  --home-red: #ef3d24;
  --home-acid: #d9ff43;
  --home-cream: #f4efe5;
  --brand-serif: Georgia, "Times New Roman", serif;
}

/* Opening identity sequence */
.intro-home.intro-lock {
  height: 100%;
  overflow: hidden;
}

.intro-home .home-nav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
}

.intro-home .home-nav.is-scrolled {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.intro-landing {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  color: #11110f;
  background:
    radial-gradient(circle at 50% 47%, rgba(255, 255, 255, .95) 0, rgba(255, 255, 255, .38) 24%, transparent 54%),
    var(--home-cream);
  isolation: isolate;
}

.intro-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .42;
  background-image:
    linear-gradient(rgba(17, 17, 15, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, .08) 1px, transparent 1px);
  background-size: clamp(68px, 8vw, 124px) clamp(68px, 8vw, 124px);
  mask-image: radial-gradient(circle at center, #000 0, transparent 72%);
}

.intro-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(17, 17, 15, .12);
  border-radius: 50%;
  pointer-events: none;
}

.intro-orbit-one { width: min(68vw, 980px); aspect-ratio: 1; }
.intro-orbit-two { width: min(42vw, 610px); aspect-ratio: 1; }

.intro-logo-stage {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(620px, 48vw);
  place-items: center;
  transform-origin: center;
}

.intro-logo-image {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  user-select: none;
}

.intro-logo-heading {
  width: 100%;
  margin: 0;
  line-height: 0;
}

.intro-city {
  position: absolute;
  top: calc(100% + 12px);
  margin: 0;
  opacity: 0;
  font-family: var(--brand-serif);
  font-size: clamp(11px, .9vw, 14px);
  font-weight: 600;
  letter-spacing: .32em;
  line-height: 1;
  text-transform: uppercase;
  transform: scale(.95);
  transform-origin: center;
}

.intro-tap-ring {
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(239, 61, 36, .48);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.intro-platform {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 9px;
  border: 1px solid rgba(17, 17, 15, .32);
  border-radius: 999px;
  background: rgba(244, 239, 229, .82);
  box-shadow: 0 12px 34px rgba(17, 17, 15, .09);
  backdrop-filter: blur(10px);
  font-family: var(--brand-serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  will-change: transform, opacity;
}

.intro-platform.is-absorbed {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}

.intro-platform-mark {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: #11110f;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.intro-instagram { top: 17%; left: 8%; transform: rotate(-5deg); }
.intro-facebook { top: 16%; right: 9%; transform: rotate(4deg); }
.intro-yelp { top: 47%; left: 4%; transform: rotate(3deg); }
.intro-tiktok { top: 45%; right: 4%; transform: rotate(-3deg); }
.intro-linkedin { bottom: 16%; left: 12%; transform: rotate(3deg); }
.intro-substack { right: 11%; bottom: 15%; transform: rotate(-4deg); }
.intro-instagram .intro-platform-mark { background: var(--home-red); }
.intro-facebook .intro-platform-mark { background: #1877f2; font-family: Georgia, serif; font-size: 25px; }
.intro-yelp .intro-platform-mark { background: #d32323; font-size: 18px; }
.intro-tiktok .intro-platform-mark { background: #11110f; text-shadow: -2px 0 var(--home-red), 2px 0 #46e4e4; }
.intro-linkedin .intro-platform-mark { background: #1769aa; font-size: 17px; }
.intro-substack .intro-platform-mark { background: #ff6719; }

.intro-skip {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 30px;
  z-index: 4;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 15, .42);
  color: #11110f;
  background: transparent;
  font-family: var(--brand-serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
}

.intro-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  font-family: var(--brand-serif);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translate(-50%, 12px);
}

.intro-scroll i {
  display: block;
  width: 1px;
  height: 34px;
  background: #11110f;
  transform-origin: top;
  animation: intro-scroll-pulse 1.8s ease-in-out infinite;
}

.intro-landing.is-settled .intro-platform,
.intro-landing.is-settled .intro-skip {
  visibility: hidden;
}

.intro-landing.is-settled .intro-scroll {
  opacity: 1;
  transform: translate(-50%, 0);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .75, .2, 1);
}

.intro-landing.is-city-visible .intro-city {
  opacity: 1;
  transform: scale(1);
  transition: opacity .18s ease-out, transform .18s ease-out;
}

@keyframes intro-scroll-pulse {
  0%, 100% { transform: scaleY(.35); opacity: .35; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 840px) {
  .intro-home .home-nav.is-menu-open,
  .intro-home .home-nav.is-scrolled.is-menu-open {
    color: #fff;
    background: rgba(17, 17, 15, .96);
  }

  .intro-home .home-nav.is-menu-open .home-wordmark { color: #fff; }
  .intro-logo-stage { width: min(76vw, 510px); }
  .intro-orbit-one { width: 104vw; }
  .intro-orbit-two { width: 72vw; }
  .intro-platform { gap: 7px; padding: 6px 10px 6px 6px; font-size: 8px; }
  .intro-platform-mark { width: 30px; height: 30px; font-size: 18px; }
  .intro-instagram { top: 16%; left: 4%; }
  .intro-facebook { top: 16%; right: 4%; }
  .intro-yelp { top: 34%; left: 2%; }
  .intro-tiktok { top: 34%; right: 2%; }
  .intro-linkedin { bottom: 21%; left: 5%; }
  .intro-substack { right: 4%; bottom: 18%; }
}

@media (max-width: 540px) {
  .intro-platform > span:last-child { display: none; }
  .intro-platform { padding: 6px; }
  .intro-logo-stage { width: 84vw; }
  .intro-city { top: calc(100% + 12px); font-size: 10px; letter-spacing: .28em; }
  .intro-skip { bottom: 22px; }
  .intro-scroll { bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .intro-platform, .intro-skip { display: none; }
  .intro-landing.is-city-visible .intro-city,
  .intro-landing.is-settled .intro-scroll { opacity: 1; }
  .intro-city { transform: scale(1); }
  .intro-scroll i { animation: none; }
}

.home-nav {
  position: fixed;
  color: #fff;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.26);
  backdrop-filter: none;
  transition: opacity .32s ease, transform .32s ease, visibility .32s ease, background .25s ease, border-color .25s ease;
}

.home-nav.is-scrolled {
  background: rgba(17, 17, 15, .94);
  border-bottom-color: rgba(255,255,255,.15);
  backdrop-filter: blur(14px);
}

.home-nav .nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
}

.home-nav .nav-cta {
  color: #11110f;
  background: var(--home-acid);
  border-color: var(--home-acid);
}

.home-wordmark {
  display: block;
  width: 108px;
  line-height: 0;
}

.home-wordmark img {
  width: 100%;
  height: auto;
  filter: invert(1) hue-rotate(180deg);
  mix-blend-mode: screen;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #18120f;
}

.home-hero-video,
.home-hero-shade,
.hero-grid-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-video {
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(1.18) contrast(1.04);
  transform: scale(1.015);
}

.home-hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 8, 6, 0.78) 0%, rgba(11, 8, 6, 0.38) 50%, rgba(11, 8, 6, 0.2) 100%),
    linear-gradient(0deg, rgba(11, 8, 6, 0.7) 0%, transparent 46%, rgba(11, 8, 6, 0.18) 100%);
}

.hero-grid-lines {
  left: clamp(18px, 4vw, 54px);
  right: clamp(18px, 4vw, 54px);
  width: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  background: linear-gradient(90deg, transparent 66.666%, rgba(255,255,255,.17) 66.666%, rgba(255,255,255,.17) calc(66.666% + 1px), transparent calc(66.666% + 1px));
  pointer-events: none;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  width: min(940px, calc(100% - 36px));
  padding: clamp(168px, 22vh, 250px) 0 120px;
  margin-left: clamp(18px, 4vw, 54px);
}

.hero-kicker {
  margin-bottom: 26px;
  color: var(--home-acid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 880px;
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(70px, 9.4vw, 154px);
  line-height: .76;
  letter-spacing: -.075em;
  text-wrap: balance;
}

.home-hero h1 em {
  color: var(--home-acid);
  font-weight: 400;
}

.hero-deck {
  max-width: 580px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.84);
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.28;
}

.home-button,
.home-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.home-button {
  min-width: 236px;
  padding: 14px 18px;
  border: 1px solid #fff;
}

.home-button-light {
  color: #11110f;
  background: #fff;
}

.home-text-link {
  border-bottom: 1px solid rgba(255,255,255,.5);
}

.hero-proof {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 54px);
  bottom: 52px;
  display: grid;
  width: min(29vw, 410px);
  padding: 22px;
  color: #11110f;
  background: var(--home-acid);
  box-shadow: 18px 18px 0 rgba(239, 61, 36, .92);
}

.proof-number {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 700;
  line-height: .86;
  letter-spacing: -.06em;
}

.proof-label {
  margin-top: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-note {
  padding-top: 18px;
  margin-top: 20px;
  border-top: 1px solid rgba(17,17,15,.28);
  font-size: 12px;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 4vw, 54px);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-scroll i {
  display: block;
  width: 70px;
  height: 1px;
  background: rgba(255,255,255,.65);
  transform-origin: left;
  animation: hero-pulse 2s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%, 100% { transform: scaleX(.4); opacity: .45; }
  50% { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 840px) {
  .home-nav .nav-toggle {
    color: #fff;
    border-color: rgba(255,255,255,.7);
  }

  .home-nav.is-menu-open {
    background: rgba(17,17,15,.96);
  }

  .home-nav .nav-links {
    color: var(--ink);
  }

  .home-wordmark { width: 92px; }
  .hero-grid-lines { background: none; }
  .home-hero-content { padding-top: 155px; padding-bottom: 260px; }
  .home-hero h1 { font-size: clamp(62px, 19vw, 92px); }
  .home-hero h1 br { display: none; }
  .hero-deck { max-width: 90%; }
  .hero-actions { align-items: flex-start; }
  .hero-proof { left: 24px; right: auto; bottom: 54px; width: calc(100% - 66px); box-shadow: 12px 12px 0 var(--home-red); }
  .hero-scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-video { display: none; }
  .hero-scroll i { animation: none; }
}

.home-v2 {
  overflow-x: hidden;
  background: var(--home-cream);
  font-family: var(--brand-serif);
}

.home-v2 em {
  font-weight: 400;
}

.home-v2 .home-nav,
.home-v2 .home-button,
.home-v2 .home-text-link,
.home-v2 .home-eyebrow,
.home-v2 .hero-kicker,
.home-v2 .proof-label,
.home-v2 .proof-note,
.home-v2 .signal-marquee,
.home-v2 .feed-stat,
.home-v2 .feed-card p,
.home-v2 .world-tags,
.home-v2 .guide-category,
.home-v2 .guide-index,
.home-v2 .creator-brand-link,
.home-v2 .home-signup label,
.home-v2 .home-signup small,
.home-v2 .home-signup button,
.home-v2 .footer-links,
.home-v2 .footer-small {
  font-family: var(--brand-serif);
  font-weight: 600;
}

.home-v2 .home-nav {
  letter-spacing: .065em;
}

.home-v2 .home-eyebrow,
.home-v2 .feed-stat,
.home-v2 .feed-card p,
.home-v2 .guide-category,
.home-v2 .guide-index,
.home-v2 .footer-small {
  letter-spacing: .12em;
}

#latest,
#about,
#explore,
#creators,
#newsletter {
  scroll-margin-top: 78px;
}

.home-about {
  display: grid;
  grid-template-columns: minmax(150px, .35fr) minmax(0, 1.25fr) minmax(180px, .3fr);
  gap: clamp(30px, 6vw, 100px);
  align-items: start;
  padding: clamp(82px, 10vw, 150px) clamp(18px, 4vw, 54px);
  color: #11110f;
  background: var(--home-acid);
  border-bottom: 1px solid #11110f;
}

.home-about h2 {
  max-width: 1050px;
  margin: 0 0 34px;
  font-size: clamp(50px, 6.5vw, 104px);
  line-height: .88;
  letter-spacing: -.06em;
}

.home-about h2 em { color: var(--home-red); }

.home-about div > p {
  max-width: 830px;
  margin: 0;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.35;
}

.home-about > .arrow-link {
  align-self: end;
}

.video-control {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 4vw, 54px);
  top: 112px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.42);
  color: #fff;
  background: rgba(12,10,8,.2);
  font: inherit;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.signal-marquee {
  overflow: hidden;
  padding: 14px 0;
  color: #11110f;
  background: var(--home-acid);
  border-top: 1px solid #11110f;
  border-bottom: 1px solid #11110f;
}

.signal-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  animation: signal-scroll 24s linear infinite;
}

.signal-marquee i {
  color: var(--home-red);
  font-family: var(--serif);
  font-size: 22px;
  font-style: normal;
}

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

.home-section {
  padding: clamp(80px, 10vw, 150px) clamp(18px, 4vw, 54px);
}

.home-eyebrow {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-section h2,
.creator-copy h2,
.newsletter-finale h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 112px);
  line-height: .84;
  letter-spacing: -.065em;
}

.home-section h2 em,
.newsletter-finale h2 em {
  color: var(--home-red);
}

.home-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .45fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(50px, 6vw, 90px);
}

.section-intro-copy {
  max-width: 390px;
  padding-bottom: 8px;
  font-size: 22px;
  line-height: 1.45;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.feed-section {
  background: var(--home-cream);
}

.feed-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 24px);
  align-items: start;
}

.feed-card {
  position: relative;
  min-width: 0;
  transition: transform .22s ease, box-shadow .22s ease;
  transform-style: preserve-3d;
}

.feed-card:nth-child(3) { margin-top: 80px; }
.feed-card:nth-child(4) { margin-top: 28px; }

.feed-card img {
  width: 100%;
  aspect-ratio: 4 / 5.3;
  object-fit: cover;
  filter: saturate(.92) contrast(1.03);
}

.feed-card-feature img { aspect-ratio: 4 / 5; }

.feed-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #11110f;
  background: var(--home-acid);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.feed-card-copy {
  padding: 16px 4px 0;
}

.feed-stat {
  display: inline-block;
  padding: 5px 7px;
  margin-bottom: 12px;
  color: #fff;
  background: var(--home-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.feed-card h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 36px);
  line-height: .98;
  letter-spacing: -.04em;
}

.feed-card p {
  color: rgba(17,17,15,.62);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.worlds-section {
  color: #f9f3e9;
  background: #161511;
}

.worlds-heading {
  margin-bottom: 60px;
}

.worlds-heading h2 em { color: var(--home-acid); }

.world-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.28);
  border-bottom: 1px solid rgba(255,255,255,.28);
}

.world-tab {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 24px 18px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.45);
  background: transparent;
  font: inherit;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 50px);
  cursor: pointer;
  text-align: left;
  transition: color .2s ease, background .2s ease;
}

.world-tab:last-child { border-right: 0; }
.world-tab span { font-family: var(--brand-serif); font-size: 10px; }
.world-tab:hover { color: #fff; background: rgba(255,255,255,.05); }
.world-tab.is-active { color: #11110f; background: var(--home-acid); }

.world-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  min-height: 660px;
  border-bottom: 1px solid rgba(255,255,255,.28);
}

.world-image-wrap {
  position: relative;
  min-height: 660px;
  overflow: hidden;
}

.world-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .25s ease, transform .65s cubic-bezier(.2,.7,.2,1);
}

.world-stage.is-changing img { opacity: .25; transform: scale(1.04); }

.world-stamp {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  padding: 17px;
  color: #11110f;
  background: var(--home-acid);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  animation: stamp-spin 16s linear infinite;
}

@keyframes stamp-spin { to { transform: rotate(360deg); } }

.world-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 90px);
  border-left: 1px solid rgba(255,255,255,.28);
}

.world-copy h3 {
  max-width: 620px;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(43px, 5vw, 76px);
  line-height: .92;
  letter-spacing: -.055em;
}

.world-copy > p:not(.home-eyebrow) {
  max-width: 520px;
  color: rgba(255,255,255,.7);
  font-size: 22px;
  line-height: 1.5;
}

.world-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 34px;
}

.world-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.home-button-dark {
  align-self: flex-start;
  color: #11110f;
  background: var(--home-acid);
  border-color: var(--home-acid);
}

.guide-edit {
  position: relative;
  color: #11110f;
  background: var(--home-cream);
}

.guide-edit-title { margin-bottom: 70px; }

.guide-list {
  border-top: 1px solid #11110f;
}

.guide-row {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr 150px 44px;
  gap: 24px;
  align-items: center;
  min-height: 150px;
  padding: 14px 0;
  border-bottom: 1px solid #11110f;
  transition: padding .25s ease, background .25s ease;
}

.guide-row:hover {
  padding-left: 18px;
  padding-right: 18px;
  background: var(--home-acid);
}

.guide-index,
.guide-category {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.guide-category { color: rgba(17,17,15,.56); }

.guide-row h3 {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 64px);
  line-height: .95;
  letter-spacing: -.05em;
}

.guide-row img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  transform: rotate(-2deg);
  transition: transform .25s ease;
}

.guide-row:nth-child(even) img { transform: rotate(2deg); }
.guide-row:hover img { transform: rotate(0) scale(1.08); }
.guide-arrow { font-size: 30px; text-align: right; }
.guide-all { margin-top: 42px; }

.creator-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  min-height: 820px;
  color: #fff;
  background: var(--home-red);
}

.creator-photo {
  position: relative;
  min-height: 820px;
  overflow: hidden;
}

.creator-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-vertical-label {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  height: 100%;
  padding: 18px 10px;
  place-items: center;
  color: #11110f;
  background: var(--home-acid);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.creator-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 105px);
}

.creator-copy h2 em { color: var(--home-acid); }

.creator-copy > p:not(.home-eyebrow) {
  max-width: 590px;
  margin: 30px 0;
  font-size: 22px;
  line-height: 1.55;
}

.creator-copy .home-button-light {
  align-self: flex-start;
  color: #11110f;
  background: #fff;
}

.creator-brand-link {
  align-self: flex-start;
  padding-bottom: 7px;
  margin-top: 26px;
  border-bottom: 1px solid rgba(255,255,255,.6);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.newsletter-finale {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(50px, 8vw, 140px);
  align-items: end;
  padding: clamp(90px, 12vw, 170px) clamp(18px, 4vw, 54px);
  color: #11110f;
  background: var(--home-acid);
}

.newsletter-finale h2 em { color: var(--home-red); }

.newsletter-finale-copy > p:last-child {
  max-width: 550px;
  margin: 30px 0 0;
  font-size: 22px;
  line-height: 1.5;
}

.home-signup label,
.home-signup small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-signup > div {
  display: flex;
  margin: 10px 0 12px;
  border-bottom: 2px solid #11110f;
}

.home-signup input,
.home-signup button {
  min-height: 64px;
  border: 0;
  color: #11110f;
  background: transparent;
  font: inherit;
}

.home-signup input {
  min-width: 0;
  flex: 1;
  font-family: var(--serif);
  font-size: 28px;
}

.home-signup input::placeholder { color: rgba(17,17,15,.4); }

.home-signup button {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.home-signup small { color: rgba(17,17,15,.54); }

.home-footer {
  padding: 48px clamp(18px, 4vw, 54px) 24px;
  color: #f7f1e7;
  background: #11110f;
}

.footer-wordmark {
  display: block;
  margin-bottom: 48px;
  font-family: var(--serif);
  font-size: clamp(58px, 12vw, 188px);
  font-weight: 700;
  line-height: .74;
  letter-spacing: -.08em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.24);
  border-bottom: 1px solid rgba(255,255,255,.24);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-small {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(255,255,255,.52);
  font-size: 10px;
  text-transform: uppercase;
}

.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1000px) {
  .feed-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feed-card:nth-child(3), .feed-card:nth-child(4) { margin-top: 0; }
  .world-stage { grid-template-columns: 1fr 1fr; }
  .creator-callout { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 840px) {
  .video-control { top: 92px; right: 18px; }
  .home-section { padding-top: 82px; padding-bottom: 82px; }
  .home-section-head { grid-template-columns: 1fr; gap: 28px; }
  .home-section h2, .creator-copy h2, .newsletter-finale h2 { font-size: clamp(52px, 15vw, 78px); }
  .home-about { grid-template-columns: 1fr; gap: 24px; padding: 82px 24px; }
  .home-about > .arrow-link { margin-top: 16px; }
  .feed-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .feed-card h3 { font-size: 24px; }
  .world-tabs { grid-template-columns: 1fr; }
  .world-tab { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28); }
  .world-tab:last-child { border-bottom: 0; }
  .world-stage { grid-template-columns: 1fr; min-height: 0; }
  .world-image-wrap { min-height: 460px; }
  .world-copy { border-top: 1px solid rgba(255,255,255,.28); border-left: 0; padding: 46px 24px 58px; }
  .guide-row { grid-template-columns: 36px 1fr 72px 24px; gap: 12px; min-height: 110px; }
  .guide-row img { width: 72px; height: 72px; }
  .guide-row h3 { font-size: 31px; }
  .creator-callout { grid-template-columns: 1fr; min-height: 0; }
  .creator-photo { min-height: 520px; }
  .creator-copy { padding: 70px 24px; }
  .newsletter-finale { grid-template-columns: 1fr; align-items: start; padding: 82px 24px; }
  .footer-small { flex-direction: column; }
}

@media (max-width: 540px) {
  .home-hero-content { padding-bottom: 285px; }
  .home-hero .hero-actions { flex-direction: column; gap: 14px; }
  .home-text-link { align-self: flex-start; min-height: 42px; }
  .proof-number { font-size: 52px; }
  .feed-grid { grid-template-columns: 1fr; gap: 46px; }
  .feed-card img, .feed-card-feature img { aspect-ratio: 4 / 4.8; }
  .guide-index { display: none; }
  .guide-row { grid-template-columns: 1fr 70px 22px; }
  .guide-row h3 { font-size: 27px; }
  .home-signup > div { display: block; }
  .home-signup input { width: 100%; }
  .home-signup button { padding: 0; }
}

@media (hover: hover) {
  .home-button, .arrow-link, .home-text-link { transition: gap .2s ease, transform .2s ease; }
  .home-button:hover, .arrow-link:hover, .home-text-link:hover { gap: 38px; }
  .home-button:hover { transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
  .signal-marquee-track, .world-stamp { animation: none; }
  .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
}

/* Editorial continuity: carry the intro's restraint through the homepage. */
.home-about {
  position: relative;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(46px, 8vw, 140px);
  overflow: hidden;
  color: #11110f;
  background:
    linear-gradient(rgba(17,17,15,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,15,.045) 1px, transparent 1px),
    var(--home-cream);
  background-size: 104px 104px;
  border-top: 1px solid #11110f;
}

.home-about::after {
  position: absolute;
  top: 50%;
  left: 24%;
  width: min(48vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(17,17,15,.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.about-title,
.about-definition { position: relative; z-index: 1; }

.home-about h2 {
  margin: 0;
  font-size: clamp(56px, 7vw, 112px);
}

.home-about h2 em { color: var(--home-red); }

.about-definition > p {
  max-width: 820px;
  margin: 0 0 24px;
  font-size: clamp(19px, 1.7vw, 27px);
  line-height: 1.45;
}

.about-definition .about-lead {
  font-size: clamp(27px, 3vw, 46px);
  line-height: 1.16;
  letter-spacing: -.025em;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid #11110f;
  border-bottom: 1px solid #11110f;
}

.about-principles article {
  padding: 20px 18px 24px 0;
  border-right: 1px solid rgba(17,17,15,.2);
}

.about-principles article + article { padding-left: 18px; }
.about-principles article:last-child { border-right: 0; }
.about-principles span { display: block; margin-bottom: 22px; font-size: 10px; letter-spacing: .12em; }
.about-principles strong { display: block; margin-bottom: 9px; font-size: 23px; }
.about-principles p { margin: 0; color: rgba(17,17,15,.67); font-size: 15px; line-height: 1.4; }
.about-links { display: flex; flex-wrap: wrap; gap: 24px 36px; margin-top: 34px; }

.creator-callout {
  color: #f7f1e7;
  background: #161511;
  border-top: 1px solid #11110f;
}

.creator-photo img {
  object-position: center 56%;
  filter: saturate(.78) contrast(1.05);
}

.creator-copy h2 em { color: var(--home-acid); }
.creator-copy .home-button-light { background: var(--home-acid); border-color: var(--home-acid); }

.newsletter-finale {
  background: var(--home-cream);
  border-top: 1px solid #11110f;
}

.home-signup button { background: var(--home-acid); padding-inline: 18px; }

.footer-closing {
  display: grid;
  grid-template-columns: minmax(120px, .22fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 90px);
  padding: 28px 0 72px;
}

.footer-closing-kicker {
  margin: 9px 0 0;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-closing h2 {
  grid-column: 2;
  margin: 0;
  font-size: clamp(64px, 9vw, 144px);
  line-height: .82;
  letter-spacing: -.065em;
}

.footer-closing h2 em { color: var(--home-acid); font-weight: 400; }

.footer-closing > div {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  max-width: 1140px;
  margin-top: 16px;
}

.footer-closing > div p { max-width: 570px; margin: 0; color: rgba(255,255,255,.68); font-size: 20px; line-height: 1.45; }

@media (max-width: 1000px) {
  .home-about { grid-template-columns: 1fr; }
  .home-about::after { left: 50%; width: 88vw; }
}

@media (max-width: 700px) {
  .about-principles { grid-template-columns: 1fr; }
  .about-principles article,
  .about-principles article + article { padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(17,17,15,.2); }
  .about-principles article:last-child { border-bottom: 0; }
  .footer-closing { grid-template-columns: minmax(0, 1fr); }
  .footer-closing > * { min-width: 0; }
  .footer-closing h2,
  .footer-closing > div { grid-column: 1; }
  .footer-closing > div { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 360px) {
  .home-section h2,
  .creator-copy h2,
  .newsletter-finale h2 { font-size: 46px; }
  .footer-closing h2 { font-size: 52px; }
}
