/* ============================================================
   social-agent.css — Social Agent product page
   Loads AFTER outmate.css + vid.css + vid2.css
   ============================================================ */

/* ── Hero: sequence status header (like brief-hdr in sales.css) ── */
.seq-head {
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.seq-head .sh-date {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
}
.seq-head .sh-title {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .03em;
  color: rgba(255,255,255,.65);
}

/* ── LinkedIn "in" glyph inline in feed ── */
.li-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px; height: 15px;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 8px;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 5px;
  letter-spacing: 0;
}

/* ── Step badge (copied from sales.css) ── */
.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(80,70,230,.3);
  background: rgba(80,70,230,.07);
  border-radius: 30px;
  padding: 5px 11px;
  width: fit-content;
}

/* ── Mini dark smock (from sales.css) ── */
.smock {
  background: #0e0e11;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  font-family: var(--mono);
  overflow: hidden;
  margin-top: 10px;
}
.smock-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 9.5px;
  letter-spacing: .04em;
  color: #6e6e76;
}
.smock-bar .s-live { color: var(--accent); }
.smock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 10.5px;
  color: #c4c4cc;
}
.smock-row:last-child { border-bottom: 0; }
.smock-row .sr-tag { color: #6e6e78; font-size: 9px; letter-spacing: .04em; white-space: nowrap; }
.smock-row .sr-hot { color: var(--accent); }
.smock-row .sr-warn { color: #f97316; }

/* ── LinkedIn connection request mock (step 1) ── */
.li-mock {
  background: #0e0e11;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 10px;
  font-family: var(--mono);
}
.li-mock-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 9.5px;
  letter-spacing: .04em;
  color: #6e6e76;
}
.li-mock-bar .lm-sent { color: var(--accent); }
.li-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
}
.li-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.li-body { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.li-name {
  font-size: 9.5px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
}
.li-text {
  font-size: 10px;
  color: rgba(255,255,255,.82);
  line-height: 1.45;
  font-style: italic;
}
.li-foot {
  font-size: 8.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}

/* ── Dual-channel mock (step 2) ── */
.dual-mock {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 10px;
}
.dm-row {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.dm-lbl {
  width: 26px; height: 26px;
  background: rgba(80,70,230,.14);
  border: 1px solid rgba(80,70,230,.28);
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.dm-card {
  flex: 1;
  background: #0e0e11;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
  padding: 8px 11px;
  font-family: var(--mono);
}
.dm-tag {
  font-size: 8.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.dm-text {
  font-size: 10px;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
  font-style: italic;
}

/* ── Problem: 2-col layout on dark card ── */
.prob-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px,4vw,64px);
  align-items: start;
  padding: clamp(28px,4vw,64px) clamp(24px,3.8vw,72px);
}
.prob-grid .sec-title { font-size: clamp(28px,3.6vw,52px); }
.prob-body p {
  font-family: var(--body);
  font-size: clamp(14px,1.3vw,17px);
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin: 0 0 16px;
  text-wrap: pretty;
  max-width: 46ch;
}
.prob-body p:last-child { margin-bottom: 0; }

/* Problem stats row */
.prob-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(255,255,255,.1);
}
.prob-stat {
  padding: clamp(20px,2.6vw,36px) clamp(20px,2.8vw,44px);
  border-right: 1px solid rgba(255,255,255,.1);
}
.prob-stat:last-child { border-right: 0; }
.prob-stat .n {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -.04em;
  font-size: clamp(26px,3.8vw,54px);
  line-height: .92;
  color: var(--accent);
  margin-bottom: 10px;
}
.prob-stat .l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  line-height: 1.5;
}

/* ── Deep Dive: multi-channel sequence timeline ── */
.timeline-wrap {
  padding: 0 clamp(24px,3.8vw,72px) clamp(28px,4vw,64px);
}
.tl-header {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.tl-ch-lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  align-self: center;
}
.tl-days {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  padding: 0 2px;
}
.tl-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  margin-bottom: 10px;
}
.tl-ch {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  padding-top: 10px;
}
.tl-ch-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
}
.tl-ch-badge.em {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.6);
  font-family: var(--mono);
  font-size: 13px;
}
.tl-ch-name {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.tl-track {
  position: relative;
  height: 86px;
}
.tl-track::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 18px;
  height: 1px;
  background: rgba(255,255,255,.08);
}
.tl-event {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.tl-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.25);
  margin-top: 12px;
  flex-shrink: 0;
}
.tl-dot.accent {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(80,70,230,.22);
}
.tl-dot.warn {
  background: rgba(249,115,22,.5);
  border-color: rgba(249,115,22,.75);
}
.tl-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 5px 9px;
  min-width: 88px;
  max-width: 136px;
}
.tl-etag {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3px;
}
.tl-etxt {
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(255,255,255,.5);
  line-height: 1.35;
}
.tl-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  padding: 20px clamp(0px,0vw,0px) 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.tl-res-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.tl-res-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.tl-res-val {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: .02em;
}
.tl-res-right {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}
.tl-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -.03em;
  font-size: clamp(28px,3.2vw,44px);
  line-height: .86;
  color: var(--accent);
}
.tl-stat small {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  line-height: 1.4;
  margin-top: 5px;
  text-align: right;
}

/* ── Integrations (from sales.css) ── */
.int-cats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
}
.int-cat {
  padding: clamp(22px,2.6vw,38px) clamp(20px,2.4vw,34px);
  border-right: 1px solid var(--line);
}
.int-cat:last-child { border-right: 0; }
.int-cat-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.int-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.int-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .03em;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 10px;
  background: var(--paper);
  color: var(--ink-soft);
  white-space: nowrap;
}
.int-pill .gl { color: var(--accent); }
.int-mq {
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding: 13px 0;
  background: var(--paper-2);
}
.int-mq .int-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 0;
  animation: scrollx 32s linear infinite;
}
.int-mq:hover .int-track { animation-play-state: paused; }
.int-mq .logo-item {
  color: var(--ink);
  opacity: .7;
  border-right-color: var(--line);
  font-size: clamp(13px,1.3vw,18px);
}
.int-mq .logo-item.sub { opacity: .45; }

/* ── Outcomes metrics (from sales.css) ── */
.sales-metrics {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
}
.sales-metric {
  padding: clamp(24px,2.8vw,40px) clamp(18px,2vw,30px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sales-metric:last-child { border-right: 0; }
.sales-metric .sm-n {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -.04em;
  font-size: clamp(28px,4.2vw,60px);
  line-height: .88;
  color: var(--accent);
}
.sales-metric .sm-l {
  font-family: var(--body);
  font-size: clamp(13px,1.1vw,15px);
  color: var(--muted);
  line-height: 1.45;
  text-wrap: pretty;
  max-width: 22ch;
}

/* ── sa-steps: slightly taller than default ── */
.steps.sa-steps .step {
  min-height: clamp(400px,40vw,560px);
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .prob-grid { grid-template-columns: 1fr; }
  .prob-stats { grid-template-columns: 1fr 1fr; }
  .prob-stat:nth-child(2) { border-right: 0; }
  .prob-stat:nth-child(1),
  .prob-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .int-cats { grid-template-columns: repeat(2,1fr); }
  .int-cat:nth-child(2) { border-right: 0; }
  .int-cat:nth-child(1),
  .int-cat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .int-cat:nth-child(3) { border-right: 1px solid var(--line); }
  .sales-metrics { grid-template-columns: 1fr 1fr; }
  .sales-metric:nth-child(2),
  .sales-metric:nth-child(4) { border-right: 0; }
  .sales-metric:nth-child(1),
  .sales-metric:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 760px) {
  .timeline-wrap { overflow-x: auto; }
  .tl-header,
  .tl-row { min-width: 500px; }
  .tl-res-right { gap: 18px; }
}
@media (max-width: 640px) {
  .prob-stats { grid-template-columns: 1fr; }
  .prob-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .prob-stat:last-child { border-bottom: 0; }
  .int-cats { grid-template-columns: 1fr; }
  .int-cat { border-right: 0; border-bottom: 1px solid var(--line); }
  .int-cat:last-child { border-bottom: 0; }
  .sales-metrics { grid-template-columns: 1fr; }
  .sales-metric { border-right: 0; border-bottom: 1px solid var(--line); }
  .sales-metric:last-child { border-bottom: 0; }
  .tl-result { flex-direction: column; align-items: flex-start; }
  .tl-res-right { width: 100%; justify-content: flex-start; }
}

/* ============================================================
   MAGAZINE GRID — editorial How It Works / Deep Dive / Proof
   ============================================================ */

/* ── How It Works (editorial rows) ── */
.va-how {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: var(--pad);
}
.va-how-hdr {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 2px solid var(--ink);
}
.va-how-hdr-left {
  padding: clamp(28px,3.8vw,64px) clamp(24px,3vw,52px);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.va-how-eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.va-how-hdr-left h2 {
  font-family: var(--sans); font-weight: 700;
  letter-spacing: -.04em; line-height: .9;
  font-size: clamp(38px,5.5vw,84px); margin: 0;
  text-transform: uppercase;
}
.va-how-hdr-right {
  padding: clamp(28px,3.8vw,64px) clamp(24px,3vw,52px);
  display: flex; flex-direction: column; justify-content: flex-end; gap: 16px;
}
.va-how-hdr-right p {
  font-family: var(--body);
  font-size: clamp(16px,1.6vw,22px);
  line-height: 1.5; color: var(--muted);
  max-width: 52ch; margin: 0; text-wrap: pretty;
}
.va-how-hdr-right .brand-chip { align-self: flex-start; }

.va-step-row {
  display: grid;
  grid-template-columns: clamp(80px,8vw,130px) 1fr 1.1fr;
  border-top: 1px solid var(--line);
}
.va-step-row:first-of-type { border-top: 0; }
.va-step-n {
  font-family: var(--sans); font-weight: 700;
  letter-spacing: -.05em; line-height: .88;
  font-size: clamp(56px,8vw,120px);
  color: var(--accent);
  border-right: 1px solid var(--line);
  padding: clamp(20px,2.4vw,36px) clamp(14px,1.6vw,28px);
  display: flex; align-items: flex-start;
}
.va-step-content {
  padding: clamp(24px,3vw,48px);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.va-step-content h3 {
  font-family: var(--sans); font-weight: 700;
  letter-spacing: -.025em; line-height: 1.02;
  font-size: clamp(20px,2vw,30px); margin: 0;
}
.va-step-content h3 .acc { color: var(--accent); }
.va-step-content p {
  font-family: var(--body); color: var(--muted);
  font-size: clamp(14px,1.25vw,17px); line-height: 1.55;
  margin: 0; max-width: 42ch; text-wrap: pretty;
}
.va-step-content .cap {
  margin-top: auto; padding-top: 16px;
  font-family: var(--mono); font-size: 11px;
  color: var(--ink); letter-spacing: .03em;
  display: flex; gap: 8px; align-items: center;
}
.va-step-content .cap .d {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.va-step-visual {
  padding: clamp(20px,2.2vw,36px);
  background: var(--paper-2);
  display: flex; flex-direction: column; justify-content: center;
}
.va-how-foot {
  border-top: 2px solid var(--ink);
  padding: clamp(18px,2.2vw,28px) clamp(24px,3vw,52px);
  font-family: var(--sans); font-weight: 700;
  letter-spacing: -.02em; font-size: clamp(16px,1.7vw,24px);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.va-how-foot .acc { color: var(--accent); }
.va-how-foot .chip {
  font-family: var(--mono); font-size: 11px; font-weight: 400;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line);
  border-radius: 30px; padding: 6px 12px;
}

/* ── Deep Dive (magazine split) ── */
.va-dd-wrap {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.va-dd-grid { display: grid; grid-template-columns: 2fr 3fr; }
.va-dd-left {
  border-right: 1px solid rgba(255,255,255,.12);
  padding: clamp(32px,4.5vw,80px) clamp(28px,3.8vw,72px);
  display: flex; flex-direction: column;
  justify-content: space-between; gap: 32px;
}
.va-dd-big-label {
  font-family: var(--sans); font-weight: 700;
  letter-spacing: -.05em; line-height: .82;
  font-size: clamp(52px,8vw,130px);
  color: #fff; text-transform: uppercase;
}
.va-dd-big-label .dim { color: rgba(255,255,255,.22); }
.va-dd-sec-head {
  display: flex; align-items: baseline; gap: 16px; margin-bottom: 8px;
}
.va-dd-metrics {
  display: flex; flex-direction: column; gap: 24px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1);
}
.va-dd-m .n {
  font-family: var(--sans); font-weight: 700;
  letter-spacing: -.05em; font-size: clamp(40px,6vw,88px);
  line-height: .85; color: var(--accent);
}
.va-dd-m .l {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.38); line-height: 1.45;
  margin-top: 8px; max-width: 24ch;
}
.va-dd-right {
  padding: clamp(32px,4.5vw,80px) clamp(28px,3.8vw,64px);
  background: rgba(255,255,255,.02);
}
.va-dd-right-hdr {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: grid; grid-template-columns: 28px 70px 1fr 90px; gap: 16px;
}
.va-dd-event {
  display: grid; grid-template-columns: 28px 70px 1fr 90px; gap: 16px;
  align-items: center;
  padding: clamp(16px,2vw,28px) 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.va-dd-event:last-child { border-bottom: 0; }
.va-dd-ch-b {
  width: 26px; height: 26px; border-radius: 5px;
  background: var(--accent); color: #fff;
  font-family: var(--sans); font-weight: 700; font-size: 10px;
  display: grid; place-items: center; flex-shrink: 0;
}
.va-dd-ch-b.em {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.6);
  font-family: var(--mono); font-size: 12px;
}
.va-dd-day {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.va-dd-ev-title {
  font-family: var(--body); font-size: clamp(14px,1.3vw,17px);
  color: rgba(255,255,255,.85); line-height: 1.35;
}
.va-dd-status {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .08em; text-transform: uppercase; text-align: right;
}
.va-dd-status.sent { color: var(--accent); }
.va-dd-status.warn { color: rgba(249,115,22,.8); }
.va-dd-status.muted { color: rgba(255,255,255,.25); }

/* ── Proof (editorial quotes) ── */
.va-proof-wrap {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.va-proof-hdr {
  padding: clamp(28px,3.8vw,64px) clamp(24px,3.8vw,72px);
  border-bottom: 1px solid var(--line);
}
.va-featured-q {
  padding: clamp(28px,4vw,72px) clamp(24px,3.8vw,72px);
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.va-qm {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(80px,12vw,180px); line-height: .7;
  color: var(--accent); display: block; margin-bottom: -20px;
}
.va-featured-q blockquote {
  font-family: var(--sans); font-weight: 700;
  letter-spacing: -.025em; line-height: 1.05;
  font-size: clamp(24px,3vw,48px);
  color: var(--ink); margin: 0; max-width: 26ch; text-wrap: balance;
}
.va-q-who {
  margin-top: 28px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.va-sub-quotes { display: grid; grid-template-columns: 1fr 1fr; }
.va-sub-q {
  padding: clamp(24px,3vw,48px) clamp(24px,3.8vw,72px);
  display: flex; flex-direction: column; gap: 14px;
}
.va-sub-q:first-child { border-right: 1px solid var(--line); }
.va-sub-idx {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .1em; color: var(--accent); text-transform: uppercase;
}
.va-sub-q p {
  font-family: var(--body); font-size: clamp(15px,1.4vw,19px);
  line-height: 1.5; color: var(--ink); margin: 0;
  max-width: 44ch; text-wrap: pretty;
}
.va-sub-q .who {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line);
}
.va-sub-q .who .nm { font-family: var(--sans); font-weight: 700; font-size: 15px; }
.va-sub-q .who .ro {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); margin-top: 3px; letter-spacing: .04em;
}

/* ── Magazine Grid responsive ── */
@media (max-width: 1080px) {
  .va-how-hdr { grid-template-columns: 1fr; }
  .va-how-hdr-left { border-right: 0; border-bottom: 1px solid var(--line); }
  .va-dd-grid { grid-template-columns: 1fr; }
  .va-dd-left { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
}
@media (max-width: 860px) {
  .va-step-row { grid-template-columns: 1fr; }
  .va-step-n { border-right: 0; border-bottom: 1px solid var(--line); font-size: 48px; padding: 16px 24px; }
  .va-step-content { border-right: 0; border-bottom: 1px solid var(--line); }
  .va-sub-quotes { grid-template-columns: 1fr; }
  .va-sub-q:first-child { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .va-dd-right-hdr { grid-template-columns: 26px 1fr; }
  .va-dd-right-hdr span:nth-child(2),
  .va-dd-right-hdr span:nth-child(4) { display: none; }
  .va-dd-event { grid-template-columns: 26px 1fr; }
  .va-dd-event .va-dd-day,
  .va-dd-event .va-dd-status { display: none; }
}
