/* ==========================================================================
   FEEDER - CONTENT SECTIONS
   ========================================================================== */

/* All sections hide the global WebGL canvas except the hero, story and role */
section:not(.hero):not(.story):not(.role) {
  background: var(--bg-950);
}

/* ---------- Solutions ---------- */
.solution-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(var(--blur-sm));
  -webkit-backdrop-filter: blur(var(--blur-sm));
}

.solution-card:hover {
  border-color: var(--border-strong);
}

.solution-card .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}

.solution-card .card-tags span {
  font-size: var(--fs-2xs);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  color: var(--text-tertiary);
  border: 1px solid var(--border-subtle);
}

/* ---------- Le contexte - editorial full-bleed ---------- */
.context {
  position: relative;
  background: var(--bg-950);
  overflow: hidden;
}

.context::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 0% 20%, rgba(59, 130, 246, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(37, 99, 235, 0.06), transparent 55%);
  pointer-events: none;
}

.context-stage {
  position: relative;
  min-height: 100vh;
  max-width: 1280px;
  margin-inline: auto;
  padding: var(--sp-12) var(--container-pad);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--sp-10);
  align-items: center;
}

.context-visual {
  order: 1;
}

.context-text {
  order: 2;
  position: relative;
  z-index: 1;
}

.context-text .eyebrow {
  color: var(--accent-cyan-strong);
  margin-bottom: var(--sp-5);
}

.context-text h2 {
  color: var(--text-primary);
  font-size: clamp(var(--fs-2xl), 4.2vw, var(--fs-4xl));
  margin-bottom: var(--sp-6);
  line-height: var(--lh-snug);
}

.context-body {
  color: var(--text-secondary);
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  max-width: 560px;
}

.context-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  color: var(--text-tertiary);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  opacity: 0.7;
  animation: context-scroll-bob 1.6s ease-in-out infinite;
}

.context-scroll-cue-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: var(--accent-cyan);
}

@keyframes context-scroll-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.context-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  padding: var(--sp-8);
  border-radius: var(--radius-xl);
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
}

.context-stats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  list-style: none;
  padding: 0;
}

.context-stat {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
}

.context-stat-num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.context-stat-label {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
}

.context-progress,
.constat-progress,
.role-progress {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  position: sticky;
  bottom: var(--sp-6);
  align-self: flex-start;
  z-index: 2;
}

.context-progress-label,
.constat-progress-label,
.role-progress-label {
  font-size: var(--fs-2xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.context-progress-track,
.constat-progress-track,
.role-progress-track {
  flex: 1;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  overflow: hidden;
  min-width: 120px;
}

.context-progress-fill,
.constat-progress-fill,
.role-progress-fill {
  height: 100%;
  width: 100%;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

html[dir="rtl"] .context-progress-fill,
html[dir="rtl"] .constat-progress-fill,
html[dir="rtl"] .role-progress-fill {
  transform-origin: right;
}

.context-progress-pct,
.constat-progress-pct,
.role-progress-pct {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
  font-variant-numeric: tabular-nums;
  min-width: 3ch;
  text-align: end;
}

@media (max-width: 900px) {
  .context-stage {
    min-height: auto;
    padding-block: var(--sp-10);
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .context-visual,
  .context-text,
  .constat-text,
  .expertise-points {
    order: 0;
  }
  .context-visual {
    padding: var(--sp-6);
  }
}

/* ---------- Le constat - separated, dark-mirror section ---------- */
.constat {
  position: relative;
  background: linear-gradient(180deg, #050507 0%, #0a0810 50%, #050507 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.constat::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(34, 211, 238, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(59, 130, 246, 0.07), transparent 55%);
  pointer-events: none;
}

.constat-stage {
  position: relative;
  max-width: 1280px;
  margin-inline: auto;
  padding: var(--sp-12) var(--container-pad);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--sp-10);
  align-items: center;
}

.constat-text {
  order: 1;
}

.constat-text .eyebrow {
  color: var(--accent-cyan);
  margin-bottom: var(--sp-5);
}

.expertise-points {
  order: 2;
}

.constat-text h2 {
  color: var(--text-primary);
  font-size: clamp(var(--fs-2xl), 4.2vw, var(--fs-4xl));
  margin-bottom: var(--sp-6);
  line-height: var(--lh-snug);
}

.constat-body {
  color: var(--text-secondary);
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  max-width: 560px;
}

.expertise-points {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  list-style: none;
  padding: 0;
}

.expertise-points li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-radius: var(--radius-xl);
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

.expertise-points li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.55em;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}

.expertise-points li strong {
  display: block;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-md);
  margin-bottom: var(--sp-1);
}

.expertise-points li p {
  color: var(--text-tertiary);
  font-size: var(--fs-xs);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.constat-progress {
  grid-column: 1 / -1;
  max-width: 420px;
  margin-top: var(--sp-8);
}

@media (max-width: 900px) {
  .constat-stage {
    grid-template-columns: 1fr;
    padding-block: var(--sp-10);
  }
  .constat-text,
  .expertise-points {
    order: 0;
  }
}

/* ---------- Notre rôle : pinned GSAP timeline ---------- */
.role {
  position: relative;
  background: var(--bg-950);
}

.role::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(59, 130, 246, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(34, 211, 238, 0.05), transparent 55%);
  pointer-events: none;
}

.role-pin {
  min-height: 100vh;
}

.role-stage {
  position: relative;
  width: 100%;
  max-width: 1280px;
  min-height: 100vh;
  margin-inline: auto;
  padding: calc(var(--header-h) + var(--sp-10)) var(--container-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-9);
}

.role-text {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.role-text .eyebrow {
  color: var(--accent-cyan-strong);
  margin-bottom: var(--sp-5);
}

.role-text h2 {
  color: var(--text-primary);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-5);
}

.role-subtitle {
  color: var(--text-secondary);
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
}

.role-step-hud {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  min-height: 112px;
}

.role-step-hud-index {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-width: 48px;
}

.role-step-hud-body h3 {
  color: var(--text-primary);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-2);
}

.role-step-hud-body p {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

.role-progress {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  max-width: 420px;
  position: relative;
  bottom: auto;
}

.role-progress-label {
  font-size: var(--fs-2xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.role-progress-track {
  flex: 1;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  overflow: hidden;
  min-width: 120px;
}

.role-progress-fill {
  height: 100%;
  width: 100%;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
}

html[dir="rtl"] .role-progress-fill {
  transform-origin: right;
}

.role-progress-pct {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
  font-variant-numeric: tabular-nums;
  min-width: 3ch;
  text-align: end;
}

.role-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 360px;
  margin-top: -80px;
}

.role-timeline {
  position: relative;
  width: 100%;
  max-width: 720px;
}

.role-line {
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 15px;
  width: 2px;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  overflow: hidden;
}

html[dir="rtl"] .role-line {
  inset-inline-start: auto;
  inset-inline-end: 15px;
}

.role-line-fill {
  height: 100%;
  width: 100%;
  background: var(--accent-gradient);
  transform: scaleY(0);
  transform-origin: top;
}

.role-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding-inline-start: 48px;
}

html[dir="rtl"] .role-steps {
  padding-inline-start: 0;
  padding-inline-end: 48px;
}

.role-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-6);
  border-radius: var(--radius-xl);
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  opacity: 0.35;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.role-step.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(59, 130, 246, 0.45);
  background: var(--surface-violet);
}

.role-step-dot {
  position: absolute;
  top: 50%;
  inset-inline-start: -41px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--border-strong);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

html[dir="rtl"] .role-step-dot {
  inset-inline-start: auto;
  inset-inline-end: -41px;
}

.role-step.is-active .role-step-dot {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.18), 0 0 22px rgba(59, 130, 246, 0.45);
}

.role-step-card {
  position: relative;
}

.role-step-index {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--sp-2);
}

.role-step-card h3 {
  color: var(--text-primary);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-2);
}

.role-step-card p {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

@media (min-width: 901px) {
  .role-stage {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-12);
    padding-block: var(--sp-12);
  }
  .role-text {
    flex: 0 0 440px;
  }
  .role-visual {
    flex: 1 1 auto;
    min-height: 460px;
  }
}

@media (max-width: 900px) {
  .role-stage {
    min-height: auto;
    padding-block: var(--sp-10);
    justify-content: flex-start;
  }
  .role-text {
    max-width: 100%;
  }
  .role-step-hud {
    min-height: auto;
  }
  .role-visual {
    min-height: auto;
    margin-top: 0;
  }
  .role-line {
    inset-inline-start: 11px;
  }
  .role-steps {
    padding-inline-start: 36px;
  }
  .role-step-dot {
    inset-inline-start: -31px;
    width: 14px;
    height: 14px;
  }
  html[dir="rtl"] .role-step-dot {
    inset-inline-start: auto;
    inset-inline-end: -31px;
  }
}

/* ---------- Partner showcase ---------- */
.partners-showcase {
  padding-block: var(--sp-11) 0;
}

.brand-stories {
  display: flex;
  flex-direction: column;
}

.brand-story {
  border-top: 1px solid var(--border-subtle);
  padding-block: var(--sp-11);
  position: relative;
  overflow: clip;
  transition: background-color 0.35s ease, border-top-color 0.35s ease;
}

.brand-story:hover {
  background-color: rgba(59, 130, 246, 0.05);
  border-top-color: rgba(59, 130, 246, 0.35);
}

.brand-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 15% 20%, rgba(59, 130, 246, 0.07), transparent 70%);
  pointer-events: none;
}

.brand-story:nth-child(even)::before {
  background: radial-gradient(ellipse 60% 50% at 85% 80%, rgba(37, 99, 235, 0.07), transparent 70%);
}

.brand-story-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: var(--sp-9);
  align-items: start;
  text-decoration: none;
  color: inherit;
}

.brand-story:nth-child(even) .brand-story-inner {
  direction: rtl;
}

.brand-story:nth-child(even) .brand-story-inner > * {
  direction: ltr;
}

.brand-story-visual {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
}

.brand-index {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.5;
  margin-bottom: var(--sp-3);
}

.brand-name {
  font-size: clamp(var(--fs-2xl), 3vw, var(--fs-3xl));
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}

.brand-domain {
  font-size: var(--fs-sm);
  color: var(--text-tertiary);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.brand-tagline {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-lg), 2vw, var(--fs-xl));
  color: var(--text-primary);
  margin-bottom: var(--sp-5);
  line-height: var(--lh-snug);
}

.brand-description {
  color: var(--text-secondary);
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
  max-width: 620px;
}

.brand-points {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.brand-points li {
  position: relative;
  padding-inline-start: var(--sp-5);
  color: var(--text-secondary);
  font-size: var(--fs-sm);
}

.brand-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 1px;
  background: var(--accent-cyan);
}

html[dir="rtl"] .brand-points li {
  padding-inline-start: 0;
  padding-inline-end: var(--sp-5);
}

html[dir="rtl"] .brand-points li::before {
  left: auto;
  right: 0;
}

.brand-complement {
  padding: var(--sp-4) var(--sp-5);
  border-inline-start: 2px solid var(--accent-cyan);
  background: var(--surface-1);
  color: var(--text-primary);
  font-size: var(--fs-sm);
  font-style: italic;
  max-width: 620px;
}

.partner-logo-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(96px, 12vw, 140px);
  aspect-ratio: 1;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.65);
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  background: var(--surface-glass-strong);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  backdrop-filter: blur(var(--blur-md)) saturate(130%);
  -webkit-backdrop-filter: blur(var(--blur-md)) saturate(130%);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(59, 130, 246, 0.18);
  display: grid;
  place-items: center;
  padding: var(--sp-4);
  will-change: transform, opacity;
}

.partner-logo-cursor.is-visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.partner-logo-cursor img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.partner-logo-cursor-hint {
  position: absolute;
  bottom: 8%;
  right: 8%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-circle);
  background: var(--accent-cyan-strong);
  color: var(--bg-950);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.partner-logo-cursor-hint svg {
  width: 14px;
  height: 14px;
}

.partner-logo-cursor.is-active {
  border-color: rgba(96, 165, 250, 0.6);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(59, 130, 246, 0.35), 0 0 0 1px rgba(96, 165, 250, 0.25);
}

.partner-logo-cursor.is-active .partner-logo-cursor-hint {
  animation: cursorHintPulse 1.2s ease-in-out infinite;
}

@keyframes cursorHintPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.brand-story {
  cursor: pointer;
}

@media (max-width: 900px) {
  .partner-logo-cursor {
    display: none;
  }
  .brand-story-inner,
  .brand-story:nth-child(even) .brand-story-inner {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .brand-story-visual {
    position: static;
  }
}

/* ---------- Why Feeder ---------- */
.why-grid {
  align-items: center;
}

.why-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.14), rgba(37, 99, 235, 0.08));
}

.why-visual .grid-overlay {
  position: absolute;
  inset: 0;
  background-size: 44px 44px;
}

.why-visual .core-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--accent-cyan-strong), var(--accent-blue) 55%, var(--accent-violet) 100%);
  box-shadow: 0 0 90px rgba(59, 130, 246, 0.35);
}

.why-visual .orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.why-item {
  display: flex;
  gap: var(--sp-5);
  padding-block: var(--sp-5);
  border-top: 1px solid var(--border-subtle);
}

.why-item:first-child {
  border-top: none;
  padding-top: 0;
}

.why-item-num {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  color: var(--accent-cyan);
  min-width: 32px;
}

.why-item h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-2);
}

.why-item p {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

/* ---------- Process ---------- */
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.process-track::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 15%, var(--border-strong) 85%, transparent);
}

html[dir="rtl"] .process-track::before {
  background: linear-gradient(270deg, transparent, var(--border-strong) 15%, var(--border-strong) 85%, transparent);
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.process-step-index {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--accent-cyan-strong);
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
}

.process-step h3 {
  font-size: var(--fs-lg);
}

.process-step p {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

@media (max-width: 900px) {
  .process-track {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .process-track::before {
    inset-inline: 27px;
    top: 0;
    bottom: 0;
    left: 27px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--border-strong) 15%, var(--border-strong) 85%, transparent);
  }
}

/* ---------- Stats band ---------- */
.stats-band {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface-1);
}

.stats-band .grid {
  padding-block: var(--sp-9);
}

/* ---------- Values ---------- */
.value-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  text-align: start;
  backdrop-filter: blur(var(--blur-sm));
  -webkit-backdrop-filter: blur(var(--blur-sm));
}

/* ---------- Partners ---------- */
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  min-height: 168px;
  justify-content: center;
  backdrop-filter: blur(var(--blur-sm));
  -webkit-backdrop-filter: blur(var(--blur-sm));
}

.partner-card .icon-box {
  background: var(--surface-2);
}

.partner-card h3 {
  font-size: var(--fs-md);
  color: var(--text-primary);
}

.partner-card p {
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
}

.partner-card.is-cta {
  border-color: var(--accent-cyan);
  background: rgba(59, 130, 246, 0.05);
}

/* ---------- CTA banner ---------- */
.cta-section {
  position: relative;
  z-index: 1;
}

.cta-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(var(--sp-10), 8vw, var(--sp-12)) var(--sp-8);
  text-align: center;
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.07), rgba(37, 99, 235, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 80px rgba(59, 130, 246, 0.12);
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(59, 130, 246, 0.16), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  animation: cta-pulse 7s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.04); }
}

.cta-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.12), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  animation: cta-glow-rotate 14s linear infinite;
}

@keyframes cta-glow-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-inline: auto;
}

.cta-banner h2 {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--sp-4);
}

.cta-banner p {
  max-width: 560px;
  margin-inline: auto;
  color: var(--text-secondary);
  margin-bottom: var(--sp-7);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .cta-actions {
    flex-direction: column;
  }
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-1);
  overflow: hidden;
  backdrop-filter: blur(var(--blur-sm));
  -webkit-backdrop-filter: blur(var(--blur-sm));
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text-primary);
  text-align: start;
}

.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent-cyan);
  transition: transform var(--dur-fast) ease;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
}

.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

/* ---------- Why Feeder 3D orb ---------- */
.why-orb-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: auto;
  border-radius: var(--radius-xl);
}

.why-visual .core-orb {
  display: none;
}

.why-visual .grid-overlay,
.why-visual .orbit-ring {
  pointer-events: none;
  z-index: 0;
}

.why-orb-hint {
  position: absolute;
  bottom: var(--sp-4);
  right: var(--sp-4);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-tertiary);
  background: rgba(3, 5, 10, 0.55);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease, color 0.2s ease;
}

.why-visual:hover .why-orb-hint {
  opacity: 1;
  transform: translateY(0);
}

.why-orb-hint-icon {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
}

.why-orb-hint-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 960px), (prefers-reduced-motion: reduce) {
  .why-orb-hint {
    display: none;
  }
}

/* ---------- Coverage cards ---------- */
#domains .card {
  position: relative;
}


/* ---------- FAQ two-column layout ---------- */
#faq .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: var(--sp-10);
  align-items: start;
  max-width: 1200px;
}

#faq .section-head {
  text-align: start;
  position: sticky;
  top: calc(var(--header-h) + var(--sp-8));
}

#faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.faq-item {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  padding: var(--sp-5) 0;
}

.faq-answer-inner {
  padding: 0 0 var(--sp-5) 0;
}

@media (max-width: 900px) {
  #faq .container {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }
  #faq .section-head {
    position: static;
    text-align: center;
  }
}

/* ==========================================================================
   COVERAGE - WebGL starfield + parallax card grid
   ========================================================================== */

.domains-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(59, 130, 246, 0.10), transparent 60%), var(--bg-950);
}

.domains-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.85;
  pointer-events: auto;
}

.domains-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.domains-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg-950) 85%);
  pointer-events: none;
}

.domains-section .container {
  position: relative;
  z-index: 2;
}

.coverage-carousel {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  margin-top: var(--sp-10);
  perspective: 1000px;
}

.coverage-carousel-stage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  transform-style: preserve-3d;
}

.coverage-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-7);
  border-radius: var(--radius-xl);
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  text-align: start;
  backdrop-filter: blur(var(--blur-sm));
  -webkit-backdrop-filter: blur(var(--blur-sm));
  user-select: none;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateZ(0px);
  transition: transform 0.15s ease-out, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.coverage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 35%,
    transparent 70%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}

.coverage-card:hover::before,
.coverage-card:focus-within::before {
  opacity: 1;
}

.coverage-card:hover,
.coverage-card:focus-within {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 32px 100px rgba(59, 130, 246, 0.18);
}

.coverage-card .icon-box {
  position: relative;
  z-index: 2;
  background: var(--surface-2);
}

.coverage-card h3 {
  position: relative;
  z-index: 2;
  color: var(--text-primary);
  font-size: var(--fs-md);
  margin-top: var(--sp-2);
}

.coverage-card p {
  position: relative;
  z-index: 2;
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

@media (max-width: 900px) {
  .coverage-carousel-stage {
    grid-template-columns: 1fr;
  }
  .coverage-card {
    min-height: auto;
    padding: var(--sp-6);
  }
}

@media (max-width: 640px) {
  .coverage-carousel {
    max-width: 100%;
  }
  .coverage-carousel-stage {
    gap: var(--sp-5);
  }
}
