/* ==========================================================================
   Kacau Daun — Pop Brutalist
   ========================================================================== */

:root {
  --cream: #fbf6ea;
  --ink: #111111;
  --lime: #c6f23a;
  --forest: #15291a;
  --white: #ffffff;
  --checker: #ece6d4;

  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Bricolage Grotesque', sans-serif;

  /* Shared editorial type hierarchy */
  --type-page-title: clamp(3.25rem, 5.8vw, 5rem);
  --type-page-title-mobile: clamp(2.625rem, 11.2vw, 3.25rem);
  --type-article-title: clamp(3.25rem, 7vw, 6rem);
  --type-article-title-mobile: clamp(2.75rem, 12.5vw, 3.75rem);
  --type-section-title: clamp(2.375rem, 4.2vw, 3.75rem);
  --type-section-title-mobile: clamp(2.125rem, 9.5vw, 2.75rem);
  --type-feature-title: clamp(1.75rem, 3vw, 2.625rem);
  --type-card-title: clamp(1.375rem, 2vw, 1.75rem);
  --type-page-lead: clamp(1.125rem, 1.45vw, 1.25rem);
  --type-article-lead: clamp(1.25rem, 2vw, 1.625rem);
  --type-reading: clamp(1.125rem, 1.4vw, 1.25rem);
  --type-body: 1rem;
  --type-body-small: 0.875rem;
  --type-label: 0.75rem;
  --type-meta: 0.6875rem;
  --type-brand-hero: clamp(3.625rem, 6.1vw, 5.5rem);
  --type-brand-hero-mobile: clamp(2.4rem, 12vw, 3.75rem);
  --layout-content-width: 87.5rem;
  --layout-page-gutter: clamp(16px, 4vw, 46px);
  --leading-display: 0.9;
  --leading-section: 0.96;
  --leading-body: 1.55;
  --tracking-display: -0.055em;

  --border: 3px solid var(--ink);
  --shadow: 5px 5px 0 var(--ink);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.mark {
  background: var(--lime);
  padding: 0 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.accent-text {
  color: var(--lime);
}

.pill {
  background: var(--ink);
  color: var(--lime);
  padding: 1px 8px;
  font-weight: 800;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 15px;
  text-decoration: none;
  padding: 16px 26px;
  border: var(--border);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-row--center {
  justify-content: center;
}

.btn--primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.script-link {
  align-self: center;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 600;
  color: #3a8a2c;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.script-link:hover {
  color: var(--ink);
}

.btn--dark {
  background: var(--ink);
  color: var(--lime);
  padding: 16px 28px;
}

.btn--dark:hover {
  background: #222222;
}

.btn--outline {
  background: var(--white);
  color: var(--ink);
  padding: 16px 28px;
}

.btn--outline:hover {
  background: #f0f0f0;
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: var(--border);
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  flex: none;
  font-family: var(--font-display);
  font-size: 13px;
  text-decoration: none;
  background: var(--ink);
  color: var(--lime);
  padding: 10px 18px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--lime);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav__cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--lime);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 20px;
}

.nav__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__menu a {
  font-family: var(--font-display);
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  border-bottom: 3px solid transparent;
}

.nav__menu a:hover,
.nav__menu a:focus-visible {
  border-bottom-color: var(--lime);
}

.nav__menu-disabled {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  border-bottom: 3px solid transparent;
  color: var(--ink);
  opacity: 0.45;
  cursor: not-allowed;
}

.nav__badge {
  padding: 2px 6px;
  border: 2px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 32px 56px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero__scroll-arrow {
  font-size: 18px;
  animation: kdScrollHint 1.6s ease-in-out infinite;
}

@keyframes kdScrollHint {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}

.tag-badge {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 600;
  color: #3a8a2c;
  transform: rotate(-3deg);
  margin-bottom: 10px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 74px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.hero__lede {
  font-size: 20px;
  line-height: 1.55;
  color: #222222;
  max-width: 520px;
  margin: 0 0 30px;
}

.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}

.hero__disc {
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--lime);
  border: var(--border);
  border-radius: 50%;
}

.hero__mascot {
  position: relative;
  width: 480px;
  filter: drop-shadow(8px 10px 0 rgba(17, 17, 17, 0.18));
  animation: kdFloatSlow 5s ease-in-out infinite;
}

/* ---------- section titles ---------- */

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  text-transform: uppercase;
  margin: 0 0 30px;
}

.section-title--light {
  color: var(--white);
}

.section-title--center {
  text-align: center;
}

/* ---------- why ---------- */

.why {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 32px 60px;
  text-align: center;
}

.why__body {
  font-size: 18px;
  line-height: 1.6;
  color: #222222;
  margin: 0 0 26px;
}

.why__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.why__chip {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  background: var(--ink);
  color: var(--lime);
  padding: 6px 12px;
}

/* ---------- features ---------- */

#features,
#why,
#feed,
#reviews,
#faq {
  scroll-margin-top: 90px;
}

.features {
  background: var(--forest);
  border-top: var(--border);
  border-bottom: var(--border);
}

.features__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 32px;
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  padding: 30px 0 20px;
}

.feature-mc {
  position: relative;
  width: 210px;
  border-radius: 26px;
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.feature-mc--coral { background: #f2673f; }
.feature-mc--lime { background: var(--lime); }
.feature-mc--gold { background: #f2c230; }
.feature-mc--sky { background: #5cb8d9; }
.feature-mc--lavender { background: #b69ae0; }

.feature-mc__blob {
  position: absolute;
  left: 50%;
  top: 78px;
  width: 150px;
  height: 128px;
  background: rgba(17, 17, 17, 0.32);
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  transform: translateX(-50%);
}

.feature-mc__img {
  position: relative;
  width: 158px;
  margin: 2px auto 12px;
  filter: drop-shadow(0 10px 12px rgba(17, 17, 17, 0.3));
}

.feature-mc__name {
  position: relative;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.05;
  color: var(--ink);
  text-transform: uppercase;
  margin: 0 0 10px;
}

.feature-mc__tag {
  position: relative;
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  background: var(--ink);
  color: var(--lime);
  padding: 4px 8px;
}

.feature-outro {
  padding: 10px 22px 0;
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 22px;
  color: var(--lime);
  text-align: right;
}

/* ---------- feed ---------- */

.feed {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 32px 56px;
}

.feed__subtitle {
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 600;
  color: #3a8a2c;
  margin: 4px 0 34px;
}

.feed__grid {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 26px;
}

.post {
  position: relative;
  background: var(--white);
  border: var(--border);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 24px 20px 20px;
}

.post__tape {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 84px;
  height: 22px;
  background: var(--lime);
  border: 2px solid var(--ink);
  transform: translateX(-50%) rotate(-2deg);
}

.post__label {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 600;
  color: #3a8a2c;
  margin-bottom: 6px;
}

.post__msg {
  font-weight: 700;
  margin-bottom: 4px;
}

.handle {
  background: var(--ink);
  color: var(--white);
  padding: 1px 7px;
  font-family: var(--font-display);
  font-size: 11px;
  margin-right: 6px;
}

.mention {
  color: #3a8a2c;
}

.post__reply {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 3px dashed var(--lime);
  display: flex;
  gap: 12px;
}

.post__reply-body {
  flex: 1;
}

.post__avatar {
  flex: none;
  width: 40px;
  height: 40px;
  object-fit: contain;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.post__author {
  font-family: var(--font-display);
  font-size: 13px;
}

.bot-tag {
  background: var(--lime);
  color: var(--ink);
  padding: 0 5px;
  font-size: 10px;
}

.post__text {
  margin-top: 5px;
  line-height: 1.65;
}

.post__text--verse {
  font-style: italic;
}

.post__generated-img {
  margin-top: 10px;
  border: 3px solid var(--ink);
  background: repeating-linear-gradient(45deg, var(--cream), var(--cream) 10px, var(--checker) 10px, var(--checker) 20px);
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  color: #888888;
  text-align: center;
}

/* ---------- testimonials ---------- */

.reviews {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 32px 60px;
}

.reviews__subtitle {
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 600;
  color: #3a8a2c;
  margin: 4px 0 0;
}

.review-spotlight {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 40px;
  margin-top: 54px;
}

.review-spotlight__cluster {
  position: relative;
  height: 306px;
}

.review-mini-mc {
  position: absolute;
  width: 150px;
  height: 174px;
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.review-mini-mc img {
  width: 120%;
  max-width: none;
  transform: translateY(8px);
}

.review-mini-mc--a {
  background: #f2c230;
  top: 0;
  left: 60px;
  transform: rotate(-10deg);
  z-index: 3;
}

.review-mini-mc--b {
  background: var(--lime);
  top: 68px;
  left: 0;
  transform: rotate(7deg);
  z-index: 2;
}

.review-mini-mc--c {
  background: #5cb8d9;
  top: 132px;
  left: 96px;
  transform: rotate(-5deg);
  z-index: 1;
}

.review-featured {
  position: relative;
  background: var(--lime);
  border: var(--border);
  box-shadow: 9px 9px 0 var(--ink);
  padding: 50px 46px 36px;
}

.review-featured__mark {
  position: absolute;
  top: -24px;
  left: 34px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--ink);
}

.review-featured__quote {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 28ch;
  margin: 16px 0 28px;
}

.review-featured__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-featured__avatar {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-featured__name {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink);
}

.review-featured__role {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 15px;
  color: #3a3320;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.review-card {
  position: relative;
  background: var(--white);
  border: var(--border);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 30px 20px 20px;
}

.review-card__mark {
  position: absolute;
  top: -8px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
  color: var(--lime);
  -webkit-text-stroke: 1.5px var(--ink);
}

.review-card__quote {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  margin: 8px 0 14px;
}

.review-card__author {
  font-size: 13px;
  color: #555555;
}

/* ---------- stats ---------- */

.stats {
  background: var(--forest);
  border-top: var(--border);
  border-bottom: var(--border);
}

.stats__grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 46px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats__value {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.stats__label {
  font-size: 14px;
  color: #cfcfcf;
  font-weight: 600;
}

/* ---------- faq ---------- */

.faq {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 32px 60px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.faq__item {
  background: var(--white);
  border: var(--border);
  padding: 0 22px;
  transition: border-color 0.15s ease;
}

.faq__item:hover {
  border-color: var(--lime);
}

.faq__question {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__icon {
  flex: none;
  width: 26px;
  height: 26px;
  border: 2px solid var(--ink);
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.faq__icon::before {
  width: 12px;
  height: 2px;
}

.faq__icon::after {
  width: 2px;
  height: 12px;
  transition: transform 0.2s ease;
}

.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq__answer {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.55;
  color: #333333;
}

/* ---------- footer cta ---------- */

.cta {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px 56px;
}

.cta__card {
  background: var(--lime);
  border: var(--border);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 54px 36px;
  text-align: center;
}

.cta__mascot {
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.cta__title {
  font-size: 52px;
  margin: 0 0 10px;
}

.cta__lede {
  font-size: 18px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 26px;
}

/* ---------- site footer ---------- */

.site-footer {
  background: var(--ink);
  border-top: var(--border);
}

.site-footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #a8a8a8;
}

/* ---------- motion ---------- */

@keyframes kdFloatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- scroll reveal ---------- */
/* Elements arrive like stickers being slapped onto the page: a rise/scale/tilt
   snap into place, staggered per group. Runs once per element (JS unobserves
   after the first reveal) and is fully neutralized under reduced-motion above. */

[data-reveal] {
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-reveal].in-view {
  opacity: 1;
}

[data-reveal="rise"] {
  transform: translateY(18px);
}

[data-reveal="rise"].in-view {
  transform: translateY(0);
}

[data-reveal="stamp"] {
  transform: translateY(14px) scale(0.94) rotate(var(--tilt, -2deg));
}

[data-reveal="stamp"].in-view {
  transform: translateY(var(--rest-y, 0)) scale(1) rotate(var(--rest-tilt, 0deg));
}

.post:nth-of-type(odd),
.review-card:nth-of-type(odd) {
  --tilt: -2deg;
}

.post:nth-of-type(even),
.review-card:nth-of-type(even) {
  --tilt: 2deg;
}

.hero__copy > [data-reveal]:nth-child(1) { transition-delay: 0ms; }
.hero__copy > [data-reveal]:nth-child(2) { transition-delay: 90ms; }
.hero__copy > [data-reveal]:nth-child(3) { transition-delay: 180ms; }
.hero__copy > [data-reveal]:nth-child(4) { transition-delay: 270ms; }

.feature-mc:nth-of-type(1) { transition-delay: 0ms; }
.feature-mc:nth-of-type(2) { transition-delay: 70ms; }
.feature-mc:nth-of-type(3) { transition-delay: 140ms; }
.feature-mc:nth-of-type(4) { transition-delay: 210ms; }
.feature-mc:nth-of-type(5) { transition-delay: 280ms; }

.post:nth-of-type(1) { transition-delay: 0ms; }
.post:nth-of-type(2) { transition-delay: 80ms; }
.post:nth-of-type(3) { transition-delay: 160ms; }
.post:nth-of-type(4) { transition-delay: 240ms; }
.post:nth-of-type(5) { transition-delay: 320ms; }
.post:nth-of-type(6) { transition-delay: 400ms; }

.review-card:nth-of-type(1) { transition-delay: 0ms; }
.review-card:nth-of-type(2) { transition-delay: 80ms; }
.review-card:nth-of-type(3) { transition-delay: 160ms; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 12px;
  }

  .hero__art {
    order: -1;
    min-height: 320px;
  }

  .hero__mascot {
    width: 300px;
  }

  .hero__title {
    font-size: 52px;
  }

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

  .review-spotlight {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .review-spotlight__cluster {
    height: 210px;
    max-width: 220px;
    margin: 0 auto;
    transform: scale(0.82);
    transform-origin: top center;
  }

  .review-featured {
    padding: 40px 28px 28px;
  }

  .review-featured__quote {
    font-size: 23px;
    max-width: none;
  }

  .review-grid,
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-outro {
    text-align: left;
  }

  .section-title {
    font-size: 32px;
  }

  .cta__card {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .nav__inner {
    padding: 18px 20px;
    flex-wrap: wrap;
    row-gap: 14px;
  }

  .nav__menu {
    gap: 18px;
  }

  .hero,
  .why,
  .features__inner,
  .feed,
  .reviews,
  .faq,
  .cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats__grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .review-grid,
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 42px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Pop-brutalist remix — louder, brighter, less templated
   ========================================================================== */

:root {
  --coral: #ff6b4a;
  --gold: #ffc928;
  --sky: #65c8e8;
  --lavender: #bca4ef;
  --paper-dark: #e9e0cb;
  --green-ink: #15331d;
  --border: 4px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
}

body {
  position: relative;
  overflow-x: hidden;
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 8% 18%, rgba(198, 242, 58, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 72%, rgba(242, 103, 63, 0.13) 0 1px, transparent 2px);
  background-size: 22px 22px, 29px 29px;
}

html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 90;
  padding: 10px 14px;
  border: 3px solid var(--ink);
  background: var(--lime);
  font-family: var(--font-display);
  font-size: 12px;
  text-decoration: none;
  transform: translateY(-170%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-kicker {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 2px solid var(--ink);
  background: var(--lime);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.section-kicker--dark {
  color: var(--lime);
  background: var(--ink);
}

.nav {
  top: 0;
  background: rgba(251, 246, 234, 0.94);
  border-bottom-width: 4px;
  backdrop-filter: blur(12px);
}

.nav__inner {
  min-height: 78px;
}

.nav__logo {
  width: 50px;
  height: 50px;
  border-width: 3px;
  border-radius: 13px;
  background: var(--lime);
  transform: rotate(-4deg);
  transition: transform 240ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav__brand:hover .nav__logo {
  transform: rotate(7deg) scale(1.06);
}

.nav__brand span {
  letter-spacing: -0.035em;
}

.nav__menu a {
  font-size: 12px;
  letter-spacing: 0.05em;
}

.nav__menu a.is-active {
  border-bottom-color: var(--lime);
}

.nav__cta {
  padding: 11px 17px;
  border-width: 3px;
  box-shadow: 5px 5px 0 var(--coral);
  white-space: nowrap;
}

.nav__cta:hover {
  box-shadow: 8px 8px 0 var(--coral);
}

.hero {
  isolation: isolate;
  min-height: min(820px, calc(100dvh - 80px));
  max-width: 1400px;
  margin: 28px auto 70px;
  padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 72px) 74px;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(20px, 5vw, 76px);
  border: var(--border);
  background: var(--cream);
  box-shadow: 14px 14px 0 var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: '';
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(17, 17, 17, 0.08) 50%, transparent 50.2%),
    linear-gradient(rgba(17, 17, 17, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 100% 42px;
}

.hero::after {
  position: absolute;
  right: -30px;
  bottom: -34px;
  z-index: -2;
  width: 50%;
  height: 86%;
  border: var(--border);
  content: '';
  background: var(--coral);
  transform: rotate(2.4deg);
}

.hero__copy {
  position: relative;
  z-index: 4;
  min-width: 0;
}

.tag-badge {
  margin-bottom: 18px;
  padding: 3px 10px;
  border-bottom: 4px solid var(--ink);
  color: var(--ink);
  background: var(--gold);
  font-size: 27px;
}

.hero__title {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(68px, 7.8vw, 116px);
  letter-spacing: -0.06em;
  line-height: 0.86;
  text-wrap: balance;
}

.mark {
  display: inline-block;
  padding: 3px 13px 8px;
  border: var(--border);
  background: var(--lime);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-1.5deg);
}

.hero__lede {
  max-width: 570px;
  margin-bottom: 34px;
  font-size: 18px;
  line-height: 1.65;
  text-wrap: pretty;
}

.pill {
  display: inline-block;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--sky);
  transform: rotate(-1deg);
}

.btn {
  min-height: 54px;
  border-width: 3px;
}

.btn:active,
.nav__cta:active {
  transform: translate(2px, 2px) scale(0.98);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn--primary {
  background: var(--lime);
  box-shadow: 7px 7px 0 var(--ink);
}

.script-link {
  color: var(--green-ink);
  font-size: 23px;
  text-decoration-thickness: 3px;
}

.hero__art {
  isolation: isolate;
  min-height: 620px;
}

.hero__art::before {
  position: absolute;
  inset: 10% 2% 4% 8%;
  z-index: -2;
  border: var(--border);
  content: '';
  background-color: var(--sky);
  background-image:
    linear-gradient(45deg, rgba(17,17,17,.12) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(17,17,17,.12) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(17,17,17,.12) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(17,17,17,.12) 75%);
  background-position: 0 0, 0 11px, 11px -11px, -11px 0;
  background-size: 22px 22px;
  clip-path: polygon(6% 0, 100% 5%, 94% 96%, 0 100%);
  transform: rotate(-2deg);
}

.hero__disc {
  z-index: -1;
  width: min(32vw, 450px);
  height: min(32vw, 450px);
  border-width: 4px;
  background: var(--gold);
  box-shadow: 9px 9px 0 var(--ink);
  transform: translate(8%, 3%);
}

.hero__mascot {
  width: min(48vw, 620px);
  max-width: none;
  filter: drop-shadow(14px 18px 0 rgba(17, 17, 17, 0.22));
}

.hero__stamp {
  position: absolute;
  top: 6%;
  left: 2%;
  z-index: 5;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border: 4px solid var(--ink);
  border-radius: 50%;
  color: var(--lime);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--lime);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1;
  text-align: center;
  transform: rotate(-10deg);
}

.hero__scribble {
  position: absolute;
  right: -2%;
  bottom: 4%;
  z-index: 5;
  padding: 5px 10px;
  border: 3px solid var(--ink);
  background: var(--white);
  font-family: 'Caveat', cursive;
  font-size: 22px;
  transform: rotate(-4deg);
}

.hero__scroll-hint {
  left: 24px;
  bottom: 18px;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.stats {
  margin-top: -1px;
  border-block-width: 4px;
  background: var(--ink);
}

.stats__grid {
  max-width: 1400px;
  padding: 0;
  gap: 0;
  text-align: left;
}

.stats__item {
  min-height: 145px;
  padding: 30px 26px;
  border-right: 3px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats__item:nth-child(1) { color: var(--ink); background: var(--lime); }
.stats__item:nth-child(2) { color: var(--ink); background: var(--gold); }
.stats__item:nth-child(3) { color: var(--ink); background: var(--sky); }
.stats__item:nth-child(4) { color: var(--ink); background: var(--coral); border-right: 0; }

.stats__value,
.stats__label {
  color: inherit;
}

.stats__value {
  font-size: clamp(24px, 2.6vw, 38px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.stats__label {
  margin-top: 10px;
  font-size: 12px;
}

.why {
  max-width: 1400px;
  margin: 72px auto;
  padding: clamp(62px, 8vw, 110px) clamp(28px, 6vw, 84px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px clamp(50px, 9vw, 140px);
  border: var(--border);
  background: var(--gold);
  box-shadow: 13px 13px 0 var(--ink);
  text-align: left;
  transform: rotate(-0.35deg);
}

.why .section-title {
  grid-row: 1 / 3;
  align-self: center;
  margin: 0;
  font-size: clamp(52px, 6.2vw, 88px);
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-align: left;
}

.why__body {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.75;
  text-wrap: pretty;
}

.why__chips {
  justify-content: flex-start;
  align-items: flex-start;
}

.why__chip {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--cream);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(var(--chip-tilt, -1deg));
}

.why__chip:nth-child(2) { --chip-tilt: 1deg; background: var(--lime); }
.why__chip:nth-child(3) { --chip-tilt: -0.5deg; background: var(--sky); }

.features {
  position: relative;
  overflow: hidden;
  padding-inline: clamp(16px, 4vw, 46px);
  border-block-width: 4px;
  background-color: var(--ink);
  background-image: radial-gradient(rgba(198, 242, 58, 0.2) 1px, transparent 1px);
  background-size: 18px 18px;
}

.features::before {
  position: absolute;
  top: -95px;
  right: -80px;
  width: 260px;
  height: 260px;
  border: 4px solid var(--lime);
  border-radius: 50%;
  content: '';
}

.features__inner {
  padding: clamp(76px, 9vw, 126px) 0 110px;
}

.features .section-title {
  max-width: 850px;
  font-size: clamp(58px, 7vw, 98px);
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.feature-cards {
  padding: 58px 0 32px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  gap: 28px;
}

.feature-mc {
  width: auto;
  min-height: 360px;
  padding: 26px 24px 28px;
  border: var(--border);
  border-radius: 2px;
  box-shadow: 9px 9px 0 var(--lime);
  --rest-y: 0px !important;
  transition: transform 260ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 220ms ease;
}

.feature-mc:hover {
  transform: translate(-4px, -7px) rotate(var(--rest-tilt, 0deg)) !important;
  box-shadow: 14px 16px 0 var(--lime);
}

.feature-mc:nth-child(1) { grid-column: span 5; min-height: 470px; }
.feature-mc:nth-child(2) { grid-column: span 4; margin-top: 58px; min-height: 412px; }
.feature-mc:nth-child(3) { grid-column: span 3; min-height: 330px; }
.feature-mc:nth-child(4) { grid-column: span 7; min-height: 350px; }
.feature-mc:nth-child(5) { grid-column: span 5; margin-top: 40px; min-height: 330px; }

.feature-mc--coral { background: var(--coral); }
.feature-mc--gold { background: var(--gold); }
.feature-mc--sky { background: var(--sky); }
.feature-mc--lavender { background: var(--lavender); }

.feature-mc__blob {
  top: 100px;
  width: 190px;
  height: 160px;
  border: 3px solid var(--ink);
  background: rgba(255, 255, 255, 0.28);
}

.feature-mc__img {
  width: min(86%, 230px);
  margin-bottom: 22px;
}

.feature-mc__name {
  margin-top: auto;
  font-size: clamp(21px, 2.3vw, 33px);
  letter-spacing: -0.035em;
}

.feature-mc__tag {
  max-width: 100%;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  overflow-wrap: anywhere;
}

.feature-mc:nth-child(3) .feature-mc__img,
.feature-mc:nth-child(3) .feature-mc__blob,
.feature-mc:nth-child(5) .feature-mc__img,
.feature-mc:nth-child(5) .feature-mc__blob {
  display: none;
}

.feature-mc:nth-child(3)::after,
.feature-mc:nth-child(5)::after {
  display: block;
  margin: auto;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  -webkit-text-stroke: 3px var(--ink);
  text-shadow: 6px 6px 0 var(--lime);
}

.feature-mc:nth-child(3)::after { content: '✦'; }
.feature-mc:nth-child(5)::after { content: '@?'; font-size: 70px; }

.feature-outro {
  padding-top: 24px;
  font-size: 27px;
}

.feed {
  padding: clamp(90px, 10vw, 140px) 32px 120px;
}

.feed .section-title,
.reviews .section-title,
.faq .section-title {
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.feed .section-title {
  max-width: 800px;
  text-align: left;
}

.feed__subtitle {
  margin: -12px 0 52px;
  color: var(--ink);
  font-size: 24px;
  text-align: left;
}

.feed__grid {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  gap: 38px 34px;
}

.post {
  padding: 30px 26px 26px;
  border-width: 4px;
  box-shadow: 9px 9px 0 var(--ink);
}

.post:nth-child(1) { grid-column: span 7; background: var(--white); }
.post:nth-child(2) { grid-column: span 5; margin-top: 64px; background: #fff4bf; }
.post:nth-child(3) { grid-column: span 5; background: #dff4fb; }
.post:nth-child(4) { grid-column: span 7; margin-top: -18px; background: #efffd1; }
.post:nth-child(5) { grid-column: span 7; background: #f4eafa; }
.post:nth-child(6) { grid-column: span 5; margin-top: 48px; background: #ffe7df; }

.post:nth-child(4) {
  min-height: 650px;
  overflow: hidden;
}

.post:nth-child(4)::after {
  position: absolute;
  right: -12px;
  bottom: -18px;
  color: var(--cobalt);
  content: 'LIVE\A CHECK';
  font-family: var(--font-display);
  font-size: clamp(78px, 9vw, 130px);
  letter-spacing: -0.07em;
  line-height: 0.72;
  white-space: pre;
  transform: rotate(-4deg);
}

.post:hover {
  box-shadow: 13px 13px 0 var(--ink);
  transform: translate(-3px, -4px) rotate(var(--rest-tilt, 0deg)) !important;
}

.post__tape {
  width: 100px;
  height: 25px;
  border-width: 3px;
  background: var(--gold);
}

.post:nth-child(3n) .post__tape { background: var(--coral); }
.post:nth-child(3n + 1) .post__tape { background: var(--lime); }

.post__label {
  color: var(--green-ink);
  font-size: 23px;
}

.post__msg {
  font-size: 15px;
  line-height: 1.6;
}

.post__reply {
  border-top-width: 4px;
}

.post__avatar {
  border-width: 3px;
  border-radius: 10px;
  background: var(--lime);
}

.post__generated-img {
  position: relative;
  height: 190px;
  overflow: hidden;
  border-width: 4px;
  color: transparent;
  background:
    radial-gradient(circle at 48% 42%, var(--gold) 0 17%, transparent 18%),
    radial-gradient(circle at 34% 55%, var(--coral) 0 20%, transparent 21%),
    radial-gradient(circle at 64% 58%, var(--sky) 0 23%, transparent 24%),
    repeating-linear-gradient(45deg, var(--cream) 0 12px, var(--checker) 12px 24px);
}

.post__generated-img::after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 4px 7px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  content: 'AI / VISUAL';
  font-family: var(--font-display);
  font-size: 9px;
}

.reviews {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: clamp(78px, 9vw, 120px) clamp(28px, 5vw, 70px);
  border: var(--border);
  background: var(--coral);
  box-shadow: 13px 13px 0 var(--ink);
}

.reviews .section-title {
  max-width: 1000px;
  text-align: left;
}

.reviews__subtitle {
  color: var(--ink);
  font-size: 23px;
  text-align: left;
}

.review-spotlight {
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
}

.review-mini-mc {
  border-width: 4px;
  border-radius: 3px;
}

.review-featured {
  border-width: 4px;
  background: var(--lime);
  box-shadow: 11px 11px 0 var(--ink);
  transform: rotate(0.7deg);
}

.review-featured__quote {
  font-size: clamp(28px, 3.5vw, 47px);
  letter-spacing: -0.035em;
}

.review-grid {
  grid-template-columns: 1.2fr 0.8fr 1.1fr;
  align-items: start;
  gap: 26px;
}

.review-card {
  min-height: 190px;
  border-width: 4px;
  box-shadow: 7px 7px 0 var(--ink);
}

.review-card:nth-child(2) {
  margin-top: 46px;
  background: var(--sky);
}

.review-card:nth-child(3) {
  background: var(--gold);
}

.review-card__quote {
  font-size: 17px;
}

.faq {
  max-width: 1280px;
  padding: 80px 32px 120px;
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 90px;
}

.faq .section-title {
  position: sticky;
  top: 130px;
  text-align: left;
}

.faq__list {
  margin-top: 0;
  gap: 0;
  border-top: var(--border);
  counter-reset: faq;
}

.faq__item {
  padding: 0;
  border: 0;
  border-bottom: var(--border);
  background: transparent;
  counter-increment: faq;
}

.faq__item:hover {
  background: var(--gold);
}

.faq__question {
  padding: 24px 8px;
  font-size: 17px;
}

.faq__question::before {
  flex: 0 0 36px;
  color: #77705f;
  content: '0' counter(faq);
  font-family: var(--font-body);
  font-size: 10px;
}

.faq__question .faq__icon {
  margin-left: auto;
}

.faq__answer {
  max-width: 650px;
  padding: 0 70px 25px 52px;
  font-size: 15px;
}

.cta {
  padding-bottom: 90px;
}

.cta__card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: 75px clamp(34px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-width: 4px;
  background-color: var(--lime);
  background-image: radial-gradient(
    circle,
    rgb(17 17 17 / 0.1) 1.5px,
    transparent 1.8px
  );
  background-size: 18px 18px;
  box-shadow: 14px 14px 0 var(--ink);
  text-align: left;
}

.cta__card::after {
  position: absolute;
  top: -30%;
  right: -7%;
  width: 48%;
  height: 155%;
  border-left: var(--border);
  content: '';
  background: var(--sky);
  transform: rotate(8deg);
}

.cta__mascot {
  position: absolute;
  right: 5%;
  bottom: -15%;
  z-index: 2;
  width: min(39vw, 470px);
  height: auto;
  margin: 0;
  filter: drop-shadow(10px 13px 0 rgba(17,17,17,.18));
}

.cta__title,
.cta__lede,
.cta .btn-row {
  position: relative;
  z-index: 3;
}

.cta__title {
  max-width: 650px;
  font-size: clamp(58px, 7vw, 95px);
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.cta__lede {
  margin-top: 10px;
}

.cta .btn-row {
  justify-content: flex-start;
}

.site-footer {
  border-top-width: 4px;
  background: var(--ink);
}

.site-footer__bottom {
  padding-block: 34px;
  color: var(--lime);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .hero {
    margin-inline: 20px;
  }

  .why,
  .reviews {
    margin-inline: 20px;
  }

  .feature-mc:nth-child(1) { grid-column: span 6; }
  .feature-mc:nth-child(2) { grid-column: span 6; }
  .feature-mc:nth-child(3) { grid-column: span 4; }
  .feature-mc:nth-child(4) { grid-column: span 8; }
  .feature-mc:nth-child(5) { grid-column: span 5; }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    padding-top: 60px;
  }

  .hero__art {
    order: initial;
    min-height: 500px;
  }

  .hero__mascot {
    width: min(78vw, 520px);
  }

  .hero__disc {
    width: min(60vw, 390px);
    height: min(60vw, 390px);
  }

  .hero::after {
    width: 76%;
    height: 50%;
  }

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

  .why .section-title {
    grid-row: auto;
  }

  .feature-mc:nth-child(n) {
    grid-column: span 6;
    margin-top: 0;
  }

  .feed__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .post:nth-child(n) {
    grid-column: span 1;
    margin-top: 0;
  }

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

  .review-card:nth-child(2) {
    margin-top: 0;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq .section-title {
    position: static;
  }
}

@media (max-width: 600px) {
  .nav__inner {
    min-height: auto;
    padding-block: 14px;
  }

  .nav__brand span {
    display: none;
  }

  .nav__menu {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .nav__cta {
    font-size: 10px;
  }

  .hero {
    margin: 16px 12px 48px;
    padding: 42px 20px 48px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .hero__title {
    font-size: clamp(52px, 16.5vw, 72px);
  }

  .hero__lede {
    font-size: 16px;
  }

  .hero__art {
    min-height: 390px;
  }

  .hero__art::before {
    inset: 12% 0 2%;
  }

  .hero__mascot {
    width: min(102vw, 440px);
  }

  .hero__stamp {
    top: 2%;
    left: -2%;
    width: 68px;
    height: 68px;
    font-size: 12px;
  }

  .hero__scribble {
    right: -2%;
    bottom: 0;
    font-size: 17px;
  }

  .hero__scroll-hint {
    display: none;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }

  .stats__item {
    min-height: 128px;
    padding: 22px 18px;
    border-bottom: 3px solid var(--ink);
  }

  .why,
  .reviews {
    margin: 45px 12px;
    padding: 55px 22px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .why .section-title {
    font-size: 49px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .feature-mc:nth-child(n) {
    grid-column: auto;
    min-height: 340px;
  }

  .feature-mc:nth-child(2),
  .feature-mc:nth-child(4) {
    margin-left: 10px;
  }

  .feature-mc:nth-child(3),
  .feature-mc:nth-child(5) {
    margin-right: 10px;
  }

  .feed {
    padding-top: 82px;
  }

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

  .post:nth-child(n) {
    grid-column: auto;
  }

  .post {
    padding-inline: 18px;
  }

  .reviews .section-title,
  .feed .section-title,
  .faq .section-title {
    font-size: 46px;
  }

  .review-spotlight {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .review-card {
    min-height: auto;
  }

  .faq {
    padding: 70px 20px 90px;
  }

  .faq__question {
    font-size: 14px;
  }

  .faq__answer {
    padding-left: 0;
  }

  .cta {
    padding: 0 12px 72px;
  }

  .cta__card {
    min-height: 600px;
    padding: 54px 22px 260px;
    justify-content: flex-start;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .cta__card::after {
    top: auto;
    right: -15%;
    bottom: -10%;
    width: 130%;
    height: 45%;
    border-top: var(--border);
    border-left: 0;
  }

  .cta__mascot {
    right: 50%;
    bottom: -8%;
    width: 330px;
    transform: translateX(50%);
  }

  .cta__title {
    font-size: 54px;
  }

  .cta .btn-row {
    width: 100%;
  }
}

/* The header begins borderless, then gains structure once content scrolls. */
.nav {
  border-bottom-color: transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.nav.is-scrolled {
  border-bottom-color: var(--ink);
  box-shadow: 0 2px 0 rgba(17, 17, 17, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .nav {
    transition: none;
  }
}

/* Final token lock for the original yellow hero concept. */
:root {
  --hero-stage: #f2d42f;
}

.nav.is-scrolled,
.hero {
  background-color: var(--hero-stage);
}

.hero__bubble .hero__title > span:last-child {
  color: var(--hero-stage);
}

.hero__bubble .pill {
  background-color: var(--hero-stage);
}

/* ---------- Hero mascot puppet v2 ---------- */

.hero-puppet {
  --look-x: 0;
  --look-y: 0;
  position: absolute;
  left: 2%;
  bottom: -5%;
  z-index: 2;
  width: clamp(500px, 50vw, 700px);
  aspect-ratio: 1;
  filter: drop-shadow(14px 16px 0 rgba(17, 17, 17, 0.28));
  pointer-events: none;
}

.hero-puppet__part {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.hero-puppet__body {
  left: 14%;
  bottom: -2%;
  z-index: 1;
  width: 68%;
}

.hero-puppet__arm {
  top: 38%;
  right: 13%;
  z-index: 0;
  width: 34%;
  transform: rotate(-7deg);
  transform-origin: 20% 79%;
}

.hero-puppet__head {
  top: 3%;
  left: 20.5%;
  z-index: 3;
  width: 56%;
  transform: translate3d(
      calc(var(--look-x) * 3px),
      calc(var(--look-y) * 2px),
      0
    )
    rotate(calc(var(--look-x) * 1.5deg));
  transform-origin: 50% 96%;
  will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-puppet {
    animation: heroPuppetEntrance 850ms 180ms cubic-bezier(.16, 1, .3, 1) both;
  }

  .hero-puppet__arm {
    animation: heroPuppetWave 1.55s 1s cubic-bezier(.45, 0, .25, 1) infinite;
    will-change: transform;
  }
}

@keyframes heroPuppetEntrance {
  0% { opacity: 0; transform: translate3d(-12%, 20%, 0) rotate(-8deg) scale(0.82); }
  70% { opacity: 1; transform: translate3d(1%, -1%, 0) rotate(2deg) scale(1.025); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
}

@keyframes heroPuppetWave {
  0%, 100% { transform: rotate(-7deg); }
  18% { transform: rotate(-1deg); }
  36% { transform: rotate(-11deg); }
  54% { transform: rotate(-2deg); }
  70% { transform: rotate(-9deg); }
}

@media (max-width: 900px) {
  .hero-puppet {
    left: -3%;
    bottom: -12%;
    width: min(105%, 560px);
  }
}

@media (max-width: 480px) {
  .hero-puppet {
    left: -14%;
    bottom: -15%;
    width: 119%;
  }
}

@media (hover: none), (pointer: coarse) {
  .hero-puppet__head {
    animation: heroPuppetIdleLook 5.8s 1.2s ease-in-out infinite;
  }
}

@keyframes heroPuppetIdleLook {
  0%, 18%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  34%, 48% { transform: translate3d(5px, 1px, 0) rotate(2.5deg); }
  66%, 80% { transform: translate3d(-4px, 2px, 0) rotate(-2deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-puppet,
  .hero-puppet__head,
  .hero-puppet__arm {
    animation: none !important;
    will-change: auto;
  }
}

/* Keep the original hero mascot static while motion direction is revisited. */
.hero__mascot {
  animation: none !important;
  will-change: auto;
}

/* ---------- Feature title lock + FAQ question board ---------- */

.features__header .accent-text {
  display: inline-block;
  white-space: nowrap;
}

.features__header {
  max-width: 1120px;
}

.faq__inner {
  display: block;
  max-width: 1320px;
  padding: clamp(78px, 9vw, 128px) 32px clamp(96px, 10vw, 144px);
}

.faq__header {
  position: relative;
  max-width: 920px;
  margin: 0 0 clamp(48px, 6vw, 76px);
  padding-right: clamp(80px, 13vw, 170px);
}

.faq .faq__header .section-title {
  position: static;
  margin: 0;
  font-size: clamp(68px, 9vw, 132px);
  letter-spacing: -0.065em;
  line-height: 0.82;
  text-align: left;
}

.faq__header::after {
  position: absolute;
  top: -18px;
  right: 8px;
  width: clamp(70px, 9vw, 120px);
  height: clamp(70px, 9vw, 120px);
  display: grid;
  place-items: center;
  border: 4px solid var(--ink);
  color: var(--cream);
  background: var(--cobalt);
  box-shadow: 8px 8px 0 var(--ink);
  content: '?';
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  transform: rotate(5deg);
}

.faq__lede {
  max-width: 42ch;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 750;
  line-height: 1.5;
}

.faq__list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  border: 0;
  counter-reset: none;
}

.faq__item {
  align-self: start;
  padding: 0;
  overflow: hidden;
  border: 4px solid var(--ink);
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.faq__item:nth-child(1) {
  grid-column: span 7;
  background: var(--gold);
}

.faq__item:nth-child(2) {
  grid-column: span 5;
  background: var(--coral);
}

.faq__item:nth-child(3) {
  grid-column: span 5;
  background: var(--sky);
}

.faq__item:nth-child(4) {
  grid-column: span 7;
  background: var(--lime);
}

.faq__item:nth-child(5) {
  grid-column: span 12;
  background: var(--cream);
}

.faq__item:hover {
  border-color: var(--ink);
  box-shadow: 11px 11px 0 var(--ink);
  transform: translate(-3px, -3px);
}

.faq__question {
  min-height: 142px;
  padding: clamp(24px, 3vw, 34px);
  align-items: flex-start;
  color: var(--ink);
  font-size: clamp(20px, 2.25vw, 31px);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.faq__question::before {
  display: none;
  content: none;
}

.faq__question:focus-visible {
  outline: 4px solid var(--cobalt);
  outline-offset: -8px;
}

.faq__question .faq__icon {
  width: 42px;
  height: 42px;
  margin: -4px 0 0 18px;
  border-width: 3px;
  background: var(--cream);
  box-shadow: 3px 3px 0 var(--ink);
}

.faq__icon::before {
  width: 16px;
  height: 3px;
}

.faq__icon::after {
  width: 3px;
  height: 16px;
}

.faq__item[open] .faq__question {
  min-height: 112px;
}

.faq__item[open] .faq__icon {
  background: var(--ink);
}

.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
  background: var(--cream);
}

.faq__answer {
  max-width: none;
  margin: 0 clamp(24px, 3vw, 34px);
  padding: 20px 0 28px;
  border-top: 3px dashed var(--ink);
  color: var(--ink);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .features .section-title {
    font-size: clamp(32px, 8.3vw, 46px);
  }

  .faq__inner {
    padding: 76px 18px 96px;
  }

  .faq__header {
    padding-right: 78px;
  }

  .faq .faq__header .section-title {
    font-size: clamp(58px, 18vw, 82px);
  }

  .faq__header::after {
    top: -10px;
    right: 4px;
    border-width: 3px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .faq__lede {
    margin-top: 22px;
  }

  .faq__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq__item:nth-child(n) {
    grid-column: 1;
  }

  .faq__question {
    min-height: 112px;
    padding: 22px 20px;
    font-size: clamp(19px, 6vw, 25px);
  }

  .faq__question .faq__icon {
    width: 36px;
    height: 36px;
    margin-left: 12px;
  }

  .faq__answer {
    margin-inline: 20px;
    padding: 18px 0 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq__item {
    transition: none;
  }
}

/* Keep the original FAQ structure; only the section field changes. */
.faq__inner {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: clamp(52px, 7vw, 90px);
  max-width: 1280px;
  padding: clamp(76px, 8vw, 112px) 32px 120px;
}

.faq .section-title {
  position: sticky;
  top: 130px;
  margin-bottom: 30px;
  font-size: 40px;
  letter-spacing: normal;
  line-height: normal;
  text-align: left;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  border-top: var(--border);
  counter-reset: faq;
}

.faq__item,
.faq__item:nth-child(n) {
  grid-column: auto;
  align-self: stretch;
  padding: 0;
  overflow: visible;
  border: 0;
  border-bottom: var(--border);
  background: transparent;
  box-shadow: none;
  counter-increment: faq;
  transform: none;
}

.faq__item:hover {
  border-color: var(--ink);
  background: var(--gold);
  box-shadow: none;
  transform: none;
}

.faq__question,
.faq__item[open] .faq__question {
  min-height: 0;
  padding: 24px 8px;
  align-items: center;
  color: var(--ink);
  font-size: 17px;
  letter-spacing: normal;
  line-height: normal;
}

.faq__question::before {
  flex: 0 0 36px;
  display: block;
  color: rgb(17 17 17 / 0.62);
  content: '0' counter(faq);
  font-family: var(--font-body);
  font-size: 10px;
}

.faq__question .faq__icon {
  width: 26px;
  height: 26px;
  margin: 0 0 0 auto;
  border-width: 2px;
  background: transparent;
  box-shadow: none;
}

.faq__icon::before {
  width: 12px;
  height: 2px;
}

.faq__icon::after {
  width: 2px;
  height: 12px;
}

.faq__item[open] .faq__icon {
  background: transparent;
}

.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
  background: var(--ink);
}

.faq__answer {
  max-width: 650px;
  margin: 0;
  padding: 0 70px 25px 52px;
  border-top: 0;
  color: #333333;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-inline: 24px;
  }

  .faq .section-title {
    position: static;
  }
}

@media (max-width: 600px) {
  .faq__inner {
    padding: 72px 16px 82px;
  }

  .faq .section-title {
    font-size: 46px;
  }

  .faq__question {
    font-size: 14px;
  }

  .faq__answer {
    padding-left: 0;
  }
}

/* CTA mascot scene: sofa gaming session */
.cta__card {
  min-height: 480px;
}

.cta__mascot {
  right: -1%;
  bottom: 0;
  width: min(52vw, 740px);
  max-width: none;
  filter: drop-shadow(10px 13px 0 rgb(17 17 17 / 0.18));
}

@media (max-width: 900px) {
  .cta__mascot {
    right: -5%;
    width: min(60vw, 650px);
  }
}

@media (max-width: 600px) {
  .cta__card {
    min-height: 720px;
    padding-bottom: 350px;
  }

  .cta__mascot {
    right: auto;
    left: 50%;
    bottom: 0;
    width: min(110vw, 480px);
    transform: translateX(-50%);
  }
}

/* ---------- Sticky-note chat archive ---------- */

.feed > .section-kicker,
.feed > .section-title,
.feed > .feed__subtitle,
.feed-archive {
  width: min(100%, 1200px);
  margin-inline: auto;
}

.feed > .section-kicker {
  display: table;
  margin-bottom: 14px;
  transform: rotate(-1.5deg);
}

.feed > .section-title {
  max-width: 900px;
  text-align: center;
}

.feed > .feed__subtitle {
  margin: 12px auto clamp(52px, 7vw, 82px);
  color: var(--ink);
  font-family: 'Caveat', cursive;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 700;
  text-align: center;
}

.feed-archive {
  display: grid;
  gap: clamp(64px, 8vw, 104px);
}

.feed-day {
  position: relative;
}

.feed-day__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 34px;
}

.feed-day__header::after {
  flex: 1;
  height: 4px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--ink) 0 20px, transparent 20px 29px);
}

.feed-day__header h3 {
  padding: 8px 12px 7px;
  border: 3px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--lime);
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 24px);
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.feed-day:nth-child(even) .feed-day__header h3 {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(1deg);
}

.feed-day:nth-child(3n) .feed-day__header h3 {
  background: var(--cobalt);
}

.feed-day__header span {
  flex: none;
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 800;
  transform: rotate(2deg);
}

.feed-day .feed__grid {
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 36px;
}

.feed-day .post {
  min-height: 0;
  padding: 31px 26px 26px;
  overflow: visible;
  background: var(--note-color, var(--white));
  transform: rotate(var(--rest-tilt, 0deg));
  transform-origin: 50% 8%;
}

.feed-day .post:first-child {
  grid-column: span 7;
}

.feed-day .post:last-child {
  grid-column: span 5;
  margin-top: 52px;
}

.feed-day:nth-child(even) .post:first-child {
  grid-column: span 5;
  margin-top: 42px;
}

.feed-day:nth-child(even) .post:last-child {
  grid-column: span 7;
  margin-top: 0;
}

.feed-day .post::after {
  display: none;
}

.feed-day .post__tape {
  width: 106px;
  height: 27px;
  opacity: 0.82;
  background: var(--lime);
  transform: translateX(-50%) rotate(-3deg);
}

.feed-day:nth-child(even) .post__tape {
  background: var(--coral);
  transform: translateX(-50%) rotate(2deg);
}

.feed-day:nth-child(3n) .post__tape {
  background: var(--gold);
}

.post__time {
  position: absolute;
  top: 11px;
  right: 13px;
  padding: 4px 6px 3px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: rgb(255 255 255 / 0.52);
  font-family: var(--font-display);
  font-size: 9px;
  line-height: 1;
  transform: rotate(2deg);
}

.feed-day .post__label {
  width: fit-content;
  margin-bottom: 10px;
  padding-right: 64px;
}

.feed-day .post:hover {
  z-index: 2;
  box-shadow: 13px 13px 0 var(--ink);
  transform: translate(-3px, -6px) rotate(calc(var(--rest-tilt, 0deg) * -0.35)) !important;
}

.feed-day .post__generated-figure {
  transform: rotate(-0.7deg);
}

.feed-day:nth-child(3n) .post:last-child .post__generated-figure {
  transform: rotate(0.8deg);
}

@media (max-width: 900px) {
  .feed-day .feed__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .feed-day .post:first-child,
  .feed-day .post:last-child,
  .feed-day:nth-child(even) .post:first-child,
  .feed-day:nth-child(even) .post:last-child {
    grid-column: span 1;
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .feed > .section-kicker {
    margin-inline: 0;
  }

  .feed > .section-title,
  .feed > .feed__subtitle {
    text-align: left;
  }

  .feed > .feed__subtitle {
    margin-left: 0;
  }

  .feed-archive {
    gap: 70px;
  }

  .feed-day__header {
    gap: 10px;
    margin-bottom: 30px;
  }

  .feed-day__header::after {
    height: 3px;
    background-size: auto;
  }

  .feed-day__header span {
    font-size: 17px;
  }

  .feed-day .feed__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .feed-day .post:first-child,
  .feed-day .post:last-child,
  .feed-day:nth-child(even) .post:first-child,
  .feed-day:nth-child(even) .post:last-child {
    grid-column: auto;
  }

  .feed-day .post {
    padding: 29px 18px 20px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .feed-day .post:nth-child(even) {
    margin-inline: 9px -4px;
  }

  .feed-day .post:nth-child(odd) {
    margin-inline: -3px 8px;
  }

  .feed-day .post:hover {
    box-shadow: 7px 7px 0 var(--ink);
    transform: rotate(var(--rest-tilt, 0deg)) !important;
  }

  .post__time {
    top: 10px;
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feed-day .post {
    transition: none;
  }
}

/* ---------- Conversation timeline ---------- */

.feed {
  padding-block: clamp(84px, 9vw, 128px);
}

.feed::before {
  display: none;
}

.feed__header {
  width: min(100%, 1200px);
  margin: 0 auto clamp(52px, 7vw, 82px);
}

.feed .feed__header .section-title {
  max-width: 850px;
  margin: 0;
  text-align: left;
}

.feed .feed__subtitle {
  max-width: 42ch;
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 800;
  line-height: 1.4;
  text-align: left;
}

.feed-timeline {
  position: relative;
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.feed-timeline::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 106px;
  width: 5px;
  content: "";
  background: var(--ink);
  box-shadow: 5px 0 0 var(--lime);
}

.timeline-event {
  --event-tone: var(--coral);
  --event-surface: #fff;
  --event-width: 80%;
  --event-offset: 0%;
  display: grid;
  grid-template-columns: 92px 28px minmax(0, 1fr);
  align-items: start;
  margin-bottom: clamp(34px, 4.5vw, 58px);
}

.timeline-event:last-child {
  margin-bottom: 0;
}

.timeline-event--pantun {
  --event-tone: var(--gold);
  --event-surface: #fff4bf;
  --event-width: 65%;
  --event-offset: 14%;
}

.timeline-event--media {
  --event-tone: var(--cobalt);
  --event-surface: #edf0ff;
  --event-width: 76%;
  --event-offset: 4%;
}

.timeline-event--current {
  --event-tone: var(--lime);
  --event-surface: #efffd1;
  --event-width: 70%;
  --event-offset: 18%;
}

.timeline-event--identify {
  --event-tone: var(--lavender);
  --event-surface: #f4eafa;
  --event-width: 62%;
  --event-offset: 7%;
}

.timeline-event--portrait {
  --event-tone: var(--coral);
  --event-surface: #ffe7df;
  --event-width: 78%;
  --event-offset: 12%;
}

.timeline-event__when {
  padding-top: 13px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.timeline-event__marker {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 21px;
  height: 21px;
  margin-top: 8px;
  border: 4px solid var(--ink);
  background: var(--event-tone);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(45deg);
}

.timeline-chat {
  width: var(--event-width);
  margin-left: var(--event-offset);
  overflow: hidden;
  border: 4px solid var(--ink);
  background: var(--event-surface);
  box-shadow: 9px 9px 0 var(--ink);
  transition:
    box-shadow 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-chat:hover {
  box-shadow: 13px 13px 0 var(--ink);
  transform: translate(-3px, -4px);
}

.timeline-chat__prompt {
  padding: 20px 22px 22px;
  color: var(--cream);
  background: var(--ink);
}

.timeline-chat__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 13px;
}

.timeline-chat__topic,
.timeline-chat__handle {
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.timeline-chat__topic {
  padding: 6px 8px;
  color: var(--ink);
  background: var(--event-tone);
  text-transform: uppercase;
}

.timeline-chat__handle {
  color: var(--lime);
}

.timeline-chat__prompt > p {
  max-width: 62ch;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 800;
  line-height: 1.45;
}

.timeline-chat__prompt strong {
  color: var(--lime);
}

.timeline-chat__reply {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 15px;
  padding: 23px 24px 25px;
}

.timeline-chat__avatar {
  width: 52px;
  height: 52px;
  border: 3px solid var(--ink);
  border-radius: 9px;
  background: var(--lime);
  object-fit: cover;
}

.timeline-chat__author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1;
}

.timeline-chat__author span {
  padding: 4px 6px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--font-body);
  font-size: 9px;
}

.timeline-chat__reply div > p:last-child {
  max-width: 60ch;
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 750;
  line-height: 1.5;
}

.timeline-chat__verse {
  font-style: italic;
}

.timeline-chat__media {
  width: min(100%, 560px);
  margin-top: 18px;
  overflow: hidden;
  border: 4px solid var(--ink);
  background: var(--cobalt);
  box-shadow: 5px 5px 0 var(--ink);
}

.timeline-chat__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-chat__media:hover img {
  transform: scale(1.045);
}

.timeline-chat__media figcaption {
  padding: 8px 10px;
  border-top: 3px solid var(--ink);
  color: var(--ink);
  background: var(--event-tone);
  font-size: 11px;
  font-weight: 900;
}

@media (max-width: 700px) {
  .feed {
    padding: 76px 16px 86px;
  }

  .feed__header {
    margin-bottom: 44px;
  }

  .feed .feed__header .section-title {
    font-size: clamp(52px, 15vw, 68px);
  }

  .feed .feed__subtitle {
    margin-top: 14px;
    font-size: 16px;
  }

  .feed-timeline::before {
    left: 9px;
    width: 4px;
    box-shadow: 4px 0 0 var(--lime);
  }

  .timeline-event {
    grid-template-columns: 28px minmax(0, 1fr);
    row-gap: 8px;
    margin-bottom: 38px;
  }

  .timeline-event__when {
    grid-column: 2;
    grid-row: 1;
    padding: 0;
    font-size: 11px;
    text-align: left;
  }

  .timeline-event__marker {
    grid-column: 1;
    grid-row: 2;
    width: 18px;
    height: 18px;
    margin-top: 17px;
    border-width: 3px;
    box-shadow: 2px 2px 0 var(--ink);
  }

  .timeline-chat {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    margin-left: 0;
    border-width: 3px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .timeline-chat:hover {
    box-shadow: 6px 6px 0 var(--ink);
    transform: none;
  }

  .timeline-chat__prompt {
    padding: 16px 16px 18px;
  }

  .timeline-chat__meta {
    align-items: flex-start;
    margin-bottom: 11px;
  }

  .timeline-chat__topic,
  .timeline-chat__handle {
    font-size: 10px;
  }

  .timeline-chat__prompt > p {
    font-size: 14px;
  }

  .timeline-chat__reply {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 16px 20px;
  }

  .timeline-chat__avatar {
    width: 42px;
    height: 42px;
  }

  .timeline-chat__author {
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
  }

  .timeline-chat__reply div > p:last-child {
    font-size: 14px;
  }

  .timeline-chat__media {
    margin-top: 14px;
    border-width: 3px;
    box-shadow: 4px 4px 0 var(--ink);
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-chat,
  .timeline-chat__media img {
    transition: none;
  }
}

/* ---------- Full-bleed image accordion ---------- */

.features__inner {
  padding-bottom: clamp(74px, 8vw, 108px);
}

.features__header {
  max-width: 880px;
  margin-bottom: clamp(40px, 5vw, 62px);
}

.features__lede {
  max-width: 46ch;
  margin-top: 20px;
  color: var(--cream);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.5;
}

.feature-rack {
  height: 650px;
  display: flex;
  overflow: hidden;
  border: 4px solid var(--cream);
  background: transparent;
}

.feature-panel {
  --panel-tone: var(--coral);
  min-width: 0;
  flex: 1 1 0;
  overflow: hidden;
  border-right: 4px solid var(--ink);
  background: transparent;
  transition: flex-grow 440ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-panel--ask { --panel-tone: var(--lime); }
.feature-panel--pantun { --panel-tone: var(--gold); }
.feature-panel--image { --panel-tone: var(--sky); }
.feature-panel--current { --panel-tone: var(--lavender); }

.feature-panel:last-child {
  border-right: 0;
}

.feature-panel.is-active {
  flex-grow: 3.6;
}

.feature-panel__toggle {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  display: block;
  overflow: hidden;
  border: 0;
  color: var(--cream);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.feature-panel__toggle:focus-visible {
  z-index: 2;
  outline: 4px solid var(--lime);
  outline-offset: -7px;
}

.feature-panel__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.feature-panel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms ease;
}

.feature-panel--ask .feature-panel__image { object-position: 50% 44%; }
.feature-panel--pantun .feature-panel__image { object-position: 50% 48%; }
.feature-panel--image .feature-panel__image { object-position: 50% 48%; }
.feature-panel--current .feature-panel__image { object-position: 54% 46%; }

.feature-panel__copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 78px 15px 18px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    color-mix(in srgb, var(--panel-tone) 18%, transparent) 28%,
    color-mix(in srgb, var(--panel-tone) 82%, transparent) 72%,
    var(--panel-tone) 100%
  );
  pointer-events: none;
  transition: padding 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-panel__title {
  display: block;
  max-width: 11ch;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.65vw, 25px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
  transition:
    font-size 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-panel__details {
  margin-top: 10px;
  max-width: 34ch;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition:
    max-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-panel__description {
  display: block;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-size: clamp(10px, 0.86vw, 12px);
  font-weight: 900;
  line-height: 1.32;
}

.feature-panel.is-active .feature-panel__copy {
  padding: 148px 28px 25px;
}

.feature-panel.is-active .feature-panel__title {
  max-width: none;
  font-size: clamp(36px, 3.3vw, 52px);
}

.feature-panel.is-active .feature-panel__details {
  max-width: 38ch;
  max-height: 5em;
  opacity: 1;
  transform: translateY(0);
}

.feature-panel.is-active .feature-panel__description {
  font-size: clamp(13px, 1.05vw, 15px);
}

.feature-panel.is-active .feature-panel__image {
  filter: saturate(1.1) contrast(1.06);
  transform: scale(1.045);
}

.feature-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 22px;
  margin-top: 20px;
}

.feature-pagination__dot {
  --dot-tone: var(--coral);
  position: relative;
  width: 14px;
  height: 14px;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--cream);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    width 260ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease;
}

.feature-pagination__dot--ask { --dot-tone: var(--lime); }
.feature-pagination__dot--pantun { --dot-tone: var(--gold); }
.feature-pagination__dot--image { --dot-tone: var(--sky); }
.feature-pagination__dot--current { --dot-tone: var(--lavender); }

.feature-pagination__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dot-tone);
  transform: scaleX(0);
  transform-origin: left;
}

.feature-pagination__dot.is-active {
  width: 44px;
}

.feature-pagination__dot.is-active::after {
  animation: feature-dot-progress 3s linear forwards;
}

.feature-pagination.is-paused .feature-pagination__dot.is-active::after {
  animation-play-state: paused;
}

.feature-pagination__dot:hover,
.feature-pagination__dot:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

@keyframes feature-dot-progress {
  to { transform: scaleX(1); }
}

.feature-outro {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .features {
    padding-inline: 18px;
  }

  .feature-rack {
    height: 600px;
  }

  .feature-panel.is-active {
    flex-grow: 4.4;
  }

  .feature-panel__copy {
    padding-inline: 11px;
  }

  .feature-panel__title {
    font-size: 16px;
  }
}

@media (max-width: 700px) {
  .features__inner {
    padding-bottom: 76px;
  }

  .features__header {
    margin-bottom: 38px;
  }

  .feature-rack {
    position: relative;
    height: clamp(430px, 132vw, 520px);
    display: block;
    border-width: 3px;
  }

  .feature-panel,
  .feature-panel.is-active {
    position: absolute;
    inset: 0;
    min-height: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8%);
    transition:
      opacity 300ms ease,
      transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .feature-panel.is-active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .feature-panel__copy,
  .feature-panel.is-active .feature-panel__copy {
    padding-inline: 18px;
    padding-bottom: 17px;
  }

  .feature-panel__copy {
    padding-top: 58px;
  }

  .feature-panel.is-active .feature-panel__copy {
    padding-top: 112px;
  }

  .feature-panel__title,
  .feature-panel.is-active .feature-panel__title {
    max-width: none;
    font-size: clamp(34px, 10vw, 44px);
  }

  .feature-panel__description,
  .feature-panel.is-active .feature-panel__description {
    font-size: 11px;
  }

  .feature-panel__details,
  .feature-panel.is-active .feature-panel__details {
    max-width: 31ch;
  }

  .feature-outro {
    margin-top: 30px;
  }

  .feature-pagination {
    margin-top: 18px;
  }
}

@media (max-width: 480px) {
  .features {
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-panel,
  .feature-panel__copy,
  .feature-panel__title,
  .feature-panel__details,
  .feature-panel__image {
    transition: none !important;
  }

  .feature-pagination__dot {
    transition: none !important;
  }

  .feature-pagination__dot.is-active::after {
    animation: none;
    transform: scaleX(1);
  }
}
/* ---------- Why / full-width patterned field ---------- */

.why-section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 92px) clamp(16px, 4vw, 46px);
  border-block: 4px solid var(--ink);
  background-color: var(--sky);
  background-image: repeating-conic-gradient(
    from 45deg,
    rgba(255, 244, 210, 0.2) 0 25%,
    transparent 0 50%
  );
  background-size: 68px 68px;
  scroll-margin-top: 90px;
}

body .why {
  position: relative;
  width: min(100%, 1400px);
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) clamp(26px, 6vw, 82px);
  padding-bottom: 0;
  overflow: hidden;
  border: var(--border);
  box-shadow: 13px 13px 0 var(--ink);
}

.why .section-title,
.why__body {
  position: relative;
  z-index: 2;
}

.why__lamp {
  position: absolute;
  top: -4px;
  z-index: 3;
  width: 112px;
  height: 118px;
  pointer-events: none;
}

.why__lamp--1 { left: 4%; }
.why__lamp--2 { left: 18%; }
.why__lamp--3 { left: 32%; }

.why__lamp::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 5px;
  height: 54px;
  border-inline: 2px solid var(--ink);
  background: var(--cream);
  content: '';
  transform: translateX(-50%);
}

.why__lamp::after {
  position: absolute;
  top: 77px;
  left: 50%;
  width: 120px;
  height: 70px;
  background: linear-gradient(to bottom, rgb(255 244 210 / 0.55), transparent);
  clip-path: polygon(31% 0, 69% 0, 100% 100%, 0 100%);
  content: '';
  transform: translateX(-50%);
}

.why__lamp-shade {
  position: absolute;
  top: 48px;
  left: 50%;
  z-index: 2;
  width: 94px;
  height: 42px;
  border: 4px solid var(--ink);
  border-radius: 50% 50% 9px 9px;
  background: var(--coral);
  box-shadow: 5px 5px 0 var(--ink);
  transform: translateX(-50%) rotate(-2deg);
}

.why__lamp--2 .why__lamp-shade {
  background: var(--cobalt);
  transform: translateX(-50%) rotate(2deg);
}

.why__lamp--3 .why__lamp-shade {
  background: var(--lime);
  transform: translateX(-50%) rotate(-1deg);
}

.why__lamp-bulb {
  position: absolute;
  top: 76px;
  left: 50%;
  z-index: 3;
  width: 25px;
  height: 25px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #fff7b2;
  box-shadow:
    0 0 0 7px rgb(255 244 210 / 0.3),
    0 8px 25px 12px rgb(255 244 170 / 0.42);
  transform: translateX(-50%);
}

.why__body {
  grid-column: 2;
  grid-row: 1;
  padding-bottom: 0;
}

.why__peek {
  position: relative;
  right: calc(-1 * clamp(26px, 6vw, 82px));
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
  z-index: 1;
  width: clamp(250px, 28vw, 390px);
  height: auto;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.why__peek img {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(18px);
}

@media (max-width: 900px) {
  .why-section {
    padding: 48px 18px 58px;
  }

  .why {
    padding: 48px 28px;
    padding-bottom: 0;
  }

  .why__peek,
  .why__body {
    grid-column: 1;
    grid-row: auto;
  }

  .why__peek {
    right: -28px;
    width: 330px;
  }

  .why__peek img {
    transform: translateY(14px);
  }

  .why__lamp {
    transform: scale(0.86);
    transform-origin: top left;
  }

  .why__lamp--1 { left: 3%; }
  .why__lamp--2 { left: 20%; }
  .why__lamp--3 { left: 37%; }
}

@media (max-width: 480px) {
  .why-section {
    padding: 36px 16px 46px;
  }

  .why {
    padding: 42px 22px;
    padding-bottom: 0;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .why__peek {
    right: -8px;
    width: 270px;
  }

  .why__peek img {
    transform: translateY(13px);
  }

  .why .section-title {
    padding-top: 52px;
  }

  .why__lamp {
    transform: scale(0.62);
  }

  .why__lamp--1 { left: 3%; }
  .why__lamp--2 { left: 34%; }
  .why__lamp--3 { left: 65%; }
}

/* ---------- Hero / yellow speech stage ---------- */

:root {
  --hero-stage: #f2d42f;
  --hero-cream: #fff4d2;
}

body {
  background-color: var(--hero-stage);
}

.nav {
  color: var(--hero-cream);
}

.nav.is-scrolled {
  background-color: var(--hero-stage);
}

.nav__cta {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--coral);
}

.nav__menu a:hover,
.nav__menu a:focus-visible,
.nav__menu a.is-active {
  border-bottom-color: var(--lime);
}

.hero {
  min-height: min(760px, 100dvh);
  color: var(--hero-cream);
  background-color: var(--hero-stage);
  background-image:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.075) 0 2px, transparent 2px 18px),
    linear-gradient(90deg, transparent 0 52%, rgba(17, 17, 17, 0.08) 52% 100%);
  background-size: auto, 100% 100%;
}

.hero__canvas {
  width: min(100%, 1400px);
  min-height: min(760px, 100dvh);
  padding-top: 73px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  overflow: hidden;
}

.hero__stage {
  isolation: isolate;
  position: relative;
  z-index: 2;
  grid-column: 1 / 8;
  grid-row: 1;
  align-self: stretch;
  min-height: 620px;
  pointer-events: auto;
}

.hero__shout {
  position: absolute;
  top: 10%;
  left: 1%;
  z-index: -2;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(180px, 20vw, 300px);
  line-height: 0.75;
  letter-spacing: -0.1em;
  -webkit-text-stroke: 5px var(--hero-cream);
  opacity: 0.42;
  transform: rotate(-8deg);
}

.hero__mascot {
  position: absolute;
  left: 4%;
  bottom: -6%;
  z-index: 2;
  width: clamp(500px, 50vw, 700px);
  max-width: none;
  margin: 0;
  filter: drop-shadow(14px 16px 0 rgba(17, 17, 17, 0.28));
  transform-origin: 48% 100%;
  pointer-events: none;
}

.hero__ping {
  position: absolute;
  z-index: 4;
  color: var(--lime);
  font-size: 70px;
  line-height: 1;
  pointer-events: none;
}

.hero__ping--one {
  top: 13%;
  right: 12%;
  transform: rotate(12deg);
}

.hero__ping--two {
  right: 2%;
  bottom: 14%;
  color: var(--coral);
  font-size: 52px;
  transform: rotate(-9deg);
}

.hero__bubble {
  position: relative;
  z-index: 5;
  grid-column: 7 / -1;
  grid-row: 1;
  width: calc(100% - clamp(28px, 5vw, 70px));
  max-width: 610px;
  margin: 0 clamp(28px, 5vw, 70px) 0 auto;
  padding: clamp(30px, 4vw, 52px);
  border: 4px solid var(--ink);
  color: var(--ink);
  background: var(--hero-cream);
  box-shadow: 14px 14px 0 var(--coral);
  transform: rotate(1.2deg);
}

.hero__bubble::before {
  content: '';
  position: absolute;
  left: -59px;
  bottom: 80px;
  width: 0;
  height: 0;
  border-top: 39px solid transparent;
  border-right: 60px solid var(--ink);
  border-bottom: 12px solid transparent;
}

.hero__bubble::after {
  content: '';
  position: absolute;
  left: -49px;
  bottom: 88px;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-right: 51px solid var(--hero-cream);
  border-bottom: 8px solid transparent;
}

.hero__bubble .tag-badge {
  margin: 0 0 22px;
  padding: 4px 12px 6px;
  border: 0;
  color: var(--lime);
  background: var(--ink);
  box-shadow: none;
  font-size: clamp(21px, 2vw, 28px);
  transform: rotate(-2deg);
}

.hero__bubble .hero__title {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(58px, 6.1vw, 88px);
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.hero__bubble .hero__title > span,
.hero__bubble .hero__title > span:first-child,
.hero__bubble .hero__title > span:last-child {
  display: block;
  width: auto;
  max-width: none;
  margin: 0;
  font-size: 1em;
  letter-spacing: inherit;
  white-space: nowrap;
  transform: none;
}

.hero__bubble .hero__title > span:last-child {
  color: var(--hero-stage);
}

.hero__bubble .hero__lede {
  max-width: 460px;
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.45;
}

.hero__bubble .pill {
  color: var(--hero-cream);
  background: var(--hero-stage);
}

.hero__bubble .btn-row {
  margin: 0;
  gap: 22px;
}

.hero__bubble .btn--primary {
  color: var(--lime);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--hero-stage);
}

.hero__bubble .btn--primary:hover {
  box-shadow: 8px 8px 0 var(--hero-stage);
}

.hero__bubble .script-link {
  color: var(--ink);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__bubble {
    animation: speechStageLand 780ms 90ms cubic-bezier(.16, 1, .3, 1) both;
    will-change: transform;
  }

  .hero__mascot {
    animation:
      speechMascotPop 900ms 220ms cubic-bezier(.16, 1, .3, 1) both,
      speechMascotReact 4.6s 1.2s cubic-bezier(.45, 0, .55, 1) infinite;
    will-change: transform;
  }

  .hero__shout {
    animation: speechShoutAnswer 4.6s 1.2s steps(2, end) infinite;
  }

  .hero__ping--one { animation: speechPing 2.8s 0.5s steps(2, end) infinite; }
  .hero__ping--two { animation: speechPing 2.8s 1.4s steps(2, end) infinite; }
}

@keyframes speechStageLand {
  0% { opacity: 0; transform: translate3d(70px, 0, 0) rotate(5deg) scale(0.92); }
  72% { opacity: 1; transform: translate3d(-5px, 0, 0) rotate(0.2deg) scale(1.015); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(1.2deg) scale(1); }
}

@keyframes speechMascotPop {
  0% { opacity: 0; transform: translate3d(-18%, 28%, 0) rotate(-12deg) scale(0.72); }
  68% { opacity: 1; transform: translate3d(2%, -2%, 0) rotate(3deg) scale(1.045); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
}

@keyframes speechMascotReact {
  0%, 100% { transform: translate3d(var(--mascot-x), var(--mascot-y), 0) rotate(0); }
  48% { transform: translate3d(var(--mascot-x), calc(var(--mascot-y) - 10px), 0) rotate(1.5deg); }
  58% { transform: translate3d(var(--mascot-x), calc(var(--mascot-y) - 8px), 0) rotate(-0.8deg); }
}

@keyframes speechShoutAnswer {
  0%, 44%, 58%, 100% { opacity: 0.42; transform: rotate(-8deg) scale(1); }
  48%, 54% { opacity: 0.62; transform: rotate(-5deg) scale(1.035); }
}

@keyframes speechPing {
  0%, 100% { opacity: 0.25; transform: rotate(12deg) scale(0.75); }
  50% { opacity: 1; transform: rotate(-8deg) scale(1.12); }
}

@media (max-width: 900px) {
  .hero,
  .hero__canvas {
    min-height: auto;
  }

  .hero__canvas {
    padding-top: 73px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 370px;
    align-items: stretch;
  }

  .hero__bubble {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    max-width: none;
    margin: 34px 30px 0;
    padding: 32px;
  }

  .hero__bubble::before {
    left: 46px;
    bottom: -51px;
    border-top: 52px solid var(--ink);
    border-right: 12px solid transparent;
    border-bottom: 0;
    border-left: 36px solid transparent;
  }

  .hero__bubble::after {
    left: 51px;
    bottom: -40px;
    border-top: 43px solid var(--hero-cream);
    border-right: 9px solid transparent;
    border-bottom: 0;
    border-left: 29px solid transparent;
  }

  .hero__bubble .hero__title {
    font-size: clamp(54px, 12vw, 76px);
  }

  .hero__stage {
    grid-column: 1;
    grid-row: 2;
    min-height: 370px;
  }

  .hero__mascot {
    left: -3%;
    bottom: -12%;
    width: min(105%, 560px);
  }

  .hero__shout {
    top: 17%;
    left: auto;
    right: -2%;
    font-size: clamp(150px, 34vw, 230px);
  }

  .hero__ping--one {
    top: 14%;
    right: 8%;
  }
}

@media (max-width: 480px) {
  .hero__canvas {
    padding-top: 112px;
    grid-template-rows: auto 325px;
  }

  .hero__bubble {
    margin: 18px 18px 0;
    padding: 24px 20px 27px;
    box-shadow: 9px 9px 0 var(--coral);
    transform: none;
  }

  .hero__bubble .tag-badge {
    margin-bottom: 17px;
    font-size: 20px;
  }

  .hero__bubble .hero__title {
    margin-bottom: 18px;
    font-size: clamp(48px, 14vw, 60px);
  }

  .hero__bubble .hero__lede {
    margin-bottom: 22px;
    font-size: 15.5px;
  }

  .hero__bubble .btn-row {
    gap: 16px;
  }

  .hero__bubble .btn--primary {
    width: 100%;
    justify-content: center;
  }

  .hero__bubble .script-link {
    width: 100%;
    text-align: center;
  }

  .hero__stage {
    min-height: 325px;
  }

  .hero__mascot {
    left: -14%;
    bottom: -15%;
    width: 119%;
  }

  .hero__shout {
    top: 26%;
    right: -8%;
    font-size: 154px;
  }

  .hero__ping {
    font-size: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bubble,
  .hero__mascot,
  .hero__shout,
  .hero__ping {
    animation: none !important;
    will-change: auto;
  }
}

/* ---------- Primary-color canvas + kinetic layer ---------- */

:root {
  --cream: #ffffff;
  --white: #ffffff;
  --checker: #dfe5ff;
  --cobalt: #2448ff;
  --paper-dark: #ececec;
}

body {
  background-color: #ffffff;
  background-image:
    radial-gradient(circle, rgba(17, 17, 17, 0.15) 1px, transparent 1.5px),
    linear-gradient(90deg, transparent 0 97%, rgba(36, 72, 255, 0.08) 97% 100%);
  background-size: 24px 24px, 100% 100%;
}

.nav,
.hero,
.feed,
.faq {
  background-color: #ffffff;
}

.hero {
  --mascot-x: 0px;
  --mascot-y: 0px;
}

.hero::before {
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(36, 72, 255, 0.18) 50%, transparent 50.2%),
    linear-gradient(rgba(17, 17, 17, 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 100% 42px;
}

.hero__art::before {
  background-color: var(--cobalt);
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.18) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.18) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,.18) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.18) 75%);
}

.hero__disc {
  background: conic-gradient(from 0deg, var(--gold) 0 25%, var(--lime) 25% 50%, var(--gold) 50% 75%, var(--lime) 75% 100%);
  animation: discTurn 18s linear infinite;
}

.hero__mascot {
  animation: mascotKinetic 4.2s ease-in-out infinite;
  will-change: transform;
}

.hero__stamp {
  animation: stampWobble 2.6s steps(2, end) infinite;
}

.hero__scribble {
  animation: scribbleNudge 1.8s ease-in-out infinite;
}

.mark {
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hero__title:hover .mark {
  color: var(--white);
  background: var(--cobalt);
  transform: rotate(1.5deg) translateY(-3px);
}

.stats__item {
  background-image: linear-gradient(90deg, transparent 0 94%, rgba(17,17,17,.08) 94% 100%);
  background-size: 22px 100%;
}

.stats__item:nth-child(3) {
  color: var(--white);
  background-color: var(--cobalt);
}

.feed {
  position: relative;
  max-width: none;
  padding-inline: max(32px, calc((100vw - 1400px) / 2 + 32px));
  overflow: hidden;
}

.feed::before {
  position: absolute;
  top: 12%;
  right: -70px;
  z-index: -1;
  width: 220px;
  height: 58%;
  border: 4px solid var(--ink);
  content: '';
  background: var(--cobalt);
  transform: rotate(5deg);
}

.post {
  transition: transform 260ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 220ms ease, background-color 220ms ease;
}

.post__generated-figure {
  position: relative;
  margin-top: 12px;
  overflow: hidden;
  border: 4px solid var(--ink);
  background: var(--cobalt);
  box-shadow: 5px 5px 0 var(--ink);
}

.post__generated-img {
  width: 100%;
  height: clamp(220px, 28vw, 340px);
  margin: 0;
  border: 0;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.01);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.post__generated-figure:hover .post__generated-img {
  filter: saturate(1.22) contrast(1.08);
  transform: scale(1.075) rotate(0.5deg);
}

.post__generated-figure figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 8px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  box-shadow: 2px 2px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.03em;
}

.feature-mc__img {
  animation: featureBob 4s ease-in-out infinite;
}

.feature-mc:nth-child(2) .feature-mc__img { animation-delay: -1.1s; }
.feature-mc:nth-child(4) .feature-mc__img { animation-delay: -2.2s; }

.review-mini-mc--a {
  animation: miniCardA 4.6s ease-in-out infinite;
}

.review-mini-mc--b {
  animation: miniCardB 5.2s ease-in-out infinite;
}

.review-mini-mc--c {
  animation: miniCardC 4.1s ease-in-out infinite;
}

.cta__card::before {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 4;
  padding: 5px 9px;
  border: 3px solid var(--ink);
  content: 'LIVE / 24 JAM';
  background: var(--gold);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 9px;
  animation: liveBlink 1.2s steps(1, end) infinite;
}

@keyframes discTurn {
  to { transform: translate(8%, 3%) rotate(360deg); }
}

@keyframes mascotKinetic {
  0%, 100% { transform: translate3d(var(--mascot-x), var(--mascot-y), 0) rotate(-1deg); }
  50% { transform: translate3d(var(--mascot-x), calc(var(--mascot-y) - 13px), 0) rotate(1deg); }
}

@keyframes stampWobble {
  0%, 100% { transform: rotate(-10deg) scale(1); }
  50% { transform: rotate(-4deg) scale(1.04); }
}

@keyframes scribbleNudge {
  0%, 100% { transform: rotate(-4deg) translateX(0); }
  50% { transform: rotate(-2deg) translateX(-6px); }
}

@keyframes featureBob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-9px) rotate(1deg); }
}

@keyframes miniCardA {
  0%, 100% { transform: rotate(-10deg) translateY(0); }
  50% { transform: rotate(-7deg) translateY(-10px); }
}

@keyframes miniCardB {
  0%, 100% { transform: rotate(7deg) translate(0, 0); }
  50% { transform: rotate(10deg) translate(-5px, 6px); }
}

@keyframes miniCardC {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(8px); }
}

@keyframes liveBlink {
  0%, 49% { color: var(--ink); background: var(--gold); }
  50%, 100% { color: var(--white); background: var(--cobalt); }
}

@media (max-width: 600px) {
  .feed {
    padding-inline: 20px;
  }

  .post__generated-img {
    height: 270px;
  }

  .post:nth-child(4) {
    min-height: 0;
  }

  .post:nth-child(4)::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__disc,
  .hero__mascot,
  .hero__stamp,
  .hero__scribble,
  .feature-mc__img,
  .review-mini-mc,
  .cta__card::before {
    animation: none !important;
  }
}

/* ---------- Section-specific print patterns ---------- */

:root {
  --hero-paper: #fff4d2;
}

body {
  background: var(--checker);
}

.nav {
  background-color: var(--hero-paper);
}

.nav-sentinel {
  position: absolute;
  top: 12px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.hero {
  background-color: var(--hero-paper);
  background-image:
    linear-gradient(rgba(36, 72, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 72, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, transparent 49.8%, rgba(36, 72, 255, 0.25) 50%, transparent 50.2%);
  background-size: 42px 42px, 42px 42px, 100% 100%;
}

.hero::before {
  display: none;
}

.stats {
  background-color: var(--lavender);
  background-image: repeating-linear-gradient(135deg, rgba(17,17,17,.1) 0 7px, transparent 7px 20px);
}

.stats__item:nth-child(1) {
  background-image: repeating-linear-gradient(90deg, transparent 0 24px, rgba(17,17,17,.12) 24px 27px);
}

.stats__item:nth-child(2) {
  background-image: repeating-linear-gradient(135deg, transparent 0 18px, rgba(17,17,17,.1) 18px 21px);
}

.stats__item:nth-child(3) {
  background-image: radial-gradient(rgba(255,255,255,.3) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
}

.stats__item:nth-child(4) {
  background-image:
    linear-gradient(45deg, transparent 46%, rgba(17,17,17,.11) 47% 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgba(17,17,17,.11) 47% 53%, transparent 54%);
  background-size: 26px 26px;
}

.why {
  background-color: var(--gold);
  background-image:
    repeating-linear-gradient(-45deg, transparent 0 20px, rgba(17,17,17,.08) 20px 23px),
    radial-gradient(circle at 88% 20%, var(--coral) 0 56px, transparent 58px),
    radial-gradient(circle at 8% 84%, var(--cobalt) 0 24px, transparent 26px);
}

.features {
  background-color: var(--ink);
  background-image:
    radial-gradient(rgba(198, 242, 58, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, transparent 0 96%, rgba(255,255,255,.045) 96% 100%);
  background-size: 18px 18px, 120px 100%;
}

.feed {
  isolation: isolate;
  background-color: var(--sky);
  background-image:
    linear-gradient(rgba(17,17,17,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,.11) 1px, transparent 1px),
    radial-gradient(circle at 92% 8%, rgba(255, 107, 74, .48) 0 90px, transparent 92px);
  background-size: 52px 52px, 52px 52px, 100% 100%;
}

.feed::before {
  z-index: 0;
  background-color: var(--cobalt);
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.2) 0 3px, transparent 3px 15px);
}

.feed > * {
  position: relative;
  z-index: 1;
}

.reviews {
  background-color: var(--coral);
  background-image:
    radial-gradient(rgba(17,17,17,.24) 1.5px, transparent 1.5px),
    radial-gradient(circle at 88% 12%, var(--gold) 0 48px, transparent 50px);
  background-size: 15px 15px, 100% 100%;
}

.faq {
  background-color: #e9f8bb;
  background-image:
    linear-gradient(45deg, rgba(36,72,255,.07) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(36,72,255,.07) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(36,72,255,.07) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(36,72,255,.07) 75%);
  background-position: 0 0, 0 18px, 18px -18px, -18px 0;
  background-size: 36px 36px;
  border-inline: var(--border);
}

.cta {
  max-width: none;
  padding: 90px clamp(16px, 4vw, 46px);
  background-color: var(--cobalt);
  background-image:
    linear-gradient(rgba(255,255,255,.16) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,.16) 2px, transparent 2px),
    radial-gradient(circle at 92% 12%, var(--gold) 0 42px, transparent 44px);
  background-size: 62px 62px, 62px 62px, 100% 100%;
  border-top: var(--border);
}

.cta__card {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}

@media (max-width: 900px) {
  .cta {
    padding-inline: 18px;
  }
}

@media (max-width: 600px) {
  .hero {
    background-size: 34px 34px, 34px 34px, 100% 100%;
  }

  .faq {
    border-inline: 0;
  }

  .cta {
    padding: 62px 18px 72px;
  }
}

@media (max-width: 480px) {
  .cta {
    padding-inline: 16px;
  }
}

/* ---------- Hero / Swiss poster composition ---------- */

.hero {
  min-height: min(720px, calc(100dvh - 112px));
  margin: 18px auto 72px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto minmax(350px, 1fr) auto;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: var(--border);
  box-shadow: 14px 14px 0 var(--ink);
}

.hero::after {
  display: none;
}

.hero__utility {
  position: relative;
  z-index: 8;
  grid-column: 1 / -1;
  grid-row: 1;
  min-height: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  color: var(--hero-paper);
  background: var(--ink);
  border-bottom: var(--border);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__utility > span {
  height: 100%;
  padding-inline: 16px;
  display: flex;
  align-items: center;
  border-right: 2px solid var(--hero-paper);
}

.hero__utility > span:last-child {
  justify-content: flex-end;
  border-right: 0;
}

.hero__status {
  gap: 8px;
}

.hero__status i {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 2px rgba(198, 242, 58, 0.25);
  animation: livePulse 1.2s steps(2, end) infinite;
}

.hero__headline {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: center;
  min-width: 0;
  padding: clamp(34px, 5vw, 72px) clamp(24px, 4vw, 58px) 28px;
}

.hero .tag-badge {
  margin: 0 0 20px 6px;
  padding: 2px 12px 4px;
  border: 3px solid var(--ink);
  background: var(--gold);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: clamp(22px, 2.2vw, 31px);
  transform: rotate(-2deg);
}

.hero__title {
  max-width: none;
  margin: 0;
  font-size: clamp(72px, 8.2vw, 122px);
  line-height: 0.78;
  letter-spacing: -0.075em;
  text-wrap: initial;
}

.hero__title > span:first-child,
.hero__title-row {
  display: block;
}

.hero__title-row {
  margin-left: clamp(18px, 4.8vw, 74px);
  white-space: normal;
}

.hero .mark {
  display: table;
  margin-top: 0.04em;
  margin-left: 0.58em;
  padding: 0.01em 0.09em 0.07em;
  border-width: 0.035em;
  box-shadow: 0.06em 0.06em 0 var(--ink);
  transform: rotate(-1deg) translateY(-0.01em);
}

.hero__art {
  isolation: isolate;
  position: relative;
  z-index: 5;
  grid-column: 8 / -1;
  grid-row: 2 / 4;
  min-height: 0;
  display: grid;
  place-items: end center;
  overflow: visible;
  pointer-events: none;
}

.hero__art::before {
  inset: 7% -3% 0 12%;
  z-index: -3;
  border: 0;
  border-left: var(--border);
  background-color: var(--cobalt);
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.16) 0 2px, transparent 2px 14px);
  clip-path: none;
  transform: none;
}

.hero__serial {
  position: absolute;
  top: 12%;
  right: 4%;
  z-index: -2;
  color: rgba(255,255,255,.22);
  font-family: var(--font-display);
  font-size: clamp(74px, 8vw, 118px);
  letter-spacing: -0.08em;
  line-height: 0.76;
  text-align: right;
}

.hero__disc {
  right: 2%;
  bottom: 8%;
  z-index: -1;
  width: clamp(270px, 30vw, 430px);
  height: clamp(270px, 30vw, 430px);
  box-shadow: 8px 8px 0 var(--ink);
  transform: none;
}

.hero__mascot {
  align-self: end;
  width: clamp(410px, 45vw, 610px);
  max-width: none;
  margin-right: -4%;
  margin-bottom: -4%;
  filter: drop-shadow(11px 13px 0 rgba(17, 17, 17, 0.24));
}

.hero__stamp {
  top: 12%;
  left: 0;
  width: 82px;
  height: 82px;
  font-size: 14px;
}

.hero__scribble {
  right: 7%;
  bottom: 7%;
  font-size: 20px;
}

.hero__footer {
  position: relative;
  z-index: 7;
  grid-column: 1 / 9;
  grid-row: 3;
  padding: 16px clamp(24px, 3vw, 44px) 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.6fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: end;
  border-top: var(--border);
  border-right: var(--border);
  background: var(--hero-paper);
}

.hero__lede {
  max-width: 590px;
  margin: 0;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.48;
}

.hero__footer .btn-row {
  margin: 0;
  display: grid;
  gap: 15px;
  justify-items: stretch;
}

.hero__footer .btn,
.hero__footer .script-link {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.hero__footer .script-link {
  font-size: 19px;
}

@keyframes livePulse {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.3; }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    margin: 18px 14px 56px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 420px auto;
    box-shadow: 9px 9px 0 var(--ink);
  }

  .hero__utility,
  .hero__headline,
  .hero__art,
  .hero__footer {
    grid-column: 1;
  }

  .hero__utility {
    grid-row: 1;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__utility > span {
    min-height: 34px;
    border-bottom: 2px solid var(--hero-paper);
  }

  .hero__utility > span:nth-child(2) {
    border-right: 0;
  }

  .hero__utility > span:nth-child(n + 3) {
    border-bottom: 0;
  }

  .hero__headline {
    grid-row: 2;
    padding: 36px 20px 12px;
  }

  .hero .tag-badge {
    margin-bottom: 22px;
  }

  .hero__title {
    font-size: clamp(62px, 18vw, 92px);
    line-height: 0.82;
  }

  .hero__title-row {
    margin-left: 0;
  }

  .hero .mark {
    margin-left: 0.42em;
  }

  .hero__art {
    grid-row: 3;
  }

  .hero__art::before {
    inset: 8% -12% 0 16%;
  }

  .hero__serial {
    top: 13%;
    right: 5%;
  }

  .hero__mascot {
    width: min(125%, 500px);
    margin-right: -15%;
    margin-bottom: -7%;
  }

  .hero__disc {
    right: 3%;
    bottom: 8%;
    width: 300px;
    height: 300px;
  }

  .hero__stamp {
    top: 11%;
    left: 6%;
  }

  .hero__scribble {
    right: 5%;
    bottom: 5%;
  }

  .hero__footer {
    grid-row: 4;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px 32px;
    border-right: 0;
  }
}

@media (max-width: 480px) {
  .hero {
    grid-template-rows: auto auto 390px auto;
  }

  .hero__utility {
    font-size: 8px;
    letter-spacing: 0.07em;
  }

  .hero__utility > span {
    padding-inline: 10px;
  }

  .hero__headline {
    padding-top: 30px;
  }

  .hero__title {
    font-size: clamp(58px, 17.5vw, 76px);
  }

  .hero .tag-badge {
    font-size: 23px;
  }

  .hero__stamp {
    width: 72px;
    height: 72px;
    font-size: 12px;
  }

  .hero__scribble {
    font-size: 17px;
  }
}

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

/* ---------- Hero / cut-paper collage ---------- */

.nav {
  background-color: var(--hero-paper);
}

.nav__inner {
  min-height: 70px;
  padding-block: 10px;
}

.hero {
  width: 100%;
  max-width: none;
  min-height: min(720px, calc(100dvh - 70px));
  margin: 0;
  padding: 0;
  display: block;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background-color: var(--hero-paper);
  background-image:
    radial-gradient(rgba(17,17,17,.11) 1px, transparent 1px),
    linear-gradient(90deg, transparent 0 74%, rgba(255,107,74,.1) 74% 100%);
  background-size: 24px 24px, 100% 100%;
}

.hero::before,
.hero::after {
  display: none;
}

.hero__canvas {
  position: relative;
  isolation: isolate;
  width: min(100%, 1400px);
  min-height: min(720px, calc(100dvh - 70px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 5;
  grid-column: 1 / 8;
  grid-row: 1;
  padding: clamp(42px, 6vw, 76px) 0 clamp(44px, 6vw, 72px) clamp(28px, 5vw, 70px);
}

.hero .tag-badge {
  margin: 0 0 24px 8px;
  padding: 3px 13px 5px;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--gold);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: clamp(22px, 2.1vw, 30px);
  transform: rotate(-3deg);
}

.hero__title {
  max-width: none;
  margin: 0 0 27px;
  font-size: clamp(82px, 9vw, 132px);
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-wrap: initial;
}

.hero__title > span {
  display: block;
  width: max-content;
  max-width: 100%;
}

.hero__title > span:first-child {
  font-size: 0.7em;
  letter-spacing: -0.065em;
  transform: translateX(0.08em);
}

.hero .mark {
  display: inline-block;
  margin: 0;
  padding: 0.01em 0.11em 0.08em;
  border: 0.035em solid var(--ink);
  background: var(--lime);
  box-shadow: 0.065em 0.065em 0 var(--ink);
  transform: rotate(-1.3deg);
}

.hero__lede {
  max-width: 470px;
  margin: 0 0 28px;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.48;
  text-wrap: pretty;
}

.hero__copy .btn-row {
  margin: 0;
  gap: 24px;
}

.hero__copy .script-link {
  color: var(--ink);
}

.hero__art {
  isolation: isolate;
  position: relative;
  z-index: 3;
  grid-column: 7 / -1;
  grid-row: 1;
  align-self: stretch;
  min-height: 0;
  display: grid;
  place-items: end center;
  overflow: visible;
  pointer-events: none;
}

.hero__art::before {
  display: none;
}

.hero__shape {
  position: absolute;
  right: -8%;
  bottom: 8%;
  z-index: -3;
  width: 92%;
  height: 73%;
  border: var(--border);
  background: var(--coral);
  box-shadow: 11px 11px 0 var(--ink);
  clip-path: polygon(11% 0, 100% 8%, 92% 100%, 0 91%);
  transform: rotate(2deg);
}

.hero__disc {
  position: absolute;
  right: 4%;
  bottom: 13%;
  z-index: -2;
  width: clamp(320px, 31vw, 450px);
  height: clamp(320px, 31vw, 450px);
  border: var(--border);
  border-radius: 50%;
  background: var(--cobalt);
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.18) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.18) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,.18) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.18) 75%);
  background-position: 0 0, 0 13px, 13px -13px, -13px 0;
  background-size: 26px 26px;
  box-shadow: none;
  transform: none;
}

.hero__mascot {
  align-self: end;
  width: clamp(480px, 47vw, 650px);
  max-width: none;
  margin: 0 -6% -5% 0;
  filter: drop-shadow(12px 14px 0 rgba(17,17,17,.2));
}

.hero__burst {
  position: absolute;
  top: 9%;
  right: 42%;
  z-index: 6;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: var(--border);
  color: var(--gold);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--lime);
  font-size: 42px;
  line-height: 1;
  transform: rotate(9deg);
  animation: burstTilt 3.4s steps(2, end) infinite;
}

.hero__scribble-line {
  position: absolute;
  left: 48%;
  bottom: 11%;
  z-index: 4;
  width: 150px;
  height: 28px;
  border-top: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
  transform: rotate(-8deg) skewX(-18deg);
}

@keyframes burstTilt {
  0%, 100% { transform: rotate(9deg) scale(1); }
  50% { transform: rotate(-4deg) scale(1.05); }
}

@media (max-width: 900px) {
  .nav__inner {
    min-height: auto;
  }

  .hero,
  .hero__canvas {
    min-height: auto;
  }

  .hero__canvas {
    grid-template-columns: 1fr;
    grid-template-rows: auto 410px;
  }

  .hero__copy,
  .hero__art {
    grid-column: 1;
  }

  .hero__copy {
    grid-row: 1;
    padding: 40px 20px 12px;
  }

  .hero__title {
    font-size: clamp(72px, 20vw, 102px);
  }

  .hero__title > span:first-child {
    font-size: 0.58em;
  }

  .hero__lede {
    max-width: 530px;
  }

  .hero__art {
    grid-row: 2;
  }

  .hero__shape {
    right: -12%;
    bottom: 7%;
    width: 84%;
    height: 82%;
  }

  .hero__disc {
    right: -4%;
    bottom: 8%;
    width: 330px;
    height: 330px;
  }

  .hero__mascot {
    width: min(126%, 520px);
    margin-right: -18%;
    margin-bottom: -9%;
  }

  .hero__burst {
    top: auto;
    right: auto;
    bottom: 345px;
    left: 5%;
    width: 66px;
    height: 66px;
    font-size: 35px;
  }

  .hero__scribble-line {
    left: 7%;
    bottom: 5%;
    width: 110px;
  }
}

@media (max-width: 480px) {
  .hero__copy {
    padding-top: 34px;
  }

  .hero .tag-badge {
    margin-bottom: 22px;
    font-size: 22px;
  }

  .hero__title {
    margin-bottom: 25px;
    font-size: clamp(68px, 19vw, 82px);
  }

  .hero__lede {
    font-size: 16px;
  }

  .hero__copy .btn-row {
    gap: 18px;
  }
}

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

/* ---------- Hero motion study ---------- */

@media (prefers-reduced-motion: no-preference) {
  .hero__mascot {
    animation: collageMascotFloat 4.8s cubic-bezier(.45, 0, .55, 1) infinite;
    will-change: transform;
  }

  .hero__disc {
    animation: collageDiscTurn 22s linear infinite;
    will-change: transform;
  }

  .hero__shape {
    animation: collagePaperShift 7s cubic-bezier(.45, 0, .55, 1) infinite;
    transform-origin: 60% 80%;
    will-change: transform;
  }

  .hero__scribble-line {
    animation: collageUnderline 2.8s steps(2, end) infinite;
  }

  .hero .tag-badge {
    animation: collageTagSway 5.6s cubic-bezier(.45, 0, .55, 1) infinite;
    transform-origin: 20% 100%;
  }
}

@keyframes collageMascotFloat {
  0%, 100% {
    transform: translate3d(var(--mascot-x), var(--mascot-y), 0) rotate(-0.7deg) scale(1);
  }
  48% {
    transform: translate3d(var(--mascot-x), calc(var(--mascot-y) - 13px), 0) rotate(0.8deg) scale(1.012);
  }
  56% {
    transform: translate3d(var(--mascot-x), calc(var(--mascot-y) - 11px), 0) rotate(0.35deg) scale(1.008);
  }
}

@keyframes collageDiscTurn {
  to { transform: rotate(360deg); }
}

@keyframes collagePaperShift {
  0%, 100% { transform: rotate(2deg) translate3d(0, 0, 0); }
  50% { transform: rotate(-0.7deg) translate3d(-4px, -5px, 0); }
}

@keyframes collageUnderline {
  0%, 100% { transform: rotate(-8deg) skewX(-18deg) translateX(0); opacity: 1; }
  50% { transform: rotate(-5deg) skewX(-18deg) translateX(7px); opacity: 0.68; }
}

@keyframes collageTagSway {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__mascot,
  .hero__disc,
  .hero__shape,
  .hero__burst,
  .hero__scribble-line,
  .hero .tag-badge {
    animation: none !important;
    will-change: auto;
  }
}

/* ---------- Hero / mamak comic collision ---------- */

:root {
  --hero-stage: #f2d42f;
}

.nav,
.hero {
  background-color: var(--hero-stage);
}

.hero {
  min-height: min(720px, calc(100dvh - 70px));
  background-image:
    radial-gradient(circle, rgba(17, 17, 17, 0.2) 1.3px, transparent 1.5px),
    linear-gradient(118deg, transparent 0 63%, rgba(255, 255, 255, 0.24) 63% 100%);
  background-size: 17px 17px, 100% 100%;
}

.hero__canvas {
  min-height: min(720px, calc(100dvh - 70px));
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.hero__copy {
  grid-column: 1 / 7;
  padding: clamp(42px, 5vw, 68px) 0 clamp(42px, 5vw, 68px) clamp(28px, 5vw, 70px);
}

.hero .tag-badge {
  margin: 0 0 20px 5px;
  color: var(--hero-stage);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--cobalt);
  transform: rotate(-2deg);
}

.hero__title {
  margin-bottom: 23px;
  font-size: clamp(82px, 8.5vw, 126px);
  line-height: 0.78;
}

.hero__title > span,
.hero__title > span:first-child {
  width: max-content;
  max-width: 100%;
  transform: none;
}

.hero__title > span:first-child {
  font-size: 0.56em;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.hero__title > span:last-child {
  margin-left: clamp(12px, 2vw, 30px);
}

.hero .mark {
  padding: 0 0.08em 0.06em;
  border: 0;
  color: var(--hero-stage);
  background: var(--cobalt);
  box-shadow: 0.055em 0.055em 0 var(--ink);
  transform: rotate(-1.5deg);
}

.hero__lede {
  max-width: 510px;
  margin-bottom: 27px;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.45;
}

.hero .pill {
  color: var(--white);
  background: var(--cobalt);
}

.hero__copy .btn--primary {
  color: var(--hero-stage);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--cobalt);
}

.hero__copy .btn--primary:hover {
  box-shadow: 8px 8px 0 var(--cobalt);
}

.hero__scene {
  isolation: isolate;
  position: relative;
  z-index: 3;
  grid-column: 6 / -1;
  grid-row: 1;
  align-self: stretch;
  min-height: 610px;
  pointer-events: auto;
}

.hero__scene::before {
  content: '?';
  position: absolute;
  top: 1%;
  right: 1%;
  z-index: -3;
  color: rgba(17, 17, 17, 0.13);
  font-family: var(--font-display);
  font-size: clamp(250px, 31vw, 470px);
  line-height: 0.8;
  transform: rotate(7deg);
}

.hero__photo {
  position: absolute;
  top: 13%;
  right: 5%;
  z-index: -2;
  width: 72%;
  height: 68%;
  margin: 0;
  overflow: hidden;
  border: 4px solid var(--ink);
  background: var(--ink);
  box-shadow: 14px 14px 0 var(--cobalt);
  transform: rotate(3deg);
  transition: transform 340ms cubic-bezier(.16, 1, .3, 1), box-shadow 340ms cubic-bezier(.16, 1, .3, 1);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08);
}

.hero__scene:hover .hero__photo {
  box-shadow: 19px 19px 0 var(--coral);
  transform: rotate(0.5deg) scale(1.025);
}

.hero__mascot {
  position: absolute;
  right: -1%;
  bottom: -5%;
  z-index: 3;
  width: clamp(420px, 43vw, 610px);
  max-width: none;
  margin: 0;
  filter: drop-shadow(12px 14px 0 rgba(17, 17, 17, 0.25));
  transform-origin: 55% 100%;
  pointer-events: none;
}

.hero__speech {
  position: absolute;
  top: 7%;
  left: 1%;
  z-index: 6;
  width: clamp(168px, 17vw, 238px);
  min-height: 76px;
  border: 4px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-5deg);
}

.hero__speech::after {
  content: '';
  position: absolute;
  right: 20px;
  bottom: -21px;
  width: 25px;
  height: 25px;
  border-right: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--white);
  transform: skew(23deg) rotate(28deg);
}

.hero__speech span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 11px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 27px);
  line-height: 1;
  text-align: center;
  opacity: 0;
}

.hero__sound {
  position: absolute;
  right: 0;
  bottom: 12%;
  z-index: 5;
  color: var(--coral);
  font-family: var(--font-display);
  font-size: clamp(52px, 6.4vw, 92px);
  line-height: 0.8;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 3px var(--ink);
  paint-order: stroke fill;
  text-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-9deg);
  pointer-events: none;
}

.hero__spark {
  position: absolute;
  z-index: 7;
  color: var(--ink);
  font-size: 52px;
  line-height: 1;
  pointer-events: none;
}

.hero__spark--one {
  top: 12%;
  left: 45.5%;
  transform: rotate(13deg);
}

.hero__spark--two {
  right: 2%;
  bottom: 6%;
  color: var(--cobalt);
  font-size: 74px;
  transform: rotate(-12deg);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__photo {
    animation: comicPhotoFlash 850ms 120ms cubic-bezier(.16, 1, .3, 1) both;
  }

  .hero__mascot {
    animation:
      comicMascotEntrance 850ms 180ms cubic-bezier(.16, 1, .3, 1) both,
      comicMascotListen 3.8s 1.1s cubic-bezier(.45, 0, .55, 1) infinite;
    will-change: transform;
  }

  .hero__speech span {
    animation: comicSpeechSwap 6s steps(1, end) infinite;
  }

  .hero__speech span:nth-child(2) { animation-delay: 2s; }
  .hero__speech span:nth-child(3) { animation-delay: 4s; }

  .hero__sound {
    animation: comicWordHit 3.8s 1.1s cubic-bezier(.45, 0, .55, 1) infinite;
  }

  .hero__spark--one { animation: comicSpark 2.4s 0.4s steps(2, end) infinite; }
  .hero__spark--two { animation: comicSpark 2.4s 1.2s steps(2, end) infinite; }
}

@keyframes comicPhotoFlash {
  0% { opacity: 0; transform: rotate(8deg) scale(0.88); filter: brightness(2.2); }
  56% { opacity: 1; filter: brightness(1.45); }
  100% { opacity: 1; transform: rotate(3deg) scale(1); filter: brightness(1); }
}

@keyframes comicMascotEntrance {
  0% { opacity: 0; transform: translate3d(28%, 35%, 0) rotate(13deg) scale(0.64); }
  72% { opacity: 1; transform: translate3d(-2%, -2%, 0) rotate(-3deg) scale(1.04); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
}

@keyframes comicMascotListen {
  0%, 100% { transform: translate3d(var(--mascot-x), var(--mascot-y), 0) rotate(0); }
  48% { transform: translate3d(var(--mascot-x), calc(var(--mascot-y) - 9px), 0) rotate(-1.8deg); }
  58% { transform: translate3d(var(--mascot-x), calc(var(--mascot-y) - 7px), 0) rotate(1deg); }
}

@keyframes comicSpeechSwap {
  0%, 32% { opacity: 1; transform: translateY(0) rotate(0); }
  33%, 100% { opacity: 0; transform: translateY(8px) rotate(2deg); }
}

@keyframes comicWordHit {
  0%, 100% { transform: rotate(-9deg) scale(1); }
  50% { transform: rotate(-5deg) scale(1.055); }
}

@keyframes comicSpark {
  0%, 100% { opacity: 0.35; transform: rotate(12deg) scale(0.8); }
  50% { opacity: 1; transform: rotate(-8deg) scale(1.12); }
}

@media (max-width: 900px) {
  .hero,
  .hero__canvas {
    min-height: auto;
  }

  .hero__canvas {
    grid-template-columns: 1fr;
    grid-template-rows: auto 360px;
  }

  .hero__copy {
    grid-column: 1;
    grid-row: 1;
    padding: 32px 20px 6px;
  }

  .hero .tag-badge {
    margin-bottom: 17px;
    font-size: 21px;
  }

  .hero__title {
    margin-bottom: 20px;
    font-size: clamp(60px, 17vw, 82px);
  }

  .hero__title > span:last-child {
    margin-left: 9px;
  }

  .hero__title > span:first-child {
    font-size: 0.56em;
  }

  .hero__lede {
    max-width: 560px;
    margin-bottom: 23px;
  }

  .hero__scene {
    grid-column: 1;
    grid-row: 2;
    min-height: 360px;
  }

  .hero__photo {
    top: 9%;
    right: -4%;
    width: 72%;
    height: 76%;
    box-shadow: 10px 10px 0 var(--cobalt);
  }

  .hero__mascot {
    right: -9%;
    bottom: -11%;
    width: min(109%, 520px);
  }

  .hero__speech {
    top: 5%;
    left: 5%;
    width: 158px;
    min-height: 68px;
  }

  .hero__sound {
    right: 1%;
    bottom: 13%;
    font-size: clamp(52px, 16vw, 74px);
  }

  .hero__spark--one {
    top: auto;
    bottom: 315px;
    left: auto;
    right: 3%;
    font-size: 44px;
  }

  .hero__spark--two {
    right: auto;
    bottom: 3%;
    left: 3%;
    font-size: 56px;
  }
}

@media (max-width: 480px) {
  .hero__canvas {
    grid-template-rows: auto 335px;
  }

  .hero__copy {
    padding-top: 27px;
  }

  .hero__title {
    font-size: clamp(57px, 16.5vw, 70px);
  }

  .hero__lede {
    font-size: 15.5px;
  }

  .hero__copy .btn-row {
    gap: 16px;
  }

  .hero__copy .btn--primary {
    width: 100%;
    justify-content: center;
  }

  .hero__scene {
    min-height: 335px;
  }

  .hero__speech {
    width: 142px;
  }

  .hero__speech span {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__photo,
  .hero__mascot,
  .hero__speech span,
  .hero__sound,
  .hero__spark {
    animation: none !important;
    will-change: auto;
  }

  .hero__speech span:first-child {
    opacity: 1;
  }
}

/* Navbar disappears into the hero, then becomes solid after scrolling. */
body {
  background-color: var(--hero-stage);
}

.nav {
  position: fixed;
  right: 0;
  left: 0;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hero,
.hero__canvas {
  min-height: min(720px, 100dvh);
}

.hero__canvas {
  padding-top: 73px;
}

.nav.is-scrolled {
  background-color: var(--hero-stage);
}

@media (max-width: 900px) {
  .hero__canvas {
    padding-top: 73px;
  }
}

@media (max-width: 480px) {
  .hero__canvas {
    padding-top: 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav {
    transition: none;
  }
}

/* ---------- Clean sticky-note board ---------- */

.feed {
  max-width: none;
  margin: 0;
  padding: 0 clamp(16px, 4vw, 46px);
}

.feed__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(76px, 9vw, 126px) 0 110px;
}

.feed__header,
.feed-board {
  width: 100%;
  margin-inline: auto;
}

.feed__header {
  margin-bottom: clamp(40px, 5vw, 62px);
}

.feed .feed__header .section-title {
  max-width: 850px;
  margin: 0;
  font-size: clamp(58px, 7vw, 98px);
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-align: left;
}

.feed .feed__header .feed__subtitle {
  max-width: 46ch;
  margin: 20px 0 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 650;
  line-height: 1.5;
  text-align: left;
}

.feed__accent {
  color: var(--cobalt);
}

.feed-board {
  position: relative;
  padding: clamp(42px, 5vw, 68px);
  border: 5px solid var(--ink);
  background:
    linear-gradient(rgb(17 17 17 / 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgb(17 17 17 / 0.055) 1px, transparent 1px),
    #e5c983;
  background-size: 32px 32px;
  box-shadow: 12px 12px 0 var(--ink);
}

.feed-board::before {
  position: absolute;
  inset: 13px;
  border: 2px dashed rgb(17 17 17 / 0.34);
  content: '';
  pointer-events: none;
}

.feed-board .feed__grid--board {
  width: 100%;
  max-width: 1064px;
  margin-inline: auto;
  display: block;
  columns: 2;
  column-gap: 34px;
}

.feed-board .post {
  display: inline-block;
  width: 100%;
  min-height: 0;
  margin: 0 0 42px;
  padding: 30px 25px 25px;
  overflow: visible;
  background: var(--note-color, var(--white));
  break-inside: avoid;
}

.feed-board .post:nth-child(1) {
  transform: rotate(0.45deg);
}

.feed-board .post:nth-child(2) {
  transform: rotate(-0.55deg);
}

.feed-board .post:nth-child(3) {
  transform: rotate(-0.4deg);
}

.feed-board .post:nth-child(4) {
  transform: rotate(0.4deg);
}

.feed-board .post:nth-child(5) {
  transform: rotate(0.35deg);
}

.feed-board .post:nth-child(6) {
  transform: rotate(-0.45deg);
}

.feed-board .post::after {
  display: none;
}

.feed-board .post__tape {
  width: 92px;
  height: 22px;
  border-width: 2px;
  opacity: 0.78;
  background: var(--lime);
}

.feed-board .post:nth-child(3n + 2) .post__tape {
  background: var(--coral);
}

.feed-board .post:nth-child(3n) .post__tape {
  background: var(--gold);
}

.feed-board .post__label {
  margin-bottom: 9px;
}

.feed-board .post:hover {
  z-index: 2;
  box-shadow: 12px 12px 0 var(--ink);
  transform: translate(-2px, -5px) rotate(0deg) !important;
}

.feed-board .post__generated-figure {
  transform: none;
}

@media (max-width: 900px) {
  .feed {
    padding-inline: 18px;
  }

  .feed__inner {
    padding-inline: 0;
  }

  .feed-board {
    padding: 44px 28px 34px;
  }

  .feed-board .feed__grid--board {
    columns: 2;
    column-gap: 26px;
  }

  .feed-board .post:nth-child(n) {
    margin-bottom: 32px;
  }
}

@media (max-width: 600px) {
  .feed__inner {
    padding: 76px 0 86px;
  }

  .feed__header {
    margin-bottom: 38px;
  }

  .feed .feed__header .section-title {
    font-size: clamp(52px, 15vw, 68px);
  }

  .feed-board {
    padding: 34px 15px 24px;
    border-width: 3px;
    box-shadow: 7px 7px 0 var(--ink);
    background-size: 22px 22px;
  }

  .feed-board::before {
    inset: 8px;
    border-width: 1px;
  }

  .feed-board .feed__grid--board {
    columns: 1;
  }

  .feed-board .post:nth-child(n) {
    margin: 0 0 36px;
    padding: 28px 17px 20px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .feed-board .post:nth-child(even) {
    transform: rotate(-0.35deg);
  }

  .feed-board .post:nth-child(odd) {
    transform: rotate(0.35deg);
  }

  .feed-board .post:hover {
    box-shadow: 6px 6px 0 var(--ink);
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .feed {
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feed-board .post {
    transition: none;
  }
}

/* Real conversation note */
.post__question {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin-top: 12px;
}

.post__avatar--asker {
  background: var(--white);
}

.post__question-author {
  margin: 1px 0 7px;
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.15;
}

.post__question-author span {
  display: inline-block;
  margin-left: 5px;
  color: var(--green-ink);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.post__question .post__msg {
  margin: 0;
}

.post--real .post__reply {
  margin-top: 22px;
}

.post__context {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  align-items: stretch;
  gap: 13px;
  margin: 12px 0 20px;
  padding: 12px;
  border: 2px solid var(--ink);
  background: rgb(255 255 255 / 0.5);
}

.post__context-copy {
  min-width: 0;
}

.post__context-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}

.post__context-author img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 4px;
  object-fit: cover;
}

.post__context-author p {
  font-family: var(--font-display);
  font-size: 11px;
  line-height: 1.15;
}

.post__context-author span {
  display: block;
  margin-top: 2px;
  color: var(--green-ink);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 750;
}

.post__context-copy > p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.post__context-media {
  display: block;
  width: 100%;
  height: 145px;
  border: 2px solid var(--ink);
  object-fit: cover;
}

.post__context--compact {
  grid-template-columns: minmax(0, 1fr) 104px;
}

.post__context--compact .post__context-media {
  height: 112px;
}

.post__context--compact .post__context-copy > p {
  display: block;
  overflow: visible;
}

.post__context--history {
  grid-template-columns: 1fr;
}

.post__attachment {
  margin: 18px 0 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--ink);
  transform: rotate(-0.35deg);
}

.post__attachment img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 58%;
}

.post__attachment figcaption {
  padding: 8px 10px 7px;
  color: var(--lime);
  background: var(--ink);
  font-family: var(--font-display);
  font-size: 9px;
  line-height: 1;
}

.post__result {
  margin-top: 16px;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--ink);
  transform: rotate(0.3deg);
}

.post__result img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.post__result figcaption {
  padding: 8px 10px 7px;
  color: var(--lime);
  background: var(--ink);
  font-family: var(--font-display);
  font-size: 9px;
  line-height: 1;
}

.post__comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.post__comparison figure {
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--ink);
}

.post__comparison img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.post__comparison figcaption {
  padding: 7px 8px 6px;
  color: var(--lime);
  background: var(--ink);
  font-family: var(--font-display);
  font-size: 8px;
  line-height: 1;
}

.post__text--thread {
  display: grid;
  gap: 10px;
  margin-top: 5px;
  line-height: 1.55;
}

.post__source-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 11px;
  border-top: 2px solid rgb(17 17 17 / 0.22);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
}

.post__source-row time {
  color: rgb(17 17 17 / 0.66);
}

.post__source-row a {
  flex: 0 0 auto;
  padding: 7px 9px 6px;
  border: 2px solid var(--ink);
  color: var(--lime);
  background: var(--ink);
  font-family: var(--font-display);
  font-size: 9px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease;
}

.post__source-row a:hover,
.post__source-row a:focus-visible {
  color: var(--ink);
  background: var(--lime);
}

@media (max-width: 600px) {
  .post__context {
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 10px;
    padding: 10px;
  }

  .post__context-copy > p {
    -webkit-line-clamp: 4;
  }

  .post__context-media {
    height: 116px;
  }

  .post__context--compact {
    grid-template-columns: minmax(0, 1fr) 92px;
  }

  .post__context--compact .post__context-media {
    height: 104px;
  }

  .post__attachment img {
    height: 230px;
  }

  .post__result img {
    height: 210px;
  }

  .post__question {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
  }

  .post__source-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ---------- Full-width reviews and FAQ sections ---------- */

.reviews {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-block: 5px solid var(--ink);
  background-color: var(--coral);
  background-image:
    radial-gradient(rgb(17 17 17 / 0.23) 1.5px, transparent 1.5px),
    radial-gradient(circle at 90% 14%, var(--gold) 0 54px, transparent 56px);
  background-size: 16px 16px, 100% 100%;
  box-shadow: none;
}

.reviews__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(76px, 9vw, 126px) 32px 110px;
}

.reviews__inner > .section-title {
  max-width: 1000px;
}

.faq {
  max-width: none;
  margin: 0;
  padding: 0 clamp(16px, 4vw, 46px);
  display: block;
  border: 0;
  border-bottom: 5px solid var(--ink);
  background-color: var(--white);
  background-image: none;
}

.faq__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(76px, 8vw, 112px) 0 120px;
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: clamp(52px, 7vw, 90px);
}

@media (max-width: 900px) {
  .reviews__inner {
    padding-inline: 24px;
  }

  .faq {
    padding-inline: 18px;
  }

  .faq__inner {
    padding-inline: 0;
  }

  .faq__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq .section-title {
    position: static;
  }
}

@media (max-width: 600px) {
  .reviews {
    margin: 0;
    padding: 0;
    border-inline: 0;
    box-shadow: none;
  }

  .reviews__inner {
    padding: 72px 16px 82px;
  }

  .faq__inner {
    padding: 72px 0 82px;
  }

  .faq {
    border-inline: 0;
  }
}

@media (max-width: 480px) {
  .faq {
    padding-inline: 16px;
  }
}

/* ---------- Mascot blueprint workshop ---------- */

.blueprint {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-inline: clamp(16px, 4vw, 46px);
  border-block: 5px solid var(--ink);
  color: var(--white);
  background-color: #163fa8;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.13) 1px, transparent 1px),
    linear-gradient(rgb(255 255 255 / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.05) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px, 16px 16px, 16px 16px;
}

.blueprint::before,
.blueprint::after {
  position: absolute;
  z-index: -1;
  border: 2px solid rgb(198 242 58 / 0.72);
  border-radius: 50%;
  content: '';
  pointer-events: none;
}

.blueprint::before {
  top: 74px;
  right: -90px;
  width: 260px;
  height: 260px;
}

.blueprint::after {
  bottom: 58px;
  left: -48px;
  width: 110px;
  height: 110px;
}

.blueprint__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(76px, 9vw, 126px) 0 110px;
}

.blueprint__header {
  max-width: 980px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.blueprint .blueprint__header .section-title {
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 7vw, 98px);
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-align: left;
}

.blueprint .blueprint__header .section-title span {
  color: var(--lime);
}

.blueprint__lede {
  max-width: 54ch;
  margin-top: 22px;
  color: rgb(255 255 255 / 0.86);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 650;
  line-height: 1.5;
}

.blueprint__workbench {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.7fr);
  align-items: stretch;
  gap: 28px;
}

.blueprint__plate {
  position: relative;
  align-self: start;
  overflow: hidden;
  border: 4px solid var(--white);
  background: #0d2c79;
  box-shadow: 10px 10px 0 var(--lime);
}

.blueprint__plate img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
}

.blueprint__plate figcaption {
  padding: 11px 14px 10px;
  border-top: 3px solid var(--white);
  color: var(--ink);
  background: var(--lime);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.blueprint__scan {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--lime);
  box-shadow: 0 0 18px 4px rgb(198 242 58 / 0.72);
  opacity: 0.86;
  pointer-events: none;
  animation: blueprintScan 5.2s linear infinite;
}

.blueprint__notes {
  display: flex;
  flex-direction: column;
  border: 3px solid rgb(255 255 255 / 0.82);
  background: rgb(5 28 90 / 0.34);
}

.blueprint-note {
  min-height: 0;
  flex: 1;
  padding: 22px 20px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  border-bottom: 2px solid rgb(255 255 255 / 0.62);
}

.blueprint-note:last-child {
  border-bottom: 0;
}

.blueprint-note__index {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 1.2;
}

.blueprint-note h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: -0.025em;
  line-height: 1;
}

.blueprint-note p {
  color: rgb(255 255 255 / 0.78);
  font-size: 14px;
  line-height: 1.45;
}

@keyframes blueprintScan {
  0% { transform: translateY(-6px); }
  100% { transform: translateY(min(64vw, 760px)); }
}

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

  .blueprint__notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .blueprint-note:nth-child(odd) {
    border-right: 2px solid rgb(255 255 255 / 0.62);
  }

  .blueprint-note:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .blueprint {
    padding-inline: 18px;
  }
}

@media (max-width: 600px) {
  .blueprint {
    background-size: 42px 42px, 42px 42px, 14px 14px, 14px 14px;
  }

  .blueprint__inner {
    padding: 72px 0 82px;
  }

  .blueprint__header {
    margin-bottom: 38px;
  }

  .blueprint .blueprint__header .section-title {
    font-size: clamp(48px, 14vw, 64px);
  }

  .blueprint__plate {
    border-width: 3px;
    box-shadow: 7px 7px 0 var(--lime);
  }

  .blueprint__plate figcaption {
    font-size: 9px;
  }

  .blueprint__notes {
    display: block;
  }

  .blueprint-note,
  .blueprint-note:nth-child(odd),
  .blueprint-note:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 2px solid rgb(255 255 255 / 0.62);
  }

  .blueprint-note:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 480px) {
  .blueprint {
    padding-inline: 16px;
  }
}

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

/* Final token lock for the original yellow hero concept. */
:root {
  --hero-stage: #f2d42f;
}

.nav.is-scrolled,
.hero {
  background-color: var(--hero-stage);
}

.hero__bubble .hero__title > span:last-child {
  color: var(--hero-stage);
}

.hero__bubble .pill {
  background-color: var(--hero-stage);
}

/* Final hero copy refinements. */
.hero__shout {
  left: 0;
  font-size: clamp(120px, 16vw, 230px);
  letter-spacing: -0.08em;
}

.hero__bubble .tag-badge {
  position: relative;
  top: 6px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font-size: clamp(21px, 2vw, 28px);
  transform: none;
}

.hero__bubble .hero__title > span:last-child {
  width: max-content;
  max-width: 100%;
  padding: 0 0.1em 0.06em;
  color: var(--ink);
  background: var(--lime);
}

.hero__bubble .pill {
  color: var(--lime);
  background-color: var(--ink);
}

.hero__bubble .btn--primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 6px 6px 0 var(--ink);
}

.hero__bubble .btn--primary:hover {
  box-shadow: 8px 8px 0 var(--ink);
}

@keyframes speechStageLandMobile {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero__canvas {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 430px;
    padding-top: 84px;
  }

  .hero__bubble {
    min-width: 0;
    transform: none;
  }

  .hero__stage {
    min-height: 430px;
  }

  .hero-puppet {
    left: -9%;
    bottom: calc(-1% - 15px);
    width: 112%;
  }
}

@media (max-width: 480px) and (prefers-reduced-motion: no-preference) {
  .hero__bubble {
    animation: speechStageLandMobile 620ms 90ms cubic-bezier(.16, 1, .3, 1) both;
  }
}

/* Transparent over the hero; yellow section-following navbar after scroll. */
.nav {
  color: var(--ink);
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.nav.is-scrolled {
  background: var(--hero-stage);
  background-image: none;
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 4px 0 rgba(17, 17, 17, 0.12);
}

.nav__logo {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nav__brand {
  display: inline-flex;
  flex: none;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .nav__logo {
    width: 54px;
    height: 54px;
  }

  .nav__brand span {
    display: inline;
    font-size: 16px;
  }
}

.nav a,
.nav__brand,
.nav__menu a,
.nav__cta {
  color: var(--ink);
}

.nav__menu {
  gap: clamp(14px, 1.8vw, 26px);
}

.nav__menu a {
  font-size: clamp(10px, 0.9vw, 13px);
}

.nav__menu a:hover,
.nav__menu a:focus-visible,
.nav__menu a.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.nav__cta {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 4px 4px 0 var(--ink);
}

.nav__cta:hover {
  box-shadow: 6px 6px 0 var(--ink);
}

#home,
#stats,
#why,
#reviews,
#features,
#feed,
#faq,
#cta {
  scroll-margin-top: 92px;
}

@media (max-width: 900px) {
  .nav__inner {
    flex-wrap: nowrap;
    row-gap: 0;
  }
}

/* Mobile section drawer — solid, poster-like and intentionally separate from the page. */
.nav__toggle,
.nav__drawer-head,
.nav__drawer-cta,
.nav-backdrop {
  display: none;
}

@media (max-width: 900px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav {
    z-index: 80;
  }

  .nav__inner {
    min-height: 78px;
    padding: 10px 18px;
    gap: 12px;
  }

  .nav__brand {
    margin-right: auto;
    gap: 9px;
  }

  .nav__logo {
    width: 50px;
    height: 50px;
    transform: scale(1.5);
    transform-origin: center;
  }

  .nav__brand span {
    font-size: 25px;
    line-height: 0.95;
    letter-spacing: -0.035em;
  }

  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
    min-width: 92px;
    min-height: 40px;
    padding: 0 10px 0 13px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 3px solid var(--ink);
    border-radius: 0;
    color: var(--ink);
    background: var(--lime);
    box-shadow: 4px 4px 0 var(--ink);
    font-family: var(--font-display);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease;
  }

  .nav__toggle span:last-child {
    padding-left: 9px;
    border-left: 2px solid var(--ink);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;
  }

  .nav__toggle:hover,
  .nav__toggle:focus-visible {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--ink);
  }

  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 2;
    display: flex;
    width: min(88vw, 420px);
    height: 100dvh;
    padding: 18px 22px 24px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    border-left: 4px solid var(--ink);
    color: var(--ink);
    background: var(--hero-stage);
    box-shadow: -12px 0 0 rgba(17, 17, 17, 0.18);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(110%);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), visibility 360ms;
  }

  .nav.is-menu-open .nav__menu {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav__drawer-head {
    display: flex;
    min-height: 64px;
    margin-bottom: 12px;
    padding-bottom: 14px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 4px solid var(--ink);
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .nav__close {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0 0 3px;
    place-items: center;
    border: 3px solid var(--ink);
    border-radius: 0;
    color: var(--lime);
    background: var(--ink);
    font-family: Arial, sans-serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
  }

  .nav__menu > a:not(.nav__drawer-cta) {
    position: relative;
    flex: none;
    padding: 12px 8px 11px 4px;
    border-bottom: 3px solid var(--ink);
    color: var(--ink);
    font-size: clamp(27px, 8.4vw, 42px);
    line-height: 0.96;
    letter-spacing: -0.045em;
    opacity: 0;
    transform: translateX(34px);
    transition: color 150ms ease, background-color 150ms ease, padding-left 150ms ease,
      opacity 240ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav.is-menu-open .nav__menu > a:not(.nav__drawer-cta) {
    opacity: 1;
    transform: translateX(0);
  }

  .nav.is-menu-open .nav__menu > a:nth-of-type(2) { transition-delay: 35ms; }
  .nav.is-menu-open .nav__menu > a:nth-of-type(3) { transition-delay: 70ms; }
  .nav.is-menu-open .nav__menu > a:nth-of-type(4) { transition-delay: 105ms; }
  .nav.is-menu-open .nav__menu > a:nth-of-type(5) { transition-delay: 140ms; }
  .nav.is-menu-open .nav__menu > a:nth-of-type(6) { transition-delay: 175ms; }
  .nav.is-menu-open .nav__menu > a:nth-of-type(7) { transition-delay: 210ms; }

  .nav__menu > a:not(.nav__drawer-cta):hover,
  .nav__menu > a:not(.nav__drawer-cta):focus-visible,
  .nav__menu > a:not(.nav__drawer-cta).is-active {
    padding-left: 16px;
    border-bottom-color: var(--ink);
    color: var(--ink);
    background: var(--lime);
  }

  .nav__menu > a:not(.nav__drawer-cta).is-active::after {
    content: '•';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-52%);
    font-size: 0.72em;
  }

  .nav .nav__drawer-cta {
    display: flex;
    min-height: 58px;
    margin-top: auto;
    padding: 12px 14px;
    align-items: center;
    justify-content: space-between;
    border: 3px solid var(--ink);
    color: var(--lime);
    background: var(--ink);
    box-shadow: 6px 6px 0 var(--lime);
    font-family: var(--font-display);
    font-size: 15px;
    text-decoration: none;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: block;
    background: rgba(17, 17, 17, 0.62);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 260ms ease, visibility 260ms;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 420px) {
  .nav__brand span {
    font-size: 25px;
  }

  .nav__logo {
    width: 50px;
    height: 50px;
  }

  .nav__toggle {
    min-width: 88px;
  }

  .nav__menu {
    width: 92vw;
    padding-inline: 18px;
  }
}

@media (max-width: 360px) {
  .nav__inner {
    padding-inline: 8px;
    gap: 4px;
  }

  .nav__brand {
    gap: 3px;
  }

  .nav__brand span {
    font-size: 25px;
  }

  .nav__logo {
    width: 50px;
    height: 50px;
  }

  .nav__toggle {
    min-width: 62px;
    min-height: 40px;
    padding-inline: 9px;
    justify-content: center;
  }

  .nav__toggle span:last-child {
    display: none;
  }
}

@media (min-width: 901px) {
  .nav__brand span {
    margin-left: -10px;
  }
}

/* Align navbar content directly with the shared responsive section edges. */
.nav__inner {
  width: min(calc(100% - (2 * clamp(16px, 4vw, 46px))), 1400px);
  padding-inline: 0;
}

@media (max-width: 900px) {
  .nav__inner {
    width: calc(100% - 36px);
    padding-inline: 0;
  }
}

@media (max-width: 480px) {
  .nav__inner {
    width: calc(100% - 32px);
  }
}

/* Close the stats strip with visible borders at both outer edges. */
.stats {
  padding-inline: clamp(16px, 4vw, 46px);
}

.stats__item:first-child {
  border-left: 3px solid var(--ink);
}

.stats__item:last-child {
  border-right: 3px solid var(--ink);
}

@media (max-width: 990px) {
  .stats {
    padding-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav__menu,
  .nav__menu > a,
  .nav-backdrop,
  .nav__toggle {
    transition: none !important;
  }
}

/* ==========================================================================
   About / Founder page — editorial pop brutalism
   ========================================================================== */

.about-page {
  background: var(--hero-stage);
}

.about-page .nav {
  background: transparent;
}

.about-page .nav.is-scrolled {
  background: var(--hero-stage);
}

.about-page main {
  overflow: hidden;
}

.about-page #about-home,
.about-page #story,
.about-page #founder,
.about-page #principles {
  scroll-margin-top: 92px;
}

.about-kicker {
  width: fit-content;
  margin: 0 0 22px;
  padding: 6px 10px;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.about-kicker--light {
  color: var(--lime);
  background: var(--ink);
  border-color: var(--lime);
  box-shadow: 4px 4px 0 var(--lime);
}

.about-hero {
  position: relative;
  min-height: min(760px, calc(100dvh - 84px));
  padding: clamp(56px, 8vw, 118px) 32px clamp(78px, 9vw, 128px);
  overflow: hidden;
  color: var(--ink);
  background-color: var(--hero-stage);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='4' r='1.7' fill='%23111111' fill-opacity='.16'/%3E%3C/svg%3E");
}

.about-hero::before {
  position: absolute;
  right: -36px;
  bottom: 34px;
  width: 260px;
  height: 82px;
  border: 4px solid var(--ink);
  background: var(--coral);
  content: '';
  transform: rotate(-7deg);
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 1320px;
  min-height: 560px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.72fr);
  gap: clamp(46px, 7vw, 110px);
  align-items: center;
}

.about-hero__copy {
  max-width: 800px;
}

.about-hero__title {
  max-width: 930px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(62px, 8.3vw, 132px);
  line-height: 0.84;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.about-hero__title span {
  display: inline-block;
  margin-top: 0.09em;
  padding: 0.03em 0.1em 0.08em;
  color: var(--lime);
  background: var(--ink);
  box-shadow: 9px 9px 0 var(--cobalt);
  transform: rotate(-1deg);
}

.about-hero__lede {
  max-width: 720px;
  margin: 34px 0 22px;
  font-size: clamp(18px, 1.65vw, 23px);
  font-weight: 700;
  line-height: 1.5;
}

.about-scribble {
  display: inline-block;
  color: #2c7628;
  font-family: 'Caveat', cursive;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  text-underline-offset: 5px;
  transform: rotate(-2deg);
}

.about-hero__noise {
  position: absolute;
  right: -18px;
  top: 22%;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 2px rgb(17 17 17 / 0.2);
  font-family: var(--font-display);
  font-size: clamp(80px, 13vw, 190px);
  line-height: 0.8;
  letter-spacing: -0.07em;
  white-space: nowrap;
  transform: rotate(90deg) translateX(45%);
  transform-origin: right top;
}

.about-hero__case {
  position: relative;
  width: min(100%, 470px);
  min-height: 520px;
  margin-left: auto;
  padding: 34px 32px 28px;
  border: 5px solid var(--ink);
  background: var(--sky);
  box-shadow: 15px 15px 0 var(--ink);
  transform: rotate(2.2deg);
}

.about-hero__case::before {
  position: absolute;
  inset: 18px;
  border: 2px dashed var(--ink);
  content: '';
  pointer-events: none;
}

.about-hero__tape,
.founder-photo__tape {
  position: absolute;
  z-index: 3;
  display: block;
  width: 118px;
  height: 36px;
  background: var(--coral);
  opacity: 0.92;
}

.about-hero__tape {
  top: -22px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
}

.about-hero__mascot {
  position: relative;
  z-index: 1;
  width: 82%;
  max-height: 310px;
  margin: 6px auto 8px;
  object-fit: contain;
  filter: drop-shadow(7px 8px 0 rgb(17 17 17 / 0.18));
  animation: aboutMascotBob 3.8s ease-in-out infinite;
}

@keyframes aboutMascotBob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-9px) rotate(2deg); }
}

.about-hero__case-copy {
  position: relative;
  z-index: 1;
  border-top: 4px solid var(--ink);
  padding-top: 16px;
}

.about-hero__case-copy span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.about-hero__case-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: 0.95;
  text-transform: uppercase;
}

.about-hero__case-copy p {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.about-hero__stamp {
  position: absolute;
  right: -28px;
  bottom: 54px;
  z-index: 2;
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1;
  text-align: center;
  transform: rotate(11deg);
}

.about-origin {
  position: relative;
  padding: clamp(86px, 10vw, 150px) 32px;
  color: var(--white);
  border-top: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
  background-color: var(--cobalt);
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 .5H64M.5 0V64' stroke='%23ffffff' stroke-opacity='.16' stroke-width='1'/%3E%3Cpath d='M0 32.5H64M32.5 0V64' stroke='%23ffffff' stroke-opacity='.08' stroke-width='1'/%3E%3C/svg%3E");
}

.about-origin::after {
  position: absolute;
  top: 44px;
  right: 4vw;
  color: var(--gold);
  content: '✦';
  font-size: clamp(72px, 10vw, 150px);
  line-height: 1;
  transform: rotate(14deg);
}

.about-origin__grid {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 48px 84px;
}

.about-origin__header h2,
.about-principles__header h2,
.about-founder__copy h2,
.about-cta__inner h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.about-origin__header h2 {
  font-size: clamp(51px, 6.7vw, 100px);
  line-height: 0.89;
}

.about-origin__header h2 span {
  color: var(--gold);
}

.about-origin__story {
  align-self: end;
  max-width: 650px;
  padding: 30px 0 4px 34px;
  border-left: 5px solid var(--lime);
}

.about-origin__story p {
  margin: 0 0 22px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.about-origin__story .about-origin__lead {
  color: var(--lime);
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 800;
  line-height: 1.25;
}

.about-flow {
  display: grid;
  grid-column: 1 / -1;
  margin: 34px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  border: 4px solid var(--white);
  list-style: none;
}

.about-flow li {
  min-height: 250px;
  padding: 26px;
  border-right: 4px solid var(--white);
  color: var(--ink);
  background: var(--lime);
}

.about-flow li:nth-child(2) {
  background: var(--coral);
}

.about-flow li:nth-child(3) {
  border-right: 0;
  background: var(--gold);
}

.about-flow li > span {
  display: block;
  margin-bottom: 44px;
  font-family: var(--font-display);
  font-size: 13px;
}

.about-flow strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.about-flow p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.45;
}

.about-founder {
  position: relative;
  padding: clamp(90px, 11vw, 158px) 32px;
  background-color: var(--coral);
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 34 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 34L34 0M-17 17L17-17M17 51L51 17' stroke='%23111111' stroke-opacity='.1' stroke-width='2'/%3E%3C/svg%3E");
}

.about-founder::before {
  position: absolute;
  top: 52px;
  left: -25px;
  width: 190px;
  height: 58px;
  border: 4px solid var(--ink);
  background: var(--lavender);
  content: '';
  transform: rotate(8deg);
}

.about-founder__inner {
  position: relative;
  display: grid;
  max-width: 1190px;
  margin: 0 auto;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1fr);
  gap: clamp(58px, 8vw, 112px);
  align-items: center;
}

.founder-photo {
  position: relative;
  margin: 0;
  padding: 18px 18px 0;
  border: 5px solid var(--ink);
  background: var(--cream);
  box-shadow: 17px 17px 0 var(--cobalt);
  transform: rotate(-2.5deg);
}

.founder-photo__crop {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 4px solid var(--ink);
  background: var(--sky);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.7);
  transform-origin: 50% 76%;
}

.founder-photo img.founder-photo__portrait {
  object-position: 50% 42%;
  transform: none;
}

.founder-photo img.founder-photo__portrait--wide {
  object-position: 78% 50%;
  transform: scale(1.1);
  transform-origin: 78% 52%;
}

.founder-photo figcaption {
  padding: 18px 4px 19px;
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 23px);
  letter-spacing: -0.03em;
}

.founder-photo__tape--one {
  top: -21px;
  left: -35px;
  background: var(--gold);
  transform: rotate(-13deg);
}

.founder-photo__tape--two {
  right: -34px;
  bottom: 40px;
  background: var(--lime);
  transform: rotate(8deg);
}

.about-founder__copy h2 {
  font-size: clamp(56px, 7.2vw, 104px);
  line-height: 0.88;
}

.about-founder__copy > p:not(.about-kicker) {
  max-width: 680px;
  margin-top: 22px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.about-founder__copy .about-founder__intro {
  font-size: clamp(23px, 2.2vw, 31px);
  font-weight: 800;
  line-height: 1.3;
}

.about-founder__copy .about-founder__belief {
  position: relative;
  margin: 32px 0 28px;
  padding: 24px 28px;
  border: 4px solid var(--ink);
  background: var(--gold);
  box-shadow: 8px 8px 0 var(--ink);
  font-family: 'Caveat', cursive;
  font-size: clamp(25px, 2.5vw, 35px);
  font-weight: 700;
  line-height: 1.18;
  transform: rotate(1deg);
}

.about-founder__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.about-founder__link {
  display: inline-flex;
  min-height: 54px;
  padding: 13px 18px;
  align-items: center;
  gap: 22px;
  border: 4px solid var(--ink);
  color: var(--lime);
  background: var(--ink);
  box-shadow: 7px 7px 0 var(--lime);
  font-family: var(--font-display);
  font-size: 14px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.about-founder__link:hover,
.about-founder__link:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 var(--lime);
}

.about-founder__link > img {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.about-principles {
  padding: clamp(84px, 10vw, 142px) 32px 0;
  color: var(--white);
  background: var(--ink);
}

.about-principles__header {
  display: flex;
  max-width: 1280px;
  margin: 0 auto 68px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.about-principles__header .about-kicker {
  align-self: flex-start;
  flex: none;
}

.about-principles__header h2 {
  max-width: 850px;
  font-size: clamp(54px, 7vw, 105px);
  line-height: 0.88;
  text-align: right;
}

.about-principles__header h2 span {
  color: var(--coral);
}

.about-principles__list {
  display: grid;
  max-width: 1440px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  border: 5px solid var(--white);
  border-bottom: 0;
}

.about-principle {
  min-height: 360px;
  padding: 28px;
  border-right: 5px solid var(--white);
  color: var(--ink);
}

.about-principle:last-child {
  border-right: 0;
}

.about-principle--lime { background: var(--lime); }
.about-principle--sky { background: var(--sky); }
.about-principle--gold { background: var(--gold); }

.about-principle > span {
  display: block;
  margin-bottom: 108px;
  font-family: var(--font-display);
  font-size: 13px;
}

.about-principle h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 57px);
  line-height: 0.95;
  text-transform: uppercase;
}

.about-principle p {
  max-width: 330px;
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.45;
}

.about-cta {
  padding: clamp(76px, 9vw, 120px) 32px;
  border-top: 5px solid var(--ink);
  background-color: var(--sky);
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.5' y='1.5' width='49' height='49' fill='none' stroke='%23111111' stroke-opacity='.12' stroke-width='3'/%3E%3C/svg%3E");
}

.about-cta__inner {
  position: relative;
  max-width: 1120px;
  min-height: 420px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px) clamp(190px, 24vw, 330px) clamp(44px, 6vw, 76px) clamp(34px, 6vw, 76px);
  border: 5px solid var(--ink);
  background: var(--lime);
  box-shadow: 15px 15px 0 var(--ink);
}

.about-cta__inner h2 {
  max-width: 720px;
  font-size: clamp(54px, 7vw, 102px);
  line-height: 0.88;
}

.about-cta__inner > p:not(.about-kicker) {
  max-width: 630px;
  margin: 24px 0 28px;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-cta__inner > img {
  position: absolute;
  right: -12px;
  bottom: 0;
  width: min(38%, 350px);
  max-height: 88%;
  object-fit: contain;
  object-position: bottom right;
}

.about-page .site-footer {
  border-top: 5px solid var(--ink);
}

@media (max-width: 1050px) {
  .about-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: 38px;
  }

  .about-hero__case {
    min-height: 480px;
  }

  .about-founder__inner {
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
    gap: 58px;
  }

  .about-principles__header {
    display: block;
  }

  .about-principles__header h2 {
    margin-left: auto;
  }
}

@media (max-width: 820px) {
  .about-hero {
    padding: 52px 22px 82px;
  }

  .about-hero__inner,
  .about-origin__grid,
  .about-founder__inner {
    grid-template-columns: 1fr;
  }

  .about-hero__case {
    width: min(92%, 470px);
    min-height: 500px;
    margin: 34px auto 0;
  }

  .about-hero__noise {
    display: none;
  }

  .about-origin,
  .about-founder {
    padding-inline: 22px;
  }

  .about-origin__story {
    max-width: none;
  }

  .about-flow {
    grid-template-columns: 1fr;
  }

  .about-flow li {
    min-height: 210px;
    border-right: 0;
    border-bottom: 4px solid var(--white);
  }

  .about-flow li:last-child {
    border-bottom: 0;
  }

  .about-flow li > span {
    margin-bottom: 32px;
  }

  .founder-photo {
    width: min(88%, 520px);
    margin: 0 auto;
  }

  .about-principles {
    padding-inline: 22px;
  }

  .about-principles__header h2 {
    text-align: left;
  }

  .about-principles__list {
    grid-template-columns: 1fr;
  }

  .about-principle {
    min-height: 270px;
    border-right: 0;
    border-bottom: 5px solid var(--white);
  }

  .about-principle:last-child {
    border-bottom: 0;
  }

  .about-principle > span {
    margin-bottom: 56px;
  }

  .about-cta {
    padding-inline: 22px;
  }

  .about-cta__inner {
    min-height: 590px;
    padding: 46px 34px 270px;
  }

  .about-cta__inner > img {
    right: 2%;
    width: min(58%, 350px);
    max-height: 48%;
  }
}

@media (max-width: 520px) {
  .about-hero {
    min-height: 0;
    padding-top: 96px;
  }

  .about-hero__title {
    font-size: clamp(48px, 15vw, 72px);
  }

  .about-hero__lede {
    margin-top: 28px;
    font-size: 17px;
  }

  .about-hero__case {
    width: calc(100% - 12px);
    min-height: 430px;
    padding: 28px 24px 24px;
    box-shadow: 10px 10px 0 var(--ink);
  }

  .about-hero__mascot {
    max-height: 245px;
  }

  .about-hero__stamp {
    right: -14px;
    bottom: 48px;
    width: 76px;
    height: 76px;
    font-size: 11px;
  }

  .about-origin__story {
    padding: 22px 0 0 20px;
  }

  .about-flow li {
    padding: 22px;
  }

  .founder-photo {
    width: calc(100% - 16px);
    box-shadow: 11px 11px 0 var(--cobalt);
  }

  .founder-photo__tape--one {
    left: -18px;
  }

  .founder-photo__tape--two {
    right: -18px;
  }

  .about-founder__copy .about-founder__belief {
    padding: 20px;
  }

  .about-founder__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .about-founder__link {
    width: 100%;
    padding-inline: 12px;
    gap: 10px;
    justify-content: center;
  }

  .about-principles__header {
    margin-bottom: 42px;
  }

  .about-principles__header h2,
  .about-origin__header h2,
  .about-founder__copy h2,
  .about-cta__inner h2 {
    font-size: clamp(45px, 13vw, 68px);
  }

  .about-cta__inner {
    min-height: 620px;
    padding: 38px 24px 270px;
    box-shadow: 10px 10px 0 var(--ink);
  }

  .about-cta__actions .btn {
    width: 100%;
  }

  .about-cta__inner > img {
    right: 0;
    width: 78%;
  }
}

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

/* ==========================================================================
   Story page: a quieter editorial chapter inside the Kacau Daun world
   ========================================================================== */

.story-page {
  background: var(--hero-stage);
}

.story-page .nav {
  background: transparent;
}

.story-page .nav.is-scrolled {
  background: var(--hero-stage);
}

.story-page main {
  overflow: hidden;
}

.story-page #story-home,
.story-page #story,
.story-page #founder {
  scroll-margin-top: 92px;
}

.story-label {
  width: fit-content;
  margin: 0 0 20px;
  padding: 7px 10px;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1;
}

.story-hero {
  position: relative;
  min-height: min(720px, calc(100dvh - 84px));
  padding: clamp(54px, 7vw, 92px) 32px clamp(78px, 9vw, 124px);
  overflow: hidden;
  border-bottom: 5px solid var(--ink);
  background-color: var(--hero-stage);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='4' r='1.7' fill='%23111111' fill-opacity='.14'/%3E%3C/svg%3E");
}

.story-hero::before {
  position: absolute;
  right: -44px;
  bottom: 42px;
  width: 270px;
  height: 76px;
  border: 4px solid var(--ink);
  background: var(--coral);
  content: '';
  transform: rotate(-7deg);
}

.story-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1280px;
  min-height: 500px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.58fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}

.story-hero__copy {
  max-width: 900px;
}

.story-hero__date {
  width: fit-content;
  margin: 0 0 28px;
  padding: 8px 11px;
  border: 3px solid var(--ink);
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.055em;
  transform: rotate(-1deg);
}

.story-hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(66px, 8.5vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.066em;
  text-transform: uppercase;
}

.story-hero h1 span {
  display: inline-block;
  margin-top: 0.09em;
  padding: 0.02em 0.08em 0.08em;
  color: var(--lime);
  background: var(--ink);
  box-shadow: 9px 9px 0 var(--cobalt);
  transform: rotate(-1deg);
}

.story-hero__copy > p:last-child {
  max-width: 590px;
  margin: 34px 0 0;
  font-size: clamp(19px, 1.75vw, 25px);
  font-weight: 800;
  line-height: 1.42;
}

.story-hero__portrait {
  position: relative;
  width: min(100%, 390px);
  margin-left: auto;
  padding: 28px 26px 22px;
  border: 5px solid var(--ink);
  background: var(--sky);
  box-shadow: 14px 14px 0 var(--ink);
  transform: rotate(2.2deg);
}

.story-hero__portrait::before {
  position: absolute;
  inset: 16px;
  border: 2px dashed var(--ink);
  content: '';
  pointer-events: none;
}

.story-hero__portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(7px 8px 0 rgb(17 17 17 / 0.16));
  animation: storyMascotBreath 4s ease-in-out infinite;
}

.story-hero__portrait p {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  padding-top: 15px;
  border-top: 4px solid var(--ink);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.05;
}

.story-hero__tape {
  position: absolute;
  top: -21px;
  left: 50%;
  z-index: 3;
  width: 116px;
  height: 36px;
  background: var(--coral);
  transform: translateX(-50%) rotate(-4deg);
}

@keyframes storyMascotBreath {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-7px) rotate(1deg); }
}

.story-article {
  position: relative;
  padding: clamp(88px, 10vw, 150px) 32px clamp(96px, 11vw, 164px);
  color: var(--ink);
  background-color: #fffaf0;
  background-image:
    linear-gradient(rgb(36 72 255 / 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgb(36 72 255 / 0.065) 1px, transparent 1px);
  background-size: 40px 40px;
}

.story-article::before {
  position: absolute;
  top: 64px;
  left: -28px;
  width: 160px;
  height: 52px;
  border: 4px solid var(--ink);
  background: var(--lavender);
  content: '';
  transform: rotate(8deg);
}

.story-article__header {
  max-width: 1060px;
  margin: 0 auto clamp(72px, 8vw, 112px);
}

.story-article__header h2 {
  max-width: 1030px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(49px, 6.7vw, 100px);
  line-height: 0.91;
  letter-spacing: -0.058em;
  text-transform: uppercase;
}

.story-article__standfirst {
  max-width: 760px;
  margin: 34px 0 0 auto;
  padding: 4px 0 4px 28px;
  border-left: 5px solid var(--cobalt);
  color: var(--cobalt);
  font-size: clamp(22px, 2.35vw, 32px);
  font-weight: 800;
  line-height: 1.3;
}

.story-prose {
  max-width: 850px;
  margin: 0 auto;
}

.story-chapter {
  margin: 0 0 clamp(68px, 8vw, 108px);
}

.story-chapter h3,
.story-name-note h3 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.story-chapter p,
.story-name-note p:not(.story-label),
.story-founder__copy > p {
  margin: 0 0 24px;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.68;
}

.story-chapter strong {
  padding: 0 5px 2px;
  color: var(--lime);
  background: var(--ink);
}

.story-chapter p.story-simple-note {
  max-width: 650px;
  margin: 36px 0 0 auto;
  padding: 20px 24px;
  border: 3px solid var(--ink);
  background: var(--lavender);
  box-shadow: 7px 7px 0 var(--cobalt);
  font-weight: 850;
  line-height: 1.5;
  transform: rotate(0.45deg);
}

.story-simple-note__label {
  display: table;
  margin: 0 0 12px;
  padding: 5px 9px 4px;
  color: var(--lime);
  background: var(--ink);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.story-green-highlight {
  padding: 0.12em 0.16em 0.16em;
  color: inherit;
  background: var(--lime);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: 850;
}

.story-dropcap::first-letter {
  float: left;
  margin: 8px 12px 0 0;
  color: var(--cobalt);
  font-family: var(--font-display);
  font-size: 6.2em;
  line-height: 0.72;
}

.story-godamsahur-artifact {
  width: min(760px, 100%);
  margin: 48px auto 68px;
  padding: 12px 12px 0;
  border: 4px solid var(--ink);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--coral);
  transform: rotate(0.8deg);
}

.story-godamsahur-artifact img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid var(--ink);
}

.story-name-artifact {
  width: min(850px, 100%);
  margin: 0 0 clamp(42px, 5vw, 58px);
  border: 5px solid var(--ink);
  background: var(--gold);
  box-shadow: 12px 12px 0 var(--coral);
  overflow: hidden;
  transform: rotate(-0.65deg);
}

.story-name-artifact img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.story-godamsahur-artifact figcaption {
  padding: 14px 3px 16px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.035em;
}

.story-daun-artifact {
  width: min(660px, 100%);
  margin: 48px auto 54px;
  padding: 14px 14px 0;
  border: 4px solid var(--ink);
  background: var(--white);
  box-shadow: 11px 11px 0 var(--lime);
  transform: rotate(-1.2deg);
}

.story-daun-artifact img {
  width: 100%;
  aspect-ratio: 16 / 8.9;
  border: 3px solid var(--ink);
  object-fit: cover;
}

.story-daun-artifact figcaption {
  padding: 14px 3px 16px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.035em;
}

.story-timecard {
  position: relative;
  left: 50%;
  display: grid;
  width: min(1060px, calc(100vw - 44px));
  margin: 0 0 clamp(76px, 9vw, 124px);
  padding: clamp(30px, 4vw, 54px);
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  border: 5px solid var(--ink);
  color: var(--white);
  background-color: var(--cobalt);
  background-image: url("data:image/svg+xml,%3Csvg width='54' height='54' viewBox='0 0 54 54' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 .5H54M.5 0V54' stroke='%23ffffff' stroke-opacity='.14'/%3E%3C/svg%3E");
  box-shadow: 14px 14px 0 var(--coral);
  translate: -50% 0;
  transform: rotate(0.5deg);
}

.story-timecard time {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 116px);
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.story-timecard p {
  max-width: 250px;
  margin: 18px 0 0;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 800;
  line-height: 1.35;
}

.story-timecard > span {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
}

.story-growth {
  position: relative;
  left: 50%;
  width: min(1000px, calc(100vw - 44px));
  margin: 0 0 clamp(76px, 9vw, 120px);
  padding: clamp(34px, 5vw, 64px);
  border: 5px solid var(--ink);
  background: var(--coral);
  box-shadow: 13px 13px 0 var(--cobalt);
  translate: -50% 0;
  transform: rotate(-0.7deg);
}

.story-growth > p {
  margin: 0 0 8px;
  font-family: 'Caveat', cursive;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 700;
}

.story-growth > strong {
  display: block;
  width: fit-content;
  margin: 0 0 26px;
  padding: 4px 11px 8px;
  color: var(--lime);
  background: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.9;
}

.story-growth ul {
  display: flex;
  margin: 26px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.story-growth li {
  padding: 9px 12px;
  border: 3px solid var(--ink);
  background: var(--gold);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.story-growth li:nth-child(2n) {
  background: var(--sky);
}

.story-growth li:nth-child(3n) {
  background: var(--lime);
}

.story-email {
  position: relative;
  left: 50%;
  width: min(1160px, calc(100vw - 44px));
  margin: 0 0 clamp(76px, 9vw, 124px);
  padding: 16px 16px 0;
  border: 5px solid var(--ink);
  background: var(--white);
  box-shadow: 15px 15px 0 var(--gold);
  translate: -50% 0;
  transform: rotate(0.5deg);
}

.story-email > img {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: #f3f3f3;
}

.story-email figcaption {
  display: flex;
  padding: 16px 4px 18px;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.story-email figcaption strong {
  font-family: var(--font-display);
}

.story-email figcaption span {
  font-weight: 700;
}

.story-name-note {
  position: relative;
  left: 50%;
  width: min(920px, calc(100vw - 44px));
  margin: 0;
  padding: clamp(36px, 5vw, 64px);
  border: 5px solid var(--ink);
  background: var(--lime);
  box-shadow: 14px 14px 0 var(--ink);
  translate: -50% 0;
  transform: rotate(-1deg);
}

.story-name-note::after {
  position: absolute;
  right: 28px;
  top: 24px;
  color: var(--cobalt);
  content: '✦';
  font-size: clamp(54px, 7vw, 90px);
  line-height: 1;
  transform: rotate(12deg);
}

.story-name-note h3 {
  max-width: 650px;
  padding-right: 72px;
}

.story-name-note p:not(.story-label) {
  max-width: 700px;
}

.story-founder {
  position: relative;
  padding: clamp(90px, 11vw, 156px) 32px;
  border-top: 5px solid var(--ink);
  background-color: var(--sky);
  background-image: url("data:image/svg+xml,%3Csvg width='46' height='46' viewBox='0 0 46 46' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='44' height='44' fill='none' stroke='%23111111' stroke-opacity='.11' stroke-width='2'/%3E%3C/svg%3E");
}

.story-founder__inner {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1fr);
  gap: clamp(58px, 8vw, 106px);
  align-items: center;
}

.story-founder__photo {
  position: relative;
  margin: 0;
  padding: 17px 17px 0;
  border: 5px solid var(--ink);
  background: var(--white);
  box-shadow: 14px 14px 0 var(--cobalt);
  transform: rotate(-2deg);
}

.story-founder__photo > span {
  position: absolute;
  top: -20px;
  left: 50%;
  z-index: 2;
  width: 112px;
  height: 34px;
  background: var(--gold);
  transform: translateX(-50%) rotate(-5deg);
}

.story-founder__photo > div {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 4px solid var(--ink);
}

.story-founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.7);
  transform-origin: 50% 76%;
}

.story-founder__photo figcaption {
  padding: 17px 3px 18px;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 19px);
}

.story-founder__copy h2 {
  max-width: 750px;
  margin: 0 0 30px;
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.story-founder__copy > p {
  max-width: 680px;
}

.story-founder__actions {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.story-founder__home {
  color: var(--ink);
  font-family: 'Caveat', cursive;
  font-size: 24px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.story-page .site-footer {
  border-top: 5px solid var(--ink);
}

.story-page .about-founder__copy > .about-founder__intro {
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1.3;
}

.story-page .about-founder__copy > .about-founder__belief {
  font-family: 'Caveat', cursive;
  font-size: clamp(25px, 2.5vw, 35px);
  line-height: 1.18;
}

@media (max-width: 900px) {
  .story-hero {
    min-height: 0;
    padding: 78px 22px 90px;
  }

  .story-hero__inner,
  .story-founder__inner {
    grid-template-columns: 1fr;
  }

  .story-hero__portrait {
    width: min(82%, 390px);
    margin: 24px auto 0;
  }

  .story-article,
  .story-founder {
    padding-inline: 22px;
  }

  .story-article__standfirst {
    margin-left: 0;
  }

  .story-founder__photo {
    width: min(86%, 480px);
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .story-hero {
    padding-top: 102px;
  }

  .story-hero h1 {
    font-size: clamp(48px, 15vw, 71px);
  }

  .story-hero__copy > p:last-child {
    margin-top: 28px;
    font-size: 18px;
  }

  .story-hero__portrait {
    width: calc(100% - 14px);
    box-shadow: 10px 10px 0 var(--ink);
  }

  .story-article::before {
    display: none;
  }

  .story-article__header h2 {
    font-size: clamp(43px, 13vw, 64px);
  }

  .story-article__standfirst {
    padding-left: 18px;
    font-size: 21px;
  }

  .story-chapter h3,
  .story-name-note h3 {
    font-size: clamp(35px, 11vw, 50px);
  }

  .story-chapter p,
  .story-name-note p:not(.story-label),
  .story-founder__copy > p {
    font-size: 17px;
    line-height: 1.65;
  }

  .story-chapter p.story-simple-note {
    margin-top: 30px;
    padding: 17px 18px;
    box-shadow: 6px 6px 0 var(--cobalt);
    line-height: 1.5;
    transform: rotate(0.25deg);
  }

  .story-dropcap::first-letter {
    font-size: 5.2em;
  }

  .story-godamsahur-artifact {
    margin-bottom: 58px;
    padding: 9px 9px 0;
    box-shadow: 9px 9px 0 var(--coral);
  }

  .story-name-artifact {
    margin-bottom: 38px;
    border-width: 4px;
    box-shadow: 9px 9px 0 var(--coral);
    transform: rotate(-0.35deg);
  }

  .story-timecard {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 28px;
    box-shadow: 9px 9px 0 var(--coral);
  }

  .story-timecard > span {
    transform: rotate(90deg);
  }

  .story-timecard time {
    font-size: clamp(72px, 25vw, 104px);
  }

  .story-growth {
    padding: 32px 25px;
    box-shadow: 9px 9px 0 var(--cobalt);
  }

  .story-growth > strong {
    font-size: clamp(43px, 13vw, 68px);
  }

  .story-growth li {
    width: 100%;
  }

  .story-email {
    padding: 9px 9px 0;
    box-shadow: 9px 9px 0 var(--gold);
  }

  .story-email img {
    width: 100%;
    max-width: 100%;
  }

  .story-email figcaption {
    display: block;
    padding-inline: 3px;
  }

  .story-email figcaption span {
    display: block;
    margin-top: 7px;
    line-height: 1.4;
  }

  .story-name-note {
    padding: 34px 25px;
    box-shadow: 9px 9px 0 var(--ink);
  }

  .story-name-note::after {
    right: 15px;
    top: 17px;
    font-size: 50px;
  }

  .story-name-note h3 {
    padding-right: 45px;
  }

  .story-founder__photo {
    width: calc(100% - 14px);
    box-shadow: 10px 10px 0 var(--cobalt);
  }

  .story-founder__copy h2 {
    font-size: clamp(41px, 12vw, 60px);
  }

  .story-founder__actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Daun.me tutorial
   ========================================================================== */

.tutorial {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
  padding: clamp(48px, 5vw, 68px) 0 0;
  border-bottom: var(--border);
  background: #9fd6b4;
}

.tutorial::before,
.tutorial::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.tutorial::before {
  top: 112px;
  right: -30px;
  width: 230px;
  height: 230px;
  opacity: 0.34;
  background-image: radial-gradient(circle, var(--ink) 0 2px, transparent 2.5px);
  background-size: 18px 18px;
  transform: rotate(7deg);
}

.tutorial::after {
  bottom: 24px;
  left: -48px;
  width: 260px;
  height: 96px;
  opacity: 0.28;
  background: repeating-linear-gradient(135deg, var(--ink) 0 3px, transparent 3px 16px);
  transform: rotate(-5deg);
}

.tutorial__inner {
  position: relative;
  z-index: 1;
  width: calc(100% - 64px);
  max-width: 1240px;
  margin: 0 auto;
}

.tutorial__header {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin-bottom: clamp(18px, 2vw, 28px);
}

.tutorial__header h2 {
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: var(--type-section-title);
  line-height: var(--leading-section);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.tutorial__header h2::after {
  display: block;
  width: min(170px, 34vw);
  height: 10px;
  margin-top: 12px;
  content: "";
  background: var(--ink);
  box-shadow: 72px 0 0 var(--lime);
}

.tutorial__header p {
  max-width: 58ch;
  margin-top: 18px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.5;
}

.tutorial__header strong {
  padding: 2px 7px 3px;
  color: var(--lime);
  background: var(--ink);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.tutorial__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) minmax(410px, 460px) minmax(170px, 0.55fr);
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
  padding: 12px 0 clamp(126px, 11vw, 150px);
  overflow: visible;
}

.tutorial__stage::before {
  display: none;
}

.tutorial__stage::after {
  display: none;
}

.tutorial__live {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 292px;
  padding: 22px 22px 24px;
  color: var(--cream);
  border: var(--border);
  background: var(--ink);
  box-shadow: 9px 9px 0 var(--lime);
  transform: rotate(-1.2deg);
}

.tutorial__live.is-changing {
  animation: tutorial-live-pop 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes tutorial-live-pop {
  from {
    opacity: 0.62;
    transform: translateY(10px) rotate(-1.2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-1.2deg);
  }
}

.tutorial__live-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgb(255 255 255 / 0.34);
}

.tutorial__live-number {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(44px, 4vw, 62px);
  line-height: 0.8;
}

.tutorial__live-label {
  max-width: 9ch;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.tutorial__live h3 {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.5vw, 36px);
  line-height: 0.95;
  text-transform: uppercase;
}

.tutorial__live p {
  margin-top: 13px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.tutorial__progress {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 0 0 18px;
  list-style: none;
  border-left: 4px solid var(--ink);
}

.tutorial__step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 13px 10px 13px 12px;
  border-bottom: 2px solid rgb(17 17 17 / 0.32);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.tutorial__step:last-child {
  border-bottom: 0;
}

.tutorial__step span {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}

.tutorial__step strong {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.tutorial__step.is-active {
  color: var(--cream);
  background: var(--ink);
  transform: translateX(-8px);
}

.tutorial__step.is-active span {
  color: var(--lime);
}

.tutorial__demo {
  justify-self: center;
  width: min(100%, 460px);
  min-width: 0;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
  border: 0;
  border-radius: 42px;
  background: transparent;
}

.tutorial__demo::before {
  display: none;
}

.tutorial__demo::after {
  display: none;
}

.tutorial__phone {
  position: relative;
  width: 100%;
  aspect-ratio: 56 / 111;
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 38px;
  background: transparent;
  filter: none;
}

.tutorial__phone iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.tutorial__chase {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  z-index: 1;
  height: clamp(112px, 10vw, 142px);
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.tutorial__chase picture {
  display: block;
  width: 100%;
  height: 100%;
}

.tutorial__chase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

@media (max-width: 1040px) and (min-width: 761px) {
  .tutorial--board .tutorial__card-hand {
    display: none;
  }

  .tutorial__stage {
    grid-template-columns: minmax(390px, 440px) minmax(240px, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    gap: 24px 34px;
    padding-right: 14px;
    padding-bottom: 136px;
    padding-left: 14px;
  }

  .tutorial__demo {
    grid-column: 1;
    grid-row: 1 / 3;
    width: min(100%, 430px);
  }

  .tutorial__live {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    max-width: none;
    margin-top: 70px;
  }

  .tutorial__progress {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }
}

@media (max-width: 760px) {
  .tutorial {
    padding: 38px 0 0;
  }

  .tutorial::before {
    top: 138px;
    right: -28px;
    width: 112px;
    height: 112px;
    background-size: 13px 13px;
  }

  .tutorial::after {
    bottom: 20px;
    left: -54px;
    width: 160px;
    height: 54px;
  }

  .tutorial__inner {
    width: calc(100% - 16px);
  }

  .tutorial__header {
    margin-bottom: 20px;
  }

  .tutorial__header h2 {
    max-width: none;
    font-size: var(--type-section-title-mobile);
  }

  .tutorial__header p {
    margin-top: 14px;
    font-size: 16px;
  }

  .tutorial__stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 16px;
    padding: 10px 0 104px;
    overflow: visible;
  }

  .tutorial__progress {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0;
    border: var(--border);
  }

  .tutorial__step {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 6px;
    min-height: 72px;
    padding: 10px 8px;
    border-right: 2px solid var(--ink);
    border-bottom: 0;
  }

  .tutorial__step:last-child {
    border-right: 0;
  }

  .tutorial__step span {
    font-size: 18px;
  }

  .tutorial__step strong {
    font-size: 11px;
  }

  .tutorial__step.is-active {
    transform: none;
  }

  .tutorial__live {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    padding: 16px 17px 18px;
    box-shadow: 6px 6px 0 var(--lime);
    transform: none;
  }

  .tutorial__live.is-changing {
    animation-name: tutorial-live-pop-mobile;
  }

  @keyframes tutorial-live-pop-mobile {
    from {
      opacity: 0.62;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .tutorial__live-head {
    justify-content: flex-start;
    padding-bottom: 12px;
  }

  .tutorial__live-number {
    font-size: 38px;
  }

  .tutorial__live-label {
    max-width: none;
    text-align: left;
  }

  .tutorial__live h3 {
    margin-top: 14px;
    font-size: 25px;
  }

  .tutorial__live p {
    margin-top: 8px;
    font-size: 14px;
  }

  .tutorial__demo {
    grid-column: 1;
    grid-row: 3;
    width: min(100%, 360px);
    border-radius: 38px;
  }

  .tutorial__chase {
    right: 0;
    left: 0;
    height: 100px;
  }

  .tutorial__chase img {
    object-fit: contain;
    object-position: center bottom;
  }

}

@media (max-width: 350px) {
  .tutorial__progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tutorial__step:nth-child(2) {
    border-right: 0;
  }

  .tutorial__step:nth-child(-n + 2) {
    border-bottom: 2px solid var(--ink);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tutorial__live {
    animation: none !important;
  }

  .tutorial__step {
    transition: none;
  }
}

/* Tutorial board: one cohesive demo, one synchronized set of instructions. */
.tutorial--board {
  padding: clamp(64px, 7vw, 92px) clamp(16px, 4vw, 46px) 0;
  background-color: #ffb26b;
  background-image:
    linear-gradient(rgb(17 17 17 / 0.09) 2px, transparent 2px),
    linear-gradient(90deg, rgb(17 17 17 / 0.09) 2px, transparent 2px);
  background-size: 52px 52px;
}

.tutorial--board::before {
  top: 48px;
  right: -42px;
  width: 220px;
  height: 96px;
  opacity: 1;
  border: 3px solid var(--ink);
  background: var(--cobalt);
  background-image: repeating-linear-gradient(-45deg, transparent 0 10px, rgb(255 255 255 / 0.22) 10px 13px);
  transform: rotate(6deg);
}

.tutorial--board::after {
  bottom: 34px;
  left: -36px;
  width: 150px;
  height: 150px;
  opacity: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  transform: none;
}

.tutorial--board .tutorial__inner {
  width: 100%;
  max-width: 1400px;
}

.tutorial--board .tutorial__header {
  max-width: 850px;
  margin-bottom: clamp(34px, 4vw, 52px);
}

.tutorial--board .tutorial__header h2 {
  max-width: none;
  font-size: var(--type-section-title);
}

.tutorial--board .tutorial__header h2::after {
  display: none;
}

.tutorial--board .tutorial__header h2 span {
  display: inline;
  padding: 0 9px 3px;
  background: var(--lime);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.tutorial--board .tutorial__lede {
  max-width: 62ch;
  margin-top: 16px;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 650;
  line-height: 1.5;
}

.tutorial--board .tutorial__lede strong {
  padding: 2px 7px 3px;
  color: var(--lime);
  background: var(--ink);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.tutorial--board .tutorial__stage {
  display: grid;
  grid-template-columns: minmax(390px, 450px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 80px);
  padding: clamp(30px, 4vw, 50px) clamp(28px, 5vw, 64px) clamp(246px, 20vw, 276px);
  overflow: hidden;
  border: 4px solid var(--ink);
  border-bottom: 0;
  background-color: var(--cream);
  background-image: radial-gradient(circle, rgb(17 17 17 / 0.13) 1.5px, transparent 1.8px);
  background-size: 19px 19px;
  box-shadow: 12px 0 0 var(--ink);
}

.tutorial--board .tutorial__demo {
  grid-column: 1;
  width: min(100%, 430px);
  border-radius: 38px;
}

.tutorial--board .tutorial__demo-label {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto 14px;
  padding: 8px 12px;
  color: var(--cream);
  border: 3px solid var(--ink);
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--lime);
}

.tutorial--board .tutorial__demo-label span {
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: #ff5c4d;
  animation: tutorial-recording 1.25s steps(2, end) infinite;
}

@keyframes tutorial-recording {
  50% { opacity: 0.25; }
}

.tutorial--board .tutorial__guide {
  position: relative;
  z-index: 3;
  align-self: center;
  width: 100%;
  max-width: 574px;
  min-width: 0;
}

.tutorial--board .tutorial__guide-kicker {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px 7px;
  border: 3px solid var(--ink);
  background: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-1deg);
}

.tutorial--board .tutorial__card-hand {
  position: absolute;
  top: 30px;
  right: -18px;
  z-index: 2;
  width: clamp(190px, 17vw, 242px);
  margin: 0;
  pointer-events: none;
  filter: drop-shadow(6px 7px 0 rgb(17 17 17 / 0.14));
  transform-origin: 100% 54%;
  animation: tutorial-card-hand-float 5.2s ease-in-out infinite;
}

.tutorial--board .tutorial__card-hand img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes tutorial-card-hand-float {
  0%, 100% { transform: translateX(3px) rotate(-0.7deg); }
  50% { transform: translateX(-3px) rotate(0.7deg); }
}

.tutorial--board .tutorial__progress {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 4px solid var(--ink);
  background: var(--cream);
}

.tutorial--board .tutorial__step {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 17px 22px 17px 14px;
  border-right: 0;
  border-bottom: 3px solid var(--ink);
  background: rgb(251 246 234 / 0.92);
  transition: color 180ms ease, background-color 180ms ease;
}

.tutorial--board .tutorial__step:last-child {
  border: 0;
}

.tutorial--board .tutorial__step > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--gold);
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1;
  box-shadow: 4px 4px 0 var(--ink);
}

.tutorial--board .tutorial__step strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 0.95;
  text-transform: uppercase;
}

.tutorial--board .tutorial__step p {
  max-width: 38ch;
  margin-top: 7px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.tutorial--board .tutorial__step.is-active {
  color: var(--cream);
  background: var(--ink);
  transform: none;
}

.tutorial--board .tutorial__step.is-active > span {
  color: var(--ink);
  background: var(--lime);
}

.tutorial--board .tutorial__chase {
  right: 24px;
  bottom: 0;
  left: 24px;
  z-index: 2;
  height: clamp(210px, 18vw, 250px);
}

.tutorial--board .tutorial__chase picture {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.tutorial--board .tutorial__chase img {
  width: auto;
  max-width: none;
  height: 100%;
}

@media (max-width: 900px) {
  .tutorial--board {
    padding-inline: 18px;
  }

  .tutorial--board .tutorial__stage {
    grid-template-columns: minmax(330px, 390px) minmax(0, 1fr);
    gap: 28px;
    padding-right: 26px;
    padding-left: 26px;
  }

  .tutorial--board .tutorial__step {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    min-height: 102px;
    padding: 14px 14px 14px 10px;
  }

  .tutorial--board .tutorial__step > span {
    width: 48px;
    height: 48px;
    font-size: 23px;
  }

  .tutorial--board .tutorial__step strong {
    font-size: 23px;
  }

}

@media (max-width: 760px) {
  .tutorial--board {
    padding-top: 46px;
    background-size: 34px 34px;
  }

  .tutorial--board::before {
    top: 28px;
    right: -74px;
    width: 150px;
    height: 68px;
  }

  .tutorial--board::after {
    display: none;
  }

  .tutorial--board .tutorial__inner {
    width: 100%;
  }

  .tutorial--board .tutorial__header {
    margin-bottom: 28px;
  }

  .tutorial--board .tutorial__header h2 {
    font-size: var(--type-section-title-mobile);
  }

  .tutorial--board .tutorial__lede {
    margin-top: 14px;
    font-size: 16px;
  }

  .tutorial--board .tutorial__stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 26px;
    padding: 24px 14px 176px;
    border-width: 3px;
    border-bottom: 0;
    box-shadow: 7px 0 0 var(--ink);
  }

  .tutorial--board .tutorial__demo {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 350px);
  }

  .tutorial--board .tutorial__demo-label {
    margin-bottom: 12px;
    font-size: 10px;
    box-shadow: 4px 4px 0 var(--lime);
  }

  .tutorial--board .tutorial__guide {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
  }

  .tutorial--board .tutorial__card-hand {
    display: none;
  }

  .tutorial--board .tutorial__guide-kicker {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .tutorial--board .tutorial__progress {
    grid-template-columns: 1fr;
    border-width: 3px;
  }

  .tutorial--board .tutorial__step {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 90px;
    padding: 12px 14px 12px 10px;
    border-right: 0;
    border-bottom: 3px solid var(--ink);
  }

  .tutorial--board .tutorial__step:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .tutorial--board .tutorial__step > span {
    width: 46px;
    height: 46px;
    font-size: 21px;
  }

  .tutorial--board .tutorial__step strong {
    font-size: 22px;
  }

  .tutorial--board .tutorial__step p {
    margin-top: 5px;
    font-size: 13px;
  }

  .tutorial--board .tutorial__chase {
    right: 4px;
    left: 4px;
    height: 160px;
  }
}

@media (max-width: 480px) {
  .tutorial--board {
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tutorial--board .tutorial__demo-label span {
    animation: none;
  }

  .tutorial--board .tutorial__card-hand {
    animation: none;
  }

}

@media (prefers-reduced-motion: reduce) {
  .story-hero__portrait img,
  .story-email img {
    animation: none;
    transition: none;
  }
}
/* ==========================================================================
   Release notes page
   ========================================================================== */

.release-notes-page {
  background: var(--cream);
}

.release-notes-page .nav {
  background: transparent;
}

.release-notes-page .nav.is-scrolled {
  background: var(--hero-stage);
}

.release-notes-page main {
  overflow: clip;
}

#latest-release,
#all-releases,
.notes-release {
  scroll-margin-top: 100px;
}

.notes-hero {
  position: relative;
  min-height: 350px;
  padding: 96px 32px 34px;
  border-bottom: 5px solid var(--ink);
  background-color: var(--hero-stage);
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.07) 2px, transparent 2px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.07) 2px, transparent 2px);
  background-size: 40px 40px;
}

.notes-hero__inner {
  position: relative;
  display: grid;
  max-width: var(--layout-content-width);
  min-height: 215px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 50px;
}

.notes-hero__copy {
  position: relative;
  z-index: 2;
}

.notes-kicker {
  display: inline-block;
  margin: 0 0 18px;
  padding: 7px 10px;
  border: 3px solid var(--ink);
  color: var(--lime);
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--coral);
  font-family: var(--font-display);
  font-size: var(--type-label);
}

.notes-hero h1 {
  max-width: 770px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-page-title);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.notes-hero__copy > p:last-child {
  max-width: 610px;
  margin-top: 22px;
  font-size: var(--type-page-lead);
  line-height: var(--leading-body);
}

.notes-hero__inner > img {
  width: 270px;
  max-width: none;
  max-height: 270px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(9px 10px 0 rgba(17, 17, 17, 0.18));
}

.notes-document {
  padding: 58px 32px 96px;
  background-color: var(--cream);
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 39px,
    rgba(17, 17, 17, 0.045) 39px,
    rgba(17, 17, 17, 0.045) 40px
  );
}

.notes-document__inner {
  display: grid;
  max-width: var(--layout-content-width);
  margin: 0 auto;
  grid-template-columns: 370px minmax(0, 1fr);
  align-items: start;
  gap: 30px;
}

.notes-index {
  position: sticky;
  top: 105px;
  border-top: 4px solid var(--ink);
}

.notes-index > p {
  margin: 0;
  padding: 14px 10px 12px;
  color: var(--lime);
  background: var(--ink);
  font-family: var(--font-display);
  font-size: 11px;
  white-space: nowrap;
}

.notes-index a > span {
  text-align: right;
}

.notes-index nav {
  display: grid;
}

.notes-index a {
  display: grid;
  padding: 13px 10px;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  transition: background-color 150ms ease, transform 150ms ease;
}

.notes-index a:hover,
.notes-index a:focus-visible,
.notes-index a[aria-current="true"] {
  background: var(--lime);
}

.notes-index a:active {
  transform: translateY(1px);
}

.notes-index strong,
.notes-index span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.notes-index strong {
  font-size: 13px;
}

.notes-index span {
  font-size: 11px;
  line-height: 1.35;
}

.notes-feed {
  min-width: 0;
  border-top: 5px solid var(--ink);
}

.notes-release {
  padding: 46px 0 54px;
  border-bottom: 4px solid var(--ink);
}

.notes-release--latest {
  padding: 34px 30px 46px;
  border: 4px solid var(--ink);
  border-left-width: 12px;
  border-left-color: var(--lime);
  background: rgba(255, 255, 255, 0.74);
}

.notes-release__header {
  display: grid;
  margin-bottom: 34px;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.notes-release__header h2 {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: var(--type-feature-title);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.notes-release__status {
  width: fit-content;
  margin: 0 0 12px;
  padding: 5px 7px;
  border: 2px solid var(--ink);
  background: var(--lime);
  font-family: var(--font-display);
  font-size: 9px;
}

.notes-release__summary time {
  display: block;
  margin-bottom: 9px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
}

.notes-release__summary h3 {
  max-width: 700px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-feature-title);
  line-height: var(--leading-section);
  letter-spacing: -0.045em;
}

.notes-release__summary p {
  max-width: 690px;
  margin: 13px 0 0;
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.notes-change {
  display: grid;
  padding: 24px 0;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  border-top: 2px solid rgba(17, 17, 17, 0.45);
}

.notes-change h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.1;
}

.notes-change ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 15px;
  list-style: none;
}

.notes-change li {
  position: relative;
  max-width: 720px;
  padding-left: 22px;
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.notes-change li::before {
  content: '+';
  position: absolute;
  top: -1px;
  left: 0;
  font-family: var(--font-display);
  font-size: 15px;
}

.notes-change li strong {
  font-weight: 800;
}

.notes-sources {
  margin: 10px 0 0 188px;
  border-top: 2px solid rgba(17, 17, 17, 0.45);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.notes-sources summary {
  width: fit-content;
  padding: 11px 0 6px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.notes-sources div {
  display: flex;
  padding: 7px 0 4px;
  flex-wrap: wrap;
  gap: 7px;
}

.notes-sources a {
  padding: 4px 6px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.notes-sources a:hover,
.notes-sources a:focus-visible {
  background: var(--lime);
}

.notes-release--origin {
  margin-top: 30px;
  padding: 34px 30px 40px;
  border: 4px solid var(--ink);
  background: var(--gold);
}

.notes-story-link {
  display: inline-flex;
  margin: 8px 0 0 188px;
  padding: 10px 12px;
  align-items: center;
  gap: 16px;
  border: 3px solid var(--ink);
  color: var(--lime);
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--lime);
  font-family: var(--font-display);
  font-size: 11px;
  text-decoration: none;
}

.notes-story-link:hover,
.notes-story-link:focus-visible {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--lime);
}

.notes-cta {
  display: grid;
  max-width: none;
  padding: 54px max(32px, calc((100vw - var(--layout-content-width)) / 2));
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  border-top: 5px solid var(--ink);
  background: var(--hero-stage);
}

.notes-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-section-title);
  line-height: var(--leading-section);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.notes-cta p {
  max-width: 620px;
  margin: 12px 0 0;
  font-size: var(--type-page-lead);
  line-height: var(--leading-body);
}

.release-notes-page .site-footer {
  border-top: 5px solid var(--ink);
}

@media (max-width: 900px) {
  .notes-document__inner {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 32px;
  }

  .notes-index a {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .notes-release__header,
  .notes-change {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 22px;
  }

  .notes-story-link {
    margin-left: 152px;
  }
}

@media (max-width: 760px) {
  .notes-hero {
    min-height: 310px;
    padding: 100px 20px 28px;
  }

  .notes-hero__inner {
    display: block;
    min-height: 190px;
  }

  .notes-hero h1 {
    font-size: var(--type-page-title-mobile);
  }

  .notes-hero__copy > p:last-child {
    max-width: 245px;
    margin-top: 17px;
    font-size: 15px;
  }

  .notes-hero__inner > img {
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 112px;
    max-height: 145px;
    transform: none;
  }

  .notes-document {
    padding: 0 20px 72px;
  }

  .notes-document__inner {
    display: block;
  }

  .notes-index {
    position: sticky;
    top: 82px;
    z-index: 5;
    margin: 0 -20px 30px;
    border-top: 4px solid var(--ink);
    border-bottom: 4px solid var(--ink);
    background: var(--cream);
  }

  .notes-index > p {
    display: none;
  }

  .notes-index nav {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }

  .notes-index a {
    display: block;
    min-width: 102px;
    padding: 11px 12px;
    border-right: 2px solid var(--ink);
    border-bottom: 0;
  }

  .notes-index span {
    display: block;
    margin-top: 3px;
    text-align: left;
  }

  .notes-feed {
    border-top-width: 4px;
  }

  .notes-release {
    padding: 34px 0 42px;
  }

  .notes-release--latest,
  .notes-release--origin {
    padding: 27px 22px 34px;
  }

  .notes-release__header,
  .notes-change {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .notes-release__header {
    margin-bottom: 24px;
  }

  .notes-release__summary h3 {
    font-size: var(--type-feature-title);
  }

  .notes-change {
    padding: 21px 0;
  }

  .notes-change h4 {
    color: var(--green-ink);
    font-size: 15px;
  }

  .notes-change li {
    padding-left: 20px;
    font-size: var(--type-body);
  }

  .notes-story-link {
    margin-left: 0;
  }

  .notes-sources {
    margin-left: 0;
  }

  .notes-cta {
    padding: 42px 20px 52px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .notes-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .notes-hero h1 {
    font-size: var(--type-page-title-mobile);
  }

  .notes-hero__inner > img {
    width: 106px;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .notes-index a,
  .notes-story-link {
    transition: none;
  }
}

/* ================================================================
   BLOG + ARTICLE
   ================================================================ */

.blog-page,
.blog-post-page {
  color: var(--ink);
  background: var(--cream);
}

.blog-page .nav,
.blog-post-page .nav {
  background: var(--gold);
}

.blog-page .nav.is-scrolled,
.blog-post-page .nav.is-scrolled {
  border-bottom-color: var(--ink);
  background: var(--gold);
}

.blog-page main,
.blog-post-page main {
  overflow: clip;
}

.blog-page main {
  background-color: var(--cream);
  background-image:
    linear-gradient(rgb(17 17 17 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(17 17 17 / 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
}

.blog-post-page main {
  background-color: var(--cream);
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 35px,
    rgb(17 17 17 / 0.04) 35px,
    rgb(17 17 17 / 0.04) 36px
  );
}

.blog-kicker {
  width: fit-content;
  margin: 0 0 22px;
  padding: 7px 10px;
  border: 3px solid var(--ink);
  color: var(--lime);
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--coral);
  font-family: var(--font-display);
  font-size: var(--type-label);
  line-height: 1;
}

.blog-hero {
  position: relative;
  min-height: min(650px, calc(100dvh - 72px));
  padding: 125px 32px 54px;
  border-bottom: 5px solid var(--ink);
  background-color: var(--gold);
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
}

.blog-hero__inner {
  display: grid;
  max-width: 1180px;
  min-height: 455px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: 48px;
}

.blog-hero__copy h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(64px, 7.8vw, 112px);
  line-height: 0.84;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.blog-hero__copy > p:last-child {
  max-width: 600px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.38;
}

.blog-hero__visual {
  position: relative;
  align-self: end;
  min-height: 430px;
  margin: 0;
}

.blog-hero__visual::before {
  content: '';
  position: absolute;
  right: 2%;
  bottom: 3%;
  width: 88%;
  height: 82%;
  border: 4px solid var(--ink);
  background:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(17, 17, 17, 0.09) 31px 33px),
    #f9f4e7;
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(3deg);
}

.blog-hero__paper {
  position: absolute;
  top: 10%;
  right: -4%;
  z-index: 2;
  width: 82px;
  height: 105px;
  border: 3px solid var(--ink);
  background: var(--lime);
  transform: rotate(9deg);
}

.blog-hero__paper::after {
  content: 'IDEA';
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  transform: rotate(-90deg);
  transform-origin: bottom right;
}

.blog-hero__visual img {
  position: absolute;
  right: -8%;
  bottom: -4%;
  z-index: 3;
  width: min(460px, 112%);
  height: auto;
  filter: drop-shadow(10px 12px 0 rgba(17, 17, 17, 0.16));
}

.blog-featured {
  padding: 105px 32px;
  background:
    radial-gradient(circle at 12px 12px, rgba(17, 17, 17, 0.1) 2px, transparent 2.5px) 0 0 / 26px 26px,
    var(--cream);
}

.blog-featured__inner {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: 58px;
}

.blog-featured__image {
  display: block;
  position: relative;
  border: 4px solid var(--ink);
  background: var(--sky);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-1deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-featured__image:hover,
.blog-featured__image:focus-visible {
  box-shadow: 7px 7px 0 var(--ink);
  transform: translate(5px, 5px) rotate(0);
}

.blog-featured__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-featured__copy {
  padding: 24px 0;
}

.blog-meta {
  display: flex;
  margin: 0 0 22px;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.blog-meta span {
  padding-left: 20px;
  border-left: 2px solid var(--ink);
}

.blog-featured__copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 5vw, 73px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.blog-featured__copy h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-featured__copy > p:not(.blog-meta) {
  max-width: 560px;
  margin: 24px 0 30px;
  font-size: 18px;
  line-height: 1.55;
}

.blog-read-link {
  display: inline-flex;
  padding: 13px 15px;
  align-items: center;
  gap: 24px;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.blog-read-link:hover,
.blog-read-link:focus-visible {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.blog-purpose {
  padding: 85px 32px;
  border-block: 5px solid var(--ink);
  background: var(--lime);
}

.blog-purpose__inner {
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 80px;
}

.blog-purpose h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(50px, 6vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.blog-purpose__inner > div {
  padding-top: 8px;
  border-top: 4px solid var(--ink);
}

.blog-purpose p {
  margin: 20px 0 0;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.55;
}

.blog-archive {
  padding: 100px 32px 115px;
  background-color: #f9f4e7;
  background-image: repeating-linear-gradient(0deg, transparent 0 39px, rgba(17, 17, 17, 0.06) 39px 40px);
}

.blog-archive__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.blog-archive__inner > header {
  display: flex;
  margin-bottom: 32px;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.blog-archive__inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 70px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.blog-archive__inner header p {
  margin: 0 0 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.blog-archive__item {
  display: grid;
  padding: 28px 24px;
  grid-template-columns: 130px minmax(0, 1fr) 130px 24px;
  align-items: center;
  gap: 24px;
  border: 4px solid var(--ink);
  color: var(--ink);
  background: var(--cream);
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.blog-archive__item:hover,
.blog-archive__item:focus-visible {
  background: var(--lime);
  transform: translateX(5px);
}

.blog-archive__item time,
.blog-archive__item span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.blog-archive__item strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1;
}

.blog-archive__item b {
  font-size: 22px;
}

.blog-cta {
  display: grid;
  padding: 64px max(32px, calc((100vw - 1400px) / 2 + 32px));
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
  border-top: 5px solid var(--ink);
  background: var(--gold);
}

.blog-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-section-title);
  line-height: var(--leading-section);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.blog-cta p {
  margin: 12px 0 0;
  font-size: var(--type-page-lead);
  font-weight: 650;
}

.blog-page .site-footer,
.blog-post-page .site-footer {
  border-top: 5px solid var(--ink);
}

/* Blog post */

.blog-post {
  padding-top: 118px;
}

.blog-post__header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 58px 32px 46px;
}

.blog-post__back {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--green-ink);
  font-family: var(--font-display);
  font-size: 12px;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.blog-post__header h1 {
  max-width: 1080px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-article-title);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
}

.blog-post__standfirst {
  max-width: 790px;
  margin: 32px 0 0;
  font-size: var(--type-article-lead);
  font-weight: 650;
  line-height: 1.35;
}

.blog-post__byline {
  display: flex;
  margin-top: 38px;
  padding-top: 18px;
  flex-wrap: wrap;
  gap: 12px 28px;
  border-top: 4px solid var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 750;
}

.blog-post__lead-image {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 32px;
}

.blog-post__lead-image img {
  display: block;
  width: 100%;
  max-height: 680px;
  border: 4px solid var(--ink);
  object-fit: cover;
  box-shadow: 12px 12px 0 var(--ink);
}

.blog-post figcaption {
  margin-top: 13px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.45;
}

.blog-post__body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px 105px;
}

.blog-post__body > p {
  margin: 0 0 28px;
  font-size: var(--type-reading);
  line-height: 1.72;
}

.blog-post__body .blog-post__lead {
  margin-bottom: 34px;
  font-size: var(--type-article-lead);
  font-weight: 750;
  line-height: 1.45;
}

.blog-post__lead::first-letter {
  float: left;
  margin: 4px 10px 0 0;
  padding: 7px 10px;
  border: 3px solid var(--ink);
  background: var(--lime);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 0.72;
}

.blog-post__body h2 {
  margin: 76px 0 26px;
  font-family: var(--font-display);
  font-size: var(--type-section-title);
  line-height: var(--leading-section);
  letter-spacing: var(--tracking-display);
}

.blog-post__body a {
  color: var(--green-ink);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.blog-post__note {
  position: relative;
  margin: 46px -40px 48px;
  padding: 30px 34px;
  border: 4px solid var(--ink);
  background: var(--lime);
  box-shadow: 9px 9px 0 var(--ink);
  transform: rotate(-1deg);
}

.blog-post__note::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 45%;
  width: 90px;
  height: 30px;
  background: rgba(242, 105, 78, 0.82);
  transform: rotate(2deg);
}

.blog-post__note strong {
  font-family: var(--font-display);
  font-size: 13px;
}

.blog-post__note p {
  margin: 12px 0 0;
  font-size: 20px;
  font-weight: 750;
  line-height: 1.45;
}

.blog-post__timeboard {
  display: grid;
  margin: 46px -70px;
  padding: 30px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  border: 4px solid var(--ink);
  background: var(--gold);
}

.blog-post__timeboard > span {
  font-family: var(--font-display);
  font-size: 36px;
}

.blog-post__timeboard time {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(43px, 6vw, 66px);
  line-height: 0.9;
}

.blog-post__timeboard p {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.blog-post__repo-proof {
  display: flex;
  margin: 50px 0;
  padding: 26px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border: 4px solid var(--ink);
  color: var(--cream);
  background: var(--ink);
}

.blog-post__repo-proof div {
  display: grid;
  gap: 8px;
}

.blog-post__repo-proof span,
.blog-post__repo-proof time {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 750;
}

.blog-post__repo-proof code {
  color: var(--lime);
  font-size: clamp(31px, 5vw, 52px);
  font-weight: 800;
}

.blog-post__repo-proof a {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 11px;
  white-space: nowrap;
}

.blog-post__body blockquote {
  margin: 56px -90px;
  padding: 38px 46px;
  border-left: 12px solid var(--lime);
  background: var(--ink);
  box-shadow: 9px 9px 0 var(--gold);
}

.blog-post__body blockquote p {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(29px, 4vw, 46px);
  line-height: 1.08;
}

.blog-post__email {
  margin: 48px -90px;
}

.blog-post__email img {
  display: block;
  width: 100%;
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--lime);
}

.blog-post__footer {
  display: flex;
  max-width: 900px;
  margin: 0 auto 100px;
  padding: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 4px solid var(--ink);
  background: var(--gold);
  box-shadow: 9px 9px 0 var(--ink);
}

.blog-post__footer div {
  display: grid;
  gap: 4px;
}

.blog-post__footer span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
}

.blog-post__footer strong {
  font-family: var(--font-display);
  font-size: 28px;
}

.blog-post__footer p {
  margin: 0;
  font-size: 14px;
}

.blog-post__footer > a {
  padding: 13px 15px;
  border: 3px solid var(--ink);
  color: var(--lime);
  background: var(--ink);
  font-family: var(--font-display);
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .blog-hero__inner {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 20px;
  }

  .blog-hero__copy h1 {
    font-size: clamp(58px, 8.5vw, 84px);
  }

  .blog-hero__visual {
    min-height: 380px;
  }

  .blog-featured__inner {
    grid-template-columns: 1fr 0.85fr;
    gap: 38px;
  }

  .blog-post__timeboard,
  .blog-post__body blockquote,
  .blog-post__email {
    margin-inline: -35px;
  }
}

@media (max-width: 760px) {
  .blog-hero {
    min-height: auto;
    padding: 105px 20px 0;
  }

  .blog-hero__inner {
    display: block;
    min-height: auto;
  }

  .blog-kicker {
    margin-bottom: 18px;
  }

  .blog-hero__copy h1 {
    max-width: 540px;
    font-size: clamp(53px, 15vw, 76px);
    line-height: 0.87;
  }

  .blog-hero__copy > p:last-child {
    max-width: 510px;
    margin-top: 22px;
    font-size: 17px;
  }

  .blog-hero__visual {
    width: min(390px, 96%);
    min-height: 370px;
    margin: 12px auto 0;
  }

  .blog-hero__visual img {
    right: -5%;
    width: 108%;
  }

  .blog-featured {
    padding: 70px 20px 78px;
  }

  .blog-featured__inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .blog-featured__image {
    box-shadow: 8px 8px 0 var(--ink);
  }

  .blog-featured__copy {
    padding: 0;
  }

  .blog-featured__copy h2 {
    font-size: clamp(43px, 12vw, 61px);
  }

  .blog-purpose {
    padding: 64px 20px;
  }

  .blog-purpose__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .blog-purpose h2 {
    max-width: 520px;
    font-size: clamp(47px, 13vw, 67px);
  }

  .blog-purpose p {
    font-size: 17px;
  }

  .blog-archive {
    padding: 70px 20px 82px;
  }

  .blog-archive__inner > header {
    align-items: start;
  }

  .blog-archive__item {
    padding: 22px 18px;
    grid-template-columns: 1fr auto;
    gap: 12px 18px;
  }

  .blog-archive__item strong {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-right: 26px;
    font-size: 25px;
  }

  .blog-archive__item time {
    grid-column: 1;
    grid-row: 2;
  }

  .blog-archive__item span {
    display: none;
  }

  .blog-archive__item b {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .blog-cta {
    padding: 52px 20px 60px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .blog-post {
    padding-top: 86px;
  }

  .blog-post__header {
    padding: 38px 20px 36px;
  }

  .blog-post__back {
    margin-bottom: 26px;
  }

  .blog-post__header h1 {
    font-size: var(--type-article-title-mobile);
    line-height: var(--leading-display);
  }

  .blog-post__standfirst {
    margin-top: 24px;
    font-size: var(--type-page-lead);
  }

  .blog-post__byline {
    gap: 10px 18px;
  }

  .blog-post__lead-image {
    margin-bottom: 58px;
    padding: 0 20px;
  }

  .blog-post__lead-image img {
    box-shadow: 7px 7px 0 var(--ink);
  }

  .blog-post__body {
    padding: 0 20px 78px;
  }

  .blog-post__body > p {
    font-size: var(--type-reading);
    line-height: 1.68;
  }

  .blog-post__body h2 {
    margin-top: 58px;
    font-size: var(--type-section-title-mobile);
  }

  .blog-post__note,
  .blog-post__timeboard,
  .blog-post__body blockquote,
  .blog-post__email {
    margin-inline: 0;
  }

  .blog-post__note {
    padding: 27px 24px;
  }

  .blog-post__timeboard {
    padding: 24px 20px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-post__timeboard > span {
    transform: rotate(90deg);
  }

  .blog-post__repo-proof {
    align-items: start;
    flex-direction: column;
  }

  .blog-post__body blockquote {
    padding: 31px 25px;
    border-left-width: 8px;
  }

  .blog-post__email img {
    box-shadow: 7px 7px 0 var(--lime);
  }

  .blog-post__footer {
    margin: 0 20px 75px;
    padding: 26px 22px;
    align-items: stretch;
    flex-direction: column;
  }

  .blog-post__footer > a {
    text-align: center;
  }
}

@media (max-width: 430px) {
  .blog-hero__visual {
    min-height: 335px;
  }

  .blog-hero__paper {
    width: 67px;
    height: 88px;
  }

  .blog-hero__paper::after {
    font-size: 13px;
  }

  .blog-meta span {
    padding-left: 0;
    border-left: 0;
  }

  .blog-meta {
    display: grid;
    gap: 5px;
  }

  .blog-post__byline {
    display: grid;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-featured__image,
  .blog-read-link,
  .blog-archive__item {
    transition: none;
  }
}

/* Compact blog index */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.journal-heading {
  max-width: 1400px;
  margin: 0 auto;
  padding: 112px 32px 24px;
}

.journal-heading .blog-kicker {
  margin-bottom: 15px;
}

.journal-heading h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-page-title);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.journal-slider {
  max-width: 1400px;
  margin: 0 auto 64px;
  padding: 0 32px;
}

.journal-slider__viewport {
  position: relative;
  min-height: clamp(480px, 44vw, 620px);
  overflow: hidden;
  border: 4px solid var(--ink);
  background: var(--cream);
  box-shadow: 10px 10px 0 var(--ink);
}

.journal-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms step-end;
}

.journal-slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition: opacity 260ms ease, transform 260ms ease, visibility 0ms step-start;
}

.journal-slide__image {
  display: block;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--sky);
}

.journal-slide__image--lime {
  background: var(--lime);
}

.journal-slide__image--gold {
  background:
    linear-gradient(rgba(17, 17, 17, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.06) 1px, transparent 1px),
    var(--gold);
  background-size: 30px 30px;
}

.journal-slide__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.journal-slide__image--gold img {
  padding: 0;
  object-fit: cover;
}

.journal-slide__image:hover img,
.journal-slide__image:focus-visible img {
  transform: scale(1.025);
}

.journal-slide__copy {
  display: flex;
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: clamp(90px, 11vw, 150px) clamp(24px, 3.5vw, 46px) clamp(24px, 3vw, 38px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  color: var(--cream);
  background: linear-gradient(to top, rgba(17, 17, 17, 0.96) 0%, rgba(17, 17, 17, 0.72) 28%, rgba(17, 17, 17, 0) 62%);
  pointer-events: none;
}

.journal-slide--primary .journal-slide__copy {
  border-top: 0;
}

.journal-slide--primary .journal-slide__copy h3 a {
  padding: 0;
  color: inherit;
  background: transparent;
}

.journal-slide--primary .journal-slide__copy > p:not(.journal-meta) {
  font-weight: 650;
}

.journal-meta {
  display: flex;
  width: 100%;
  margin: 0 0 18px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
}

.journal-meta span {
  color: var(--green-ink);
}

.journal-slide__copy h3 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-section-title);
  line-height: var(--leading-section);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.journal-slide__copy h3 a,
.journal-card h3 a {
  color: inherit;
  text-decoration: none;
}

.journal-slide__copy a {
  pointer-events: auto;
}

.journal-slide__copy > p:not(.journal-meta) {
  max-width: 650px;
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.journal-slide__copy .journal-meta {
  width: auto;
  justify-content: flex-start;
}

.journal-slide__copy .journal-meta > span:first-child {
  padding: 5px 7px 4px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  line-height: 1;
}

.journal-slider__controls {
  display: grid;
  margin-top: 18px;
  padding-left: 2px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.journal-slider__arrows {
  display: flex;
  gap: 8px;
}

.journal-slider__arrows button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-display);
  font-size: 18px;
  cursor: pointer;
  transition: background-color 150ms ease, transform 150ms ease;
}

.journal-slider__arrows button:hover,
.journal-slider__arrows button:focus-visible {
  background: var(--lime);
}

.journal-slider__arrows button:active {
  transform: translateY(1px);
}

.journal-slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.journal-slider__dots button {
  width: 38px;
  height: 7px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.journal-slider__dots button.is-active {
  background: var(--lime);
}

.journal-slider__controls > p {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.journal-content {
  display: grid;
  max-width: 1400px;
  margin: 0 auto;
  padding: 58px 32px 95px;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: start;
  gap: 30px;
  border-top: 5px solid var(--ink);
}

.journal-content__header {
  display: flex;
  margin-bottom: 28px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.journal-content__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-section-title);
  line-height: var(--leading-section);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.journal-content__header p {
  margin: 0 0 3px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
}

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

.journal-card {
  display: flex;
  min-width: 0;
  padding: 12px 12px 20px;
  flex-direction: column;
  border: 3px solid var(--ink);
  background: var(--cream);
  box-shadow: 5px 5px 0 var(--ink);
}

.journal-card--lime {
  background: rgba(198, 242, 58, 0.38);
}

.journal-card--gold {
  background: rgba(242, 212, 47, 0.44);
}

.journal-card--coral {
  background: rgba(255, 106, 77, 0.26);
}

.journal-card--sky {
  background: rgba(133, 216, 238, 0.33);
}

.journal-card--violet {
  background: rgba(177, 148, 255, 0.3);
}

.journal-card--blue {
  background: rgba(32, 99, 255, 0.16);
}

.journal-card[hidden] {
  display: none;
}

.journal-card__image {
  display: block;
  height: auto;
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--sky);
}

.journal-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.journal-card--gold .journal-card__image img {
  padding: 0;
  object-fit: cover;
}

.journal-card__image:hover img,
.journal-card__image:focus-visible img {
  transform: scale(1.04);
}

.journal-card .journal-meta {
  display: flex;
  margin-bottom: 13px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.journal-card .journal-meta > span:first-child {
  padding: 5px 7px 4px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  line-height: 1;
}

.journal-card .journal-meta time,
.journal-card .journal-meta > span:last-child:not(:first-child) {
  margin-left: auto;
  text-align: right;
}

.journal-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  line-height: 1;
  letter-spacing: -0.025em;
}

.journal-card > p:last-child {
  margin: 13px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.journal-load-more {
  display: flex;
  margin-top: 32px;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 4px solid var(--ink);
}

.journal-load-more > p {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
}

.journal-load-more button {
  display: inline-flex;
  min-height: 46px;
  padding: 10px 16px;
  align-items: center;
  gap: 18px;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 12px;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.journal-load-more button:hover,
.journal-load-more button:focus-visible {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.journal-sidebar {
  display: grid;
  position: sticky;
  top: 98px;
  gap: 20px;
}

.journal-sidebar > section {
  padding: 20px;
  border: 3px solid var(--ink);
  background: var(--cream);
}

.journal-sidebar h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.journal-sidebar nav,
.journal-sidebar__links {
  display: grid;
}

.journal-sidebar nav a,
.journal-sidebar__links a {
  display: flex;
  padding: 11px 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 2px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.journal-sidebar nav a:hover,
.journal-sidebar nav a:focus-visible,
.journal-sidebar__links a:hover,
.journal-sidebar__links a:focus-visible {
  color: var(--green-ink);
}

.journal-sidebar nav b {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
}

.journal-sidebar__popular {
  background: var(--gold) !important;
}

.journal-sidebar__popular nav a {
  display: block;
  padding: 13px 0 15px;
  justify-content: flex-start;
}

.journal-popular__image {
  display: block;
  position: relative;
  margin: 0 !important;
  font-family: inherit !important;
  line-height: normal !important;
}

.journal-sidebar__popular nav .journal-popular__image img {
  display: block;
  width: 100%;
  height: 180px;
  border: 3px solid var(--ink);
  object-fit: cover;
  background: var(--cream);
}

.journal-sidebar__popular nav strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.12;
}

.journal-sidebar__popular nav .journal-popular__image b {
  position: absolute;
  bottom: 0;
  left: 0;
  min-width: 40px;
  padding: 7px 9px 6px;
  border-top: 3px solid var(--ink);
  border-right: 3px solid var(--ink);
  color: var(--lime);
  background: var(--ink);
  font-size: 11px;
  line-height: 1;
}

.journal-sidebar__about {
  background: var(--lime) !important;
}

.journal-sidebar__about img {
  display: block;
  width: 200px;
  height: 200px;
  margin: -62px auto 2px;
  object-fit: contain;
}

.journal-sidebar__about p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.journal-sidebar__links a {
  justify-content: flex-start;
}

@media (max-width: 1120px) {
  .journal-content {
    grid-template-columns: 1fr;
  }

  .journal-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .journal-heading {
    display: block;
    padding: 96px 20px 18px;
  }

  .journal-heading h1 {
    max-width: 540px;
    font-size: var(--type-page-title-mobile);
  }

  .journal-slider {
    margin-bottom: 45px;
    padding: 0 20px;
  }

  .journal-slider__viewport {
    min-height: 520px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .journal-slide__copy {
    padding: 120px 20px 22px;
  }

  .journal-slide__copy h3 {
    font-size: var(--type-section-title-mobile);
  }

  .journal-slide__copy > p:not(.journal-meta) {
    display: none;
  }

  .journal-slider__controls {
    gap: 14px;
  }

  .journal-slider__dots button {
    width: 28px;
  }

  .journal-content {
    padding: 44px 20px 75px;
    gap: 54px;
  }

  .journal-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .journal-card {
    display: flex;
    padding: 12px 12px 20px;
    flex-direction: column;
  }

  .journal-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 0 0 16px;
  }

  .journal-card .journal-meta {
    margin: 0 0 13px;
  }

  .journal-card h3 {
    font-size: var(--type-card-title);
  }

  .journal-card > p:last-child {
    display: block;
  }

  .journal-sidebar {
    grid-template-columns: 1fr;
  }

  .journal-sidebar__about img {
    width: 180px;
    height: 180px;
    margin-top: -54px;
  }
}

@media (max-width: 430px) {
  .journal-slider__viewport {
    min-height: 540px;
  }

  .journal-slider__controls {
    grid-template-columns: auto 1fr auto;
  }

  .journal-slider__arrows button {
    width: 36px;
    height: 36px;
  }

  .journal-slider__dots {
    justify-content: center;
  }

  .journal-slider__dots button {
    width: 22px;
  }

  .journal-load-more {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .journal-load-more button {
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journal-slide,
  .journal-slide__image img,
  .journal-slider__arrows button,
  .journal-card__image img {
    transition: none;
  }

  .journal-load-more button {
    transition: none;
  }
}

/* Internal blog article template */

.blog-post-page .blog-post {
  padding-top: 88px;
}

.blog-post-page .blog-post__header {
  padding-top: 42px;
  padding-bottom: 34px;
}

.blog-post-page .blog-post__header h1 {
  max-width: 1120px;
}

.blog-post-page .blog-post__lead-image {
  margin-bottom: 72px;
}

.blog-post-page .blog-post__lead-image img {
  height: clamp(220px, 54vw, 680px);
  box-shadow: none;
}

.blog-post-page .blog-post__lead-image .blog-post__byline {
  display: flex;
  margin: 0;
  padding: 18px 20px;
  align-items: center;
  gap: 12px 34px;
  border: 4px solid var(--ink);
  border-top: 0;
  background: var(--gold);
}

.blog-post-page .blog-post__lead-image figcaption {
  margin-top: 12px;
}

.blog-post__layout {
  display: grid;
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 0 32px 108px;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: start;
  gap: 30px;
}

.blog-post__layout .blog-post__body {
  max-width: none;
  margin: 0;
  padding: 0;
}

.blog-post__layout .blog-post__note,
.blog-post__layout .blog-post__timeboard,
.blog-post__layout .blog-post__body blockquote,
.blog-post__layout .blog-post__email {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

.blog-post__layout .blog-post__note {
  transform: none;
}

.blog-post__sidebar {
  display: grid;
  position: sticky;
  top: 105px;
  gap: 20px;
}

.blog-post__toc,
.blog-post__author-card {
  padding: 22px;
  border: 4px solid var(--ink);
  background: var(--cream);
}

.blog-post__toc h2,
.blog-post__author-card h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.blog-post__toc a {
  display: block;
  padding: 11px 0;
  border-top: 2px solid var(--ink);
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.blog-post__toc a:hover,
.blog-post__toc a:focus-visible {
  padding-left: 7px;
  color: var(--green-ink);
}

.blog-post__toc a.is-active {
  margin-inline: -10px;
  padding-inline: 16px 10px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: inset 6px 0 0 var(--ink);
}

.blog-post__author-card {
  background: var(--lime);
  box-shadow: 7px 7px 0 var(--ink);
}

.blog-post__author-card img {
  display: block;
  width: 100%;
  height: 190px;
  margin-bottom: 19px;
  border: 3px solid var(--ink);
  object-fit: cover;
  object-position: center 36%;
}

.blog-post__author-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.45;
}

.blog-post__author-card a {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 12px;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.blog-post__pager {
  display: grid;
  margin-top: 76px;
  padding-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  border-top: 5px solid var(--ink);
}

.blog-post__pager-link {
  display: flex;
  min-height: 170px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  border: 4px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  box-shadow: 6px 6px 0 var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.blog-post__pager-link--previous {
  grid-column: 1;
}

.blog-post__pager-link--next {
  grid-column: 2;
  align-items: flex-end;
  background: var(--gold);
  text-align: right;
}

.blog-post__pager-link:hover,
.blog-post__pager-link:focus-visible {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(4px, 4px);
}

.blog-post__pager-link span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 850;
}

.blog-post__pager-link strong {
  max-width: 360px;
  margin-top: auto;
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  line-height: 1;
}

.blog-post__writer {
  display: grid;
  margin-top: 38px;
  padding: 24px;
  grid-template-columns: 185px minmax(0, 1fr);
  align-items: stretch;
  gap: 28px;
  border: 5px solid var(--ink);
  background: var(--sky);
  box-shadow: 8px 8px 0 var(--ink);
}

.blog-post__writer > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 3px solid var(--ink);
  object-fit: cover;
  object-position: center 36%;
}

.blog-post__writer > div {
  align-self: start;
}

.blog-post__writer > div > span {
  display: inline-block;
  width: fit-content;
  padding: 6px 8px 5px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
}

.blog-post__writer h2 {
  margin: 14px 0 15px;
  font-family: var(--font-display);
  font-size: var(--type-section-title);
  line-height: var(--leading-section);
  letter-spacing: var(--tracking-display);
}

.blog-post__writer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.blog-post__writer nav {
  display: flex;
  margin-top: 22px;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-post__writer nav a {
  padding: 10px 12px;
  border: 3px solid var(--ink);
  color: var(--lime);
  background: var(--ink);
  font-family: var(--font-display);
  font-size: 11px;
  text-decoration: none;
}

.blog-post__related {
  width: 100%;
  max-width: none;
  margin: 88px 0 0;
  padding: 54px 0 76px;
  border-top: 5px solid var(--ink);
}

.blog-post__related > header {
  margin-bottom: 28px;
}

.blog-post__related h2,
.blog-comments h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-section-title);
  line-height: var(--leading-section);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.blog-post__related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.blog-post__related-item {
  display: grid;
  height: 100%;
  min-width: 0;
  min-height: 420px;
  padding: 14px 14px 22px;
  grid-template-columns: 1fr;
  grid-template-rows: 220px auto minmax(0, 1fr);
  border: 4px solid var(--ink);
  color: var(--ink);
  background: var(--gold);
  box-shadow: 7px 7px 0 var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.blog-post__related-item--wide {
  background: var(--lime);
}

.blog-post__related-item:nth-child(3) {
  background: var(--sky);
}

.blog-post__related-item:hover,
.blog-post__related-item:focus-visible {
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(4px, 4px);
}

.blog-post__related-item img {
  display: block;
  width: 100%;
  height: 220px;
  margin-bottom: 18px;
  border: 3px solid var(--ink);
  background: var(--cream);
  object-fit: cover;
}

.blog-post__related-item--wide img {
  height: 220px;
}

.blog-post__related-item span {
  align-self: end;
  justify-self: start;
  padding: 5px 7px 4px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.blog-post__related-item strong {
  align-self: start;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  line-height: 1;
}

.blog-comments {
  display: grid;
  width: 100%;
  margin: 0;
  gap: 34px;
}

.blog-comments__composer {
  display: grid;
  padding: 36px;
  grid-template-columns: 1fr;
  gap: 28px;
  border: 5px solid var(--ink);
  background: var(--sky);
  box-shadow: 8px 8px 0 var(--ink);
}

.blog-comments__thread {
  padding: 34px;
  border: 5px solid var(--ink);
  background: var(--gold);
}

.blog-comments__thread-header {
  display: flex;
  margin-bottom: 25px;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.blog-comments__thread-header p {
  max-width: 250px;
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}

.blog-comments__intro p {
  max-width: 520px;
  margin: 13px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.blog-comments__form {
  display: grid;
  gap: 18px;
}

.blog-comments__form > div {
  display: grid;
  gap: 7px;
}

.blog-comments__form label {
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
}

.blog-comments__form input,
.blog-comments__form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 3px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--cream);
  font: inherit;
}

.blog-comments__form input:focus,
.blog-comments__form textarea:focus {
  outline: 4px solid var(--lime);
  outline-offset: 2px;
}

.blog-comments__form button {
  width: fit-content;
  padding: 12px 15px;
  border: 3px solid var(--ink);
  color: var(--lime);
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--lime);
  font-family: var(--font-display);
  font-size: 12px;
  cursor: pointer;
}

.blog-comments__status {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
  font-weight: 750;
}

.blog-comments__list {
  display: grid;
  gap: 14px;
}

.blog-comments__empty {
  margin: 0;
  padding-top: 20px;
  border-top: 3px solid var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.blog-comment {
  padding: 19px 20px;
  border: 3px solid var(--ink);
  background: var(--cream);
}

.blog-comment header {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.blog-comment strong {
  font-family: var(--font-display);
  font-size: 15px;
}

.blog-comment time {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 750;
}

.blog-comment__reply {
  margin: 18px 0 0 34px;
  padding: 16px 18px;
  border-left: 6px solid var(--lime);
  background: rgba(121, 201, 234, 0.34);
}

.blog-comment__reply header {
  margin-bottom: 8px;
}

.blog-comment__reply header span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-weight: 850;
}

.blog-comment p {
  margin: 0;
  line-height: 1.55;
  white-space: pre-wrap;
}

@media (max-width: 1120px) {
  .blog-post__layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .blog-post__sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-post__author-card img {
    height: 160px;
  }

  .blog-post__related-grid {
    grid-template-columns: 1fr;
  }

  .blog-post__related-item,
  .blog-post__related-item--wide {
    min-height: 208px;
    grid-template-columns: minmax(170px, 0.8fr) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 20px;
  }

  .blog-post__related-item img,
  .blog-post__related-item--wide img {
    height: 180px;
    margin: 0;
    grid-row: 1 / 3;
  }

  .blog-comments__composer {
    padding: 30px;
  }
}

@media (max-width: 760px) {
  .blog-post-page .blog-post {
    padding-top: 80px;
  }

  .blog-post-page .blog-post__header {
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .blog-post-page .blog-post__lead-image {
    margin-bottom: 52px;
  }

  .blog-post-page .blog-post__lead-image .blog-post__byline {
    display: grid;
    padding: 15px 16px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .blog-post-page .blog-post__lead-image .blog-post__byline > span:first-child {
    display: none;
  }

  .blog-post-page .blog-post__lead-image .blog-post__byline time {
    justify-self: start;
    white-space: nowrap;
  }

  .blog-post-page .blog-post__lead-image .blog-post__byline > span:last-child {
    justify-self: end;
    text-align: right;
    white-space: nowrap;
  }

  .blog-post__layout {
    padding: 0 20px 76px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .blog-post__sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .blog-post__author-card img {
    height: 210px;
  }

  .blog-post__pager {
    margin-top: 64px;
    grid-template-columns: 1fr;
  }

  .blog-post__pager-link {
    min-height: 138px;
  }

  .blog-post__writer {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-post__writer > img {
    height: 220px;
    min-height: 0;
  }

  .blog-post__related {
    margin-top: 72px;
    padding: 46px 0 64px;
  }

  .blog-post__related-grid,
  .blog-post__related-item,
  .blog-post__related-item--wide {
    grid-template-columns: 1fr;
  }

  .blog-post__related-item,
  .blog-post__related-item--wide {
    min-height: 390px;
    grid-template-rows: 220px auto minmax(70px, 1fr);
  }

  .blog-post__related-item img,
  .blog-post__related-item--wide img {
    height: 220px;
    margin-bottom: 18px;
    grid-row: auto;
  }

  .blog-comments__composer {
    padding: 28px 22px;
    grid-template-columns: 1fr;
    gap: 28px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .blog-comments__thread {
    padding: 28px 22px;
  }

  .blog-comments__thread-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .blog-comments__thread-header p {
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .blog-post__sidebar {
    grid-template-columns: 1fr;
  }

  .blog-post__author-card img {
    height: 245px;
  }

  .blog-comment header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .blog-comment__reply {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-post__pager-link,
  .blog-post__related-item {
    transition: none;
  }
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

.contact-page {
  color: var(--ink);
  background: var(--cream);
}

.contact-page .nav {
  color: var(--ink);
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.contact-page .nav.is-scrolled {
  color: var(--ink);
  background: var(--hero-stage);
  border-bottom-color: var(--ink);
  box-shadow: 0 4px 0 rgb(17 17 17 / 0.12);
}

.contact-page main {
  overflow: clip;
}

.contact-page #contact-home,
.contact-page #contact-channels {
  scroll-margin-top: 92px;
}

.contact-hero {
  min-height: min(680px, calc(100dvh - 76px));
  padding: clamp(52px, 7vw, 92px) 32px clamp(64px, 8vw, 104px);
  background-color: var(--hero-stage);
  background-image:
    repeating-linear-gradient(135deg, rgb(255 255 255 / 0.09) 0 2px, transparent 2px 18px),
    linear-gradient(90deg, transparent 0 68%, rgb(17 17 17 / 0.07) 68% 100%);
}

.contact-hero__inner {
  display: grid;
  width: min(100%, 1336px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(54px, 7vw, 104px);
}

.contact-hero__copy {
  position: relative;
  z-index: 1;
}

.contact-hero .btn {
  transition: transform 160ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 160ms cubic-bezier(0.16, 1, 0.3, 1), background-color 160ms ease;
}

.contact-hero .btn:hover,
.contact-hero .btn:focus-visible {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 7px 7px 0 var(--ink);
  transform: translate(-3px, -3px);
}

.contact-hero .btn:active {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px) scale(0.99);
}

.contact-kicker {
  width: fit-content;
  margin: 0 0 22px;
  padding: 7px 10px 6px;
  border: 3px solid var(--ink);
  background: var(--lime);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--font-display);
  font-size: var(--type-label);
  line-height: 1;
  transform: rotate(-1deg);
}

.contact-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-page-title);
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-display);
  text-transform: uppercase;
}

.contact-hero__copy > p:not(.contact-kicker) {
  max-width: 570px;
  margin: 30px 0 32px;
  font-size: var(--type-page-lead);
  font-weight: 750;
  line-height: 1.36;
}

.contact-hero__portrait {
  --rest-tilt: 1deg;
  position: relative;
  margin: 0;
  border: 5px solid var(--ink);
  background: var(--cream);
  box-shadow: 13px 13px 0 var(--ink);
  transform: rotate(1deg);
  transition: opacity 0.5s ease-out, transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-hero__portrait::before,
.contact-hero__portrait::after {
  position: absolute;
  z-index: 2;
  width: 94px;
  height: 26px;
  content: "";
  background: var(--coral);
  opacity: 0.92;
}

.contact-hero__portrait::before {
  top: -16px;
  left: 26px;
  transform: rotate(-7deg);
}

.contact-hero__portrait::after {
  right: 22px;
  bottom: 45px;
  transform: rotate(6deg);
}

.contact-hero__portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 5px solid var(--ink);
  filter: none;
}

@media (hover: hover) {
  .contact-hero__portrait:hover {
    box-shadow: 18px 18px 0 var(--ink);
    transform: translate(-2px, -5px) rotate(0deg) !important;
  }
}

.contact-hero__portrait:active {
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(4px, 4px) rotate(0deg) scale(0.995) !important;
}

.contact-hero__portrait figcaption {
  padding: 13px 16px 12px;
  background: var(--lime);
  font-family: var(--font-display);
  font-size: var(--type-label);
  line-height: 1;
}

.contact-channels {
  padding: clamp(84px, 10vw, 140px) 32px clamp(96px, 11vw, 150px);
  background-color: var(--cream);
  background-image: radial-gradient(rgb(17 17 17 / 0.12) 1.2px, transparent 1.2px);
  background-size: 18px 18px;
}

.contact-channels__inner {
  display: grid;
  width: min(100%, 1336px);
  margin: 0 auto;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(54px, 8vw, 118px);
}

.contact-channels__header {
  position: sticky;
  top: 112px;
}

.contact-channels__header h2 {
  max-width: 570px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-section-title);
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-section);
  text-transform: uppercase;
}

.contact-channels__header p {
  max-width: 430px;
  margin: 24px 0 0;
  font-size: var(--type-page-lead);
  font-weight: 700;
  line-height: 1.5;
}

.contact-channel-list {
  border-top: 5px solid var(--ink);
}

.contact-channel {
  display: grid;
  position: relative;
  min-height: 170px;
  padding: 25px 28px;
  grid-template-columns: 142px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-right: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
  border-left: 5px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  transition: opacity 420ms ease-out, transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1), filter 180ms ease;
}

.contact-channel--linkedin {
  background: var(--lime);
}

.contact-channel--threads {
  background: var(--sky);
}

.contact-channel--daun {
  background: var(--gold);
}

.contact-channel:hover,
.contact-channel:focus-visible {
  z-index: 1;
  box-shadow: 10px 10px 0 var(--ink);
  filter: saturate(1.08);
  transform: translate(-6px, -6px);
}

.contact-channel:active {
  box-shadow: 2px 2px 0 var(--ink);
  filter: saturate(1.12);
  transform: translate(3px, 3px) scale(0.995);
}

.contact-channel__name {
  width: fit-content;
  padding: 7px 9px 6px;
  border: 3px solid var(--ink);
  background: var(--cream);
  font-family: var(--font-display);
  font-size: var(--type-label);
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-channel__copy {
  display: grid;
  gap: 7px;
}

.contact-channel__copy strong {
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  letter-spacing: -0.035em;
  line-height: 0.96;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-channel__copy > span {
  max-width: 480px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-channel__arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--cream);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1), transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-channel:hover .contact-channel__name,
.contact-channel:focus-visible .contact-channel__name {
  color: var(--lime);
  background: var(--ink);
  transform: rotate(-2deg);
}

.contact-channel:hover .contact-channel__copy strong,
.contact-channel:focus-visible .contact-channel__copy strong {
  transform: translateX(5px);
}

.contact-channel:hover .contact-channel__arrow,
.contact-channel:focus-visible .contact-channel__arrow {
  color: var(--lime);
  background: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(4px, -4px) rotate(5deg);
}

.contact-page .site-footer {
  background: var(--ink);
}

@media (max-width: 960px) {
  .contact-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
    gap: 42px;
  }

  .contact-channels__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-channels__header {
    position: static;
  }

  .contact-channels__header p {
    max-width: 600px;
  }
}

@media (max-width: 760px) {
  .contact-hero {
    min-height: 0;
    padding: 106px 20px 56px;
  }

  .contact-hero__inner {
    width: 100%;
    min-height: 0;
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-hero__copy {
    min-width: 0;
  }

  .contact-hero h1 {
    max-width: 100%;
    font-size: var(--type-page-title-mobile);
    letter-spacing: var(--tracking-display);
  }

  .contact-hero__copy > p:not(.contact-kicker) {
    margin: 24px 0 28px;
    font-size: var(--type-page-lead);
  }

  .contact-hero__portrait {
    width: 100%;
    margin-inline: auto;
  }

  .contact-hero__portrait img {
    height: auto;
  }

  .contact-channels {
    padding: 78px 20px 96px;
  }

  .contact-channel {
    min-height: 0;
    padding: 22px 58px 23px 20px;
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .contact-channel__arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    box-shadow: 3px 3px 0 var(--ink);
    font-size: 17px;
  }

  .contact-channel__copy strong {
    font-size: var(--type-card-title);
  }
}

@media (max-width: 430px) {
  .contact-hero__portrait::before,
  .contact-hero__portrait::after {
    width: 74px;
    height: 22px;
  }

  .contact-channels__header h2 {
    font-size: var(--type-section-title-mobile);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero .btn,
  .contact-hero__portrait,
  .contact-hero__portrait img,
  .contact-channel,
  .contact-channel__name,
  .contact-channel__copy strong,
  .contact-channel__arrow {
    transition: none;
  }
}

/* ==========================================================================
   Landing and About: shared typography role mapping
   ========================================================================== */

/* The landing hero keeps its own louder brand scale. */
.hero__bubble .hero__title {
  font-size: var(--type-brand-hero);
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.hero__bubble .hero__lede,
.why__body,
.blueprint__lede,
.features__lede,
.feed .feed__header .feed__subtitle,
.faq__lede {
  font-size: var(--type-page-lead);
  line-height: var(--leading-body);
}

.why .section-title,
.blueprint .blueprint__header .section-title,
.features .section-title,
.feed .feed__header .section-title,
.reviews__inner > .section-title,
.faq .section-title,
.cta__title {
  font-size: var(--type-section-title);
  line-height: var(--leading-section);
  letter-spacing: var(--tracking-display);
}

.feature-panel.is-active .feature-panel__title {
  font-size: var(--type-feature-title);
  line-height: var(--leading-section);
}

.blueprint-note h3,
.faq__question {
  font-size: var(--type-card-title);
  line-height: 1.1;
}

/* About reads like a personal editorial story, using the same hierarchy. */
.story-article__header h2 {
  font-size: var(--type-page-title);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
}

.story-article__standfirst {
  font-size: var(--type-article-lead);
  line-height: 1.35;
}

.story-chapter h3,
.story-name-note h3 {
  font-size: var(--type-feature-title);
  line-height: var(--leading-section);
  letter-spacing: -0.045em;
}

.story-chapter p,
.story-name-note p:not(.story-label),
.about-founder__copy > p:not(.about-kicker):not(.about-founder__intro):not(.about-founder__belief) {
  font-size: var(--type-reading);
  line-height: 1.68;
}

.about-founder__copy h2 {
  font-size: var(--type-section-title);
  line-height: var(--leading-section);
  letter-spacing: var(--tracking-display);
}

.story-page .about-founder__copy > .about-founder__intro {
  font-size: var(--type-article-lead);
  line-height: 1.3;
}

@media (max-width: 620px) {
  .hero__bubble .hero__title {
    font-size: var(--type-brand-hero-mobile);
  }

  .why .section-title,
  .blueprint .blueprint__header .section-title,
  .features .section-title,
  .feed .feed__header .section-title,
  .reviews__inner > .section-title,
  .faq .section-title,
  .cta__title,
  .about-founder__copy h2 {
    font-size: var(--type-section-title-mobile);
  }

  .story-article__header h2 {
    font-size: var(--type-page-title-mobile);
  }

  .story-chapter p,
  .story-name-note p:not(.story-label),
  .about-founder__copy > p:not(.about-kicker):not(.about-founder__intro):not(.about-founder__belief) {
    font-size: var(--type-reading);
  }
}

/* Keep the shared navbar surface consistent on every page. */
.blog-page .nav,
.blog-post-page .nav {
  color: var(--ink);
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.blog-page .nav.is-scrolled,
.blog-post-page .nav.is-scrolled {
  color: var(--ink);
  background: var(--hero-stage);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 4px 0 rgb(17 17 17 / 0.12);
}

/* Shared content frame across every public page. */
.story-article,
.about-founder,
.notes-hero,
.notes-document,
.contact-hero,
.contact-channels {
  padding-inline: var(--layout-page-gutter);
}

.about-founder__inner,
.notes-hero__inner,
.notes-document__inner,
.contact-hero__inner,
.contact-channels__inner {
  width: 100%;
  max-width: var(--layout-content-width);
}

.journal-heading,
.journal-slider,
.journal-content,
.blog-post__header,
.blog-post__lead-image,
.blog-post__layout,
.site-footer__bottom {
  width: min(calc(100% - (2 * var(--layout-page-gutter))), var(--layout-content-width));
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
}

.blog-cta,
.notes-cta {
  padding-inline: max(
    var(--layout-page-gutter),
    calc((100vw - var(--layout-content-width)) / 2)
  );
}

@media (max-width: 900px) {
  :root {
    --layout-page-gutter: 18px;
  }
}

@media (max-width: 480px) {
  :root {
    --layout-page-gutter: 16px;
  }
}
