/* ─── FINAL CTA ─── */
.hs-cta-card {
  background: #fff;
  border-radius: var(--rev-radius-lg);
  box-shadow: 0 4px 24px rgba(4,18,45,0.08);
  padding: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 60px);
}

.hs-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 720px) {
  .hs-cta-grid { grid-template-columns: 1fr; gap: 32px; }
}

.cta-eyebrow-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rev-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hs-cta-right {
  background: linear-gradient(135deg, #0056EB 0%, #0041b8 100%);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 20px 50px rgba(0,86,235,0.25);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hs-cta-right-orb {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(75,133,234,0.4);
  filter: blur(40px);
  pointer-events: none;
}

.hs-cta-badge {
  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;
}

.hs-cta-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4b85ea;
  box-shadow: 0 0 0 4px rgba(75,133,234,0.3);
  animation: hs-cta-pulse 1.6s ease-in-out infinite;
  display: inline-block;
}

@keyframes hs-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(75,133,234,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(75,133,234,0); }
}

.hs-cta-h3 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  position: relative;
}

.hs-cta-body {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  margin: 0 0 24px;
  position: relative;
}

.hs-cta-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #04122D;
  font-size: 17px;
  font-weight: 600;
  height: 60px;
  padding: 0 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
  position: relative;
  white-space: nowrap;
}

.hs-cta-btn:hover { background: #f0f5ff; }

.hs-cta-note {
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin: 14px 0 0;
  position: relative;
  letter-spacing: 0.01em;
}

/* ─── SECTION SCAFFOLD ─── */
.section {
  margin: 25px 30px;
  background: #fff;
  border-radius: 25px;
  box-shadow: var(--rev-shadow-card);
  overflow: hidden;
}

.section-pad {
  padding: clamp(20px, 2.5vw, 36px) clamp(28px, 5vw, 73px) clamp(28px, 3.5vw, 52px);
}

@media (max-width: 720px) {
  .section {
    margin: 16px 12px;
    border-radius: 20px;
  }
}

.section-dark {
  margin: 25px 30px;
  background: var(--rev-navy-900);
  color: #fff;
  border-radius: 25px;
  box-shadow: var(--rev-shadow-card);
  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;
}

@media (max-width: 720px) {
  .section-dark {
    margin: 16px 12px;
    border-radius: 20px;
  }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  margin: 90px 30px 0;
  border-radius: 40px;
  overflow: hidden;
  background: url('../../images/hero-section-backgroud-blue-gradient.webp') center center / cover no-repeat;
  color: #fff;
  padding: clamp(16px, 2vw, 28px) clamp(32px, 6vw, 80px) clamp(24px, 3vw, 40px);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 18, 45, 0.25) 0%, rgba(4, 18, 45, 0.65) 100%);
}

@media (max-width: 720px) {
  .hero {
    margin: 16px 12px;
    border-radius: 20px;
    padding: 40px 24px 60px;
  }
}

/* ─── HERO CONTENT ─── */
.hero-inner {
  position: relative;
  z-index: 10;
  padding: 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-inner > div {
  min-width: 0;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-inner > div:first-child h1 {
    text-align: center;
  }
}

@media (max-width: 540px) {
  .hero-inner {
    padding-top: 0;
  }
}

/* ─── EYEBROW ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rev-blue-300);
  margin-top: 20px;
  margin-bottom: 32px;
}

.eyebrow .live-dot,
.scorecard-tag .live-dot {
  width: 7px;
  height: 7px;
}

/* ─── PULSE DOT ─── */
@keyframes pulse-blue {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 86, 235, 0.6);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(0, 86, 235, 0);
  }
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rev-blue);
  animation: pulse-blue 1.6s infinite;
  flex-shrink: 0;
}

.pulse-dot-white {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

/* ─── SCORECARD CARD ─── */
.scorecard-card {
  background: var(--rev-navy-900);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.scorecard-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 6px 12px;
  margin-top: 20px;
  margin-bottom: 16px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.scorecard-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scorecard-header-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.scorecard-title-block {
  padding: 20px 20px 16px;
}

.scorecard-date {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.scorecard-amount {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.scorecard-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.scorecard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.scorecard-row-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.scorecard-row-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.scorecard-row-val {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.scorecard-row-warn .scorecard-row-label {
  color: rgba(200, 138, 58, 0.9);
}

.scorecard-row-warn .scorecard-row-val {
  color: rgba(200, 138, 58, 0.9);
}

.warn-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rev-warn, #c88a3a);
  flex-shrink: 0;
}

.alert-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rev-neg, #d08181);
  flex-shrink: 0;
}

.scorecard-row-alert .scorecard-row-label {
  color: rgba(208, 129, 129, 0.9);
}

.scorecard-row-alert .scorecard-row-val {
  color: rgba(208, 129, 129, 0.9);
}

.scorecard-cta-block {
  background: var(--rev-blue);
  padding: 16px 20px;
}

.scorecard-cta-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.scorecard-cta-text {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* ─── HERO STATS ─── */
.hero-stats-panel {
  border-left: 2px solid var(--rev-blue);
  padding-left: 32px;
}

.hero-stats-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  max-width: none;
}

.hero-stat-label {
  font-family: var(--rev-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.hero-stat-num {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.hero-stat-num.neg { color: var(--rev-neg); }
.hero-stat-num.pos { color: var(--rev-blue-300); }

.hero-stat-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

.hero-footnote {
  font-family: var(--rev-font-mono);
  font-size: 10px;
  line-height: 1.6;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.70);
  letter-spacing: 0.04em;
}

/* ─── HERO ACTIONS ─── */
.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.hero-actions .btn-white-pill {
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
}

.hero-actions .btn-primary-pill {
  padding: 12px 6px 12px 20px;
  font-size: 15px;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rev-blue);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--rev-blue);
  color: var(--rev-blue);
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-outline-blue:hover {
  background: var(--rev-blue-25);
}

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rev-blue);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-primary-dark:hover {
  opacity: 0.88;
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* ─── SEC-HEAD ─── */
.sec-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--rev-blue-100);
  margin-bottom: 48px;
  margin-top: 0;
}

.sec-head.dark {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 720px) {
  .sec-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.sec-h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--rev-navy-900);
  line-height: 1.15;
}

.sec-h2.white {
  color: #fff;
}

.sec-desc {
  font-size: 16px;
  color: var(--rev-text-muted);
  line-height: 1.7;
}

.sec-desc.white {
  color: rgba(255, 255, 255, 0.65);
}

/* ─── FIVE LEAKS ─── */
.leak-list {}

.leak-item {
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  gap: 40px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.leak-item:last-child {
  border-bottom: none;
}

@media (max-width: 960px) {
  .leak-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.leak-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
}

.leak-title-block .leak-mono {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.leak-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.leak-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.leak-loss-card {
  background: rgba(208, 129, 129, 0.08);
  border: 1px solid rgba(208, 129, 129, 0.2);
  border-radius: 14px;
  padding: 18px;
}

.leak-loss-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(208, 129, 129, 0.8);
  margin-bottom: 6px;
}

.leak-loss-amount {
  font-size: 18px;
  font-weight: 700;
  color: rgba(208, 129, 129, 0.9);
}

.leak-loss-note {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.966);
  margin-top: 6px;
}

.leak-summary {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

@media (max-width: 720px) {
  .leak-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.leak-summary-text {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.link-arrow {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--rev-blue-300);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.link-arrow:hover {
  gap: 10px;
}

/* ─── ALERT CARDS (3-up) ─── */
.alert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rev-blue-100);
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 720px) {
  .alert-grid {
    grid-template-columns: 1fr;
  }
}

.alert-card {
  padding: 32px 28px;
  border-right: 1px solid var(--rev-blue-100);
}

.alert-card:last-child {
  border-right: none;
}

@media (max-width: 720px) {
  .alert-card {
    border-right: none;
    border-bottom: 1px solid var(--rev-blue-100);
  }
}

.alert-card.dark {
  background: var(--rev-navy-900);
  border-color: rgba(255, 255, 255, 0.08);
}

.alert-card-num-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.alert-card-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--rev-text-muted);
}

.alert-card-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rev-blue);
}

.alert-card-tag.white {
  color: rgba(255, 255, 255, 0.45);
}

.alert-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--rev-navy-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.alert-card.dark h3 {
  color: #fff;
}

.alert-card p {
  font-size: 14px;
  color: var(--rev-text-muted);
  line-height: 1.7;
}

.alert-card.dark p {
  color: rgba(255, 255, 255, 0.65);
}

.alert-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--rev-blue-100);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rev-text-muted);
}

.alert-card.dark .alert-card-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.35);
}

.how-it-arrives {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rev-blue-100);
  display: flex;
  gap: 40px;
  align-items: baseline;
}

@media (max-width: 720px) {
  .how-it-arrives {
    flex-direction: column;
    gap: 12px;
  }
}

.how-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rev-text-muted);
  white-space: nowrap;
}

.how-text {
  font-size: 18px;
  color: var(--rev-navy-900);
  line-height: 1.6;
}

/* ─── MONEYBALL FORM ─── */
.mb-index-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .mb-index-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.index-eyebrow {
  font-family: var(--rev-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rev-blue);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.index-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--rev-text);
}

.index-headline em { font-style: italic; font-weight: 400; }

.index-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--rev-text-muted);
  margin-bottom: 12px;
}

.index-subhead {
  font-family: var(--rev-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rev-navy-900);
  margin-top: 24px;
  margin-bottom: 10px;
}

.index-note {
  font-size: 14px;
  line-height: 1.65;
  color: var(--rev-text-muted);
  max-width: 480px;
}

/* Form panel (white card) */
.form-panel {
  background: #fff;
  color: var(--rev-navy-900);
  border-radius: var(--rev-radius-lg, 20px);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(4, 18, 45, 0.08);
  border: 1px solid rgba(4, 18, 45, 0.05);
}

.form-panel-orb {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(75, 133, 234, 0.15);
  filter: blur(60px);
  pointer-events: none;
}

.form-panel-inner { position: relative; z-index: 2; }

.form-panel-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.form-panel-label {
  font-family: var(--rev-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(4, 18, 45, 0.5);
}

.form-panel-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--rev-navy-900);
}

.form-panel-sub {
  font-size: 14px;
  color: rgba(4, 18, 45, 0.65);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-family: var(--rev-font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(4, 18, 45, 0.5);
  margin-bottom: 8px;
}

.form-label-optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(4, 18, 45, 0.35);
}

.form-input,
.form-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(4, 18, 45, 0.15);
  color: var(--rev-navy-900);
  font-family: var(--rev-font-sans);
  font-size: 15px;
  font-weight: 400;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(4, 18, 45, 0.35); }

.form-input:focus,
.form-select:focus { border-bottom-color: var(--rev-blue); }

.form-select option { background: #fff; color: var(--rev-navy-900); }

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  background: var(--rev-blue);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--rev-font-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover { background: #0048c8; }

.form-footnote {
  font-family: var(--rev-font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(4, 18, 45, 0.5);
  margin-top: 12px;
  text-align: center;
}

/* ─── INTEGRATIONS GRID ─── */
.int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .int-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .int-grid {
    grid-template-columns: 1fr;
  }
}

.int-card {
  background: var(--rev-navy-900);
  padding: 28px 24px;
}

.int-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.int-cat {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.int-cat.live {
  color: var(--rev-blue-300);
}

.int-badge {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rev-blue-300);
}

.int-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.int-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.int-card ul li {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.int-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.int-card .int-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

.int-card.featured {
  border: 1px solid rgba(0, 86, 235, 0.3);
}

.int-anchor {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-style: italic;
}

/* ─── FIT GRID ─── */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rev-blue-100);
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .fit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }
}

.fit-card {
  background: #fff;
  padding: 28px 24px;
}

.fit-card.dark {
  background: var(--rev-navy-900);
}

.fit-cat {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rev-text-muted);
  margin-bottom: 12px;
}

.fit-card.dark .fit-cat {
  color: rgba(255, 255, 255, 0.4);
}

.fit-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--rev-navy-900);
  margin-bottom: 10px;
  line-height: 1.3;
}

.fit-card.dark h3 {
  color: #fff;
}

.fit-card p {
  font-size: 14px;
  color: var(--rev-text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.fit-card.dark p {
  color: rgba(255, 255, 255, 0.55);
}

.fit-card p:last-child {
  margin-bottom: 0;
}

/* ─── PROOF / TESTIMONIALS ─── */
.proof-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--rev-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.proof-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 720px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

.proof-card {
  background: var(--rev-navy-900);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.proof-company {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.proof-leak-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.proof-number {
  font-size: 52px;
  font-weight: 800;
  color: var(--rev-blue);
  line-height: 1;
  margin-bottom: 20px;
}

.proof-quote {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  flex: 1;
  margin: 0;
}

.proof-quote strong {
  color: #fff;
}

.proof-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.proof-role {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.proof-footnote {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--rev-text-muted);
  text-align: center;
  margin-top: 24px;
}

/* ─── FAQ ─── */
.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

details {
  border-bottom: 1px solid var(--rev-blue-100);
}

details > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--rev-navy-900);
  gap: 16px;
}

details > summary::-webkit-details-marker {
  display: none;
}

.plus {
  font-size: 24px;
  font-weight: 300;
  color: var(--rev-blue);
  line-height: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
}

details[open] .plus {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 0 20px;
  font-size: 16px;
  color: var(--rev-text-muted);
  line-height: 1.75;
  max-width: 600px;
}

.faq-border-top {
  border-top: 2px solid var(--rev-navy-900);
}

/* ─── FINAL CTA ─── */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 40px;
}

@media (max-width: 720px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.cta-tagline {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  font-style: italic;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── LIVE DOT ─── */
.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); }
}

/* ─── SECTION TYPOGRAPHY (s-*) ─── */
.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-300); }
.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); }

/* ─── MONEYBALL CARD + FORM (mb-*) ─── */
.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);
}

/* ─── MOBILE EYEBROW CENTER ─── */
@media (max-width: 720px) {
  .eyebrow {
    display: block !important;
    width: 100%;
    text-align: center;
  }
  .eyebrow .live-dot {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
  }
}
.mb-error { font-size: 12px; color: #f87171; margin: 6px 0 0; display: none; line-height: 1.4; padding-bottom: 4px; }
