/* ===========================================================================
   SPOED PAGE OVERRIDES — v2 (brutalist)
   =========================================================================== */

.spoed-hero {
  padding: 100px 0 110px;
  background: var(--navy-950);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--navy-900);
}
.spoed-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(251, 191, 36, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 191, 36, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.spoed-hero::after {
  content: 'SPOED';
  position: absolute;
  bottom: -80px; right: -30px;
  font-family: var(--font-display);
  font-size: clamp(10rem, 24vw, 22rem);
  color: rgba(251, 191, 36, 0.05);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.8;
  pointer-events: none;
}
.spoed-hero .container { position: relative; z-index: 1; }

.spoed-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow-300);
  color: var(--navy-950);
  padding: 10px 22px;
  border: 2px solid var(--navy-900);
  border-radius: var(--radius-xs);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  box-shadow: 4px 4px 0 var(--white);
  animation: spoed-pulse 2s ease-in-out infinite;
}
@keyframes spoed-pulse {
  0%, 100% { transform: translate(0, 0); box-shadow: 4px 4px 0 var(--white); }
  50%      { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--white); }
}
.spoed-hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  line-height: 0.98;
}
.spoed-hero h1 em {
  background: linear-gradient(180deg, transparent 60%, var(--yellow-500) 60%);
  color: var(--white);
  font-style: normal;
}
.spoed-hero-lede {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: var(--ink-300);
  line-height: 1.6;
}
.spoed-cta-mega {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 22px 40px;
  background: var(--yellow-300);
  color: var(--navy-950);
  border: 2px solid var(--navy-900);
  border-radius: var(--radius-xs);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  box-shadow: 8px 8px 0 var(--white);
  transition: all 0.15s;
}
.spoed-cta-mega:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--white);
}
.spoed-cta-mega span:first-child {
  width: 52px; height: 52px;
  background: var(--navy-950);
  color: var(--yellow-300);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  border: 2px solid var(--navy-900);
}

.spoed-metric-strip {
  padding: 0;
  background: var(--cream-100);
  border-bottom: 2px solid var(--navy-900);
}
.spoed-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--navy-900);
  border-left: none;
  border-right: none;
  border-top: none;
}
.spoed-metric {
  padding: 40px 24px;
  text-align: center;
  border-right: 2px solid var(--navy-900);
  transition: background 0.15s;
}
.spoed-metric:last-child { border-right: none; }
.spoed-metric:hover { background: var(--yellow-100); }
.spoed-metric-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--navy-950);
  line-height: 0.95;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.04em;
  display: inline-block;
  background: var(--yellow-300);
  padding: 0 10px;
  border: 2px solid var(--navy-900);
  border-radius: var(--radius-xs);
}
.spoed-metric-num small {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--navy-700);
  font-weight: 600;
  margin-left: 3px;
}
.spoed-metric-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--navy-800);
  font-weight: 600;
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.spoed-cases {
  padding: 100px 0;
  background: var(--white);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  border: 2px solid var(--navy-900);
}
.case-card {
  background: var(--white);
  padding: 30px;
  border-right: 2px solid var(--navy-900);
  border-bottom: 2px solid var(--navy-900);
  transition: background 0.15s;
  position: relative;
}
.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--yellow-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.case-card:hover {
  background: var(--cream-100);
}
.case-card:hover::before { transform: scaleX(1); }
.case-icon {
  font-size: 1.7rem;
  width: 50px; height: 50px;
  background: var(--navy-900);
  color: var(--yellow-300);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.case-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--navy-950);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.case-card p {
  color: var(--ink-700);
  font-size: 0.94rem;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .spoed-metrics { grid-template-columns: repeat(2, 1fr); }
  .spoed-metric { border-right: none; border-bottom: 2px solid var(--navy-900); }
  .spoed-metric:nth-child(2n) { border-right: none; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .case-card { border-right: none; }
  .case-card:nth-child(2n) { border-right: none; }
}
@media (max-width: 720px) {
  .spoed-metrics { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .spoed-cta-mega { font-size: 1.15rem; padding: 18px 26px; box-shadow: 6px 6px 0 var(--white); }
  .spoed-hero { padding: 60px 0 80px; }
}
