.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.eyebrow-light {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-head h2 {
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 14px 0 0;
}

.section-head p {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--text-muted);
  margin: 16px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 26px;
  border-radius: 13px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: filter .15s ease, transform .15s ease;
}

.btn-accent {
  background: var(--accent);
  color: var(--ink);
}
.btn-accent:hover { filter: brightness(1.06); transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); }

.stat-block { display: flex; flex-direction: column; }
.stat-block .stat-value { font-size: 24px; font-weight: 800; }
.stat-block .stat-label { font-size: 13px; color: rgba(255, 255, 255, .55); }

.stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, .14);
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover {
  box-shadow: 0 20px 44px -22px rgba(0, 0, 0, .2);
  transform: translateY(-3px);
}

.icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: var(--accent);
}

@media (max-width: 640px) {
  .section-head {
    margin-bottom: 40px;
  }
  .card {
    padding: 24px 20px;
    border-radius: 18px;
  }
}

/* ---- Shared "stage" decoration: rotating orbit rings + giant background
   watermark word. Used behind a focal visual (a phone mockup, an icon) to
   give a section presence -- e.g. css/sections/parent-experience.css,
   driver-experience.css. ---- */

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(var(--accent-rgb), .22);
  pointer-events: none;
}
.orbit-ring--1 { width: 240px; height: 240px; animation: orbitRotate 22s linear infinite; }
.orbit-ring--2 { width: 320px; height: 320px; border-color: rgba(var(--accent-rgb), .12); animation: orbitRotateReverse 28s linear infinite; }

@keyframes orbitRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbitRotateReverse { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.section-watermark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .8;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

/* Subtle idle float for a hero-ish focal visual (phone mockups, icons). */
@keyframes idleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-ring { animation: none; }
}

/* Stagger-reveal utility -- see js/behaviors/reveal-on-scroll.js.
   Opacity-only on purpose: several revealed elements (e.g. the staggered
   .audience-card--featured) already carry their own resting `transform`
   (elevation, hover lift), so animating transform here too would fight it. */
[data-reveal] {
  opacity: 0;
  transition: opacity .5s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-revealed {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transition: none;
  }
}
