.features {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.pipeline {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.pipeline__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 860px) {
  .pipeline__grid {
    grid-template-columns: 1fr;
  }
}

.pipeline__content {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
}

.pipeline__steps {
  display: grid;
  gap: var(--space-md);
}

.pipeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
}

.pipeline-step__no {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-3));
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
}

.pipeline-step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.pipeline-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.cta {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(194, 65, 12, 0.38);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(194, 65, 12, 0.22), transparent),
    linear-gradient(180deg, rgba(12, 12, 12, 0.94), var(--bg-surface));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transform-style: preserve-3d;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}

.cta p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
  line-height: 1.65;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* Mission / vision — extra vertical room so Solutions doesn’t read as inside this block */
.mv-section.section {
  position: relative;
  z-index: 0;
  isolation: isolate;
  box-sizing: border-box;
  padding-top: clamp(2.5rem, 6vw, 4.25rem);
  padding-bottom: clamp(5rem, 14vw, 9rem);
  min-height: max(41rem, calc(74vh - var(--nav-h)));
  border-block: 1px solid var(--border-subtle);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 80% 60% at 18% 0%, rgba(251, 146, 60, 0.09), transparent 55%),
    radial-gradient(ellipse 65% 50% at 88% 20%, rgba(154, 52, 18, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.35), rgba(5, 5, 5, 0.92));
}

@media (max-width: 860px) {
  .mv-section.section {
    min-height: 0;
    padding-bottom: clamp(4rem, 12vw, 7rem);
  }
}

.section.section--after-mv {
  position: relative;
  z-index: 1;
  isolation: isolate;
  margin-top: clamp(2.25rem, 6vh, 4rem);
  padding-top: clamp(3rem, 8vw, 5rem);
  background: var(--bg-deep);
}

.mv-section__head {
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.mv-section__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: var(--space-sm);
}

.mv-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.mv-section__desc {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.mv-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
  align-items: stretch;
}

@media (max-width: 860px) {
  .mv-section__grid {
    grid-template-columns: 1fr;
  }
}

.mv-card {
  --mv-spot-top: rgba(251, 146, 60, 0.24);
  --mv-spot-mid: rgba(234, 88, 12, 0.16);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  align-self: stretch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(155deg, rgba(22, 18, 16, 0.96), rgba(8, 7, 6, 0.92));
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.42) inset,
    0 20px 56px -40px rgba(0, 0, 0, 0.88);
  display: flex;
  flex-direction: column;
  min-height: 0;
  transition:
    border-color 0.35s var(--ease-out-expo),
    box-shadow 0.35s var(--ease-out-expo);
}

.mv-card:hover {
  border-color: rgba(251, 146, 60, 0.28);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.42) inset,
    0 24px 64px -36px rgba(194, 65, 12, 0.26);
}

.mv-card--mission {
  --mv-spot-top: rgba(251, 146, 60, 0.28);
  --mv-spot-mid: rgba(249, 115, 22, 0.12);
}

.mv-card--vision {
  --mv-spot-top: rgba(251, 191, 36, 0.12);
  --mv-spot-mid: rgba(154, 52, 18, 0.22);
}

.mv-card:hover .mv-card__spotlight {
  opacity: 1;
}

.mv-card__spotlight {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    520px circle at var(--mouse-x, 52%) var(--mouse-y, 38%),
    var(--mv-spot-top),
    var(--mv-spot-mid) 42%,
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
}

.mv-card__ambient {
  position: absolute;
  width: 120%;
  height: 55%;
  top: -20%;
  right: -25%;
  background: radial-gradient(circle at 40% 50%, rgba(234, 88, 12, 0.18), transparent 62%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
}

.mv-card__ambient--cool {
  right: auto;
  left: -28%;
  top: -18%;
  background: radial-gradient(circle at 55% 45%, rgba(154, 52, 18, 0.28), transparent 62%);
}

.mv-card__accent {
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, transparent, var(--accent-3), var(--accent-bright), transparent);
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
}

.mv-card__accent--vision {
  background: linear-gradient(90deg, transparent, rgba(154, 52, 18, 0.85), rgba(251, 146, 60, 0.75), transparent);
}

.mv-card__inner {
  position: relative;
  z-index: 3;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
}

.mv-card__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  margin-bottom: var(--space-md);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-3);
  border-radius: var(--radius-full);
  border: 1px solid rgba(251, 146, 60, 0.35);
  background: rgba(194, 65, 12, 0.12);
}

.mv-card__pill--vision {
  color: rgba(251, 191, 36, 0.95);
  border-color: rgba(154, 52, 18, 0.45);
  background: rgba(88, 28, 8, 0.28);
}

.mv-card__glyph {
  width: 52px;
  height: 52px;
  margin-bottom: var(--space-md);
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 25%, rgba(234, 88, 12, 0.35), rgba(194, 65, 12, 0.08));
  border: 1px solid rgba(234, 88, 12, 0.38);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.42) inset,
    0 14px 36px -20px rgba(194, 65, 12, 0.5);
}

.mv-card__glyph svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.75;
  color: var(--accent-bright);
  filter: drop-shadow(0 0 12px rgba(234, 88, 12, 0.45));
}

.mv-card--vision .mv-card__glyph {
  background: radial-gradient(circle at 30% 25%, rgba(154, 52, 18, 0.45), rgba(48, 20, 8, 0.2));
  border-color: rgba(154, 52, 18, 0.5);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.42) inset,
    0 14px 36px -20px rgba(88, 32, 10, 0.55);
}

.mv-card--vision .mv-card__glyph svg {
  color: var(--accent-3);
  filter: drop-shadow(0 0 12px rgba(251, 146, 60, 0.4));
}

.mv-card__title {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text-primary);
}

@media (min-width: 900px) {
  .mv-card__title {
    font-size: 1.28rem;
  }
}

.mv-card__lede {
  margin: 0 0 var(--space-md);
  font-size: 0.95rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.mv-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mv-card__list li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.875rem;
  line-height: 1.58;
  color: var(--text-muted);
}

.mv-card__detail {
  margin-top: auto;
  padding-top: var(--space-md);
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .mv-card__detail {
    margin-top: var(--space-md);
  }
}


.mv-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-bright));
  box-shadow: 0 0 10px rgba(234, 88, 12, 0.35);
}

.mv-card--vision .mv-card__list li::before {
  background: linear-gradient(135deg, rgba(154, 52, 18, 0.95), var(--accent-3));
}

@media (prefers-reduced-motion: reduce) {
  .mv-card {
    transition: none;
  }

  .mv-card__spotlight {
    opacity: 0 !important;
  }
}

/* Solutions intro uses full shell width so the paragraph wraps to fewer lines */
#solutions .section__head {
  max-width: none;
}

/* Solutions — pillar grid eyebrow below AI Voice Studio */
.solutions-pillars-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: clamp(2rem, 5vw, 3rem) 0 var(--space-lg, 1.25rem);
  text-align: center;
}
