/* ═══════════════════════════════════════════════════════════════════
   Single Safety — the movement (v3)
   A redesign for conviction, not explanation. TED-pacing: one idea per
   screen, huge type, generous air. Reuses styles.css tokens.
   ═══════════════════════════════════════════════════════════════════ */

.page-ssm {
  --pad-y: clamp(120px, 15vw, 200px);
  --ink-darker: oklch(0.16 0.03 264);
  --ink-dark: oklch(0.20 0.035 264);
}
.page-ssm .container { max-width: 1180px; }

/* reveal-on-scroll */
.ssm-reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.ssm-reveal.is-in { opacity: 1; transform: none; }
/* Hard-settle: guarantees final visibility even where the compositor pauses transitions */
.ssm-reveal.is-settled { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  .ssm-reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

.ssm-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-deep);
}
.ssm-kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; }

/* ── Hero — the statement ─────────────────────────────────────────── */
.ssm-hero {
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 120px; padding-bottom: 80px;
}
.ssm-hero-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(46px, 8.2vw, 124px);
  line-height: 0.98; letter-spacing: -0.03em;
  margin: 30px 0 0; color: var(--ink-deep);
  max-width: 16ch; text-wrap: balance;
}
.ssm-hero-h .beat { display: block; color: var(--ink-3); }
.ssm-hero-h .ital { font-style: italic; color: var(--green-deep); }
.ssm-hero-scroll {
  margin-top: clamp(48px, 7vw, 88px);
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--ink-3); text-decoration: none;
}
.ssm-hero-scroll .line { width: 46px; height: 1px; background: var(--ink-4); display: inline-block; }
.ssm-hero-scroll:hover { color: var(--green-deep); }
.ssm-hero-scroll:hover .line { background: var(--green); }

/* ── Insight (dark) — the gut-punch ───────────────────────────────── */
.ssm-insight {
  background: var(--ink-darker); color: #fff;
  padding-block: clamp(110px, 14vw, 200px);
}
.ssm-insight-kicker { color: oklch(0.72 0.12 138) !important; }
.ssm-insight-list { list-style: none; margin: 56px 0 0; padding: 0; max-width: 940px; }
.ssm-insight-row {
  padding: clamp(18px, 2.4vw, 30px) 0;
  border-top: 1px solid oklch(1 0 0 / 0.13);
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 4.2vw, 56px); line-height: 1.04; letter-spacing: -0.02em;
  color: oklch(0.78 0.015 264);
}
.ssm-insight-row b { color: #fff; font-weight: 400; font-style: italic; }
.ssm-insight-turn {
  margin: clamp(56px, 7vw, 92px) 0 0; max-width: 18ch;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 6vw, 84px); line-height: 1.0; letter-spacing: -0.025em;
  color: #fff; text-wrap: balance;
}
.ssm-insight-turn .ital { font-style: italic; color: oklch(0.84 0.13 138); }
.ssm-insight-answer {
  margin: 26px 0 0;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(30px, 5vw, 72px); line-height: 1.0; letter-spacing: -0.02em;
  color: oklch(0.84 0.13 138);
}
.ssm-insight-tag {
  margin: 22px 0 0;
  font-family: var(--mono); font-size: clamp(12px, 1.3vw, 15px); letter-spacing: 0.06em;
  text-transform: uppercase; color: oklch(0.6 0.02 264);
}

/* ── Definition — one short paragraph ─────────────────────────────── */
.ssm-def { padding-block: var(--pad-y); text-align: center; }
.ssm-def-inner { max-width: 880px; margin: 0 auto; }
.ssm-def-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4.6vw, 58px); line-height: 1.02; letter-spacing: -0.02em;
  margin: 22px 0 0; color: var(--ink-deep);
}
.ssm-def-h .ital { font-style: italic; color: var(--green-deep); }
.ssm-def-body {
  margin: 34px auto 0; max-width: 30ch;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(24px, 3vw, 38px); line-height: 1.28; letter-spacing: -0.012em;
  color: var(--ink-deep); text-wrap: pretty;
}
.ssm-def-body b { color: var(--green-deep); font-weight: 400; font-style: italic; }
.ssm-def-note {
  margin-top: 34px;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--ink-3); text-decoration: none;
}
.ssm-def-note b { color: var(--green-deep); font-weight: 500; }
.ssm-def-note:hover b { color: var(--ink-deep); }

/* ── Triad — Think · Treat · Meet ─────────────────────────────────── */
.ssm-triad { padding-block: var(--pad-y); background: var(--paper-2); }
.ssm-triad-head { max-width: 760px; }
.ssm-triad-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.02em;
  margin: 18px 0 0; color: var(--ink-deep); text-wrap: balance;
}
.ssm-triad-h .ital { font-style: italic; color: var(--green-deep); }
.ssm-triad-grid {
  margin-top: clamp(48px, 6vw, 76px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
}
@media (max-width: 860px) { .ssm-triad-grid { grid-template-columns: 1fr; } }
.ssm-card {
  padding: clamp(34px, 3.4vw, 52px) clamp(28px, 2.6vw, 40px);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 16px;
  min-height: clamp(300px, 28vw, 380px);
}
.ssm-card + .ssm-card { border-left: 1px solid var(--rule); }
@media (max-width: 860px) {
  .ssm-card + .ssm-card { border-left: none; }
  .ssm-card { min-height: 0; }
}
.ssm-card-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-deep);
}
.ssm-card-word {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(56px, 6.4vw, 88px); line-height: 0.86; letter-spacing: -0.03em;
  color: var(--ink-deep); margin: 0;
}
.ssm-card-claim {
  margin: clamp(30px, 3.6vw, 56px) 0 0;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(23px, 2.4vw, 32px); line-height: 1.16; letter-spacing: -0.01em;
  color: var(--ink-deep); text-wrap: pretty;
}
.ssm-card-claim .ital { font-style: italic; color: var(--green-deep); }

/* ── Everyone plays a part — role grid ────────────────────────────── */
.ssm-parts { padding-block: var(--pad-y); }
.ssm-parts-head { max-width: 820px; }
.ssm-parts-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(38px, 5.4vw, 76px); line-height: 1.0; letter-spacing: -0.025em;
  margin: 18px 0 0; color: var(--ink-deep); text-wrap: balance;
}
.ssm-parts-h .ital { font-style: italic; color: var(--green-deep); }
.ssm-parts-sub {
  margin: 24px 0 0; max-width: 46ch;
  font-size: clamp(17px, 1.7vw, 21px); line-height: 1.5; color: var(--ink-2);
}
.ssm-parts-grid {
  margin-top: clamp(48px, 6vw, 76px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule); border-radius: 16px; overflow: hidden;
  background: var(--rule); gap: 1px;
}
@media (max-width: 820px) { .ssm-parts-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ssm-parts-grid { grid-template-columns: 1fr; } }
.ssm-part {
  background: var(--paper);
  padding: clamp(28px, 2.8vw, 38px) clamp(24px, 2.2vw, 32px);
  display: flex; flex-direction: column; gap: 16px; justify-content: space-between;
  min-height: clamp(168px, 17vw, 220px);
  transition: background 0.2s ease;
}
.ssm-part:hover { background: var(--paper-2); }
.ssm-part-role {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3);
}
.ssm-part-truth {
  margin: 0; font-family: var(--serif); font-weight: 400;
  font-size: clamp(24px, 2.7vw, 36px); line-height: 1.06; letter-spacing: -0.015em;
  color: var(--ink-deep); text-wrap: pretty;
}
.ssm-part--you { background: oklch(0.48 0.105 140 / 0.08); }
.ssm-part--you:hover { background: oklch(0.48 0.105 140 / 0.12); }
.ssm-part--you .ssm-part-truth { color: var(--green-deep); }
.ssm-part--you .ssm-part-role { color: var(--green-deep); }

/* ── Cinematic band — emotional beat ──────────────────────────────── */
.ssm-band { position: relative; height: clamp(440px, 70vh, 760px); overflow: hidden; background: #000; }
.ssm-band-img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 36%; display: block; }
.ssm-band-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: clamp(40px, 6vw, 88px) 0;
  background: linear-gradient(180deg, oklch(0.12 0.03 264 / 0.15) 0%, oklch(0.12 0.03 264 / 0.25) 40%, oklch(0.1 0.02 264 / 0.84) 100%);
}
.ssm-band-line {
  margin: 0; max-width: 22ch;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 5vw, 68px); line-height: 1.02; letter-spacing: -0.025em;
  color: #fff; text-wrap: balance;
  text-shadow: 0 2px 30px oklch(0.1 0.02 264 / 0.5);
}
.ssm-band-line .ital { font-style: italic; color: oklch(0.86 0.13 138); }
.ssm-band-cite {
  display: block; margin-top: clamp(20px, 2.4vw, 30px); font-style: normal;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; text-shadow: none;
}
.ssm-band-cite-role {
  display: block; margin-top: 5px;
  font-size: 11px; letter-spacing: 0.08em; color: oklch(0.86 0.13 138);
}

/* ── Voices ───────────────────────────────────────────────────────── */
/* The wall is a hero moment: its own tinted band so the cards pop, with
   larger type so it reads as the heart of the movement, not a sidebar. */
.ssm-voices { padding-block: var(--pad-y); background: var(--paper-2); }
.ssm-voices-head { max-width: 820px; }
.ssm-voices-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.6vw, 76px); line-height: 1.0; letter-spacing: -0.025em;
  margin: 18px 0 0; color: var(--ink-deep); text-wrap: balance;
}
.ssm-voices-h .ital { font-style: italic; color: var(--green-deep); }
.ssm-voices-stat {
  display: inline-flex; align-items: center; gap: 11px; margin-top: 26px;
  font-family: var(--mono); font-size: 13.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green-deep); font-weight: 500;
  background: oklch(0.55 0.11 140 / 0.10); border: 1px solid oklch(0.55 0.11 140 / 0.32);
  border-radius: 999px; padding: 11px 20px;
}
.ssm-voices-stat .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green); flex: none;
  animation: ssm-pulse 2.2s ease-out infinite;
}
@keyframes ssm-pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.55 0.11 140 / 0.5); }
  70% { box-shadow: 0 0 0 9px oklch(0.55 0.11 140 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.55 0.11 140 / 0); }
}
@media (prefers-reduced-motion: reduce) { .ssm-voices-stat .dot { animation: none; } }
.ssm-voices-feature {
  margin-top: clamp(44px, 5.5vw, 72px);
  padding-bottom: clamp(36px, 4vw, 56px);
  border-bottom: 1px solid var(--rule);
  max-width: 24ch;
}
.ssm-voices-feature-q {
  margin: 0; font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 5vw, 64px); line-height: 1.04; letter-spacing: -0.025em;
  color: var(--ink-deep); text-wrap: balance;
}
.ssm-voices-feature-q .ital { font-style: italic; color: var(--green-deep); }
.ssm-voices-feature-by {
  margin-top: clamp(20px, 2.4vw, 30px);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-3);
}
.ssm-voices-feature-by b { color: var(--green-deep); font-weight: 500; }
.ssm-voices-wall {
  margin-top: clamp(32px, 4vw, 48px);
  column-count: 3; column-gap: 20px;
}
@media (max-width: 920px) { .ssm-voices-wall { column-count: 2; } }
@media (max-width: 600px) {
  /* Mobile: swap the 11-card vertical stack for a swipeable carousel so the
     section reads as ~0.8 screen instead of 3, and feels alive. */
  .ssm-voices-wall {
    column-count: unset; max-width: none;
    display: flex; flex-wrap: nowrap; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin-inline: -20px; padding: 4px 20px 16px;
  }
  .ssm-voices-wall::-webkit-scrollbar { display: none; }
  .ssm-voice { flex: 0 0 82%; scroll-snap-align: center; margin: 0; min-height: 188px; }
}
.ssm-voice {
  margin: 0 0 20px; break-inside: avoid; -webkit-column-break-inside: avoid;
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: 14px; padding: clamp(26px, 2.4vw, 34px);
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: 0 1px 2px oklch(0.22 0.13 265 / 0.05);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ssm-voice:hover {
  border-color: color-mix(in oklch, var(--green) 32%, var(--rule));
  transform: translateY(-2px);
  box-shadow: 0 10px 26px -14px oklch(0.22 0.13 265 / 0.28);
}
.ssm-voice--accent { background: var(--ink-darker); border-color: transparent; }
.ssm-voice--accent .ssm-voice-q { color: #fff; }
.ssm-voice--accent .ssm-voice-role { color: oklch(0.82 0.13 138); }
.ssm-voice--accent .ssm-voice-where { color: oklch(0.7 0.015 264); }
.ssm-voice--accent .ssm-voice-sep { color: oklch(0.5 0.015 264); }
.ssm-voice-q {
  margin: 0; font-family: var(--serif); font-weight: 400;
  font-size: clamp(21px, 2.2vw, 28px); line-height: 1.28; letter-spacing: -0.01em;
  color: var(--ink-deep); text-wrap: pretty;
}
.ssm-voice-q::before { content: "\201C"; }
.ssm-voice-q::after { content: "\201D"; }
.ssm-voice-by {
  margin-top: auto; display: flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
}
.ssm-voice-role { color: var(--green-deep); font-weight: 500; }
.ssm-voice-sep { color: var(--ink-4); }
.ssm-voice-where { color: var(--ink-3); }
.ssm-voices-cta {
  margin-top: clamp(40px, 5vw, 60px);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 14px 22px;
}
.ssm-voices-cta-line {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px); color: var(--ink-deep);
}

/* ── CTA — what part will you play (dark) ─────────────────────────── */
.ssm-cta { background: var(--ink-darker); color: #fff; padding-block: clamp(120px, 15vw, 210px); }
.ssm-cta-head { max-width: 920px; }
.ssm-cta-kicker { color: oklch(0.72 0.12 138) !important; }
.ssm-cta-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 7vw, 108px); line-height: 0.98; letter-spacing: -0.03em;
  margin: 26px 0 0; color: #fff; text-wrap: balance;
}
.ssm-cta-h .ital { font-style: italic; color: oklch(0.84 0.13 138); }
.ssm-cta-grid {
  margin-top: clamp(56px, 7vw, 88px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 860px) { .ssm-cta-grid { grid-template-columns: 1fr; max-width: 520px; } }
.ssm-act {
  display: flex; flex-direction: column; gap: 14px;
  padding: clamp(30px, 2.8vw, 40px);
  border-radius: 16px;
  background: oklch(1 0 0 / 0.045); border: 1px solid oklch(1 0 0 / 0.13);
}
.ssm-act--feature { background: oklch(0.62 0.11 138 / 0.13); border-color: oklch(0.62 0.11 138 / 0.5); }
.ssm-act-n {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: oklch(0.78 0.13 138);
}
.ssm-act-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 2.8vw, 34px); line-height: 1.0; letter-spacing: -0.015em;
  color: #fff; margin: 0;
}
.ssm-act-body { font-size: 14.5px; line-height: 1.55; color: oklch(0.8 0.015 264); margin: 0; }
.ssm-act .btn, .ssm-act-share { margin-top: auto; align-self: flex-start; }
.ssm-act-share { font: inherit; cursor: pointer; }
.ssm-cta-sub {
  margin: 26px 0 0; max-width: 50ch;
  font-size: clamp(17px, 1.7vw, 21px); line-height: 1.5; color: oklch(0.8 0.015 264);
}
.ssm-cta-follow {
  margin-top: clamp(34px, 4vw, 52px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: oklch(0.62 0.02 264);
}
.ssm-cta-follow a { color: oklch(0.84 0.13 138); text-decoration: none; }
.ssm-cta-follow a:hover { color: #fff; }
.ssm-cta-fine {
  margin-top: clamp(44px, 5vw, 64px);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: oklch(0.58 0.02 264); text-align: center;
}

.btn-outline-light {
  appearance: none; cursor: pointer; display: inline-flex; align-items: center; gap: 9px;
  font: inherit; font-weight: 600; font-size: 14px; padding: 13px 22px; border-radius: 999px;
  background: transparent; color: #fff; border: 1px solid oklch(1 0 0 / 0.3); text-decoration: none;
}
.btn-outline-light:hover { border-color: #fff; }
.btn-ghost-light {
  appearance: none; cursor: pointer; display: inline-flex; align-items: center; gap: 9px;
  font: inherit; font-weight: 600; font-size: 14px; padding: 13px 22px; border-radius: 999px;
  background: oklch(1 0 0 / 0.08); color: #fff; border: 0; text-decoration: none;
}
.btn-ghost-light:hover { background: oklch(1 0 0 / 0.15); }

/* ── Single Safety, live — the talks ──────────────────────────────── */
.ssm-live { padding-block: var(--pad-y); }
.ssm-live-head {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 4vw, 64px);
  align-items: end;
}
@media (max-width: 820px) { .ssm-live-head { grid-template-columns: 1fr; gap: 20px; } }
.ssm-live-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 5vw, 68px); line-height: 1.0; letter-spacing: -0.025em;
  margin: 18px 0 0; color: var(--ink-deep); text-wrap: balance;
}
.ssm-live-h .ital { font-style: italic; color: var(--green-deep); }
.ssm-live-sub {
  margin: 0; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.5;
  color: var(--ink-2); text-wrap: pretty;
}
.ssm-live-sub b { color: var(--ink-deep); font-weight: 500; }

.ssm-live-gallery {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex; flex-direction: column; gap: 14px;
}
.ssm-live-fig {
  position: relative; overflow: hidden; border-radius: 16px; background: #000; margin: 0;
}
.ssm-live-fig img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.ssm-live-fig:hover img { transform: scale(1.04); }
.ssm-live-hero { aspect-ratio: 16 / 9; }
.ssm-live-hero img { object-position: 50% 30%; }
.ssm-live-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ssm-live-row .ssm-live-fig { aspect-ratio: 4 / 5; }
@media (max-width: 600px) {
  .ssm-live-hero { aspect-ratio: 3 / 2; }
  .ssm-live-row { grid-template-columns: 1fr; }
  .ssm-live-row .ssm-live-fig { aspect-ratio: 3 / 2; }
}
.ssm-live-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 18px 14px;
  background: linear-gradient(180deg, transparent, oklch(0.12 0.02 264 / 0.78));
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff;
}
.ssm-live-cap b { color: oklch(0.86 0.13 138); font-weight: 500; }

.ssm-live-host {
  margin-top: clamp(36px, 4vw, 56px);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 60px);
  align-items: center;
  padding: clamp(32px, 3.6vw, 56px);
  background: var(--paper-2); border: 1px solid var(--rule); border-radius: 22px;
}
@media (max-width: 820px) { .ssm-live-host { grid-template-columns: 1fr; gap: 30px; } }
.ssm-live-host-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 3.6vw, 48px); line-height: 1.0; letter-spacing: -0.02em;
  margin: 16px 0 0; color: var(--ink-deep); text-wrap: balance;
}
.ssm-live-host-h .ital { font-style: italic; color: var(--green-deep); }
.ssm-live-host-desc {
  margin: 20px 0 0; font-size: clamp(17px, 1.8vw, 21px); line-height: 1.5;
  color: var(--ink-2); text-wrap: pretty;
}
.ssm-live-host-meta { display: flex; flex-direction: column; gap: clamp(18px, 2vw, 24px); }
.ssm-live-host-row {
  display: flex; flex-direction: column; gap: 5px;
  padding-bottom: clamp(18px, 2vw, 24px); border-bottom: 1px solid var(--rule);
}
.ssm-live-host-row .k {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-deep);
}
.ssm-live-host-row .v {
  font-size: clamp(16px, 1.7vw, 19px); line-height: 1.4; color: var(--ink-deep);
}
.ssm-live-host-meta .btn { align-self: flex-start; }
.ssm-host-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.ssm-host-chip {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--green-deep);
  background: oklch(0.55 0.11 140 / 0.08); border: 1px solid oklch(0.55 0.11 140 / 0.28);
  border-radius: 999px; padding: 7px 13px;
}

/* attendee testimonials */
.ssm-live-said { margin-top: clamp(44px, 5vw, 68px); }
.ssm-live-said-grid {
  margin-top: clamp(24px, 3vw, 36px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 920px) { .ssm-live-said-grid { grid-template-columns: 1fr; max-width: 640px; } }
@media (max-width: 600px) {
  /* Mobile: testimonials become a swipeable carousel — one long quote at a
     time instead of three stacked walls of text. */
  .ssm-live-said-grid {
    grid-template-columns: none; max-width: none;
    display: flex; flex-wrap: nowrap; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin-inline: -20px; padding: 4px 20px 16px;
  }
  .ssm-live-said-grid::-webkit-scrollbar { display: none; }
  .ssm-tmni { flex: 0 0 86%; scroll-snap-align: center; }
}
.ssm-tmni {
  margin: 0; display: flex; flex-direction: column; gap: 16px;
  background: var(--paper-2); border: 1px solid var(--rule); border-radius: 16px;
  padding: clamp(26px, 2.6vw, 34px);
}
.ssm-tmni-stars { font-size: 13px; letter-spacing: 3px; color: var(--green); }
.ssm-tmni-q {
  margin: 0; font-family: var(--serif); font-weight: 400;
  font-size: clamp(17px, 1.6vw, 20px); line-height: 1.42; letter-spacing: -0.01em;
  color: var(--ink-deep); text-wrap: pretty;
}
.ssm-tmni-q .ital { font-style: italic; color: var(--green-deep); }
.ssm-tmni-by {
  margin-top: auto; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-3);
}
.ssm-tmni-by b { color: var(--green-deep); font-weight: 500; }

/* survey stats + takeaways */
.ssm-live-stats {
  margin-top: clamp(24px, 3vw, 36px);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (max-width: 600px) { .ssm-live-stats { grid-template-columns: 1fr; } }
.ssm-stat {
  border: 1px solid var(--rule); border-top: 3px solid var(--green); border-radius: 16px;
  background: var(--paper-2);
  padding: clamp(26px, 3vw, 42px);
  display: flex; flex-direction: column; gap: 10px;
}
.ssm-stat-n {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(58px, 8vw, 104px); line-height: 0.84; letter-spacing: -0.03em;
  color: var(--green-deep);
}
.ssm-stat-l {
  font-size: clamp(15px, 1.6vw, 19px); line-height: 1.35; color: var(--ink-deep); max-width: 26ch;
}
.ssm-live-stats-note {
  margin: 16px 0 0; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-deep);
}
.ssm-live-stats-source {
  margin: 5px 0 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-3);
}
.ssm-takeaways {
  margin-top: clamp(30px, 3.4vw, 44px);
  padding-top: clamp(26px, 3vw, 38px); border-top: 1px solid var(--rule);
}
.ssm-takeaways-h {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-deep);
}
.ssm-takeaways-grid {
  margin-top: clamp(18px, 2vw, 26px);
  display: flex; flex-wrap: wrap; gap: 10px;
}
.ssm-takeaway {
  display: inline-flex; gap: 9px; align-items: baseline; margin: 0;
  padding: 11px 17px; border: 1px solid var(--rule); border-radius: 999px;
  background: var(--paper);
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(16px, 1.7vw, 19px); line-height: 1.25; letter-spacing: -0.01em;
  color: var(--ink-deep); text-wrap: pretty;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ssm-takeaway:hover { border-color: color-mix(in oklch, var(--green) 32%, var(--rule)); background: var(--paper-2); }
.ssm-takeaway::before { content: "\201C"; color: var(--green-deep); font-size: 1.15em; line-height: 0; }

/* ── Follow the movement — stay-in-touch ──────────────────────────── */
.ssm-follow { padding-block: var(--pad-y); background: var(--paper-2); }
.ssm-follow-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 820px) { .ssm-follow-inner { grid-template-columns: 1fr; gap: 34px; } }
.ssm-follow-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.02; letter-spacing: -0.02em;
  margin: 18px 0 0; color: var(--ink-deep); text-wrap: balance;
}
.ssm-follow-h .ital { font-style: italic; color: var(--green-deep); }
.ssm-follow-sub {
  margin: 22px 0 0; max-width: 42ch;
  font-size: clamp(17px, 1.7vw, 21px); line-height: 1.5; color: var(--ink-2); text-wrap: pretty;
}
.ssm-follow-form { display: flex; flex-direction: column; gap: 12px; }
.ssm-follow-input {
  width: 100%; appearance: none; font: inherit; font-size: 16px;
  padding: 15px 18px; border: 1px solid var(--rule); border-radius: 12px;
  background: var(--paper); color: var(--ink-deep);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.ssm-follow-input::placeholder { color: var(--ink-4); }
.ssm-follow-input:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px oklch(0.55 0.1 150 / 0.14);
}
.ssm-follow-btn { width: 100%; justify-content: center; margin-top: 4px; padding: 15px 22px; }
.ssm-follow-done {
  display: flex; gap: 14px; align-items: flex-start;
  padding: clamp(26px, 3vw, 36px); background: var(--paper);
  border: 1px solid var(--rule); border-radius: 16px;
}
.ssm-follow-done-mark {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--green); color: #fff; display: grid; place-items: center;
  font-size: 15px; margin-top: 2px;
}
.ssm-follow-done p {
  margin: 0; font-size: clamp(17px, 1.8vw, 20px); line-height: 1.4; color: var(--ink-deep);
}

/* ── Sticky mobile CTA — always-in-reach on the long scroll ─────────────
   Non-React element (lives outside #root). Hidden on desktop. On phones it
   fades in after the hero and hides itself at the final CTA so it never
   overlaps the real call-to-action or footer. */
.ssm-sticky-cta { display: none; }
@media (max-width: 768px) {
  .ssm-sticky-cta {
    display: inline-flex; align-items: center; gap: 8px;
    position: fixed; left: 50%; z-index: 90;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    transform: translate(-50%, 160%);
    background: var(--green); color: #fff;
    font-family: var(--sans); font-weight: 600; font-size: 15px;
    padding: 14px 24px; border-radius: 999px; text-decoration: none;
    box-shadow: 0 12px 30px -8px oklch(0.45 0.16 148 / 0.55), 0 2px 8px oklch(0.2 0.05 264 / 0.25);
    opacity: 0; pointer-events: none;
    transition: transform 0.4s cubic-bezier(.2,.7,.2,1), opacity 0.3s ease;
  }
  .ssm-sticky-cta.is-visible { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
  .ssm-sticky-cta svg { opacity: 0.9; }
}
@media (prefers-reduced-motion: reduce) {
  .ssm-sticky-cta { transition: opacity 0.3s ease; }
}

/* ── Watch — educational videos for singles (Instagram) ──────────────── */
.ssm-watch { padding-block: var(--pad-y); }
.ssm-watch-head { max-width: 760px; }
.ssm-watch-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4.8vw, 60px); line-height: 1.02; letter-spacing: -0.02em;
  margin: 18px 0 0; color: var(--ink-deep); text-wrap: balance;
}
.ssm-watch-h .ital { font-style: italic; color: var(--green-deep); }
.ssm-watch-sub {
  margin: 18px 0 0; max-width: 54ch;
  font-size: clamp(17px, 1.7vw, 21px); line-height: 1.5; color: var(--ink-2); text-wrap: pretty;
}
.ssm-watch-grid {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 620px;
}
.ssm-watch-tile {
  position: relative; aspect-ratio: 9 / 16; border-radius: 16px; overflow: hidden;
  display: flex; align-items: flex-end; text-decoration: none;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1);
}
.ssm-watch-tile:hover { transform: translateY(-3px); }
.ssm-watch-t1 { background: linear-gradient(150deg, oklch(0.30 0.13 265), oklch(0.46 0.09 285)); }
.ssm-watch-t2 { background: linear-gradient(150deg, oklch(0.40 0.10 140), oklch(0.62 0.09 152)); }
.ssm-watch-t3 { background: linear-gradient(150deg, oklch(0.42 0.10 300), oklch(0.64 0.10 332)); }
.ssm-watch-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: oklch(1 0 0 / 0.92);
  display: flex; align-items: center; justify-content: center; color: var(--ink-deep);
}
.ssm-watch-cap {
  position: relative; width: 100%; padding: 14px 12px 12px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff;
  background: linear-gradient(transparent, oklch(0.12 0.02 264 / 0.72));
}
.ssm-watch-cta { margin-top: clamp(24px, 3vw, 34px); display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; }
.ssm-watch-note { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
@media (max-width: 600px) { .ssm-watch-grid { max-width: none; } }
