/* ==========================================================================
   WENEX Creators — PUBLIC flagship page (C5). wdxs-marketing mode.
   Cinematic dark hero → editorial light body → warm accents. Built ONLY on
   wdxs-tokens.css. Crimson is functional: the application CTA owns it.
   No gradients-for-gradients'-sake, no SaaS chrome, no stock-affiliate look.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body.wxp-creators {
  margin: 0;
  font-family: var(--wdxs-font-text);
  font-size: var(--wdxs-type-body);
  line-height: var(--wdxs-leading-normal);
  color: var(--wdxs-ink-primary);
  background: var(--wdxs-surface-canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }

/* ---- shared type ---- */
.wxp-eyebrow {
  font-family: var(--wdxs-font-text);
  font-size: var(--wdxs-type-micro);
  font-weight: 700;
  letter-spacing: var(--wdxs-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--wdxs-accent);
  margin: 0 0 var(--wdxs-space-3);
}
.wxp-title {
  font-family: var(--wdxs-font-display);
  font-size: var(--wdxs-type-display-2);
  font-weight: 700;
  line-height: var(--wdxs-leading-tight);
  letter-spacing: var(--wdxs-tracking-display);
  margin: 0 0 var(--wdxs-space-5);
}
.wxp-prose {
  font-size: var(--wdxs-type-lead);
  color: var(--wdxs-ink-secondary);
  max-width: var(--wdxs-width-prose);
  margin: 0 0 var(--wdxs-space-5);
}

/* ---- buttons (near-square WENEX geometry, 44px+) ---- */
.wxp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--wdxs-density-control);
  padding: 0 var(--wdxs-space-6);
  font-family: var(--wdxs-font-text);
  font-size: var(--wdxs-type-ui); font-weight: 700;
  text-decoration: none; cursor: pointer;
  border-radius: var(--wdxs-radius-xs);
  border: 1px solid transparent;
  transition: background var(--wdxs-duration-fast) var(--wdxs-ease-standard),
              color var(--wdxs-duration-fast) var(--wdxs-ease-standard),
              border-color var(--wdxs-duration-fast) var(--wdxs-ease-standard);
}
.wxp-btn:focus-visible { outline: var(--wdxs-focus-ring); outline-offset: var(--wdxs-focus-offset); }
.wxp-btn--primary { background: var(--wdxs-accent); color: var(--wdxs-ink-on-accent); }
.wxp-btn--primary:hover { background: var(--wdxs-accent-hover); }
.wxp-btn--ghost-light { background: transparent; color: var(--wdxs-ink-on-dark); border-color: rgba(255,255,255,0.45); /* owner QA: UI border >=3:1 */ }
.wxp-btn--ghost-light:hover { border-color: rgba(255,255,255,0.6); }
.wxp-btn--dark { background: var(--wdxs-ink-primary); color: var(--wdxs-surface-canvas); }
.wxp-btn--dark:hover { background: #2a2a2e; }
.wxp-btn--ghost { background: transparent; color: var(--wdxs-ink-primary); border-color: var(--wdxs-hairline-str); }
.wxp-btn--ghost:hover { border-color: var(--wdxs-ink-primary); }
.wxp-btn--wait { background: rgba(255,255,255,0.08); color: var(--wdxs-ink-on-dark-2); cursor: default; }

/* ==========================================================================
   HERO — THE DISAPPEARING STUDIO (the black stage, staged)
   Scene stack: studio photograph → scrim (text legibility) → shade (the dark
   that swallows the studio on scroll, with a pointer-following hole of light).
   ========================================================================== */
.wxp-hero {
  background: var(--wdxs-surface-inverse);
  color: var(--wdxs-ink-on-dark);
  padding-bottom: var(--wdxs-density-section);
}
.wxp-stage { position: relative; overflow: hidden; }
.wxp-stage__scene { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.wxp-stage__studio {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 38%;
  transform: scale(1.05);
}
/* legibility scrim under the copy column; bottom fade seams the hero into the page canvas */
.wxp-stage__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0) 62%, rgba(0,0,0,0.9) 96%),
    linear-gradient(97deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.55) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0.28) 100%);
}
/* the dark that swallows the studio — masked by a hole of light that follows the pointer.
   Default --wxp-tx/--wxp-ty rest on the creator (JS-free visitors keep a fixed pool of light). */
.wxp-stage__shade {
  position: absolute; inset: 0;
  background: #000;
  opacity: 0.42;
  -webkit-mask-image: radial-gradient(circle 260px at var(--wxp-tx, 50%) var(--wxp-ty, 44%), rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 52%, #000 82%);
          mask-image: radial-gradient(circle 260px at var(--wxp-tx, 50%) var(--wxp-ty, 44%), rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 52%, #000 82%);
}
/* scroll-driven fall of darkness + settle of the studio — pure CSS, zero listeners.
   Unsupported browsers keep the composed static scene. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .wxp-stage__shade {
      animation: wxp-shade-fall linear both;
      animation-timeline: view();
      animation-range: exit 0% exit 78%;
    }
    .wxp-stage__studio {
      animation: wxp-studio-settle linear both;
      animation-timeline: view();
      animation-range: exit 0% exit 100%;
    }
  }
}
@keyframes wxp-shade-fall { from { opacity: 0.42; } to { opacity: 0.96; } }
@keyframes wxp-studio-settle { from { transform: scale(1.05); } to { transform: scale(1); } }
.wxp-stage .wxp-nav, .wxp-stage .wxp-hero__inner { position: relative; z-index: 1; }
.wxp-nav {
  display: flex; align-items: center; gap: var(--wdxs-space-4);
  max-width: var(--wdxs-width-content); margin-inline: auto;
  padding: var(--wdxs-space-5) var(--wdxs-edge);
}
.wxp-nav__brand {
  font-family: var(--wdxs-font-display);
  font-weight: 700; font-size: 20px; letter-spacing: 0.28em;
  color: var(--wdxs-ink-on-dark); text-decoration: none;
}
.wxp-nav__scope {
  font-size: var(--wdxs-type-micro); font-weight: 700;
  letter-spacing: var(--wdxs-tracking-eyebrow); text-transform: uppercase;
  color: var(--wdxs-ink-on-dark-2);
  border-inline-start: 1px solid rgba(255,255,255,0.22);
  padding-inline-start: var(--wdxs-space-4);
}
.wxp-nav__cta { margin-inline-start: auto; }
.wxp-hero__inner {
  max-width: var(--wdxs-width-content); margin-inline: auto;
  padding: clamp(40px, 7vw, 96px) var(--wdxs-edge) 0;
  min-height: calc(100svh - 96px); /* the studio owns the first viewport — cinematic opening */
  display: flex; flex-direction: column; justify-content: center;
}
.wxp-hero .wxp-eyebrow { color: rgba(255,255,255,0.70); } /* owner QA: was .55 (4.3:1 at 12px caps) */
.wxp-hero__title {
  font-family: var(--wdxs-font-display);
  font-size: var(--wdxs-type-display-1);
  font-weight: 700; line-height: var(--wdxs-leading-tight);
  letter-spacing: var(--wdxs-tracking-display);
  margin: 0 0 var(--wdxs-space-5);
  max-width: 14ch;
}
.wxp-hero__lead {
  font-size: var(--wdxs-type-lead); line-height: var(--wdxs-leading-relaxed);
  color: var(--wdxs-ink-on-dark-2); max-width: 56ch;
  margin: 0 0 var(--wdxs-space-7);
}
/* Statement — L0 "beyond the tools" performed typographically: line one recedes, line two remains.
   L2 Decision 012: sizes stay on the token scale (display-2 / title-1). */
.wxp-hero__statement {
  font-family: var(--wdxs-font-display);
  font-weight: 700;
  line-height: var(--wdxs-leading-tight);
  letter-spacing: var(--wdxs-tracking-display);
  margin: 0 0 var(--wdxs-space-7);
}
.wxp-hero__statement-fade {
  font-size: var(--wdxs-type-title-1);
  /* 2026-08-03 owner QA: .34 failed AA (2.5:1). .64 still performs the
     recession against the pure-white second line, and reads at 5.6:1. */
  color: rgba(255,255,255,0.64);
}
.wxp-hero__statement-you {
  font-size: var(--wdxs-type-display-2);
  color: var(--wdxs-ink-on-dark);
}
/* Once-only load reveal (L2 Decision 021 vocabulary: opacity + ≤16px, 500–700ms, no scroll listeners).
   JS-free and reduced-motion render fully lit. */
@media (prefers-reduced-motion: no-preference) {
  .wxp-hero__statement { animation: wxp-statement-in 650ms cubic-bezier(.16,1,.3,1) both; animation-delay: 180ms; }
  @keyframes wxp-statement-in {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}
.wxp-hero__actions { display: flex; flex-wrap: wrap; gap: var(--wdxs-space-3); }

/* ==========================================================================
   SECTIONS — editorial rhythm, alternating temperature
   ========================================================================== */
.wxp-section { padding-block: var(--wdxs-density-section); }
.wxp-section__inner { max-width: var(--wdxs-width-content); margin-inline: auto; padding-inline: var(--wdxs-edge); }
.wxp-narrative { background: var(--wdxs-surface-canvas); }
.wxp-benefits  { background: var(--wdxs-surface-sunken); }
.wxp-paths     { background: var(--wdxs-surface-warm); }
.wxp-how       { background: var(--wdxs-surface-canvas); }
.wxp-spots     { background: var(--wdxs-surface-inverse); color: var(--wdxs-ink-on-dark); }
.wxp-faq       { background: var(--wdxs-surface-canvas); }
.wxp-apply     { background: var(--wdxs-surface-sunken); }

/* ---- narrative split: prose + the film's one human frame (Decision 009) ---- */
.wxp-narrative__split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: var(--wdxs-space-8, 64px);
  align-items: center;
}
.wxp-narrative__figure { margin: 0; }
.wxp-narrative__figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: 50% 22%; /* keeps the face in frame at wide crops */
  border-radius: var(--wdxs-radius-lg);
}

/* ---- benefit cards ---- */
.wxp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--wdxs-space-4); margin-top: var(--wdxs-space-6);
}
.wxp-card {
  background: var(--wdxs-surface-raised);
  border: 1px solid var(--wdxs-hairline);
  border-radius: var(--wdxs-radius-lg);
  padding: var(--wdxs-space-6) var(--wdxs-space-5);
  box-shadow: var(--wdxs-shadow-sm);
}
/* The light follows the hand here too — the hero's torch motif, carried into the system
   (Decision 005 permits accent on hover states; kept faint enough to read as light, not color). */
@media (hover: hover) and (pointer: fine) {
  .wxp-card { position: relative; overflow: hidden; transition: border-color var(--wdxs-duration-fast) var(--wdxs-ease-standard); }
  .wxp-card::before {
    content: ''; position: absolute; inset: 0; opacity: 0; pointer-events: none;
    transition: opacity 260ms var(--wdxs-ease-standard);
    background: radial-gradient(220px circle at var(--wxp-mx, 50%) var(--wxp-my, 50%), rgba(201, 57, 39, 0.07), transparent 68%);
  }
  .wxp-card:hover::before { opacity: 1; }
  .wxp-card:hover { border-color: var(--wdxs-hairline-str); }
}
.wxp-card__title {
  font-family: var(--wdxs-font-display);
  font-size: var(--wdxs-type-title-2); font-weight: 700;
  margin: 0 0 var(--wdxs-space-3);
}
.wxp-card__body { margin: 0; font-size: var(--wdxs-type-body); color: var(--wdxs-ink-secondary); }

/* ---- partnership paths ---- */
.wxp-paths__list { list-style: none; margin: var(--wdxs-space-7) 0 0; padding: 0; display: flex; flex-direction: column; }
.wxp-path {
  display: flex; gap: var(--wdxs-space-6); align-items: flex-start;
  padding-block: var(--wdxs-space-6);
  border-top: 1px solid var(--wdxs-hairline-str);
}
.wxp-path:last-child { border-bottom: 1px solid var(--wdxs-hairline-str); }
.wxp-path__n {
  font-family: var(--wdxs-font-display); font-size: var(--wdxs-type-title-1);
  font-weight: 700; color: var(--wdxs-accent); line-height: 1; min-width: 2ch;
}
.wxp-path__title { font-family: var(--wdxs-font-display); font-size: var(--wdxs-type-title-2); font-weight: 700; margin: 0 0 var(--wdxs-space-2); }
.wxp-path__body { margin: 0; color: var(--wdxs-ink-secondary); max-width: 60ch; }

/* ---- how it works ---- */
.wxp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--wdxs-space-5); margin-top: var(--wdxs-space-7); }
.wxp-step__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--wdxs-radius-pill);
  border: 1.5px solid var(--wdxs-ink-primary);
  font-family: var(--wdxs-font-display); font-weight: 700;
  margin-bottom: var(--wdxs-space-3);
}
.wxp-step__title { font-family: var(--wdxs-font-display); font-size: var(--wdxs-type-title-2); font-weight: 700; margin: 0 0 var(--wdxs-space-2); }
.wxp-step__body { margin: 0; font-size: var(--wdxs-type-body); color: var(--wdxs-ink-secondary); }

/* ---- creator seats (honest placeholders on the dark stage) ---- */
.wxp-spots .wxp-prose { color: var(--wdxs-ink-on-dark-2); }
.wxp-spotgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--wdxs-space-4); margin-top: var(--wdxs-space-7); }
.wxp-spot {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--wdxs-radius-lg);
  padding: var(--wdxs-space-7) var(--wdxs-space-5);
  display: flex; flex-direction: column; align-items: flex-start; gap: var(--wdxs-space-2);
  min-height: 180px;
  background: rgba(255,255,255,0.02);
}
.wxp-spot__mark {
  width: 28px; height: 28px; border-radius: var(--wdxs-radius-pill);
  border: 1px solid rgba(255,255,255,0.22);
  display: inline-flex; align-items: center; justify-content: center;
}
.wxp-spot__mark::after {
  content: ''; width: 8px; height: 8px; border-radius: var(--wdxs-radius-pill);
  background: var(--wdxs-accent);
}
.wxp-spot__label { font-family: var(--wdxs-font-display); font-weight: 700; font-size: var(--wdxs-type-title-2); }
.wxp-spot__state { font-size: var(--wdxs-type-micro); letter-spacing: var(--wdxs-tracking-eyebrow); text-transform: uppercase; color: var(--wdxs-accent); font-weight: 700; }

/* ---- FAQ ---- */
.wxp-faq__list { margin-top: var(--wdxs-space-6); max-width: 760px; }
.wxp-faq__item { border-top: 1px solid var(--wdxs-hairline-str); }
.wxp-faq__item:last-child { border-bottom: 1px solid var(--wdxs-hairline-str); }
.wxp-faq__q {
  font-family: var(--wdxs-font-display); font-weight: 700; font-size: var(--wdxs-type-title-2);
  padding-block: var(--wdxs-space-5); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: var(--wdxs-space-4);
}
.wxp-faq__q::-webkit-details-marker { display: none; }
.wxp-faq__q::after { content: '+'; font-weight: 500; color: var(--wdxs-ink-faint); font-size: 24px; }
.wxp-faq__item[open] .wxp-faq__q::after { content: '–'; }
.wxp-faq__q:focus-visible { outline: var(--wdxs-focus-ring); outline-offset: var(--wdxs-focus-offset); }
.wxp-faq__a { margin: 0 0 var(--wdxs-space-5); color: var(--wdxs-ink-secondary); max-width: 62ch; }

/* ==========================================================================
   APPLICATION — multi-step shell (rendered by public.js)
   ========================================================================== */
.wxp-appshell { margin-top: var(--wdxs-space-6); max-width: 640px; }
.wxp-form {
  background: var(--wdxs-surface-raised);
  border: 1px solid var(--wdxs-hairline);
  border-radius: var(--wdxs-radius-lg);
  box-shadow: var(--wdxs-shadow-md);
  padding: var(--wdxs-space-6);
}
.wxp-progress { display: flex; gap: var(--wdxs-space-2); margin-bottom: var(--wdxs-space-6); }
.wxp-progress__seg { flex: 1; height: 3px; border-radius: 2px; background: var(--wdxs-neutral-soft); }
.wxp-progress__seg--done { background: var(--wdxs-accent); }
.wxp-progress__label { font-size: var(--wdxs-type-meta); color: var(--wdxs-ink-muted); margin: 0 0 var(--wdxs-space-5); }
.wxp-form h3 { font-family: var(--wdxs-font-display); font-size: var(--wdxs-type-title-2); margin: 0 0 var(--wdxs-space-4); }
.wxp-field { margin-bottom: var(--wdxs-space-4); }
.wxp-field label { display: block; font-size: var(--wdxs-type-ui); font-weight: 600; margin-bottom: 6px; }
.wxp-field .opt { color: var(--wdxs-ink-faint); font-weight: 400; }
.wxp-input, .wxp-select, .wxp-textarea {
  width: 100%; min-height: var(--wdxs-density-control);
  padding: 10px 14px;
  font: inherit; font-size: var(--wdxs-type-body);
  color: var(--wdxs-ink-primary);
  background: var(--wdxs-surface-canvas);
  border: 1px solid var(--wdxs-hairline-str);
  border-radius: var(--wdxs-radius-sm);
}
.wxp-textarea { min-height: 120px; resize: vertical; }
.wxp-input:focus-visible, .wxp-select:focus-visible, .wxp-textarea:focus-visible {
  outline: var(--wdxs-focus-ring); outline-offset: 1px; border-color: var(--wdxs-accent);
}
.wxp-field--error .wxp-input, .wxp-field--error .wxp-select, .wxp-field--error .wxp-textarea { border-color: var(--wdxs-danger); }
.wxp-field__error { display: block; margin-top: 6px; font-size: var(--wdxs-type-meta); color: var(--wdxs-danger); }
.wxp-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: var(--wdxs-space-3); font-size: var(--wdxs-type-ui); color: var(--wdxs-ink-secondary); }
.wxp-check input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--wdxs-accent); }
.wxp-chiprow { display: flex; flex-wrap: wrap; gap: var(--wdxs-space-2); }
.wxp-chip {
  border: 1px solid var(--wdxs-hairline-str); background: var(--wdxs-surface-canvas);
  border-radius: var(--wdxs-radius-pill); padding: 9px 16px; min-height: 40px;
  font: inherit; font-size: var(--wdxs-type-ui); cursor: pointer;
}
.wxp-chip[aria-pressed="true"] { background: var(--wdxs-ink-primary); color: var(--wdxs-surface-canvas); border-color: var(--wdxs-ink-primary); }
.wxp-chip:focus-visible { outline: var(--wdxs-focus-ring); outline-offset: var(--wdxs-focus-offset); }
.wxp-form__nav { display: flex; justify-content: space-between; gap: var(--wdxs-space-3); margin-top: var(--wdxs-space-6); }
.wxp-form__err { color: var(--wdxs-danger); font-size: var(--wdxs-type-ui); margin: var(--wdxs-space-3) 0 0; }
.wxp-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; } /* honeypot */

/* success state */
.wxp-success { text-align: start; padding: var(--wdxs-space-6) 0; }
.wxp-success__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: var(--wdxs-radius-pill);
  background: var(--wdxs-success-soft); color: var(--wdxs-success-ink);
  font-size: 26px; margin-bottom: var(--wdxs-space-4);
}
.wxp-success__title { font-family: var(--wdxs-font-display); font-size: var(--wdxs-type-title-1); font-weight: 700; margin: 0 0 var(--wdxs-space-3); }
.wxp-success__body { color: var(--wdxs-ink-secondary); max-width: 52ch; margin: 0; }

/* ---- footer ---- */
.wxp-footer { background: var(--wdxs-surface-inverse); color: var(--wdxs-ink-on-dark-2); }
.wxp-footer__inner { max-width: var(--wdxs-width-content); margin-inline: auto; padding: var(--wdxs-space-7) var(--wdxs-edge); }
.wxp-footer__brand { font-family: var(--wdxs-font-display); font-weight: 700; letter-spacing: 0.28em; color: var(--wdxs-ink-on-dark); text-decoration: none; }
.wxp-footer__disclosure { font-size: var(--wdxs-type-meta); line-height: var(--wdxs-leading-relaxed); max-width: 72ch; margin: var(--wdxs-space-4) 0 0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .wxp-narrative__split { grid-template-columns: 1fr; gap: var(--wdxs-space-6); }
  .wxp-narrative__figure { max-width: 520px; }
  .wxp-grid { grid-template-columns: repeat(2, 1fr); }
  .wxp-steps { grid-template-columns: repeat(2, 1fr); }
  .wxp-spotgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .wxp-grid, .wxp-steps, .wxp-spotgrid { grid-template-columns: 1fr; }
  .wxp-path { gap: var(--wdxs-space-4); }
  .wxp-hero__actions .wxp-btn { flex: 1 1 100%; }
  .wxp-form { padding: var(--wdxs-space-5) var(--wdxs-space-4); }
  .wxp-form__nav { flex-wrap: wrap; }
  .wxp-form__nav .wxp-btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .wxp-btn, .wxp-chip { transition: none; }
}

/* ---- 0.9.2: the page rejoins the estate ---- */
.wxp-creators .wxp-hero{padding-top:88px;}
.wxp-ico{display:inline-flex;width:28px;height:28px;color:var(--wdxs-ink-muted,#6E6E73);margin-bottom:14px;} /* owner QA: icons sit on LIGHT cards — #C7C7CC was 1.6:1 */
.wxp-ico svg{width:100%;height:100%;}
.wxp-step .wxp-ico{margin:6px 0 10px;}
.wxp-disclosure{padding-top:0;}
.wxp-disclosure .wxp-footer__disclosure{max-width:70ch;margin:0 auto;font-size:13px;line-height:1.7;color:#6E6E73;text-align:center;}
/* the old private nav/footer rules remain but their elements no longer render */

/* ---- 0.9.3: THE FOLLOWING — the hero moment ---- */
.wxp-following{position:relative;min-height:120vh;display:flex;align-items:center;justify-content:center;background:#000;overflow:clip;}
.wxp-following__field{position:absolute;inset:0;width:100%;height:100%;}
/* no-JS: the gathered sky renders as a static field so the scene is complete */
.wxp-following:not(.wxp-live)::before{content:"";position:absolute;inset:0;opacity:.55;background-image:radial-gradient(rgba(245,245,247,.5) 1px,transparent 1.4px),radial-gradient(rgba(245,245,247,.28) 1px,transparent 1.4px);background-size:56px 48px,37px 61px;background-position:0 0,19px 27px;-webkit-mask-image:radial-gradient(ellipse 62% 52% at 50% 50%,#000 30%,transparent 75%);mask-image:radial-gradient(ellipse 62% 52% at 50% 50%,#000 30%,transparent 75%);}
.wxp-following__word{position:relative;z-index:1;text-align:center;padding:0 24px;}
.wxp-following__title{margin-bottom:10px;}
.wxp-following__you{font-family:var(--wenex-font-headline,'Switzer',sans-serif);font-size:clamp(26px,3.6vw,40px);font-weight:700;color:#FFF;margin:0;}
.wxp-following__you::after{content:"";display:block;width:52px;height:2px;margin:22px auto 0;background:var(--wenex-color-accent,#C93927);}
@media (max-width:767px){.wxp-following{min-height:96vh;}}
@media (prefers-reduced-motion:reduce){.wxp-following *{transition:none!important;}}

/* ---- 0.9.4 (owner QA, blocking): mandated statement hierarchy ---- */
.wxp-following__title{color:#FFFFFF;}
.wxp-following__dim{color:#9DA2A8;} /* neutral grey, 7.1:1 on black — never black */
.wxp-following__accent{color:var(--wdxs-accent,#C93927);} /* the only crimson word; display-size bold = AA large (3.6:1) */
.wxp-following__cue{font-family:var(--wdxs-font-text,'Satoshi',sans-serif);font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:#8A8A90;margin:26px 0 0;}
