/* ── Join / Closed Beta Landing Page ─────────────────────────────────────── */

/* Suppress the default top ad slot on this page */
.trr-ad-slot { display: none !important; }

/* ── Seed color tokens (used in SVG bracket chips) ─────────────────────────── */
:root {
  --seed-1:  #E8872B; --seed-2:  #D07828; --seed-3:  #4A6FA5; --seed-4:  #3D5E8C;
  --seed-5:  #3D5E8C; --seed-6:  #304D73; --seed-7:  #304D73; --seed-8:  #2A4060;
  --seed-9:  #2A4060; --seed-10: #254060; --seed-11: #6B4A2A; --seed-12: #6B4A2A;
  --seed-13: #555555; --seed-14: #555555; --seed-15: #484848; --seed-16: #3A3A3A;
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.join-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 5vw, 64px) 0 0;
}

.join-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
}

.join-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.1s both;
}

.join-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  animation: livePulse 1.6s ease-in-out infinite;
}

.join-headline {
  font-family: var(--fh);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  max-width: 900px;
  margin: 0 0 16px;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.25s both;
}

.join-headline .ja { color: var(--orange); }

.join-sub {
  font-family: var(--fm);
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 1.6;
  color: var(--sub);
  max-width: 660px;
  margin: 0 0 26px;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.4s both;
}

.join-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.55s both;
}

.join-btn {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: filter 0.15s, transform 0.15s;
  border: 1.5px solid transparent;
}

.join-btn:hover { filter: var(--hover-lift); transform: translateY(-1px); }
.join-btn:active { transform: translateY(0); }

.join-btn--primary {
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
}

.join-btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.join-btn--ghost:hover { border-color: var(--sub); filter: none; transform: none; }

/* ── Inline panels (code entry + waitlist) ───────────────────────────────── */
.join-panel-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 30px;
  max-width: 520px;
  width: 100%;
  text-align: left;
  animation: panelIn 0.3s ease-out both;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.join-panel-title {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 6px;
}

.join-panel-sub {
  font-size: 13px;
  color: var(--sub);
  margin: 0 0 20px;
  line-height: 1.6;
}

.join-input-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
}

.join-input {
  flex: 1 1 220px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--fm);
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 11px 14px;
  transition: border-color 0.15s;
}

.join-input::placeholder { color: var(--muted); letter-spacing: 0.03em; }
.join-input:focus { border-color: var(--amber); }

.join-submit {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  padding: 11px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.15s;
}

.join-submit:hover { filter: var(--hover-lift); }
.join-submit:disabled { opacity: 0.5; cursor: default; filter: none; }

.join-msg {
  margin-top: 14px;
  font-size: 13px;
  min-height: 18px;
  font-family: var(--fm);
}

.join-msg--ok    { color: #4ade80; }
.join-msg--err   { color: #f87171; }
.join-msg--info  { color: var(--sub); }

.join-panel-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
  cursor: pointer;
  margin-top: 18px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--fm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s;
}

.join-panel-back:hover { color: var(--sub); }

/* Success state for code redemption */
.join-success { text-align: center; padding: 10px 0 4px; }
.join-success-mark { font-size: 36px; line-height: 1; margin-bottom: 12px; color: var(--orange); font-family: var(--fm); }
.join-success-label { font-family: var(--fd); font-size: 22px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); margin-bottom: 6px; }
.join-success-sub { font-size: 13px; color: var(--sub); }

/* ── Full-width animated hero art ─────────────────────────────────────────── */
.join-hero-art {
  position: relative;
  width: 100%;
  margin-top: clamp(20px, 3vw, 34px);
  height: min(34vw, 420px);
  pointer-events: none;
}

.join-hero-art-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.join-hero-art-scene.is-active { opacity: 1; }

.join-art-bracket-compact { display: none; }
.join-hero-art.is-narrow .join-art-bracket-full { display: none; }
.join-hero-art.is-narrow .join-art-bracket-compact { display: block; }

@keyframes roundGlow {
  0% { opacity: .26; }
  5% { opacity: 1; }
  14% { opacity: 1; }
  21% { opacity: .26; }
  100% { opacity: .26; }
}
.join-art-glow { animation: roundGlow 8s ease-in-out 1 both; animation-delay: var(--delay, 0s); }

@keyframes champGlow {
  0%, 58% { opacity: .3; }
  64% { opacity: 1; }
  88% { opacity: 1; }
  96%, 100% { opacity: .3; }
}
.join-art-champ-glow { animation: champGlow 8s ease-in-out 1 both; }

@keyframes champChip {
  0%, 58% { opacity: 0; transform: scale(.7); }
  66% { opacity: 1; transform: scale(1.06); }
  72%, 88% { opacity: 1; transform: scale(1); }
  96%, 100% { opacity: 0; transform: scale(.7); }
}
.join-art-champ-chip { transform-box: fill-box; transform-origin: center; animation: champChip 8s ease-in-out 1 both; }

/* Scroll two rows, hold, then let a already-checked pick pulse — the ballot
   gets the same build → payoff shape as the bracket's champion and the
   Oscar scene's star instead of an endless, momentless conveyor scroll. */
@keyframes scrollRows {
  0% { transform: translateY(0); }
  46%, 100% { transform: translateY(-112px); }
}
.join-art-scroll-rows { animation: scrollRows 8s cubic-bezier(.4,0,.2,1) 1 both; }

@keyframes votePulse {
  0%, 52% { opacity: .7; transform: scale(1); }
  60% { opacity: 1; transform: scale(1.2); }
  68%, 86% { opacity: 1; transform: scale(1); }
  100% { opacity: .7; transform: scale(1); }
}
.join-art-vote-pulse { transform-box: fill-box; transform-origin: center; animation: votePulse 8s ease-in-out 1 both; }

@keyframes voteRowGlow {
  0%, 52% { stroke-opacity: .75; }
  60%, 86% { stroke-opacity: 1; }
  100% { stroke-opacity: .75; }
}
.join-art-vote-row { animation: voteRowGlow 8s ease-in-out 1 both; }

/* Spotlight snaps on right as the curtain finishes rising, instead of
   fading in slower than the curtain and pedestal it's meant to reveal. */
@keyframes spotOn {
  0%, 24% { opacity: 0; }
  32%, 86% { opacity: .22; }
  100% { opacity: 0; }
}
.join-art-spot { animation: spotOn 8s ease-in-out 1 both; }

@keyframes pedestalLift {
  0%, 26% { transform: translateY(16px); opacity: .45; }
  46%, 84% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: .45; }
}
.join-art-pedestal-lift { animation: pedestalLift 8s ease-in-out 1 both; }

@keyframes starPop {
  0%, 40% { opacity: 0; transform: scale(.5); }
  54%, 84% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(.5); }
}
.join-art-star-pop { transform-box: fill-box; transform-origin: center; animation: starPop 8s ease-in-out 1 both; }

@keyframes curtainRise {
  0%, 4% { transform: translateY(0); }
  26% { transform: translateY(-420px); }
  88% { transform: translateY(-420px); }
  100% { transform: translateY(0); }
}
.join-art-curtain-rise { animation: curtainRise 8s cubic-bezier(.4,0,.2,1) 1 both; }

/* ── Proof strip ───────────────────────────────────────────────────────────── */
.join-proof-strip {
  max-width: var(--max);
  margin: clamp(24px, 3vw, 40px) auto 0;
  padding: 0 var(--pad) clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0 clamp(20px, 3vw, 40px);
}

.join-proof-col {
  padding: 0 0 22px;
  border-top: 2px solid var(--border);
  transition: border-color .35s ease;
}
.join-proof-col.is-active { border-top-color: var(--orange); }

.join-proof-tab {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 14px 0 16px;
  cursor: pointer;
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.join-proof-col.is-active .join-proof-tab { color: var(--orange); }

.join-proof-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; }
.join-proof-spark { width: 84px; height: 34px; flex-shrink: 0; }
.join-proof-icon { color: var(--orange); flex-shrink: 0; }

.join-proof-badge { display: inline-flex; align-items: center; font-family: var(--fm); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); border: 1px solid var(--orange); padding: 2px 8px; border-radius: 2px; margin-bottom: 9px; }
.join-proof-num { margin: 0 0 5px; font-family: var(--fm); font-size: 34px; font-weight: 700; line-height: 1; color: var(--orange); }
.join-proof-num-sub { font-size: 15px; color: var(--sub); }
.join-proof-caption { margin: 6px 0 0; font-family: var(--fd); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text); }

/* Shared fixed-height slot so the table / class list / bar chart all give the
   three columns roughly the same footprint despite being different visual types. */
.join-proof-visual { margin-top: 14px; min-height: 160px; display: flex; flex-direction: column; justify-content: center; }

/* Bracket: real per-seed-line breakdown, aggregated from bracket/scorecard/. */
.join-proof-seed-table { display: grid; grid-template-columns: 1fr 1fr; grid-auto-flow: column; grid-template-rows: repeat(8, auto); gap: 4px 20px; }
.brk-seed-row { display: flex; align-items: center; gap: 8px; }
.brk-seed-num { font-family: var(--fm); font-size: 9.5px; color: var(--muted); width: 13px; flex-shrink: 0; }
.brk-seed-bar { flex: 1; height: 6px; background: #0F2E55; border-radius: 2px; overflow: hidden; display: flex; }
.brk-seed-bar i { display: block; height: 100%; }
.brk-seed-bar .is-exact { background: var(--orange); }
.brk-seed-bar .is-close { background: var(--amber); opacity: .5; }
.brk-seed-frac { font-family: var(--fm); font-size: 9px; color: var(--muted); width: 24px; text-align: right; flex-shrink: 0; }

/* HoF: the model's own next projection — its top 2027 candidates and their
   induction odds — instead of an abstracted accuracy visual. chance_pct is
   already rounded to one decimal in categories.yml so a near-lock never
   prints as a fabricated "100%". Plain text rows, no bars — the headline
   number above already carries the chart-shaped proof for this column. */
.join-proof-visual-label { margin: 0 0 8px; font-family: var(--fm); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); line-height: 1.4; }
.join-proof-classlist { display: flex; flex-direction: column; gap: 6px; }
.hof-class-row { display: flex; align-items: baseline; gap: 8px; }
.hof-class-header { margin-bottom: 2px; padding-bottom: 4px; border-bottom: 1px solid var(--border); }
.hof-class-header .hof-class-pct { font-size: 8px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.hof-class-name { font-family: var(--fd); font-size: 13px; font-weight: 700; color: var(--text); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hof-class-pos { font-family: var(--fm); font-size: 9px; color: var(--muted); width: 18px; flex-shrink: 0; }
.hof-class-pct { font-family: var(--fm); font-size: 11px; color: var(--orange); width: 34px; text-align: right; flex-shrink: 0; }

/* Oscars: real per-category hit rate, Core 6, one vertical bar per category —
   the pooled 77% hides real variance (Director 90% vs. Lead Actress 57%). A
   dashed reference line marks that pooled average so each bar's over/under
   is legible at a glance. Labels are short and set horizontally on purpose —
   rotated/vertical text tested worse for at-a-glance reading at this size. */
.join-proof-barchart-wrap { width: 100%; }
.join-proof-barchart { position: relative; display: flex; align-items: flex-end; gap: 10px; height: 132px; }
.osc-bar-avgline { position: absolute; left: 0; right: 0; bottom: var(--avg, 77%); border-top: 1px dashed var(--muted); opacity: .6; }
.osc-bar-avgline-tag { position: absolute; right: 0; top: -12px; font-family: var(--fm); font-size: 7.5px; letter-spacing: .04em; color: var(--muted); background: var(--card); padding: 0 4px 0 0; white-space: nowrap; }
.osc-bar-col { position: relative; display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; height: 100%; z-index: 1; }
.osc-bar-val { font-family: var(--fm); font-size: 10px; font-weight: 700; color: var(--text); }
.osc-bar-track { flex: 1; width: 100%; max-width: 24px; display: flex; align-items: flex-end; }
.osc-bar-fill { width: 100%; background: var(--amber); border-radius: 2px 2px 0 0; min-height: 2px; }
.join-proof-barchart-labels { display: flex; gap: 10px; margin-top: 6px; }
.osc-bar-label {
  flex: 1;
  font-family: var(--fm);
  font-size: 8.5px;
  letter-spacing: .01em;
  color: var(--muted);
  text-align: center;
  line-height: 1.25;
  white-space: normal;
  word-break: normal;
}

/* ── The three pillars (merged into the "What is this" reveal) ─────────────── */
.join-method-grid {
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 980px;
}

.join-method-item { border-top: 1px solid var(--border); padding-top: 22px; }

.join-method-tag {
  margin: 0 0 10px;
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}

.join-method-desc { margin: 0; font-size: 14.5px; line-height: 1.7; color: var(--sub); text-wrap: pretty; }

/* ── Reveal section ──────────────────────────────────────────────────────── */
.join-reveal {
  padding: clamp(56px, 7vw, 96px) var(--pad) 0;
  max-width: var(--max);
  margin: 0 auto;
}

.js-reveals [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-reveals [data-reveal].is-revealed { opacity: 1; transform: translateY(0); }

.join-section-label {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 16px;
}

.join-reveal-intro h2 {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 24px;
}

.join-reveal-body { max-width: 680px; color: var(--sub); line-height: 1.75; font-size: 16px; }
.join-reveal-body p + p { margin-top: 16px; }

/* ── Public projections ───────────────────────────────────────────────────── */
.join-public { margin-top: clamp(56px, 7vw, 96px); }

.join-public-label { font-family: var(--fm); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin: 0 0 14px; }
.join-public-head { font-family: var(--fd); font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; line-height: 1.1; color: var(--text); margin: 0 0 clamp(20px, 2.5vw, 28px); }
.join-public-sub { font-family: var(--fb); font-size: 15px; color: var(--sub); max-width: 640px; margin: 0 0 clamp(24px, 3vw, 36px); line-height: 1.7; }

/* Guides now lead (pillar order 01 -> 02), so the models block carries the
   divider that used to sit above the guides row. */
.join-models { margin-top: clamp(36px, 4vw, 52px); padding-top: clamp(28px, 3vw, 36px); border-top: 1px solid var(--border); }

.join-link-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.join-link-grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.join-link-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.15s;
}
.join-link-card:hover { border-color: var(--orange); }

.join-link-card-art { background: var(--surface); padding: 20px 22px 8px; border-bottom: 1px solid var(--border); }
.join-link-card-body { display: flex; flex-direction: column; gap: 8px; padding: 22px 24px 26px; flex: 1; }

.join-link-sport { font-family: var(--fd); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.join-link-title { font-family: var(--fd); font-size: 24px; font-weight: 700; color: var(--text); line-height: 1.2; }
.join-link-desc { font-size: 13.5px; color: var(--sub); line-height: 1.65; flex: 1; }
.join-link-cta { font-family: var(--fd); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--orange); margin-top: 6px; }

.join-link-pulse { animation: livePulse 1.6s ease-in-out infinite; }

/* ── Guides row ──────────────────────────────────────────────────────────── */
.join-guides { }
.join-guides-label { margin: 0 0 8px; font-family: var(--fm); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #4ADE80; }
.join-guides-sub { margin: 0 0 clamp(20px, 2.5vw, 28px); font-size: 14.5px; line-height: 1.7; color: var(--sub); max-width: 660px; text-wrap: pretty; }

.join-guides-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }

.join-guide-chip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px 20px;
  border: 1px solid rgba(74,222,128,0.32);
  border-left: 2px solid #4ADE80;
  border-radius: 8px;
  background: var(--card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}
.join-guide-chip:hover { border-color: #4ADE80; }

.join-guide-chip-sport { font-family: var(--fm); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--sub); }
.join-guide-chip-name { font-family: var(--fd); font-size: 20px; font-weight: 700; letter-spacing: .02em; color: var(--text); }
.join-guide-chip-desc { font-size: 13px; line-height: 1.65; color: var(--sub); flex: 1; }
.join-guide-chip-cta { font-family: var(--fm); font-size: 11px; letter-spacing: .04em; color: #4ADE80; margin-top: 4px; }

/* ── Tool cards ────────────────────────────────────────────────────────────── */
.join-tools-label {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 64px 0 24px;
  max-width: 700px;
}

.join-tools { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

.join-tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  border-radius: 8px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.join-tool-tag { font-family: var(--fm); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin: 0 0 14px; }

.join-tool-soon {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--sub);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3px 9px;
  height: fit-content;
}

.join-tool-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 12px; }

.join-tool-name { font-family: var(--fd); font-size: 26px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); margin: 0; }
.join-tool-desc { font-size: 14px; color: var(--sub); line-height: 1.65; margin: 0 0 20px; }

.join-tool-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; }
.join-tool-bullets li { font-family: var(--fm); font-size: 12px; color: var(--muted); letter-spacing: 0.03em; padding-left: 16px; position: relative; }
.join-tool-bullets li::before { content: '→'; position: absolute; left: 0; color: var(--orange); }

/* Studio icon (basketball / football / film — the same per-category icon used
   everywhere else on the site, from _data/icons.yml via icon.html). */
.join-tool-icon { color: var(--orange); flex-shrink: 0; }

/* ── Who's behind it ─────────────────────────────────────────────────────── */
.join-about {
  margin-top: clamp(56px, 7vw, 96px);
  padding: clamp(40px, 5vw, 64px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.join-about-logo { display: block; height: clamp(52px, 5vw, 68px); width: auto; margin: 0 0 24px; }

.join-about-grid { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 64px); align-items: flex-start; }

.join-about-copy { flex: 1 1 320px; min-width: min(100%, 300px); }
.join-about-copy h2 { margin: 0 0 16px; font-family: var(--fd); font-size: clamp(26px, 3vw, 36px); font-weight: 700; line-height: 1.1; color: var(--text); }
.join-about-copy > p { margin: 0 0 14px; font-size: 14.5px; line-height: 1.75; color: var(--sub); max-width: 560px; text-wrap: pretty; }

.join-about-callout {
  margin: 8px 0 22px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 2px solid var(--orange);
  border-radius: 6px;
  max-width: 560px;
}
.join-about-callout-label { margin: 0 0 8px; font-family: var(--fm); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); }
.join-about-callout p:last-child { margin: 0; font-size: 13.5px; line-height: 1.7; color: var(--sub); text-wrap: pretty; }

.join-about-email { font-family: var(--fd); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); text-decoration: none; }

.join-about-stats { flex: 0 1 300px; min-width: min(100%, 260px); display: flex; flex-direction: column; }
.join-about-stat { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.join-about-stat:last-child { border-bottom: none; }
.join-about-stat span:first-child { font-family: var(--fd); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.join-about-stat span:last-child { font-family: var(--fm); font-size: 18px; font-weight: 700; color: var(--text); }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.join-faq-wrap { padding: clamp(56px, 7vw, 96px) var(--pad) 0; max-width: var(--max); margin: 0 auto; }
.join-faq { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 0 48px; }
.join-faq-item { border-bottom: 1px solid var(--border); }

.join-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 28px 20px 0;
  position: relative;
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.join-faq-item summary::-webkit-details-marker { display: none; }
.join-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 18px;
  font-family: var(--fm);
  font-size: 20px;
  color: var(--orange);
  transition: transform 0.15s;
}
.join-faq-item[open] summary::after { content: '−'; }

.join-faq-body { padding: 0 28px 20px 0; color: var(--sub); font-size: 14.5px; line-height: 1.7; }
.join-faq-body p { margin: 0; }

/* ── Bottom CTA ──────────────────────────────────────────────────────────── */
.join-bottom-cta { text-align: center; padding: clamp(56px, 7vw, 96px) var(--pad) 100px; border-top: 1px solid var(--border); }
.join-bottom-cta h2 { font-family: var(--fd); font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.join-bottom-cta p { color: var(--sub); font-size: 16px; margin: 0 0 36px; }
.join-bottom-note { margin: 36px auto 0 !important; padding-top: 24px; border-top: 1px solid var(--border); max-width: 640px; font-family: var(--fm); font-size: 10.5px; letter-spacing: .06em; color: var(--muted); }

/* ── Reduced motion ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .join-badge, .join-headline, .join-sub, .join-ctas,
  .join-badge-dot, .join-link-pulse,
  .join-art-glow, .join-art-champ-glow, .join-art-champ-chip,
  .join-art-scroll-rows, .join-art-vote-pulse, .join-art-vote-row,
  .join-art-spot, .join-art-pedestal-lift,
  .join-art-star-pop, .join-art-curtain-rise {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .join-about-grid { gap: 24px; }
}

@media (max-width: 700px) {
  .join-hero { padding-top: 44px; }
  .join-panel-wrap { padding: 24px 22px; }
  .join-link-grid,
  .join-link-grid--3 { grid-template-columns: 1fr; }
  .join-guide-chip { flex: 1 1 100%; }
  .join-faq-wrap { padding-top: 48px; }
  .join-about { padding: 28px 22px; }
  /* 16px — anything smaller triggers iOS Safari's auto-zoom-on-focus */
  .join-input { font-size: 16px; }
}
