/* ==========================================================================
   Snackery Labs · operator-section.css
   Reusable across ALL Snax app pages (VD, MarketFlow, SmartBlog, future).
   Self-contained — declares its own CSS variables and eyebrow styles
   so the section renders correctly without the page-level CSS file.
   ========================================================================== */

/* Brand tokens — duplicated from app pages so this file is portable. */
.operator {
  --indigo-deep:  #101585;
  --indigo-mid:   #3f48d9;
  --indigo-light: #EDEEFF;
  --lemon:        #F4F73B;
  --cream:        #F6F4EA;
  --ink:          #0b0b0b;
  --font-display: "Rubik", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  background: var(--indigo-deep);
  color: #fff;
  padding-block: 140px;
  position: relative;
  overflow: hidden;
}
.operator::before {
  content: "";
  position: absolute; top: -10%; right: -8%;
  width: 420px; height: 420px;
  border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

/* Eyebrow (scoped to .operator so it doesn't leak globally) */
.operator .eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  margin-bottom: 20px;
  background: none;
  border: none;
  padding: 0;
}
.operator .eyebrow::before { content: none !important; }
.operator .eyebrow--on-dark { color: var(--lemon); }

.operator__inner {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 48px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.operator__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  color: #fff;
}
.operator__copy h2 em {
  font-style: italic;
  font-weight: 700;
  color: var(--lemon);
}
.operator__copy .lede {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.76);
  max-width: 50ch;
  margin: 0 0 36px;
}
.operator__quote {
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--lemon);
  padding: 24px 0 0;
  line-height: 1.4;
  border-top: 1px solid rgba(255,255,255,0.14);
  margin: 0;
}

.operator__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.operator__stats .stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
}
.operator__stats .stat-card::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(244,247,59,0.06);
}
.operator__stats .stat-card__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--lemon);
  margin-bottom: 12px;
}
.operator__stats .stat-card__num em { font-style: normal; }
.operator__stats .stat-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.operator__stats .stat-card p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
  margin: 0;
}
.operator__stats .stat-card--accent {
  background: var(--cream);
  color: var(--indigo-deep);
  border-color: rgba(16,21,133,0.12);
}
.operator__stats .stat-card--accent::before { background: rgba(16,21,133,0.04); }
.operator__stats .stat-card--accent .stat-card__num { color: var(--indigo-deep); }
.operator__stats .stat-card--accent h4 { color: var(--indigo-deep); }
.operator__stats .stat-card--accent p  { color: rgba(16,21,133,0.6); }

@media (max-width: 980px) {
  .operator__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .operator__stats { grid-template-columns: 1fr; }
}
