/* ════════════════════════════════════════════════════════════════
   ROADMAP SECTION
════════════════════════════════════════════════════════════════ */

.scroll-section {
  position: relative;
  z-index: 1; /* above .panel-bg so content stays sharp */
  max-width: 1060px;
  margin: 0 auto;
  padding: var(--space-14) var(--space-12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  min-height: auto;
  /* No opacity/transform animation here — children use scroll-fade
     individually so the panel background stays untouched */
}

/* iOS-style blur reveal — used on the features section and any future sections */
.scroll-reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(10px) saturate(0.7);
  transition:
    opacity   0.90s var(--ease-spring),
    transform 0.90s var(--ease-spring),
    filter    0.75s ease;
}

.scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px) saturate(1);
}

/* ── Gradual scroll fade — content elements fade in/out as they enter/leave viewport ── */
.scroll-fade {
  will-change: opacity;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--body-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: var(--space-6);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--brand-gold);
  opacity: 0.55;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.18;
  color: var(--text-primary);
  margin-bottom: var(--space-7);
}

.section-body {
  font-size: var(--body-sm);
  line-height: 1.78;
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
  font-weight: 500;
}

.section-body:last-child { margin-bottom: 0; }

.section-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-image);
}

.section-img-wrap img { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.section-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  pointer-events: none;
}


