/* Homepage — hero video & pillar sections */

/* ── Hero video background (home page only) ── */
.page-home .hero-with-video {
  position: relative;
  overflow: hidden;
  min-height: min(85vh, 680px);
  display: flex;
  align-items: center;
  padding: 5rem 0 4.5rem;
}

.page-home .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.page-home .hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(26, 26, 26, 0.78) 0%,
    rgba(26, 26, 26, 0.55) 50%,
    rgba(26, 26, 26, 0.4) 100%
  );
}

.page-home .hero__content {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  width: 100%;
  max-width: var(--max-width);
  box-sizing: border-box;
}

/* Hero wording carousel — background stays; copy fades between products */
.page-home .hero-carousel {
  display: block;
  width: min(100%, 40rem);
}

.page-home .hero-carousel__viewport {
  display: grid;
  width: 100%;
}

.page-home .hero-carousel__slide {
  grid-area: 1 / 1;
  width: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}

.page-home .hero-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.page-home .hero-carousel__slide.is-leaving {
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}

.page-home .hero-carousel__slide .badge,
.page-home .hero-carousel__slide h1,
.page-home .hero-carousel__slide .tagline {
  max-width: none;
}

.page-home .hero-carousel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.page-home .hero-carousel__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.page-home .hero-carousel__dot {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-home .hero-carousel__dot:hover,
.page-home .hero-carousel__dot:focus-visible {
  background: rgba(255, 255, 255, 0.7);
  outline: none;
}

.page-home .hero-carousel__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .page-home .hero-with-video {
    min-height: min(90vh, 620px);
    text-align: center;
  }

  .page-home .hero-with-video .tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .page-home .hero-carousel {
    width: 100%;
  }

  .page-home .hero-carousel__actions {
    justify-content: center;
  }

  .page-home .hero-carousel__nav {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-with-video {
    background: var(--color-primary);
  }

  .page-home .hero-carousel__slide {
    transition: none;
  }
}

/* ── Pillar sections: light (products) → grey (industries) → dark (platform) ── */

/* Shared intro & grid */
.section-products,
.section-industries,
.section-platform {
  padding: 4rem 0;
}

.section-products h2,
.section-industries h2,
.section-platform h2 {
  margin-bottom: 0.75rem;
}

.section-products .section-lead,
.section-industries .section-lead,
.section-platform .section-lead {
  margin: 0;
  max-width: 40rem;
}

.section-tech__intro {
  margin-bottom: 2.5rem;
  max-width: 42rem;
}

.section-tech__intro--left,
.section-tech__intro--left h2,
.section-tech__intro--left .section-tech__eyebrow,
.section-tech__intro--left .section-lead {
  text-align: left;
}

.section-tech__intro--left .section-lead {
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 0;
}

.section-tech__intro--right,
.section-tech__intro--right h2,
.section-tech__intro--right .section-tech__eyebrow,
.section-tech__intro--right .section-lead {
  text-align: right;
}

.section-tech__intro--right {
  margin-left: auto;
}

.section-tech__intro--right .section-lead {
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 0;
}

.section-tech__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-red);
}

/* ── Product suite — white ── */
.section-products {
  background: #ffffff;
  color: var(--color-text);
}

.section-products h2 {
  color: var(--color-primary);
}

.section-heading__emblem,
.inline-emblem {
  display: inline-block;
  height: 1.15em;
  width: auto;
  vertical-align: -0.12em;
  margin-left: 0.65rem;
}

.hero .badge .inline-emblem {
  height: 1.1em;
  margin-left: 0.35rem;
  vertical-align: -0.15em;
}

.section-products .section-lead {
  color: var(--color-muted);
}

/* ── Industries — matches footer ── */
.section-industries {
  background: var(--soft-section-bg);
  color: var(--color-text);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.section-industries h2 {
  color: var(--color-primary);
}

.section-industries .section-lead {
  color: var(--color-muted);
}

/* ── Technology — dark platform band (blue → orange gradient) ── */
.section-platform {
  background: var(--platform-gradient);
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-platform h2 {
  color: #fff;
}

.section-platform .section-lead {
  color: rgba(255, 255, 255, 0.75);
}

.section-platform--reversed {
  background: linear-gradient(
    var(--platform-gradient-angle),
    var(--platform-orange-deep) 0%,
    var(--platform-orange-mid) 12%,
    #2a3a42 28%,
    var(--color-green-dark) 48%,
    var(--platform-blue-mid) 62%,
    var(--platform-blue-dark) 72%,
    #002a3d 88%,
    var(--platform-blue-deep) 100%
  );
}

.tech-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.tech-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.tech-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1099px) {
  .tech-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .tech-grid--3,
  .tech-grid--4 {
    grid-template-columns: 1fr;
  }

  .section-tech__intro--right,
  .section-tech__intro--right h2,
  .section-tech__intro--right .section-tech__eyebrow,
  .section-tech__intro--right .section-lead {
    text-align: left;
  }

  .section-tech__intro--right {
    margin-left: 0;
  }

  .section-tech__intro--right .section-lead {
    margin-left: 0;
    margin-right: auto;
  }

  .page-product .section-tech__intro--right .section-tech__copy {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }
}

.tech-pillar__label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-red);
}

.tech-pillar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--color-border);
}

.tech-pillar--black {
  border-top-color: var(--color-black);
}

.tech-pillar--red {
  border-top-color: var(--color-red);
}

.tech-pillar--green {
  border-top-color: var(--color-green);
}

.tech-pillar__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f0f2f5;
  color: var(--color-muted);
}

.tech-pillar__icon svg,
.tech-pillar__icon img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  display: block;
}

/* Product suite — booth product icons */
.section-products .tech-pillar__icon {
  width: 3rem;
  height: 3rem;
  padding: 0.4rem;
}

.section-products .tech-pillar__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tech-pillar__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tech-pillar h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.tech-pillar p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.tech-pillar__points {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.tech-pillar__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.35rem 0;
}

.tech-pillar__points li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--color-red);
}

.tech-pillar--green .tech-pillar__points li::before {
  background: var(--color-green);
}

.tech-pillar--black .tech-pillar__points li::before {
  background: var(--color-black);
}

.tech-pillar__body > a {
  margin-top: auto;
  padding-top: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  align-self: flex-start;
  transition: border-color 0.15s, color 0.15s;
}

/* Light & grey sections — white pillar cards */
.section-products .tech-pillar,
.section-industries .tech-pillar {
  background: #ffffff;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
  border-top-width: 4px;
  border-top-style: solid;
  box-shadow: 0 2px 16px rgba(26, 26, 26, 0.06);
}

.section-products .tech-pillar:hover,
.section-industries .tech-pillar:hover {
  box-shadow: 0 6px 24px rgba(26, 26, 26, 0.1);
}

.section-products .tech-pillar--black,
.section-industries .tech-pillar--black {
  border-top-color: var(--color-black);
}

.section-products .tech-pillar--red,
.section-industries .tech-pillar--red {
  border-top-color: var(--color-red);
}

.section-products .tech-pillar--green,
.section-industries .tech-pillar--green {
  border-top-color: var(--color-green);
}

.section-products .tech-pillar:hover,
.section-industries .tech-pillar:hover {
  border-right-color: #ccc;
  border-bottom-color: #ccc;
  border-left-color: #ccc;
}

.section-products .tech-pillar h3,
.section-industries .tech-pillar h3 {
  color: var(--color-primary);
}

.section-products .tech-pillar p,
.section-industries .tech-pillar p {
  color: var(--color-text);
}

.section-products .tech-pillar__points,
.section-industries .tech-pillar__points {
  color: var(--color-muted);
}

.section-products .tech-pillar__body > a,
.section-industries .tech-pillar__body > a {
  color: var(--color-accent);
  border-bottom: 1px solid rgba(217, 123, 8, 0.4);
}

.section-products .tech-pillar__body > a:hover,
.section-industries .tech-pillar__body > a:hover {
  color: var(--color-red-dark);
  border-bottom-color: var(--color-red-dark);
}

.section-industries .tech-pillar--green .tech-pillar__label {
  color: var(--color-green-dark);
}

/* Dark section — glass pillars */
.section-platform .tech-pillar {
  background: rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top-width: 4px;
  border-top-style: solid;
}

.section-platform .tech-pillar:hover {
  background: rgba(255, 255, 255, 0.09);
  border-right-color: rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-left-color: rgba(255, 255, 255, 0.18);
}

.section-platform .tech-pillar--black {
  border-top-color: #8a8a8a;
}

.section-platform .tech-pillar--red {
  border-top-color: var(--color-red);
}

.section-platform .tech-pillar--green {
  border-top-color: var(--color-green);
}

.section-platform .tech-pillar__icon {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.section-platform .tech-pillar h3 {
  color: #fff;
}

.section-platform .tech-pillar p {
  color: rgba(255, 255, 255, 0.8);
}

.section-platform .tech-pillar p strong {
  color: #fff;
  font-weight: 600;
}

.section-platform .tech-pillar__points {
  color: rgba(255, 255, 255, 0.7);
}

.section-platform .tech-pillar--black .tech-pillar__points li::before {
  background: rgba(255, 255, 255, 0.5);
}

.section-platform .tech-pillar--green .tech-pillar__label {
  color: var(--color-green-bright);
}

.section-platform .tech-pillar__body > a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.section-platform .tech-pillar__body > a:hover {
  color: var(--color-red-bright);
  border-bottom-color: var(--color-red-bright);
}

.section-platform .tech-pillar--green .tech-pillar__body > a:hover {
  color: var(--color-green-bright);
  border-bottom-color: var(--color-green-bright);
}

/* ── About profile (replaces mailing list) ── */
.section-about-profile {
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  padding: 4.5rem 0;
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 3rem 4rem;
  align-items: start;
}

.about-profile__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--color-bg-alt);
}

.about-profile__media img {
  display: block;
  width: 100%;
  height: auto;
}

.about-profile__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-red);
}

.about-profile__content h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--color-primary);
  text-align: left;
}

.about-profile__lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0 0 1rem;
}

.about-profile__content p {
  margin: 0 0 1.25rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.about-profile__highlights {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.about-profile__highlights li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--color-text);
  line-height: 1.55;
}

.about-profile__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-green);
}

.about-profile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.section-about-profile .btn-outline {
  background: transparent;
  color: var(--finvi-navy);
  border-color: var(--finvi-navy);
}

.section-about-profile .btn-outline:hover {
  background: var(--finvi-navy);
  color: #fff;
}

@media (max-width: 900px) {
  .about-profile {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-profile__media {
    max-width: 36rem;
  }
}

/* ── Product landing pages ── */
.page-product .hero-compact {
  text-align: left;
}

.page-product .hero-with-image .container {
  align-items: center;
}

.page-product .hero-compact .tagline {
  margin-left: 0;
  margin-right: auto;
}

@media (max-width: 768px) {
  .page-product .hero-with-image .container {
    text-align: left;
  }

  .page-product .hero-with-image .tagline {
    margin-left: 0;
    margin-right: auto;
  }
}

.page-product .section-tech__copy {
  margin: 1rem 0 0;
  max-width: 40rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.page-product .section-tech__intro--left .section-tech__copy {
  margin-left: 0;
  margin-right: auto;
}

.page-product .section-tech__intro--right .section-tech__copy {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}

.page-product .quote-block {
  max-width: 42rem;
  text-align: left;
  margin-top: 0;
}

.page-product .section-tech__cta {
  margin-top: 1.75rem;
}

/* ── Product hub (module diagram + pivot detail) ── */
.product-hub {
  margin-top: 0;
}

.product-hub__hint {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
  text-align: left;
}

.product-hub__stage {
  position: relative;
  min-height: 28rem;
  perspective: 1400px;
}

.product-hub__panel {
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.45s ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.product-hub__panel--detail {
  position: absolute;
  inset: 0;
  transform: rotateY(-88deg);
  opacity: 0;
  pointer-events: none;
}

.product-hub__stage.is-detail .product-hub__panel--hub {
  transform: rotateY(88deg);
  opacity: 0;
  pointer-events: none;
}

.product-hub__stage.is-detail .product-hub__panel--detail {
  transform: rotateY(0);
  opacity: 1;
  pointer-events: auto;
}

.product-hub__diagram {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  grid-template-areas:
    ". hub-top ."
    "hub-left hub-center hub-right"
    ". hub-bottom .";
  gap: 1.25rem 1.5rem;
  align-items: center;
  justify-items: center;
  min-height: 26rem;
  padding: 0.5rem 0;
}

.product-hub__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.product-hub__lines line {
  stroke: var(--color-border);
  stroke-width: 2;
  stroke-dasharray: 6 5;
}

.product-hub__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 15rem;
  margin: 0;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-border);
  box-shadow: 0 2px 16px rgba(26, 26, 26, 0.06);
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

button.product-hub__card:hover,
button.product-hub__card:focus-visible {
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.12);
  transform: translateY(-2px);
  outline: none;
}

button.product-hub__card:focus-visible {
  box-shadow: 0 0 0 3px rgba(217, 123, 8, 0.35), 0 8px 28px rgba(26, 26, 26, 0.12);
}

.product-hub__card--center {
  grid-area: hub-center;
  max-width: 13.5rem;
  cursor: default;
  border-top-color: var(--color-green);
  background: linear-gradient(165deg, #f8fcfe 0%, #fff 55%);
  text-align: center;
}

.product-hub__card--top {
  grid-area: hub-top;
  border-top-color: var(--color-black);
}

.product-hub__card--right {
  grid-area: hub-right;
  border-top-color: var(--color-red);
}

.product-hub__card--bottom {
  grid-area: hub-bottom;
  border-top-color: var(--color-green);
}

.product-hub__card--left {
  grid-area: hub-left;
  border-top-color: var(--color-black);
}

.product-hub__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  background: #f0f2f5;
  color: var(--color-muted);
}

.product-hub__card--center .product-hub__card-icon {
  margin-left: auto;
  margin-right: auto;
  background: var(--color-green-light);
  color: var(--color-green-dark);
}

.product-hub__card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.product-hub__card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--color-primary);
}

.product-hub__card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.product-hub__card-action {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
}

.product-hub__card-label {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-green-dark);
}

.product-hub__detail-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
  text-align: left;
}

.product-hub__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.product-hub__back:hover,
.product-hub__back:focus-visible {
  background: var(--color-bg-alt);
  border-color: #ccc;
  outline: none;
}

.product-hub__detail-intro {
  flex: 1 1 16rem;
  min-width: 0;
}

.product-hub__detail-intro h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--color-primary);
}

.product-hub__detail-intro p {
  margin: 0;
  max-width: 40rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.product-hub__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.product-hub__feature {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-border);
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.05);
}

.product-hub__features--black .product-hub__feature {
  border-top-color: var(--color-black);
}

.product-hub__features--red .product-hub__feature {
  border-top-color: var(--color-red);
}

.product-hub__features--green .product-hub__feature {
  border-top-color: var(--color-green);
}

.product-hub__feature h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--color-primary);
}

.product-hub__feature p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.product-hub__detail-footer {
  margin-top: 1.75rem;
  text-align: left;
}

.product-hub__detail-footer a {
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(217, 123, 8, 0.4);
}

.product-hub__detail-footer a:hover {
  color: var(--color-red-dark);
  border-bottom-color: var(--color-red-dark);
}

@media (max-width: 1099px) {
  .product-hub__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-hub__stage {
    min-height: auto;
  }

  .product-hub__panel--detail {
    position: relative;
    inset: auto;
  }

  .product-hub__stage.is-detail .product-hub__panel--hub {
    display: none;
  }

  .product-hub__stage:not(.is-detail) .product-hub__panel--detail {
    display: none;
  }

  .product-hub__panel--detail,
  .product-hub__stage.is-detail .product-hub__panel--detail {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .product-hub__diagram {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "hub-center hub-center"
      "hub-top hub-right"
      "hub-bottom hub-left";
    min-height: auto;
    gap: 1rem;
  }

  .product-hub__lines {
    display: none;
  }

  .product-hub__card {
    max-width: none;
  }

  .product-hub__features {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-hub__panel {
    transition: opacity 0.2s ease;
  }

  .product-hub__panel--detail {
    transform: none;
  }

  .product-hub__stage.is-detail .product-hub__panel--hub {
    transform: none;
  }
}

/* ── Scroll showcase (Atlassian-style sticky scroll) ── */
.scroll-showcase__header {
  margin-bottom: 1.75rem;
}

.scroll-showcase__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.scroll-showcase__track {
  padding-bottom: 0;
}

.scroll-showcase__step {
  min-height: 0;
  padding: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  opacity: 0.35;
  transition: opacity 0.45s ease;
}

.scroll-showcase__step:last-child {
  padding-bottom: 0;
}

.scroll-showcase__step.is-revealed {
  opacity: 1;
}

.scroll-showcase__step-label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-red);
}

.scroll-showcase__step h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.scroll-showcase__step > p {
  margin: 0 0 1.5rem;
  max-width: 28rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.scroll-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-bottom: 0;
}

.scroll-showcase__link {
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(217, 123, 8, 0.4);
  transition: color 0.15s, border-color 0.15s;
}

.scroll-showcase__link:hover {
  color: var(--color-red-dark);
  border-bottom-color: var(--color-red-dark);
}

.scroll-showcase__quote {
  margin: 1.35rem 0 0;
  padding: 1.15rem 1.25rem;
  max-width: 28rem;
  border-radius: var(--radius);
  border: none;
  border-left: 4px solid var(--color-border);
  opacity: 0.5;
  transition: opacity 0.45s ease;
}

.scroll-showcase__step.is-revealed .scroll-showcase__quote {
  opacity: 1;
}

.scroll-showcase__quote--black {
  background: #f0f0f0;
  border-left-color: var(--color-black);
}

.scroll-showcase__quote--red {
  background: var(--color-red-light);
  border-left-color: var(--color-red);
}

.scroll-showcase__quote--green {
  background: var(--color-green-light);
  border-left-color: var(--color-green);
}

.scroll-showcase__quote p {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
}

.scroll-showcase__quote cite {
  display: block;
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.scroll-showcase__step-visual {
  display: none;
}

.scroll-showcase__sticky {
  position: sticky;
  top: 5.5rem;
  align-self: start;
}

.scroll-showcase__progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.scroll-showcase__dot {
  width: 2.25rem;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--color-border);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.scroll-showcase__dot.is-active[data-accent="black"] {
  background: var(--color-black);
  transform: scaleX(1.15);
}

.scroll-showcase__dot.is-active[data-accent="red"] {
  background: var(--color-red);
  transform: scaleX(1.15);
}

.scroll-showcase__dot.is-active[data-accent="green"] {
  background: var(--color-green);
  transform: scaleX(1.15);
}

.scroll-showcase__dot:hover,
.scroll-showcase__dot:focus-visible {
  outline: none;
  opacity: 0.85;
}

.scroll-showcase__media {
  position: relative;
  min-height: 22rem;
  aspect-ratio: 8 / 5;
  border-radius: 1.25rem;
  overflow: hidden;
  padding: 0;
  border: none;
  box-shadow: none;
  background: #1a1a1a;
}

.scroll-showcase__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.scroll-showcase__backdrop.is-active {
  opacity: 1;
}

.scroll-showcase__backdrop--black {
  background: linear-gradient(145deg, #3d3d3d 0%, #1a1a1a 42%, #0d0d0d 100%);
}

.scroll-showcase__backdrop--red {
  background: linear-gradient(145deg, #f0a020 0%, #d97b08 48%, #b56500 100%);
}

.scroll-showcase__backdrop--green {
  background: linear-gradient(145deg, #2eb5e8 0%, #007eb3 48%, #005f87 100%);
}

.scroll-showcase__backdrop::before {
  content: "";
  position: absolute;
  width: 55%;
  height: 55%;
  top: -18%;
  right: -12%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.scroll-showcase__backdrop::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 40%;
  bottom: -15%;
  left: -8%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.scroll-showcase__figure {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
  z-index: 2;
}

.scroll-showcase__figure.is-active {
  opacity: 1;
  pointer-events: auto;
}

.scroll-showcase__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0.65rem;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

@media (max-width: 960px) {
  .scroll-showcase__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .scroll-showcase__sticky {
    display: none;
  }

  .scroll-showcase__step {
    min-height: auto;
    padding: 1.75rem 0;
    opacity: 1;
    border-bottom: 1px solid var(--color-border);
  }

  .scroll-showcase__step .scroll-showcase__quote {
    opacity: 1;
  }

  .scroll-showcase__step:last-child {
    border-bottom: none;
  }

  .scroll-showcase__step-visual {
    display: block;
    margin-top: 1.5rem;
    padding: 1.5rem 1.25rem;
    border-radius: 1rem;
  }

  .scroll-showcase__step-visual--black {
    background: linear-gradient(145deg, #3d3d3d 0%, #1a1a1a 42%, #0d0d0d 100%);
  }

  .scroll-showcase__step-visual--red {
    background: linear-gradient(145deg, #f0a020 0%, #d97b08 48%, #b56500 100%);
  }

  .scroll-showcase__step-visual--green {
    background: linear-gradient(145deg, #2eb5e8 0%, #007eb3 48%, #005f87 100%);
  }

  .scroll-showcase__step-visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-showcase__step,
  .scroll-showcase__figure,
  .scroll-showcase__quote,
  .scroll-showcase__backdrop {
    transition: none;
  }

  .scroll-showcase__step,
  .scroll-showcase__step .scroll-showcase__quote {
    opacity: 1;
  }
}

/* ── Products page — Atlassian-style horizontal bands ── */

.band-stats__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.band-stats__header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.band-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
  text-align: center;
}

.band-stats__value {
  margin: 0 0 0.5rem;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-primary);
}

.band-stats__label {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-muted);
  max-width: 16rem;
  margin-left: auto;
  margin-right: auto;
}

.band-tabs__header {
  margin: 0 auto 1.75rem;
  text-align: center;
}

.band-tabs__header h2,
.band-tabs__header .section-lead {
  text-align: center;
}

.band-tabs__header .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.band-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.band-tabs:has(.band-tabs__panels) .band-tabs__nav {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  justify-content: flex-start;
}

.band-tabs:has(.band-tabs__panels) .band-tabs__header,
.band-tabs:has(.band-tabs__panels) .band-tabs__header h2,
.band-tabs:has(.band-tabs__panels) .band-tabs__header .section-lead {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  max-width: none;
}

.band-tabs__tab {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: default;
}

button.band-tabs__tab {
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

button.band-tabs__tab:hover,
button.band-tabs__tab:focus-visible {
  border-color: #ccc;
  outline: none;
}

.band-tabs__tab.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.band-tabs__panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: center;
}

.band-tabs__panel.is-active {
  display: grid;
}

.band-tabs__content h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.band-tabs__content p {
  margin: 0 0 1.25rem;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 28rem;
}

.band-tabs__link {
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(217, 123, 8, 0.4);
}

.band-tabs__link:hover {
  color: var(--color-red-dark);
  border-bottom-color: var(--color-red-dark);
}

.band-tabs__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.1);
  background: #fff;
  border: 1px solid var(--color-border);
}

.band-tabs__media img {
  display: block;
  width: 100%;
  height: auto;
}

.band-templates__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.band-templates__header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.band-templates__header .section-lead {
  margin: 0 auto;
}

.band-templates__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.band-templates__grid--five {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
  .band-templates__grid--five {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .band-templates__grid--five {
    grid-template-columns: repeat(2, 1fr);
  }
}

.band-template-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 16px rgba(26, 26, 26, 0.06);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.band-template-card:hover {
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.1);
  border-color: #ccc;
  transform: translateY(-2px);
}

.band-template-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.band-template-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-template-card h3 {
  margin: 1.25rem 1.35rem 0.5rem;
  font-size: 1.125rem;
  color: var(--color-primary);
}

.band-template-card p {
  margin: 0 1.35rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-muted);
  flex: 1;
}

.band-template-card__action {
  margin: 0 1.35rem 1.35rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-accent);
}

.band-template-card--static {
  cursor: default;
}

.band-template-card--static:hover {
  transform: none;
}

.band-template-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 0 1.35rem;
}

.band-template-card__body h3 {
  margin: 1.25rem 1.35rem 0.75rem;
}

.band-template-card__points {
  list-style: none;
  margin: 0 1.35rem;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.band-template-card__points li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.band-template-card__points li:last-child {
  margin-bottom: 0;
}

.band-template-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

.band-story__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem 4rem;
  align-items: center;
}

.band-story__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.band-story__link {
  display: inline-block;
  margin-bottom: 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(217, 123, 8, 0.4);
}

.band-story__quote {
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
  background: none;
}

.band-story__quote p {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--color-text);
}

.band-story__quote cite {
  display: block;
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.band-story__quote cite span {
  display: block;
  font-size: 0.875rem;
  margin-top: 0.15rem;
}

.band-story__btn {
  border-color: var(--finvi-navy);
  color: var(--finvi-navy);
}

.band-story__btn:hover {
  background: var(--finvi-navy);
  color: #fff;
}

.band-story__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.1);
  border: 1px solid var(--color-border);
}

.band-story__media img {
  display: block;
  width: 100%;
  height: auto;
}

.band-community__inner {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.band-community__inner h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.band-community__inner .section-lead {
  margin: 0 auto 1.75rem;
}

.band-cta__inner {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}

.band-cta__inner h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
}

.band-cta__inner .section-lead {
  margin: 0 auto 1.75rem;
}

.band-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.section-platform .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.section-platform .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 960px) {
  .band-stats__grid,
  .band-templates__grid,
  .band-templates__grid--five {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .band-stats__grid {
    text-align: left;
  }

  .band-stats__label {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .band-tabs__panel.is-active,
  .band-story__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .band-tabs__nav {
    gap: 0.4rem;
  }

  .band-community__inner,
  .band-templates__header {
    text-align: left;
  }

  .band-templates__header .section-lead {
    margin-left: 0;
  }

  .band-cta__inner {
    text-align: left;
  }

  .band-cta__actions {
    justify-content: flex-start;
  }
}

/* ── Solutions landing — horizontal bands ── */

.solution-overview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.solution-overview__card {
  display: block;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--color-border);
  border-top-width: 4px;
  border-top-style: solid;
  border-top-color: var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 16px rgba(26, 26, 26, 0.06);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.solution-overview__card--black {
  border-top-color: var(--color-black);
}

.solution-overview__card--red {
  border-top-color: var(--color-red);
}

.solution-overview__card--green {
  border-top-color: var(--color-green);
}

.solution-overview__card:hover {
  border-right-color: #ccc;
  border-bottom-color: #ccc;
  border-left-color: #ccc;
  box-shadow: 0 6px 24px rgba(26, 26, 26, 0.1);
  transform: translateY(-2px);
}

a.solution-overview__card {
  cursor: pointer;
}

article.solution-overview__card:hover {
  transform: none;
}

.solution-overview__card--black:hover {
  border-top-color: var(--color-black);
}

.solution-overview__card--red:hover {
  border-top-color: var(--color-red);
}

.solution-overview__card--green:hover {
  border-top-color: var(--color-green);
}

.solution-overview__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: var(--color-primary);
}

.solution-overview__card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.solution-overview__card span {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
}

.solution-band__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 3rem 4rem;
  align-items: start;
}

.solution-band--reverse .solution-band__media {
  order: -1;
}

.solution-band__copy {
  text-align: left;
}

.solution-band__copy .section-tech__eyebrow,
.solution-band__copy h2,
.solution-band__copy .section-lead,
.solution-band__copy p {
  text-align: left;
}

.solution-band__copy .solution-band__heading-right {
  text-align: right;
}

.solution-band__copy--right,
.solution-band__copy--right .section-tech__eyebrow,
.solution-band__copy--right h2,
.solution-band__copy--right .section-lead,
.solution-band__copy--right p {
  text-align: right;
}

.solution-band__copy--right .solution-band__points li {
  padding-left: 0;
  padding-right: 1.25rem;
}

.solution-band__copy--right .solution-band__points li::before {
  left: auto;
  right: 0;
}

.solution-band__copy--right .solution-band__actions {
  justify-content: flex-end;
}

.solution-band__copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.solution-band__copy .section-lead {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.25rem;
  max-width: none;
}

.solution-band__points {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.solution-band__points li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.65rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
}

.solution-band__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.solution-band__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.solution-band__tags li {
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-muted);
  background: #fff;
}

.solution-band__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  justify-content: flex-start;
}

.solution-band__link {
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(217, 123, 8, 0.4);
}

.solution-band__link:hover {
  color: var(--color-red-dark);
  border-bottom-color: var(--color-red-dark);
}

.solution-band__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.1);
  border: 1px solid var(--color-border);
}

.solution-band__media img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1100px) {
  .solution-overview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .solution-band__layout,
  .solution-overview__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .solution-band--reverse .solution-band__media {
    order: 0;
  }
}

/* ── Cloud modernization — Azure architecture page ── */

.azure-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.azure-trust__item {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-accent);
  box-shadow: 0 2px 16px rgba(26, 26, 26, 0.06);
}

.azure-trust__item--green {
  border-top-color: var(--color-green);
}

.azure-trust__item--black {
  border-top-color: var(--color-black);
}

.azure-trust__item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  color: var(--color-primary);
}

.azure-trust__item p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.azure-architecture {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.08);
}

.azure-architecture__figure {
  margin: 0;
}

.azure-architecture__figure svg,
.azure-architecture__figure img,
.azure-architecture__diagram {
  display: block;
  width: 100%;
  height: auto;
  max-width: 920px;
  margin: 0 auto;
}

.azure-architecture__caption {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
  text-align: center;
}

.section-ai__actions {
  margin-top: 1.75rem;
}

.azure-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.azure-services__card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-black);
  box-shadow: 0 2px 16px rgba(26, 26, 26, 0.06);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, transform 0.15s;
}

.azure-services__card:nth-child(3n + 1) {
  border-left-color: var(--color-black);
}

.azure-services__card:nth-child(3n + 2) {
  border-left-color: var(--color-accent);
}

.azure-services__card:nth-child(3n + 3) {
  border-left-color: var(--color-green);
}

.azure-services__card:hover {
  box-shadow: 0 6px 24px rgba(26, 26, 26, 0.1);
  transform: translateY(-2px);
}

a.azure-services__card {
  cursor: pointer;
}

article.azure-services__card:hover {
  transform: none;
}

.azure-services__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--color-primary);
}

.azure-services__card p {
  margin: 0 0 0.75rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.azure-services__card span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
}

.azure-scale {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.azure-scale__tier {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.azure-scale__tier h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: #fff;
}

.azure-scale__tier p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.azure-security-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
  max-width: 48rem;
}

.azure-security-band__points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.azure-security-band__points li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
}

.azure-security-band__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
}

.section-platform .azure-security-band__points li {
  color: rgba(255, 255, 255, 0.85);
}

.section-platform .azure-security-band__points li strong {
  color: #fff;
}

.section-platform .azure-security-band__points li::before {
  background: var(--color-accent);
}

@media (max-width: 1100px) {
  .azure-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .azure-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .azure-trust__grid,
  .azure-services__grid,
  .azure-scale,
  .azure-security-band {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ── Industries — product carousel (center-focused slides) ── */

.industry-carousel-section .section-tech__intro {
  margin-bottom: 2rem;
}

.industry-carousel {
  position: relative;
}

.industry-carousel__shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 1rem;
}

.industry-carousel__viewport {
  overflow: hidden;
  padding: 1rem 0 1.25rem;
}

.industry-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.industry-carousel--cards .industry-carousel__track {
  align-items: flex-start;
}

.industry-carousel__arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.08);
  transition: border-color 0.15s, color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.industry-carousel__arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

.industry-carousel__arrow:hover:not(:disabled) {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 4px 18px rgba(217, 123, 8, 0.18);
}

.industry-carousel__arrow:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.industry-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.industry-slide {
  flex: 0 0 min(34rem, 78vw);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 22rem;
  padding: 1.5rem 1.4rem 1.35rem;
  border: 1px solid var(--color-border);
  border-top-width: 4px;
  border-top-style: solid;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 16px rgba(26, 26, 26, 0.06);
  transform: scale(0.9);
  opacity: 0.45;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, box-shadow 0.5s ease;
}

.industry-slide.is-active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 10px 36px rgba(26, 26, 26, 0.12);
}

.industry-slide--black {
  border-top-color: var(--color-black);
}

.industry-slide--red {
  border-top-color: var(--color-red);
}

.industry-slide--green {
  border-top-color: var(--color-green);
}

.industry-slide--media {
  padding: 0;
  gap: 0;
  overflow: hidden;
  min-height: 0;
}

.industry-slide--media .industry-slide__body {
  flex: none;
}

.industry-slide--media .industry-slide__powers {
  margin-top: 0;
}

.industry-slide__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.35rem 1.4rem 0;
  background: #fff;
}

.industry-slide__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.industry-slide__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
  padding: 1.25rem 1.4rem 1.35rem;
}

.industry-slide__category {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.industry-slide h3 {
  margin: 0;
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--color-primary);
}

.industry-slide__context {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.industry-slide__powers {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.industry-slide__powers-label {
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.industry-slide__powers ul {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-primary);
}

.industry-slide__powers li + li {
  margin-top: 0.4rem;
}

.industry-carousel__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0 0.5rem;
}

.industry-carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #c8c8c8;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.industry-carousel__dot:hover,
.industry-carousel__dot:focus-visible {
  background: var(--color-accent);
  outline: none;
  transform: scale(1.15);
}

.industry-carousel__dot.is-active {
  background: var(--color-accent);
  transform: scale(1.2);
}

.industry-carousel__status {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .industry-carousel__shell {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .industry-carousel__arrow {
    display: none;
  }

  .industry-carousel__viewport {
    padding: 0.5rem 0 1rem;
  }

  .industry-slide {
    flex-basis: min(30rem, 88vw);
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-carousel__track,
  .industry-slide {
    transition: none;
  }
}

/* ── Case studies hub (Microsoft customer-stories card pattern) ── */

.case-studies-section {
  padding-top: 0;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.case-study-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.06);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.case-study-card:hover {
  border-color: #d0d0d0;
  box-shadow: 0 10px 32px rgba(26, 26, 26, 0.12);
  transform: translateY(-3px);
}

.case-study-card:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 3px;
}

.case-study-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.case-study-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-card__logo {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.45rem 0.7rem;
  border-radius: 0.35rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.14);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.case-study-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.15rem 1.25rem 1.35rem;
}

.case-study-card__industry {
  margin: 0 0 0.6rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-green);
}

.case-study-card__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--color-primary);
}

.case-study-card__summary {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-primary);
}

.case-study-card__detail {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-muted);
}

.case-study-card:hover .case-study-card__title {
  color: var(--color-green-dark);
}

.case-study-card__products {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.85rem 0 0;
  padding: 0.75rem 0 0;
  border-top: 1px solid var(--color-border);
  list-style: none;
}

.case-study-card__product {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.case-study-card__product-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 6px;
  background: #f0f2f5;
  color: var(--color-muted);
}

.case-study-card__product-icon svg,
.case-study-card__product-icon img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  display: block;
}

.case-study-card__product-name {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
}

/* Field Agent — Wincollect.AI chat showcase (matches Field Agent app panel) */
.band-chat {
  --fa-ai-blue: #0f6cbd;
  --fa-ai-text: #201f1e;
  --fa-ai-muted: #605e5c;
  --fa-ai-border: #edebe9;
  background:
    radial-gradient(ellipse 70% 80% at 85% 15%, rgba(15, 108, 189, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(109, 40, 217, 0.08), transparent 50%),
    linear-gradient(180deg, #eef2f7 0%, #f8fafc 45%, #fff 100%);
}

.band-chat__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem 4rem;
  align-items: start;
}

.band-chat__layout--media-left {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.band-chat__layout--media-left .band-chat__stage {
  order: -1;
}

.band-chat__copy,
.band-chat__copy h2,
.band-chat__copy .section-tech__eyebrow,
.band-chat__copy .section-lead {
  text-align: left;
}

.band-chat__copy {
  justify-self: start;
  align-self: start;
}

.band-chat__copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.band-chat__copy .section-lead {
  margin: 0 0 1.5rem;
  margin-left: 0;
  margin-right: 0;
  max-width: 34rem;
}

.band-chat__copy .section-lead + .section-lead {
  margin-top: -0.65rem;
}

.band-chat__stage {
  display: flex;
  justify-content: center;
}

.band-chat__media {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.1);
  border: 1px solid var(--color-border);
  background: #fff;
}

.band-chat__media img {
  display: block;
  width: 100%;
  height: auto;
}

.chat-card {
  width: min(100%, 26rem);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(15, 108, 189, 0.26);
  border-radius: 28px;
  background: rgba(241, 245, 249, 0.82);
  backdrop-filter: blur(7px) saturate(1.04);
  -webkit-backdrop-filter: blur(7px) saturate(1.04);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.18);
  color: var(--fa-ai-text);
  overflow: hidden;
}

.chat-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.2rem 0.35rem;
}

.chat-card__status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #334155;
  font-size: 0.78rem;
  font-weight: 800;
}

.chat-card__head-actions {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}

.chat-card__reset,
.chat-card__close {
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.chat-card__reset {
  padding: 0 0.7rem;
  background: rgba(15, 108, 189, 0.12);
  color: var(--fa-ai-blue);
}

.chat-card__close {
  width: 2rem;
  font-size: 1.15rem;
  font-weight: 500;
}

.chat-card__hero {
  display: grid;
  gap: 0.15rem;
  padding: 0.35rem 1.2rem 0.9rem;
  text-align: center;
}

.chat-card__orb {
  width: 5.8rem;
  height: 5.8rem;
  margin: 0.25rem auto 0.55rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 4px solid #fff;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.92) 45%, transparent 47%),
    conic-gradient(from 20deg, #0f6cbd, #22d3ee, #6d28d9, #f472b6, #0f6cbd);
  box-shadow:
    0 0 0 5px rgba(15, 108, 189, 0.12),
    0 0 26px rgba(109, 40, 217, 0.48);
}

.chat-card__logo {
  width: 3.65rem;
  height: 3.65rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(15, 108, 189, 0.22));
}

.chat-card__hero strong {
  display: block;
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--fa-ai-text);
}

.chat-card__hero p {
  margin: 0.25rem 0 0;
  color: var(--fa-ai-muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.chat-card__messages {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  min-height: 11.5rem;
  padding: 0 1.2rem 0.9rem;
  background: transparent;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.chat-card__messages.is-exiting {
  opacity: 0;
  transform: translateY(6px);
}

.chat-card__bubble {
  max-width: 88%;
  display: grid;
  gap: 0.25rem;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--fa-ai-border);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.chat-card__bubble.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.chat-card__bubble--assistant {
  justify-self: start;
}

.chat-card__bubble--user {
  justify-self: end;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.chat-card__name {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fa-ai-muted);
}

.chat-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--fa-ai-text);
  white-space: pre-line;
}

.chat-card__compose {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0.8rem 0.55rem;
  padding: 0.42rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}

.chat-card__compose-placeholder {
  flex: 1 1 auto;
  padding: 0.55rem 0.65rem;
  color: rgba(51, 65, 85, 0.68);
  font-size: 0.9rem;
}

.chat-card__send,
.chat-card__mic {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  flex: 0 0 2.45rem;
  position: relative;
}

.chat-card__send {
  background: rgba(15, 108, 189, 0.16);
}

.chat-card__send::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.35rem 0 0.35rem 0.6rem;
  border-color: transparent transparent transparent var(--fa-ai-blue);
  transform: translateX(1px);
}

.chat-card__mic {
  background: linear-gradient(135deg, #6d28d9, #0f6cbd);
  box-shadow: 0 8px 18px rgba(109, 40, 217, 0.32);
}

.chat-card__mic::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 0.42rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.chat-card__mic::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 68%;
  width: 0.7rem;
  height: 0.35rem;
  border: 2px solid #fff;
  border-top: 0;
  border-radius: 0 0 0.5rem 0.5rem;
  transform: translateX(-50%);
  box-sizing: border-box;
}

.chat-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.35rem 1.2rem 0.9rem;
}

.chat-card__dots {
  display: flex;
  gap: 0.35rem;
}

.chat-card__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #c9d0d6;
  transition: background 0.25s ease, transform 0.25s ease;
}

.chat-card__dot.is-active {
  background: var(--fa-ai-blue);
  transform: scale(1.15);
}

.chat-card__hint {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fa-ai-muted);
}

@media (max-width: 900px) {
  .band-chat__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .band-chat__stage {
    order: -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chat-card__messages,
  .chat-card__bubble,
  .chat-card__dot {
    transition: none;
  }

  .chat-card__bubble {
    opacity: 1;
    transform: none;
  }
}

.case-studies-spotlight {
  margin-top: 0;
}

.case-studies-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.case-studies-spotlight__link {
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(217, 123, 8, 0.4);
}

.case-studies-spotlight__link:hover {
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .case-studies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
    max-width: 24rem;
  }
}

@media (max-width: 768px) {
  .case-studies-spotlight__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── About page ── */
.page-about .hero-brand {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.page-about .hero-compact h1 {
  margin: 0 0 0.85rem;
  max-width: 32ch;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.page-about .hero-compact .tagline {
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.about-values {
  grid-template-columns: repeat(3, 1fr);
}

.solution-overview__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.about-team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem 1.5rem;
  margin-top: 2rem;
}

.about-team__card {
  text-align: left;
}

.about-team__media {
  margin: 0 0 1.15rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  aspect-ratio: 1;
}

.about-team__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team__role {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-red);
}

.about-team__name {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  color: var(--color-primary);
}

.about-team__card > p:not(.about-team__role) {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.about-team__card > p:not(.about-team__role):last-child {
  margin-bottom: 0;
}

.about-coming-soon {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.about-quote {
  max-width: 42rem;
  margin: 0 0 1.25rem;
}

@media (max-width: 960px) {
  .about-values,
  .solution-overview__grid--3,
  .about-team {
    grid-template-columns: 1fr;
  }

  .about-team {
    max-width: 22rem;
  }
}

@media (min-width: 961px) and (max-width: 1100px) {
  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-team {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
