/* ============================================================
   COACHES PAGE — all styles self-contained
   (shared dept styles merged in; dept-shared.css not required)
   ============================================================ */

/* ── Base ──────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  background: var(--rev-page);
  color: var(--rev-text-body);
  font-family: 'DM Sans', system-ui, sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; display: block; }
*:focus { outline: none; }
*:focus-visible { outline: 2px solid var(--rev-blue); outline-offset: 2px; }
a { text-decoration: none; }

/* ── Page container ─────────────────────────────────────────── */
.page { max-width: 1920px; margin: 0 auto; }

/* ── Section cards ──────────────────────────────────────────── */
.section {
  margin: 0 30px;
  background: #fff;
  box-shadow: var(--rev-shadow-card);
  overflow: hidden;
}
.section-pad {
  padding: clamp(36px, 3.5vw, 56px) clamp(28px, 5vw, 73px);
}
.section-dark {
  margin: 0 30px;
  background: var(--rev-navy-900);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.section-dark::before {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: var(--rev-blue-orb-15);
  filter: blur(60px);
  pointer-events: none;
}
.section + .section,
.section + .section-dark,
.section-dark + .section { border-top: 1px solid rgba(4, 18, 45, 0.08); }
.section-dark + .section-dark { border-top: 1px solid rgba(255, 255, 255, 0.06); }

@media (max-width: 860px) {
  .section,
  .section-dark { margin: 0 12px; }
}

/* ── Section groups ─────────────────────────────────────────── */
.section-group {
  margin: 25px 30px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--rev-shadow-card);
}
.section-group .section,
.section-group .section-dark { margin: 0; box-shadow: none; }

@media (max-width: 860px) {
  .section-group { margin: 16px 12px !important; border-radius: 0 !important; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  margin: 0 30px 25px;
  border-radius: 25px;
  overflow: hidden;
  background-color: var(--rev-navy-900);
  color: #fff;
  padding: 0 0 clamp(16px, 2vw, 28px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../../images/hero-section-backgroud-blue-gradient.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(4, 18, 45, 0.82) 0%,
    rgba(4, 18, 45, 0.68) 35%,
    rgba(4, 18, 45, 0.35) 65%,
    rgba(4, 18, 45, 0.55) 100%
  );
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4, 18, 45, 0.35) 0%,
    transparent 25%,
    transparent 75%,
    rgba(4, 18, 45, 0.25) 100%
  );
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(16px, 2vw, 28px) clamp(28px, 5vw, 72px) 0;
}
.hero-single-col { max-width: 1100px; }

@media (max-width: 860px) {
  .page { margin-top: 80px !important; }
  .hero { margin: 0 12px 16px !important; border-radius: 0 !important; }
}

.cs-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--rev-navy-900);
  border: 2px solid var(--rev-border);
  overflow: hidden;
}
.cs-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Hero eyebrow ───────────────────────────────────────────── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rev-blue-300);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 32px;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5c9767;
  animation: live-dot-pulse 1.4s infinite;
  flex-shrink: 0;
}
@keyframes live-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(92, 151, 103, 0.6); }
  70%       { box-shadow: 0 0 0 6px rgba(92, 151, 103, 0); }
}

@media (max-width: 860px) {
  .hero-eyebrow {
    display: block !important;
    width: 100%;
    text-align: center;
  }
  .hero-eyebrow .live-dot {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
  }
}

/* ── Hero typography ────────────────────────────────────────── */
.hero-title {
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  max-width: 1100px;
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--rev-blue-300); }
.hero-lede {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 780px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

/* ── Section components ─────────────────────────────────────── */
.s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rev-blue);
  font-family: 'DM Mono', monospace;
  margin-bottom: 20px;
}
.s-eyebrow-light { color: var(--rev-blue); }
.s-title {
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.s-lede {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  color: var(--rev-text-muted);
  max-width: 580px;
}
.s-lede-dark { color: rgba(255, 255, 255, 0.6); }
.s-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

@media (max-width: 800px) {
  .s-header { grid-template-columns: 1fr; gap: 20px; }
}

/* ── Numbered list ──────────────────────────────────────────── */
.item-list { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.item-list-light { border-top: 1.5px solid var(--rev-navy-900); }
.list-item {
  display: grid;
  grid-template-columns: 220px 1fr 200px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}
.list-item-light { border-bottom-color: rgba(4, 18, 45, 0.1); }
.list-item:last-child { border-bottom: none; }

@media (max-width: 860px) {
  .list-item { grid-template-columns: 1fr; gap: 14px; }
}

.item-num {
  font-size: 44px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  margin: 0;
}
.item-num-light { color: rgba(4, 18, 45, 0.1); }
.item-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 6px 0;
  font-family: 'DM Mono', monospace;
}
.item-tag-alert { color: var(--rev-neg); }
.item-tag-signal { color: var(--rev-warn); }
.item-tag-pos { color: var(--rev-blue); }
.item-title { font-size: 20px; font-weight: 600; line-height: 1.2; color: #fff; margin: 0; }
.item-title-light { color: var(--rev-navy-900); }
.item-body { font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, 0.65); margin: 0; }
.item-body-light { color: var(--rev-text-muted); }
.item-status {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
  margin: 0;
  align-self: center;
  text-align: right;
}
.item-status-pos { color: var(--rev-blue); }
.item-status-neg { color: var(--rev-neg); }

/* ── Section footer quote ───────────────────────────────────── */
.section-footer-quote {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.section-footer-quote-light { border-top-color: rgba(4, 18, 45, 0.1); }
.footer-quote-text {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  max-width: 760px;
  margin: 0;
}
.footer-quote-text-light { color: var(--rev-navy-900); }
.link-cta-light {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.link-cta-light:hover { color: #fff; }

/* ── Moneyball form ─────────────────────────────────────────── */
.mb-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 860px) {
  .mb-grid { grid-template-columns: 1fr; gap: 36px; }
}

.mb-card {
  background: #fff;
  color: var(--rev-navy-900);
  border-radius: 20px;
  overflow: hidden;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(4,18,45,0.08);
  border: 1px solid rgba(4,18,45,0.05);
}
.mb-card-badge { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.mb-live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rev-blue); }
.mb-badge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(4, 18, 45, 0.5);
  font-family: 'DM Mono', monospace;
}
.mb-card-title { font-size: 22px; font-weight: 600; color: var(--rev-navy-900); margin: 0 0 6px; line-height: 1.2; }
.mb-card-sub { font-size: 13px; color: rgba(4, 18, 45, 0.65); margin: 0 0 24px; }
.mb-field { margin-bottom: 18px; }
.mb-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(4, 18, 45, 0.5);
  margin-bottom: 6px;
  font-family: 'DM Mono', monospace;
}
.mb-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(4, 18, 45, 0.15);
  color: var(--rev-navy-900);
  padding: 8px 0;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.mb-input::placeholder { color: rgba(4, 18, 45, 0.35); }
.mb-input:focus { outline: none; border-bottom-color: var(--rev-blue); }
.mb-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2304122d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
}
.mb-select option { background: #fff; color: var(--rev-navy-900); }
.mb-submit {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--rev-blue);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.mb-submit:hover { opacity: 0.85; background: var(--rev-blue); }
.mb-fine {
  font-size: 10px;
  color: rgba(4, 18, 45, 0.4);
  margin: 10px 0 0;
  text-align: center;
  font-family: 'DM Mono', monospace;
}
.mb-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 0; }
.btn-mb-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--rev-navy-900);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-mb-light:hover { background: #1a2845; }
.btn-mb-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid rgba(4, 18, 45, 0.2);
  color: var(--rev-navy-900);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-mb-ghost-light:hover {
  background: rgba(4, 18, 45, 0.04);
  border-color: rgba(4, 18, 45, 0.4);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 860px) {
  .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
}

details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }
.faq-item { border-bottom: 1px solid rgba(4, 18, 45, 0.1); }
.faq-item:first-child { border-top: 2px solid var(--rev-navy-900); }
.faq-item:last-child { border-bottom: 2px solid var(--rev-navy-900); }
.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  color: var(--rev-navy-900);
  gap: 16px;
}
.faq-icon {
  font-size: 26px;
  font-weight: 300;
  color: var(--rev-text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
details[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 48px 20px 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--rev-text-muted);
}

/* ── CTA ────────────────────────────────────────────────────── */
.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
}

.cta-box {
  background: var(--rev-cta-gradient);
  color: #fff;
  border-radius: 20px;
  padding: 35px 35px 30px;
  box-shadow: 0 20px 50px rgba(0, 86, 235, 0.25);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(75, 133, 234, 0.4);
  filter: blur(40px);
}
.cta-box .meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  position: relative;
}
.cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4b85ea;
  box-shadow: 0 0 0 4px rgba(75, 133, 234, 0.3);
  animation: cta-pulse 1.6s ease-in-out infinite;
  display: inline-block;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(75, 133, 234, 0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(75, 133, 234, 0); }
}
.cta-box h3 {
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  position: relative;
}
.cta-box > p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 24px;
  position: relative;
}
.cta-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: var(--rev-navy-900);
  font-size: 17px;
  font-weight: 500;
  padding: 16px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  position: relative;
}
.cta-button:hover { background: var(--rev-blue-25, #eef2ff); }
.cta-fine {
  text-align: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin: 14px 0 0;
  position: relative;
  letter-spacing: 0.01em;
}

/* ============================================================
   COACHES PAGE — page-specific styles
   ============================================================ */

/* ENGAGEMENT PHASES */
.engagement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 60px; }
@media (max-width: 860px) { .engagement-grid { grid-template-columns: 1fr; gap: 0; } }
.engagement-step { position: relative; padding: 0 0 36px 32px; border-left: 2px solid rgba(0, 86, 235, 0.25); }
.engagement-step::before { content: ''; position: absolute; left: -8px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--rev-blue); border: 2px solid #fff; }
.engagement-step:last-child { border-left-color: transparent; padding-bottom: 0; }
.eng-phase { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rev-blue); font-family: 'DM Mono', monospace; margin: 0 0 10px; }
.eng-title { font-size: 20px; font-weight: 600; color: var(--rev-navy-900); margin: 0 0 10px; line-height: 1.2; }
.eng-body { font-size: 14px; color: var(--rev-text-muted); line-height: 1.7; margin: 0; }

/* PULSE CARDS */
.pulse-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.08); border-radius: 16px; overflow: hidden; margin-bottom: 32px; }
@media (max-width: 860px) { .pulse-cards { grid-template-columns: 1fr; } }
.pulse-card { background: var(--rev-navy-900); padding: 32px 28px; }
.pulse-card-num { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); font-family: 'DM Mono', monospace; margin: 0 0 14px; }
.pulse-card-title { font-size: 20px; font-weight: 600; color: #fff; margin: 0 0 12px; line-height: 1.25; }
.pulse-card-body { font-size: 14px; color: rgba(255, 255, 255, 0.65); line-height: 1.7; margin: 0; }

/* PRACTICE SHIFT CALLOUT */
.practice-callout { background: rgba(0, 86, 235, 0.1); border: 1px solid rgba(0, 86, 235, 0.2); border-radius: 20px; padding: clamp(32px, 4vw, 56px); }
.practice-callout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 800px) { .practice-callout-grid { grid-template-columns: 1fr; gap: 28px; } }
.practice-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rev-blue-300); font-family: 'DM Mono', monospace; margin: 0 0 16px; }
.practice-title { font-size: clamp(26px, 2.8vw, 38px); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; color: #fff; margin: 0 0 20px; }
.practice-title em { font-style: italic; font-weight: 300; color: var(--rev-blue-300); }
.practice-body { font-size: 15px; color: rgba(255, 255, 255, 0.7); line-height: 1.7; margin: 0; }
.practice-shift { display: flex; flex-direction: column; gap: 16px; }
.shift-row { padding-bottom: 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.shift-row:last-child { border-bottom: none; padding-bottom: 0; }
.shift-label { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.35); font-family: 'DM Mono', monospace; margin: 0 0 4px; }
.shift-val { font-size: 22px; font-weight: 500; color: rgba(255, 255, 255, 0.5); margin: 0; }
.shift-val-active { color: var(--rev-blue-300); }

/* PORTFOLIO SCOREBOARD */
.scoreboard-section { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
@media (max-width: 1000px) { .scoreboard-section { grid-template-columns: 1fr; gap: 36px; } }
.scoreboard-copy .s-title { color: #fff; }
.scoreboard-widget { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25); }
.sb-header { padding: 16px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.sb-header-left { display: flex; align-items: center; gap: 10px; }
.sb-header-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rev-blue); animation: sb-pulse 1.6s infinite; }
@keyframes sb-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(0, 86, 235, 0.6); } 70% { box-shadow: 0 0 0 5px rgba(0, 86, 235, 0); } }
.sb-header-label { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.sb-header-config { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.35); }
.sb-col-hd { display: grid; grid-template-columns: 1.2fr 1.8fr 1fr 0.7fr; gap: 16px; padding: 10px 20px; background: rgba(255, 255, 255, 0.02); border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.sb-col-hd span { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.35); }
.sb-row { display: grid; grid-template-columns: 1.2fr 1.8fr 1fr 0.7fr; gap: 16px; padding: 18px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); align-items: center; }
.sb-row:last-of-type { border-bottom: none; }
.sb-client { display: flex; align-items: center; gap: 10px; }
.sb-client-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.sb-client-dot.executed { background: var(--rev-blue); }
.sb-client-dot.pending { background: rgba(255, 255, 255, 0.25); }
.sb-client-dot.overdue { background: var(--rev-warn); }
.sb-client-dot.missed { background: var(--rev-neg); }
.sb-client-name { font-size: 14px; font-weight: 500; color: #fff; }
.sb-action { font-size: 13px; color: rgba(255, 255, 255, 0.7); line-height: 1.4; }
.sb-status { font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.sb-status.executed { color: var(--rev-blue-300); }
.sb-status.pending { color: rgba(255, 255, 255, 0.4); }
.sb-status.overdue { color: var(--rev-warn); }
.sb-status.missed { color: var(--rev-neg); }
.sb-time { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(255, 255, 255, 0.45); text-align: right; }
.sb-footer { padding: 14px 20px; border-top: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.02); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.sb-footer-note { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(255, 255, 255, 0.4); letter-spacing: 0.06em; }
.sb-footer-link { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--rev-blue-300); letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 720px) {
  .sb-col-hd { grid-template-columns: 1fr 1fr; }
  .sb-col-hd span:nth-child(3), .sb-col-hd span:nth-child(4) { display: none; }
  .sb-row { grid-template-columns: 1fr; gap: 6px; padding: 14px 20px; }
  .sb-status, .sb-time { justify-self: start; text-align: left; }
}

/* PROOF — single centered card */
.proof-single { display: flex; justify-content: center; }
.proof-card { background: var(--rev-navy-900); color: #fff; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; max-width: 720px; width: 100%; }
.proof-card-body { padding: 44px 40px; flex: 1; display: flex; flex-direction: column; }
.proof-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.proof-meta-text { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); font-family: 'DM Mono', monospace; }
.proof-shift-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); font-family: 'DM Mono', monospace; margin: 0 0 14px; }
.proof-num { font-size: clamp(48px, 6vw, 72px); font-weight: 500; letter-spacing: -0.02em; color: var(--rev-blue-300); line-height: 1.0; margin: 0 0 24px; font-variant-numeric: tabular-nums; }
.proof-quote { font-size: 17px; line-height: 1.7; color: rgba(255, 255, 255, 0.82); flex: 1; margin: 0 0 28px; }
.proof-attribution { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.proof-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--rev-blue); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; font-family: 'DM Mono', monospace; }
.proof-name { font-size: 16px; font-weight: 600; color: #fff; margin: 0; }
.proof-role { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); font-family: 'DM Mono', monospace; margin: 4px 0 0; }
.proof-footnote { font-size: 12px; color: var(--rev-text-muted); text-align: center; margin: 24px 0 0; font-family: 'DM Mono', monospace; }
.mb-error { font-size: 12px; color: #f87171; margin: 6px 0 0; display: none; line-height: 1.4; padding-bottom: 4px; }
