/* Hallmark · macrostructure: bespoke (poster-derived) · theme: custom (VOE poster lock)
 * genre: editorial · nav: none (single-CTA funnel + sticky mobile bar) · footer: bespoke statement
 * paper-band: dark · display-style: high-contrast-serif · accent-hue: warm (gold/clay)
 * enrichment: none — flat poster shapes + duotone portraits only
 */
@import url('tokens.css');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,900&family=Archivo+Expanded:wght@600;700;800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

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

html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-display); font-style: normal; font-weight: 600; margin: 0; }

p { margin: 0; }

a { color: inherit; }

ul, ol, dl { margin: 0; padding: 0; list-style: none; }

fieldset { border: none; margin: 0; padding: 0; min-width: 0; }
legend { padding: 0; }

.content-wrap {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

@media (min-width: 768px) {
  .content-wrap { padding-inline: var(--space-10); }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: var(--space-3) var(--space-5);
  font-weight: 700;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus-visible {
  left: 0;
  outline: 3px solid var(--focus-ring);
  outline-offset: -3px;
}

/* ============ Focus / interactive baseline ============ */
:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-md);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-pill);
  border: var(--rule-thick) solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out),
              background-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.btn--primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0,0,0,0.15);
}
.btn--primary:hover { background: var(--gold-hover); transform: translateY(-1px); }
.btn--primary:active { background: var(--gold-active); transform: translateY(0); }
.btn--primary:disabled { background: var(--paper-dim); color: var(--ink-scrim); cursor: not-allowed; transform: none; }
.btn--block { width: 100%; }

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: clip;
  padding-top: var(--space-16);
  padding-bottom: var(--space-24);
  isolation: isolate;
}

.hero__circles {
  position: absolute;
  top: -18vw;
  right: -22vw;
  width: 92vw;
  max-width: 720px;
  aspect-ratio: 1;
  z-index: -1;
  pointer-events: none;
}
.circle { position: absolute; border-radius: 50%; }
.circle--clay {
  inset: 8% 18% auto auto;
  width: 64%;
  aspect-ratio: 1;
  background: var(--clay);
}
.circle--gold {
  inset: auto 0 0 auto;
  width: 82%;
  aspect-ratio: 1;
  background: var(--gold);
}

.eyebrow-band {
  position: relative;
  transform: rotate(-3.2deg);
  transform-origin: left center;
  background: var(--clay-deep);
  padding: var(--space-2) 0;
  margin-block: var(--space-10) var(--space-10);
  width: 130%;
  margin-left: -8%;
}
.eyebrow-band__text {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  padding-left: calc(8% + var(--space-5));
}
@media (min-width: 768px) {
  .eyebrow-band__text { font-size: var(--text-sm); padding-left: calc(8% + var(--space-10)); }
}

.hero__inner { padding-top: var(--space-4); }

.hero__kicker {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-faint);
  margin-bottom: var(--space-6);
  max-width: 34ch;
}

.hero__proverb {
  overflow-wrap: anywhere;
  min-width: 0;
}
.proverb-line {
  display: block;
  font-weight: 500;
  line-height: 1.05;
  font-size: var(--text-3xl);
}
.proverb-line--dim { color: var(--paper-dim); }
.proverb-line--mid { color: var(--paper); font-weight: 600; }
.proverb-line--loud {
  font-weight: 900;
  color: var(--gold);
  font-size: var(--text-display-hero);
  letter-spacing: -0.01em;
  margin-top: var(--space-2);
}

.hero__positioning {
  margin-block: var(--space-8) var(--space-10);
  max-width: 46ch;
  font-size: var(--text-md);
  color: var(--paper-faint);
}

/* ============ Pain points ============ */
.pain { padding-block: var(--space-12) var(--space-16); }
.pain__intro {
  margin-top: var(--space-4);
  color: var(--paper-faint);
  max-width: 40ch;
}
.pain__list {
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-6);
}
.pain__item {
  padding-top: var(--space-4);
  border-top: var(--rule-hair) solid var(--paper-hair);
}
.pain__claim {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--paper);
  line-height: 1.3;
}
.pain__support {
  margin-top: var(--space-3);
  color: var(--paper-faint);
  font-size: var(--text-sm);
  max-width: 56ch;
}

/* ============ Mechanism / stage row ============ */
.mechanism { padding-block: var(--space-8) var(--space-20); border-top: var(--rule-hair) solid var(--paper-hair); }
.mechanism__lead {
  color: var(--paper-faint);
  max-width: 44ch;
  margin-bottom: var(--space-10);
}
.stage-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .stage-row { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .stage-row { grid-template-columns: repeat(4, 1fr); }
}

.stage { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-3); }

.stage__num {
  font-family: var(--font-stat);
  font-weight: 700;
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-pill);
  border: var(--rule-thick) solid var(--paper-hair);
}
.stage__num::after { content: attr(data-label); margin-left: var(--space-3); font-family: var(--font-display); font-weight: 600; text-transform: none; letter-spacing: 0; }

.stage--gold .stage__num { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.stage--clay .stage__num { background: var(--clay-deep); color: var(--paper); border-color: var(--clay-deep); }
.stage--outline .stage__num { color: var(--paper); }

.stage__desc { color: var(--paper-faint); font-size: var(--text-sm); max-width: 24ch; }

/* ============ Section head (shared) ============ */
.section-head {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--paper);
  overflow-wrap: anywhere;
  min-width: 0;
}

/* ============ About VOE ============ */
.about {
  padding-block: var(--space-16);
  border-top: var(--rule-hair) solid var(--paper-hair);
}
.about__pull {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-xl);
  line-height: 1.35;
  color: var(--paper);
  max-width: 30ch;
}
.about__body {
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-5);
  color: var(--paper-faint);
  max-width: 60ch;
}
.about__closer {
  color: var(--gold-hover);
  font-weight: 500;
}

/* ============ Filter ("this isn't for everyone") ============ */
.filter {
  padding-block: var(--space-16);
  border-top: var(--rule-hair) solid var(--paper-hair);
}
.filter__intro {
  margin-top: var(--space-4);
  color: var(--paper-faint);
  max-width: 42ch;
}
.filter__body { margin-top: var(--space-10); }
.filter__list { display: grid; gap: var(--space-5); max-width: 52ch; }
.filter__list li {
  display: flex;
  gap: var(--space-4);
  font-size: var(--text-md);
  color: var(--paper);
  line-height: 1.4;
}
.filter__mark {
  flex: none;
  color: var(--gold);
  font-family: var(--font-stat);
  font-weight: 700;
  font-size: var(--text-md);
}
.filter__outro {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: var(--rule-hair) solid var(--paper-hair);
  max-width: 46ch;
  color: var(--paper-faint);
  font-size: var(--text-sm);
}

/* ============ Organizers ============ */
.organizers { padding-block: var(--space-20); border-top: var(--rule-hair) solid var(--paper-hair); }
.org-grid {
  margin-top: var(--space-10);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .org-grid { grid-template-columns: repeat(3, 1fr); }
}
.org { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-3); min-width: 0; }

.org__plate {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  background: var(--ink-raise);
  border: var(--rule-hair) solid var(--paper-hair);
  border-radius: var(--radius-md);
}
.org__plate img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.org__plate--dark img {
  /* hasst-media.png already carries its own dark circular badge —
     shown a touch larger since it doesn't need to fill the plate like a flat mark does */
  max-height: 85%;
}

.org__name { font-size: var(--text-xs); letter-spacing: 0.04em; color: var(--paper-faint); }

.credit-line {
  margin-top: var(--space-12);
  text-align: center;
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--paper-faint);
}

/* ============ Event sheet ============ */
.event { padding-block: var(--space-20); border-top: var(--rule-hair) solid var(--paper-hair); }
.event__lead { margin-top: var(--space-3); color: var(--paper-faint); }
.event__grid {
  margin-top: var(--space-10);
  display: grid;
  gap: var(--space-10);
}
.event-sheet {
  border-top: var(--rule-hair) solid var(--paper-hair);
}
.event-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  padding-block: var(--space-6);
  border-bottom: var(--rule-hair) solid var(--paper-hair);
}
@media (min-width: 560px) {
  .event-row { grid-template-columns: 100px 1fr; gap: var(--space-6); align-items: baseline; }
}
.event-row dt {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--text-xs);
  color: var(--gold);
}
.event-row dd { margin: 0; color: var(--paper); max-width: 52ch; overflow-wrap: anywhere; }

.event-card {
  background: var(--ink-raise-2);
  border: var(--rule-hair) solid var(--paper-hair);
  border-left: var(--rule-thick) solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: grid;
  gap: var(--space-1);
}
.event-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: var(--space-5);
}
.event-card__label:first-child { margin-top: 0; }
.event-card__stat {
  font-family: var(--font-stat);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--paper);
}
.event-card__time { color: var(--paper-faint); font-size: var(--text-sm); }
.event-card__where { color: var(--paper); }
.event-card .btn { margin-top: var(--space-6); }

/* ============ Founding partners ============ */
.partners { padding-block: var(--space-20); border-top: var(--rule-hair) solid var(--paper-hair); }
.partners__intro { margin-top: var(--space-3); color: var(--paper-faint); max-width: 40ch; }
.partners__status { margin-top: var(--space-3); font-size: var(--text-sm); color: var(--gold); }
.partner-slots {
  margin-top: var(--space-8);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .partner-slots { grid-template-columns: repeat(4, 1fr); }
}
.partner-slot {
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--paper-hair);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-faint);
}
/* ============ Final CTA (color-block band) ============ */
.final-cta { background: var(--gold); color: var(--ink); padding-block: var(--space-20); }
.final-cta__inner {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}
.final-cta__scarcity {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(22, 16, 31, 0.12);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
}
.final-cta__head {
  margin-top: var(--space-5);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--ink);
}
.final-cta__sub {
  margin-top: var(--space-4);
  max-width: 40ch;
  color: var(--ink);
  opacity: 0.75;
}
.final-cta .btn--dark {
  margin-top: var(--space-8);
  background: var(--ink);
  color: var(--paper);
}
.final-cta .btn--dark:hover { background: var(--ink-raise-2); transform: translateY(-1px); }
.final-cta .btn--dark:active { background: var(--ink); transform: translateY(0); }

.final-cta__qr {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--paper);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  width: fit-content;
}
.final-cta__qr img { width: 96px; height: 96px; border-radius: var(--radius-sm); }
.final-cta__link { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--ink); word-break: break-all; }

/* ============ Apply page ============ */
.apply-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-6);
}
.apply-header__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  text-decoration: none;
  color: var(--gold);
}
.apply-header__back {
  font-size: var(--text-sm);
  color: var(--paper-faint);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.apply-header__back:hover { color: var(--paper); }

.apply-main { padding-block: var(--space-8) var(--space-24); }
.apply__scarcity {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-hover);
  background: var(--ink-raise);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
}
.apply__head { margin-top: var(--space-5); font-size: var(--text-3xl); }
.apply__dek { margin-top: var(--space-3); color: var(--paper-faint); max-width: 44ch; }

.apply__grid {
  margin-top: var(--space-12);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
}
@media (min-width: 900px) {
  .apply__grid { grid-template-columns: 1.6fr 1fr; align-items: start; }
}

.apply-form { display: grid; gap: var(--space-8); }

.field { display: grid; gap: var(--space-3); min-width: 0; }
.field__q {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
}
.field__num {
  font-family: var(--font-stat);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--gold);
  flex: none;
}
.field__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--paper);
}
.field__optional {
  font-size: var(--text-xs);
  color: var(--paper-faint);
  font-weight: 400;
  font-family: var(--font-body);
}
.field__multi { display: grid; gap: var(--space-3); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-input, .text-area {
  width: 100%;
  background: var(--ink-raise);
  border: var(--rule-hair) solid var(--paper-hair);
  border-radius: var(--radius-sm);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: var(--text-base);
  padding: var(--space-4);
  transition: border-color var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}
.text-area { resize: vertical; min-height: 5.5em; }
.text-input::placeholder, .text-area::placeholder { color: var(--paper-faint); }
.text-input:hover, .text-area:hover { border-color: var(--paper-dim); }
.text-input:focus, .text-area:focus { border-color: var(--gold); background: var(--ink-raise-2); outline: none; }
.text-input:focus-visible, .text-area:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 1px; }
.field.is-invalid .text-input,
.field.is-invalid .text-area { border-color: var(--clay-hover); }
.field__error {
  display: none;
  font-size: var(--text-xs);
  color: var(--clay-hover);
}
.field.is-invalid .field__error { display: block; }

.choice-group { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.choice {
  position: relative;
}
.choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.choice__pill {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-pill);
  border: var(--rule-thick) solid var(--paper-hair);
  font-size: var(--text-sm);
  color: var(--paper-faint);
  transition: border-color var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  user-select: none;
}
.choice input:hover + .choice__pill { border-color: var(--paper-dim); color: var(--paper); }
.choice input:focus-visible + .choice__pill { outline: 3px solid var(--focus-ring); outline-offset: 2px; }
.choice input:active + .choice__pill { transform: scale(0.97); }
.choice input:checked + .choice__pill {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 600;
}

.apply-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-2);
}
.apply-submit__note { font-size: var(--text-xs); color: var(--paper-faint); max-width: 30ch; }

.form-status {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: var(--ink-raise); border: var(--rule-hair) solid var(--gold); color: var(--paper); }
.form-status.is-error { background: var(--ink-raise); border: var(--rule-hair) solid var(--clay-hover); color: var(--paper); }

.apply__qr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-8);
  background: var(--ink-raise);
  border-radius: var(--radius-lg);
}
.apply__qr img { border-radius: var(--radius-sm); width: 100%; max-width: 220px; height: auto; }
.apply__link { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--gold); word-break: break-all; }
.apply__qr-caption { font-size: var(--text-xs); color: var(--paper-faint); }

/* ============ Footer ============ */
.site-footer {
  padding-block: var(--space-16) var(--space-32);
  border-top: var(--rule-hair) solid var(--paper-hair);
  display: grid;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .site-footer { grid-template-columns: 1fr auto; align-items: end; }
}
.site-footer__brand { display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap; }
.site-footer__kreyol { height: 30px; width: auto; }
.site-footer__bara { height: 22px; width: auto; opacity: 0.9; }
.site-footer__hasst { height: 40px; width: auto; border-radius: var(--radius-sm); }
.site-footer__credit { font-size: var(--text-xs); color: var(--paper-faint); margin-top: var(--space-3); max-width: 40ch; }
.site-footer__qr { display: flex; align-items: center; gap: var(--space-3); }
.site-footer__qr img { width: 64px; height: 64px; border-radius: var(--radius-sm); }
.site-footer__qr-text { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--paper-faint); }

/* ============ Sticky mobile CTA ============ */
.sticky-cta {
  position: fixed;
  left: var(--space-4);
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 100;
  opacity: 0;
  transform: translateY(140%);
  transition: transform var(--dur-slow) var(--ease-out), opacity var(--dur-base) var(--ease-out);
  pointer-events: none;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (min-width: 900px) {
  .sticky-cta { left: auto; right: var(--space-8); bottom: var(--space-8); max-width: 280px; }
}

/* ============ Scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .sticky-cta { transition: opacity var(--dur-fast) linear; transform: none; }
}

/* ============================================================
   Desktop macrostructure — genuine multi-column compositions,
   not a stretched single column. Applies at 1024px+.
   ============================================================ */
/* Tablet-only hero tuning (768–1023px): the base mobile circle/font pairing
   was sized for phone widths. Left untouched, the loud "GO TOGETHER." line's
   font grows fast enough at this range to sit directly on the gold circle —
   same hue, so the collision reads as clipped/missing text. Circle pulled
   smaller and further off-screen; loud line capped rather than left to grow
   uncontrolled, while staying larger than the regular proverb lines. */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero__circles { width: 60vw; right: -20vw; top: -10vw; }
  .proverb-line--loud { font-size: clamp(3rem, 7vw, 4.4rem); }
}

@media (min-width: 1024px) {

  /* Hero: proverb + CTA in a defined left column, circles own the right.
     margin-inline is reset to 0 because .content-wrap's inherited auto-centering
     would otherwise drift this fixed-width column rightward as the viewport grows,
     pulling "GO TOGETHER." into the circle at large desktop widths. */
  .hero { padding-top: var(--space-20); padding-bottom: var(--space-32); }
  .hero__inner { max-width: 840px; margin-inline: 0; }
  .proverb-line--loud { font-size: clamp(2.2rem, 6vw, 5.6rem); }
  .hero__circles {
    top: -14vw;
    right: -14vw;
    width: 58vw;
    max-width: 900px;
  }
  .eyebrow-band { width: 90%; margin-left: 0; }
  .eyebrow-band__text { padding-left: var(--space-10); }

  /* Pain points: rail heading left, stacked statements right */
  .pain__head { max-width: none; }
  .pain {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: var(--space-16);
  }
  .pain__intro { max-width: 30ch; }
  .pain__list { margin-top: 0; }
  .pain__item:first-child { border-top: none; padding-top: 0; }

  /* Mechanism: lead line beside the stage row instead of stacked above */
  .mechanism__lead { max-width: 22ch; margin-bottom: 0; }
  .mechanism {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--space-10);
    align-items: start;
  }
  .mechanism .stage-row { grid-column: 2; }

  /* About VOE: magazine split — big pull-quote left, body right */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: start;
  }
  .about__pull { font-size: var(--text-2xl); max-width: 16ch; }
  .about__body { margin-top: 0; }

  /* Filter: rail heading left, bullets right */
  .filter {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--space-16);
  }
  .filter__body { margin-top: 0; }

  /* Event: narrative rows left, highlighted ticket card right */
  .event__grid { grid-template-columns: 1.3fr 1fr; align-items: start; }
  .event-card { position: sticky; top: var(--space-8); }

  /* Founding partners: heading row + status inline, slots below */
  .partners__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-8);
  }
  .partners__status { margin-top: 0; flex: none; }

  /* Final CTA band: text left, QR card right */
  .final-cta__inner { grid-template-columns: 1fr auto; }
}
