@import url("https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f0f0ef;
  --panel: #e8e8e6;
  --panel-soft: #e0dfdc;
  --line: rgba(0, 0, 0, 0.1);
  --line-strong: rgba(0, 0, 0, 0.2);
  --text: #0c0c0f;
  --muted: #58585e;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
  --content-width: min(1180px, calc(100vw - 2rem));
  --white: #ffffff;
  --transparent: rgba(255, 255, 255, 0);
  --blue-200: #bae6fd;
  --blue-300: #93c5fd;
  --blue-400: #7dd3fc;
  --indigo-200: #c7d2fe;
  --violet-100: #ede9fe;
  --amber-100: #ffedd5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 10%, rgba(186, 230, 253, 0.28), transparent 18rem),
    radial-gradient(circle at 60% -10%, rgba(255, 255, 255, 0.9), transparent 22rem),
    linear-gradient(180deg, #fcfcfb 0%, #f7f6f4 58%, #f3f2ef 100%);
  color: var(--text);
  font-family: "Golos Text", "Segoe UI Variable Text", "Trebuchet MS", sans-serif;
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -3;
  background:
    radial-gradient(circle at 68% 12%, rgba(147, 197, 253, 0.14), transparent 14rem),
    radial-gradient(circle at 82% 20%, rgba(186, 230, 253, 0.14), transparent 12rem),
    radial-gradient(circle at 72% 2%, rgba(255, 255, 255, 0.96), transparent 20rem);
  filter: blur(18px);
  opacity: 0.88;
}

body::after {
  z-index: -2;
  inset: -2%;
  background-image:
    repeating-linear-gradient(
      100deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.94) 9%,
      rgba(255, 255, 255, 0) 11%,
      rgba(255, 255, 255, 0) 14%,
      rgba(255, 255, 255, 0.96) 18%
    ),
    repeating-linear-gradient(
      100deg,
      rgba(147, 197, 253, 0.18) 10%,
      rgba(199, 210, 254, 0.12) 16%,
      rgba(186, 230, 253, 0.16) 22%,
      rgba(237, 233, 254, 0.08) 28%,
      rgba(125, 211, 252, 0.14) 34%,
      rgba(255, 237, 213, 0.06) 40%
    );
  background-size: 180%, 135%;
  background-position: 50% 50%, 50% 50%;
  -webkit-mask-image: radial-gradient(ellipse at 78% 8%, black 10%, rgba(0, 0, 0, 0.76) 30%, transparent 72%);
  mask-image: radial-gradient(ellipse at 78% 8%, black 10%, rgba(0, 0, 0, 0.76) 30%, transparent 72%);
  filter: blur(16px);
  opacity: 0.62;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  width: 100%;
}

.site-header,
.section,
.site-footer {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  padding: 0.35rem 0;
}

body[data-page="home"] .site-header,
body[data-page="home"] .brand,
body[data-page="home"] .site-nav a {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

body[data-page="industries"] .site-header,
body[data-page="industries"] .brand,
body[data-page="industries"] .site-nav a {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

body[data-page="products"] .site-header,
body[data-page="products"] .brand,
body[data-page="products"] .site-nav a {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

body[data-page="technology"] .site-header,
body[data-page="technology"] .brand,
body[data-page="technology"] .site-nav a {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

body[data-page="about"] .site-header,
body[data-page="about"] .brand,
body[data-page="about"] .site-nav a {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

body[data-page="home"] .site-nav a:hover,
body[data-page="home"] .site-nav a.is-active {
  color: #f0f0f0;
}

body[data-page="industries"] .site-nav a:hover,
body[data-page="industries"] .site-nav a.is-active {
  color: #f0f0f0;
}

body[data-page="products"] .site-nav a:hover,
body[data-page="products"] .site-nav a.is-active {
  color: #f0f0f0;
}

body[data-page="technology"] .site-nav a:hover,
body[data-page="technology"] .site-nav a.is-active {
  color: #f0f0f0;
}

body[data-page="about"] .site-nav a:hover,
body[data-page="about"] .site-nav a.is-active {
  color: #f0f0f0;
}

body[data-page="home"] .brand-mark {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 0 0.18rem rgba(255, 255, 255, 0.9);
}

body[data-page="industries"] .brand-mark {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 0 0.18rem rgba(255, 255, 255, 0.9);
}

body[data-page="products"] .brand-mark {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 0 0.18rem rgba(255, 255, 255, 0.9);
}

body[data-page="technology"] .brand-mark {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 0 0.18rem rgba(255, 255, 255, 0.9);
}

body[data-page="about"] .brand-mark {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 0 0.18rem rgba(255, 255, 255, 0.9);
}

body[data-page="home"] .nav-toggle {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.2);
}

body[data-page="industries"] .nav-toggle {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.2);
}

body[data-page="products"] .nav-toggle {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.2);
}

body[data-page="technology"] .nav-toggle {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 1;
}

.brand-mark {
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  box-shadow: inset 0 0 0 0.18rem rgba(0, 0, 0, 0.28);
}

.brand-logo {
  display: block;
  height: 1.65rem;
  width: auto;
  object-fit: contain;
}

.site-header .brand-logo {
  height: 1.1rem;
}

.site-nav {
  display: flex;
  gap: 0.5rem;
  padding: 0.35rem 0;
}

.site-nav a {
  color: var(--muted);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

/* Contact pill button */
.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.45rem 0.45rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  background: transparent;
  transition: color 600ms ease;
  text-shadow: none;
  margin-left: auto;
}

/* Expanding radial fill from the dot */
.nav-contact-btn::before {
  content: "";
  position: absolute;
  right: 0.38rem;
  top: 50%;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 9999px;
  background: #ffffff;
  transform: translate(0, -50%) scale(0);
  transform-origin: center;
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1),
              width 1200ms cubic-bezier(0.22, 1, 0.36, 1),
              height 1200ms cubic-bezier(0.22, 1, 0.36, 1),
              right 1200ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.nav-contact-btn:hover::before {
  width: 500%;
  height: 500%;
  right: 50%;
  transform: translate(50%, -50%) scale(1);
}

.nav-contact-btn:hover {
  color: #111111;
  border-color: rgba(255,255,255,0.9);
}

.btn-text,
.btn-dot {
  position: relative;
  z-index: 1;
}

.btn-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  transition: background 600ms ease, border-color 600ms ease, color 600ms ease;
  color: #fff;
}

.nav-contact-btn:hover .btn-dot {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
  color: #111;
}

/* On non-home pages where header is dark text */
body:not([data-page="home"]) .nav-contact-btn {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

body:not([data-page="home"]) .nav-contact-btn::before {
  background: #ffffff;
}

body:not([data-page="home"]) .nav-contact-btn:hover {
  color: #111111;
  border-color: rgba(255, 255, 255, 0.9);
}

body:not([data-page="home"]) .btn-dot {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

body:not([data-page="home"]) .nav-contact-btn:hover .btn-dot {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
  color: #111;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(235, 235, 235, 0.75);
  color: var(--text);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1px;
  background: currentColor;
  margin: 0.32rem auto;
}

.section {
  padding: 2rem 0 4rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-layout,
.media-layout,
.contact-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 100vh;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  text-align: left;
  width: 100%;
  min-height: 100vh;
  padding: clamp(7rem, 14vh, 10rem) 0 clamp(2.5rem, 5vw, 4.25rem);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: transparent;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: min(98vw, 1720px);
  margin: 0 auto;
}

.industries-hero {
  overflow: hidden;
}

.products-hero {
  overflow: hidden;
}

.technology-hero {
  overflow: hidden;
}

.about-hero {
  overflow: hidden;
}

.industries-hero-background {
  overflow: hidden;
}

.products-hero-background {
  overflow: hidden;
}

.technology-hero-background {
  overflow: hidden;
}

.about-hero-background {
  overflow: hidden;
}

.industries-hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 15, 34, 0.42), rgba(4, 15, 34, 0.38)),
    radial-gradient(circle at 20% 25%, rgba(86, 146, 255, 0.22), transparent 20rem),
    radial-gradient(circle at 82% 78%, rgba(50, 143, 255, 0.18), transparent 18rem);
}

.products-hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 15, 34, 0.42), rgba(4, 15, 34, 0.38)),
    radial-gradient(circle at 20% 25%, rgba(86, 146, 255, 0.22), transparent 20rem),
    radial-gradient(circle at 82% 78%, rgba(50, 143, 255, 0.18), transparent 18rem);
}

.technology-hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 15, 34, 0.42), rgba(4, 15, 34, 0.38)),
    radial-gradient(circle at 20% 25%, rgba(86, 146, 255, 0.22), transparent 20rem),
    radial-gradient(circle at 82% 78%, rgba(50, 143, 255, 0.18), transparent 18rem);
}

.about-hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 15, 34, 0.42), rgba(4, 15, 34, 0.38)),
    radial-gradient(circle at 20% 25%, rgba(86, 146, 255, 0.22), transparent 20rem),
    radial-gradient(circle at 82% 78%, rgba(50, 143, 255, 0.18), transparent 18rem);
}

.industries-hero-video {
  filter: saturate(0.92) contrast(1.02);
}

.products-hero-video {
  filter: saturate(0.92) contrast(1.02);
}

.technology-hero-video {
  filter: saturate(0.92) contrast(1.02);
}

.about-hero-video {
  filter: saturate(0.92) contrast(1.02);
}

.industries-hero-copy .eyebrow,
.industries-hero-copy .lead {
  color: rgba(241, 247, 255, 0.86);
}

.products-hero-copy .eyebrow,
.products-hero-copy .lead {
  color: rgba(241, 247, 255, 0.86);
}

.technology-hero-copy .eyebrow,
.technology-hero-copy .lead {
  color: rgba(241, 247, 255, 0.86);
}

.about-hero-copy .eyebrow,
.about-hero-copy .lead {
  color: rgba(241, 247, 255, 0.86);
}

.industries-hero-copy .lead {
  max-width: 50rem;
}

.products-hero-copy .lead {
  max-width: 50rem;
}

.technology-hero-copy .lead {
  max-width: 50rem;
}

.about-hero-copy .lead {
  max-width: 50rem;
}

.about-story-section {
  min-height: 100vh;
  width: min(96vw, 1560px);
  display: flex;
  align-items: center;
  padding: 2rem 0 5rem;
}

.about-story-stage {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(28rem, 1.18fr);
  gap: clamp(2rem, 4.5vw, 5rem);
  align-items: center;
  width: 100%;
}

.about-story-copy {
  max-width: 38rem;
  padding-right: clamp(1rem, 2vw, 2rem);
}

.about-story-copy .eyebrow {
  margin-bottom: 0.9rem;
  color: #4f5d71;
}

.about-story-copy p:last-child {
  margin: 0;
  max-width: 40rem;
  font-size: clamp(1.55rem, 2.1vw, 2.2rem);
  line-height: 1.22;
  letter-spacing: -0.04em;
  color: #1a2433;
}

.about-story-video {
  justify-self: end;
  width: min(100%, 60rem);
  padding-left: 0;
}

.about-story-video-card {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  background: #000000;
}

.about-story-video-card img {
  aspect-ratio: 16 / 9;
}

.about-story-video-card:hover img,
.about-story-video-card:focus-visible img {
  transform: none;
}

.about-journey-section {
  min-height: auto;
  width: min(96vw, 1560px);
  padding: 0 0 5rem;
}

.about-journey-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
}

.about-journey-intro {
  position: sticky;
  top: clamp(5rem, 10vh, 8rem);
  align-self: start;
}

.about-journey-intro h2 {
  max-width: none;
}

.about-journey-timeline {
  --journey-line-left: 4.4rem;
  position: relative;
  display: grid;
  gap: 3rem;
  padding-left: 8.8rem;
}

.about-journey-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--journey-line-left);
  width: 0.4rem;
  border-radius: 999px;
  background: rgba(26, 38, 61, 0.12);
  overflow: hidden;
}

.about-journey-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--journey-progress, 0%);
  border-radius: inherit;
  background: linear-gradient(180deg, #b36fff 0%, #7c9cff 48%, #57d4ff 100%);
  transition: height 120ms linear;
}

.about-journey-item {
  position: relative;
  display: grid;
  grid-template-columns: 5.2rem minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  opacity: 0.56;
  transition: opacity 220ms ease, transform 220ms ease;
}

.about-journey-item.is-active {
  opacity: 1;
  transform: translateX(0);
}

.about-journey-year {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1d2b40;
  transition: color 220ms ease;
}

.about-journey-item.is-active .about-journey-year {
  color: #7b5cff;
}

.about-journey-content {
  display: grid;
  gap: 0.85rem;
  max-width: 44rem;
}

.about-journey-content h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.3vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #1a2433;
}

.about-journey-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: #4d5a6a;
}

.about-leadership-section {
  min-height: auto;
  width: min(96vw, 1560px);
  padding: 0 0 5rem;
}

.about-leadership-heading {
  margin-bottom: 1.8rem;
}

.about-leadership-heading h2 {
  max-width: none;
}

.about-advisory-heading {
  margin-top: 3.5rem;
}

.about-people-grid {
  display: grid;
  gap: 2rem 1rem;
}

.about-people-grid-board {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-people-grid-board .about-person-card:nth-child(5) {
  grid-column: 2;
}

.about-people-grid-board .about-person-card:nth-child(6) {
  grid-column: 3;
}

.about-people-grid-advisory {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-person-card {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.about-person-media {
  overflow: hidden;
  border-radius: 0.85rem;
  background: #e9ecef;
  aspect-ratio: 0.82 / 1;
}

.about-person-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 220ms ease, transform 220ms ease;
}

.about-person-card:hover .about-person-media img,
.about-person-card:focus-within .about-person-media img {
  filter: grayscale(0);
}

.about-person-copy {
  display: grid;
  gap: 0.2rem;
}

.about-person-copy h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #202a39;
}

.about-person-copy p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.35;
  color: #4e5968;
}

.technology-image-strip {
  min-height: auto;
  padding: 2.5rem 0 1.5rem;
}

.technology-image-strip img {
  display: block;
  width: min(96vw, 1560px);
  margin: 0 auto;
  border-radius: 2rem;
}

.technology-image-strip-copy {
  width: min(96vw, 1560px);
  margin: 0 auto 1.5rem;
}

.technology-image-strip-copy h2,
.technology-video-feature .section-heading h2,
.technology-processes-section .section-heading h2 {
  max-width: none;
}

.technology-image-strip-copy .lead,
.technology-video-feature .section-heading .lead,
.technology-processes-section .section-heading .lead {
  max-width: 76ch;
}

.technology-video-feature .section-heading,
.technology-processes-section .section-heading {
  max-width: 76rem;
}

.technology-video-feature {
  min-height: 100vh;
  padding: 0 0 4.5rem;
}

.technology-processes-section {
  min-height: 100vh;
  padding: 0 0 4.5rem;
}

.technology-processes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.technology-process-card {
  min-height: 12rem;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  text-align: center;
}

.technology-process-card img {
  width: 4.4rem;
  height: 4.4rem;
  object-fit: contain;
}

.technology-process-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #16263d;
}

.technology-integration-section {
  min-height: 100vh;
  padding: 0 0 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.2rem;
}

.technology-integration-heading {
  margin-bottom: 0;
}

.technology-integration-heading h2 {
  max-width: none;
}

.technology-integration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.technology-integration-card {
  position: relative;
  min-height: 32rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #0e1520;
  isolation: isolate;
}

.technology-integration-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 24, 0.04), rgba(8, 14, 24, 0.3) 52%, rgba(8, 14, 24, 0.86));
  pointer-events: none;
}

.technology-integration-main,
.technology-integration-content {
  position: relative;
  z-index: 1;
}

.technology-integration-main {
  width: 100%;
  height: 100%;
}

.technology-integration-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.technology-integration-content {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 1rem;
  background: rgba(10, 15, 25, 0.72);
  backdrop-filter: blur(12px);
  color: #f7fbff;
  transform: translateY(72%);
  opacity: 0;
  transition: transform 420ms ease, opacity 420ms ease;
}

.technology-integration-card:hover .technology-integration-main img,
.technology-integration-card:focus-within .technology-integration-main img {
  transform: scale(1.05);
}

.technology-integration-card:hover .technology-integration-content,
.technology-integration-card:focus-within .technology-integration-content {
  transform: translateY(0);
  opacity: 1;
}

.technology-integration-kicker {
  display: inline-flex;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(229, 238, 255, 0.7);
}

.technology-integration-content h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #ffffff;
}

.technology-integration-content p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(234, 240, 250, 0.86);
}

@media (max-width: 980px) {
  .about-people-grid-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-people-grid-board .about-person-card:nth-child(5),
  .about-people-grid-board .about-person-card:nth-child(6) {
    grid-column: auto;
  }

  .about-people-grid-advisory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-story-stage {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-story-copy {
    padding-right: 0;
  }

  .about-story-video {
    padding-left: 0;
  }

  .technology-processes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technology-integration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technology-integration-card {
    min-height: 28rem;
  }
}

@media (max-width: 640px) {
  .about-people-grid-board,
  .about-people-grid-advisory {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .about-person-copy h3 {
    font-size: 1.15rem;
  }

  .about-story-copy p:last-child {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .technology-processes-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .technology-process-card {
    min-height: auto;
    padding: 0.75rem 0;
  }

  .technology-integration-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .technology-integration-card {
    min-height: 24rem;
  }

  .technology-integration-content {
    transform: translateY(0);
    opacity: 1;
  }
}

.technology-video-player-wrap {
  width: min(100%, 56rem);
  margin: 0 auto;
}

.video-thumbnail-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 2rem;
  overflow: hidden;
  background: #0d1523;
  box-shadow: 0 28px 72px rgba(10, 19, 34, 0.16);
  cursor: pointer;
}

.video-thumbnail-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 320ms ease;
}

.video-thumbnail-card:hover img,
.video-thumbnail-card:focus-visible img {
  transform: scale(1.04);
}

.video-thumbnail-card:focus-visible {
  outline: 2px solid #16263d;
  outline-offset: 4px;
}

.video-thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62));
}

.video-thumbnail-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail-play svg {
  width: 2rem;
  height: 2rem;
}

.video-thumbnail-play::before {
  content: "";
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.video-thumbnail-play svg {
  position: absolute;
  color: #ffffff;
  transform: translateX(0.12rem);
}

.video-thumbnail-copy {
  position: absolute;
  left: 1.8rem;
  right: 1.8rem;
  bottom: 1.7rem;
  display: grid;
  gap: 0.35rem;
  text-align: left;
  color: #ffffff;
}

.video-thumbnail-copy strong {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.video-thumbnail-copy span {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.video-player-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: clamp(1rem, 4vh, 2.5rem) 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.video-player-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 220ms ease, visibility 0s linear 0s;
}

.video-player-dialog {
  position: relative;
  width: min(100%, 70rem);
  margin: auto 0;
}

.video-player-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 2.9rem;
  height: 2.9rem;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 14, 26, 0.72);
  color: #ffffff;
  cursor: pointer;
}

.video-player-close svg {
  width: 1.35rem;
  height: 1.35rem;
}

.video-player-frame {
  overflow: hidden;
  border-radius: 1.5rem;
  background: #000000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.video-player-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.industries-card-section {
  min-height: auto;
  padding: 2rem 0 5rem;
}

.industries-application-feature {
  min-height: 100vh;
  padding: 2rem 0 5rem;
}

.industries-application-image {
  min-height: 24rem;
}

.industries-application-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industries-application-copy {
  margin-bottom: 0;
  align-self: center;
}

.industries-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.9rem;
  width: min(100%, 74rem);
  margin: 0 auto;
}

.industry-focus-card {
  display: block;
  position: relative;
  min-height: 20rem;
  padding: 1.4rem;
  overflow: hidden;
  cursor: pointer;
  background: #1f1f22;
}

.industry-focus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.52)),
    var(--industry-image);
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  transform: scale(1);
  transition: transform 500ms ease, filter 500ms ease;
}

.industry-focus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.5));
}

.industry-focus-card:hover::before {
  filter: grayscale(0.2);
  transform: scale(1.06);
}

.industry-focus-arrow,
.industry-focus-copy {
  position: relative;
  z-index: 1;
}

.industry-focus-arrow {
  display: block;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 2rem;
  line-height: 1;
  transition: transform 300ms ease;
}

.industry-focus-card:hover .industry-focus-arrow {
  transform: translate(2px, -2px);
}

.industry-focus-copy {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.35rem;
  color: #f8fbff;
}

.industry-focus-copy h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.industry-focus-copy p {
  margin: 0;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(244, 247, 251, 0.92);
}

.page-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.cta-band h2 {
  font-family: "Golos Text", "Segoe UI Variable Text", sans-serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  max-width: none;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.page-hero h1,
.section-heading h2,
.cta-band h2 {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  max-width: 12ch;
}

.lead,
.section-heading p,
.info-card p,
.product-copy p,
.quote-card span,
.metric p,
.timeline-item p,
.faq-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow,
.card-index,
.metric-value,
.timeline-item span {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #28282d;
}

.eyebrow {
  font-size: 0.78rem;
  margin: 0 0 1rem;
}

.hero-copy .lead {
  max-width: 55ch;
  margin: 1.5rem 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-solid {
  background: linear-gradient(180deg, #0e0e12, #444445);
  color: #f3f3f3;
}

.button-ghost {
  background: rgba(0, 0, 0, 0.04);
}

.button-hero {
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.92);
  color: #ffffff;
}

.actions.center {
  justify-content: center;
  width: 100%;
}

.button-primary {
  background: #0095ff;
  color: #fff;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
}

.button-primary:hover {
  background: #007acc;
  color: #fff;
}

.frame,
.info-card,
.product-card,
.quote-card,
.timeline-item,
.faq-item {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.02)),
    rgba(236, 236, 235, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.frame {
  overflow: hidden;
}

.frame img,
.product-card img,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Impact Stats Section ───────────────────────────────── */
.impact-stats {
  --impact-pin-top: clamp(5rem, 14vh, 8rem);
  --impact-panel-height: calc(100vh - (var(--impact-pin-top) * 2));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: start;
  min-height: auto;
  padding: 8rem 0 6rem;
}

.impact-stats-left {
  position: relative;
}

.impact-stat-step {
  position: relative;
  min-height: 88vh;
}

.impact-stat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  position: sticky;
  top: var(--impact-pin-top);
  min-height: var(--impact-panel-height);
  padding: 0;
  /* Start hidden – JS will add .stat-visible to reveal */
  opacity: 0.16;
  transform: translateY(1.5rem) scale(0.97);
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}

.impact-stat-item.stat-current {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

.impact-value {
  display: block;
  font-family: "Golos Text", "Segoe UI Variable Text", sans-serif;
  font-size: clamp(2.9rem, 5.3vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--text);
  line-height: 0.92;
}

.impact-desc {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--muted);
  line-height: 1.5;
}

.impact-stats-right {
  position: sticky;
  top: var(--impact-pin-top);
  align-self: start;
  min-height: var(--impact-panel-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impact-stats-right h2 {
  font-family: "Golos Text", "Segoe UI Variable Text", sans-serif;
  font-weight: 500;
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin: 0 0 1.4rem;
  color: var(--text);
}

.impact-stats-right p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 44ch;
  margin: 0;
}

/* ── Original Metrics / Grid helpers ────────────────────── */
.metrics,
.card-grid,
.comparison-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.metrics,
.comparison-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric,
.info-card,
.quote-card {
  padding: 1.5rem;
}

.metric {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.metric-value {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading .lead {
  max-width: 58ch;
}

.why-indra {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: calc(var(--why-indra-steps, 3) * 100vh);
  padding: 0;
}

.why-indra.reveal,
.why-indra.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.why-indra-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.why-indra-heading {
  position: absolute;
  top: clamp(1.5rem, 4vh, 3rem);
  left: 0;
  right: 0;
  z-index: 32;
  display: flex;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.why-indra-heading h2 {
  max-width: none;
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.why-indra-stage {
  position: relative;
  height: 100vh;
  perspective: 1200px;
  overflow: hidden;
}

.why-indra-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 27rem);
  gap: 2rem;
  align-items: end;
  padding: clamp(5.5rem, 10vh, 8rem) clamp(1.5rem, 4vw, 4rem) clamp(2rem, 5vh, 3.5rem);
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translateY(18%) scale(0.96);
  transition:
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 720ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 720ms;
}

.why-indra-card:first-child,
.why-indra-card.is-active {
  opacity: 1;
  z-index: 20;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  box-shadow: none;
  transition:
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 720ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.why-indra-card.is-next {
  opacity: 0;
  z-index: 18;
  visibility: hidden;
  transform: translateY(14%) scale(0.985);
}

.why-indra-card.is-next-2 {
  opacity: 0;
  z-index: 16;
  visibility: hidden;
  transform: translateY(18%) scale(0.97);
}

.why-indra-card.is-far {
  opacity: 0;
  z-index: 14;
  visibility: hidden;
  transform: translateY(22%) scale(0.955);
}

.why-indra-card.is-past {
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  transform: translateY(-10%) scale(0.97);
}

.why-indra-card-modular {
  --why-indra-image: url("../assets/pexels-themob000-27301622.jpg");
}

.why-indra-card-footprint {
  --why-indra-image: url("../assets/pexels-giantasparagus-35425761.jpg");
}

.why-indra-card-chemicals {
  --why-indra-image: url("../assets/pexels-themob000-26700208.jpg");
}

.why-indra-card-recovery {
  --why-indra-image: url("../assets/pexels-bingqian-li-230971044-35071424.jpg");
}

.why-indra-card-retrofit {
  --why-indra-image: url("../assets/pexels-arti-17469815.jpg");
}

.why-indra-card::before,
.why-indra-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-indra-card::before {
  background:
    linear-gradient(180deg, rgba(5, 10, 19, 0.16), rgba(5, 10, 19, 0.24)),
    var(--why-indra-image);
  background-size: cover;
  background-position: center;
  opacity: 1;
  transform: none;
}

.why-indra-card::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 16, 0.7), rgba(4, 8, 16, 0.14) 45%, rgba(4, 8, 16, 0.56)),
    linear-gradient(180deg, rgba(4, 8, 16, 0.08), rgba(4, 8, 16, 0.56));
  filter: none;
  opacity: 1;
}

.why-indra-copy,
.why-indra-panel {
  position: relative;
  z-index: 1;
}

.why-indra-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  max-width: 42rem;
  color: #ffffff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.why-indra-index {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 248, 255, 0.74);
}

.why-indra-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.why-indra-copy p:last-child {
  margin: 0;
  max-width: 32rem;
  color: rgba(244, 248, 255, 0.9);
  font-size: 1.04rem;
  line-height: 1.5;
}

.why-indra-panel {
  align-self: end;
  justify-self: end;
  width: min(100%, 24rem);
  max-height: none;
  padding: 1.35rem 1.45rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 17, 35, 0.42);
  color: #f4f8ff;
  box-shadow: none;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.why-indra-panel-title {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.why-indra-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.75rem;
  color: rgba(244, 248, 255, 0.88);
  line-height: 1.45;
}

.why-indra-step {
  height: 100vh;
}

.solutions-showcase {
  min-height: auto;
  padding: 6rem 0 5rem;
}

.solutions-showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.6rem;
  text-align: left;
}

.solutions-showcase-header h2 {
  max-width: none;
}

.solutions-showcase-header span {
  color: #2d8cff;
}

.solutions-showcase-header .lead {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: #556983;
}

.solutions-carousel-nav {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.solutions-carousel-btn {
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #16263d;
  color: #ffffff;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.solutions-carousel-btn:hover {
  transform: translateY(-1px);
  background: #0f1c2e;
}

.solutions-carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.solutions-carousel-btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.solutions-carousel {
  --solutions-visible: 3;
}

.solutions-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - ((var(--solutions-visible) - 1) * 1.4rem)) / var(--solutions-visible));
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.4rem;
}

.solutions-carousel-track::-webkit-scrollbar {
  display: none;
}

.solution-carousel-card {
  scroll-snap-align: start;
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 1rem;
}

.solution-carousel-media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 24rem;
  padding: 0;
  background: transparent;
}

.solution-carousel-figure {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.solution-carousel-image {
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: none;
}

.solution-carousel-caption {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  text-align: center;
}

.solution-carousel-caption h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #16263d;
}

.solution-carousel-caption .solution-link {
  margin-top: 0;
}

.products-solutions-header p {
  max-width: 42rem;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #556983;
}

.products-scroll-showcase {
  position: relative;
  width: min(96vw, 1560px);
  min-height: calc(var(--product-scroll-steps, 6) * 100vh);
  margin: 0 auto;
  padding: 0;
}

.products-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.5rem, 4vh, 3rem);
}

.products-scroll-intro {
  max-width: 38rem;
}

.products-scroll-intro h2 {
  margin: 0;
  font-family: "Golos Text", "Segoe UI Variable Text", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
  color: #16263d;
}

.products-scroll-intro p:last-child {
  max-width: 36rem;
  margin: 1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #556983;
}

.products-scroll-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}

.products-scroll-copy-stage {
  position: relative;
  min-height: clamp(20rem, 40vh, 28rem);
}

.product-scroll-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 31rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.5rem);
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    visibility 0s linear 420ms;
}

.product-scroll-copy.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    visibility 0s linear 0s;
}

.product-scroll-copy.is-past {
  transform: translateY(-1rem);
}

.product-scroll-copy.is-future {
  transform: translateY(1.2rem);
}

.product-scroll-index {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #657b99;
}

.product-scroll-copy h3 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.96;
  color: #16263d;
}

.product-scroll-copy > p:last-of-type {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: #44546e;
}

.products-scroll-visual-stage {
  position: relative;
  height: clamp(22rem, 42vw, 34rem);
  overflow: hidden;
}

.product-scroll-visual-card {
  position: absolute;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16%);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-scroll-visual-card.is-active {
  visibility: visible;
  transform: translateY(0);
}

.product-scroll-visual-card.is-next {
  transform: translateY(16%);
}

.product-scroll-visual-card.is-past {
  transform: translateY(-12%);
}

.product-scroll-visual-card .solution-product-image {
  left: 50%;
  right: auto;
  bottom: 0;
  transform: translateX(-50%);
  filter: none;
}

.product-scroll-visual-card .solution-product-image-l01 {
  max-width: 90%;
  max-height: 98%;
}

.product-scroll-visual-card .solution-product-image-l02 {
  max-width: 86%;
  max-height: 94%;
}

.product-scroll-visual-card .solution-product-image-product-nano {
  max-width: 78%;
  max-height: 96%;
}

.product-scroll-visual-card .solution-product-image-s01 {
  max-width: 90%;
  max-height: 98%;
}

.product-scroll-visual-card .solution-product-image-s02 {
  max-width: 80%;
  max-height: 92%;
}

.product-scroll-visual-card .solution-product-image-phlox {
  max-width: 94%;
  max-height: 100%;
}

.product-scroll-step {
  height: 100vh;
}

.evolution-section {
  min-height: 100vh;
  padding: 2rem 0 5rem;
}

.evolution-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.evolution-header h2 {
  max-width: none;
}

.evolution-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.evolution-card {
  overflow: visible;
}

.evolution-card img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.evolution-copy {
  padding: 1rem 0 0;
}

.evolution-year {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #677d9a;
}

.evolution-copy h3 {
  margin: 0 0 0.45rem;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.15;
  color: #16263d;
}

.evolution-copy p {
  margin: 0;
  color: #44546e;
  font-size: 0.98rem;
  line-height: 1.45;
}

.evolution-copy span {
  display: inline-block;
  margin-top: 0.7rem;
  color: #7a8da8;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solutions-showcase-list {
  display: grid;
  gap: 5rem;
}

.solution-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}

.solution-row.reverse .solution-copy {
  order: 2;
}

.solution-row.reverse .solution-visual {
  order: 1;
}

.solution-copy {
  max-width: 28rem;
}

.solution-copy h3 {
  margin: 0 0 1rem;
  font-size: clamp(2.15rem, 4vw, 3.45rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: #16263d;
}

.solution-copy p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.48;
  color: #44546e;
}

.solution-spec-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.solution-spec-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(188, 203, 227, 0.72);
  color: #4d617e;
}

.solution-spec-list strong {
  color: #183151;
  font-size: 0.92rem;
  font-weight: 700;
}

.solution-spec-list span {
  color: #44546e;
  font-size: 0.95rem;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #3b4c66;
}

.solution-link::after {
  content: "→";
  color: #2d8cff;
  font-size: 1.2rem;
  line-height: 1;
}

.solution-visual {
  position: relative;
  height: clamp(18rem, 30vw, 27rem);
}

.solution-frame {
  position: absolute;
  left: 10%;
  right: 0;
  top: 14%;
  bottom: 0;
  border-radius: 1.7rem;
  border: 1px solid rgba(190, 205, 230, 0.8);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.94)),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 48px rgba(149, 174, 216, 0.18);
}

.solution-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 1.2rem;
  border: 1.5px dashed rgba(181, 196, 221, 0.8);
  background:
    linear-gradient(135deg, rgba(240, 245, 255, 0.95), rgba(250, 252, 255, 0.95));
}

.solution-product-image {
  position: absolute;
  z-index: 1;
  display: block;
  max-width: 84%;
  max-height: 82%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(80, 102, 136, 0.18));
}

.solution-product-image-nano {
  left: 8%;
  bottom: -2%;
  max-width: 66%;
  max-height: 90%;
}

.solution-product-image-s04 {
  right: -2%;
  bottom: -4%;
  max-width: 84%;
  max-height: 92%;
}

.solution-product-image-l1 {
  left: 2%;
  bottom: -4%;
  max-width: 86%;
  max-height: 94%;
}

.solution-product-image-l01 {
  left: 1%;
  bottom: -5%;
  max-width: 90%;
  max-height: 98%;
}

.solution-product-image-l02 {
  right: -1%;
  bottom: -4%;
  max-width: 86%;
  max-height: 94%;
}

.solution-product-image-product-nano {
  left: 4%;
  bottom: -4%;
  max-width: 78%;
  max-height: 96%;
}

.solution-product-image-s01 {
  left: 0;
  bottom: -5%;
  max-width: 90%;
  max-height: 98%;
}

.solution-product-image-s02 {
  right: 0;
  bottom: -3%;
  max-width: 80%;
  max-height: 92%;
}

.solution-product-image-phlox {
  left: 0;
  bottom: -6%;
  max-width: 94%;
  max-height: 100%;
}

.solution-chip {
  position: absolute;
  z-index: 1;
  min-width: 12rem;
  padding: 1rem 1.15rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(188, 203, 227, 0.82);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 32px rgba(156, 177, 210, 0.16);
}

.solution-chip p,
.solution-chip strong {
  margin: 0;
}

.solution-chip p {
  font-size: 0.76rem;
  line-height: 1.3;
  color: #6f82a0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.solution-chip strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: #183151;
}

.solution-chip-top {
  top: 0;
  right: 18%;
}

.solution-chip-bottom {
  right: 0;
  bottom: 10%;
}

.resource-spotlight {
  width: min(96vw, 1560px);
  min-height: 100vh;
  padding: 5rem 0 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2.75rem;
  position: relative;
  overflow: hidden;
}

.client-showcase-copy {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.client-showcase-copy h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.96;
  color: #16263d;
}

.client-logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
  padding: 0.8rem 0;
}

.client-logo-marquee::before,
.client-logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(3rem, 10vw, 12rem);
  z-index: 2;
  pointer-events: none;
}

.client-logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(245, 247, 250, 1), rgba(245, 247, 250, 0));
}

.client-logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(245, 247, 250, 1), rgba(245, 247, 250, 0));
}

.client-logo-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  animation: client-logo-scroll 34s linear infinite;
}

.client-logo-marquee:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-item {
  width: clamp(11rem, 13vw, 14.5rem);
  min-width: clamp(11rem, 13vw, 14.5rem);
  height: 6.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.9rem;
  overflow: hidden;
}

.client-logo-item img {
  width: 100%;
  height: 3.35rem;
  object-fit: contain;
  filter: saturate(0) contrast(1.04) opacity(0.88);
  transform-origin: center;
}

.client-logo-item img.logo-wide {
  transform: scale(1.14);
}

.client-logo-item img.logo-padded {
  transform: scale(1.45);
}

.client-logo-item img.logo-padded-lg {
  transform: scale(1.68);
}

.client-logo-item img.logo-tall {
  height: 4.15rem;
  transform: scale(1.12);
}

@keyframes client-logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.625rem));
  }
}

.resource-spotlight-header {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.resource-spotlight-header h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
  color: #16263d;
}

.resource-spotlight-header h2 span {
  color: #2d8cff;
}

.resource-spotlight-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
}

.resource-spotlight-cta p {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #16263d;
}

.resource-pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: #1887ff;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(24, 135, 255, 0.18);
}

.resource-pill-link::after {
  content: "↗";
  margin-left: 0.6rem;
  font-size: 1rem;
  line-height: 1;
}

.resource-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.resource-card {
  display: grid;
  grid-template-rows: 10.7rem auto;
  border-radius: 1.8rem;
  border: 1px solid rgba(219, 226, 239, 0.9);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(168, 183, 209, 0.14);
  overflow: hidden;
}

.resource-card.featured {
  border-color: rgba(23, 39, 63, 0.5);
  box-shadow: 0 20px 42px rgba(126, 145, 180, 0.18);
}

.resource-card-media {
  position: relative;
  overflow: hidden;
}

.resource-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.95;
}

.media-one::before {
  background:
    linear-gradient(180deg, rgba(9, 36, 72, 0.7), rgba(9, 36, 72, 0.72)),
    linear-gradient(135deg, #4c7197 0%, #84c6d3 100%);
}

.media-two::before {
  background:
    linear-gradient(180deg, rgba(4, 24, 58, 0.72), rgba(4, 24, 58, 0.78)),
    radial-gradient(circle at center, rgba(77, 202, 215, 0.46), transparent 32%),
    #062244;
}

.media-three::before {
  background:
    linear-gradient(180deg, rgba(6, 40, 35, 0.42), rgba(6, 40, 35, 0.48)),
    linear-gradient(135deg, #1f5e3d 0%, #285537 52%, #5a8d41 100%);
}

.media-four::before {
  background:
    linear-gradient(180deg, rgba(7, 18, 41, 0.4), rgba(7, 18, 41, 0.56)),
    linear-gradient(135deg, #132746 0%, #0f1b33 100%);
}

.media-one::after,
.media-two::after,
.media-three::after,
.media-four::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.16), transparent 26%),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.08), transparent 24%);
}

.resource-status {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}

.resource-status::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.9;
}

.resource-status.upcoming {
  background: rgba(240, 255, 242, 0.92);
  color: #43b765;
}

.resource-status.recorded {
  background: rgba(241, 248, 255, 0.94);
  color: #5aa9ff;
}

.resource-card-body {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.15rem 1.15rem;
}

.resource-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.resource-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #f3f6fb;
  color: #66799b;
  font-size: 0.72rem;
  font-weight: 500;
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.85rem;
  color: #5a6d8c;
  font-size: 0.9rem;
  line-height: 1.4;
}

.resource-card-body h3 {
  margin: 0.85rem 0 0.8rem;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #1d2d44;
}

.resource-card-body p {
  margin: 0;
  color: #465878;
  font-size: 0.96rem;
  line-height: 1.45;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 2rem;
  color: #4a5f81;
  font-size: 0.96rem;
  font-weight: 500;
}

.resource-link::after {
  content: "↗";
  color: #2d8cff;
  font-size: 1.15rem;
  line-height: 1;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.split-layout.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.stack,
.card-stack,
.timeline-list,
.faq-list {
  display: grid;
  gap: 1rem;
}

.info-card h3,
.product-copy h2,
.quote-card p,
.timeline-item h3 {
  margin: 0 0 0.65rem;
}

.info-card.emphasis {
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.03)),
    rgba(238, 238, 237, 0.95);
}

.media-layout {
  grid-template-columns: 1.25fr 0.75fr;
}

.video-frame {
  aspect-ratio: 16 / 9;
}

.media-card,
.product-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(239, 239, 238, 0.94);
  box-shadow: var(--shadow);
}

.media-card {
  display: grid;
  grid-template-rows: 16rem auto;
}

.media-card-copy,
.product-copy {
  padding: 1.35rem;
}

.product-card {
  display: grid;
  grid-template-rows: 18rem auto;
}

.spec-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.spec-list li {
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-card p {
  font-family: "Golos Text", "Segoe UI Variable Text", sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.42;
}

.quote-card span {
  display: inline-block;
  margin-top: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem;
}

.timeline-item span {
  font-size: 0.85rem;
  padding-top: 0.2rem;
}

.gallery-grid {
  grid-template-columns: 1fr 1.2fr;
}

.gallery-grid img {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  min-height: 17rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.contact-form {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: #232329;
  font-size: 0.92rem;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.03);
  color: var(--text);
  padding: 0.95rem 1rem;
}

.faq-item {
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  color: var(--text);
  background: transparent;
  border: 0;
  padding: 1.35rem 1.5rem;
  cursor: pointer;
}

.faq-panel {
  display: none;
  padding: 0 1.5rem 1.35rem;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.cta-band {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
  margin-bottom: 4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.08), transparent 55%),
    rgba(241, 241, 241, 0.92);
}

.home-contact-showcase {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-top: 0;
  margin-bottom: 0;
}

.home-contact-card {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 100vh;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.26)),
    url("../assets/pexels-zelch-30596250.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: none;
}

.home-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.22)),
    repeating-linear-gradient(
      118deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 2px,
      transparent 2px,
      transparent 120px
    );
  opacity: 0.95;
}

.home-contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 80%, rgba(14, 14, 14, 0.28), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(14, 14, 14, 0.2), transparent 18%);
}

.home-contact-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  width: min(100%, 44rem);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  color: #ffffff;
}

.home-contact-content .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.home-contact-content h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.home-contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.4rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #1a1a1d;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  font-size: 0.96rem;
  font-weight: 500;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.home-contact-button:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.22);
}

.site-footer {
  display: grid;
  gap: 2rem;
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
  color: var(--muted);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.footer-brand-block {
  display: grid;
  gap: 1.1rem;
  width: min(100%, 29rem);
}

.footer-brand .brand {
  color: var(--text);
}

.footer-brand .brand-logo {
  height: 2.6rem;
}

.footer-description {
  margin: 0;
  max-width: 34ch;
  font-size: 0.98rem;
  line-height: 1.65;
}

.footer-socials,
.footer-links-grid ul,
.footer-legal-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #425269;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-socials a:hover {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 4rem;
  width: min(100%, 44rem);
}

.footer-links-grid h3 {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
}

.footer-links-grid ul {
  display: grid;
  gap: 0.8rem;
}

.footer-links-grid a,
.footer-legal-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-links-grid a:hover,
.footer-legal-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .products-scroll-stage {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .products-scroll-copy-stage {
    min-height: 18rem;
  }

  .products-scroll-visual-stage {
    height: clamp(18rem, 56vw, 26rem);
  }

  .resource-spotlight {
    min-height: auto;
    padding: 4rem 0;
  }

  .industries-card-grid {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-brand-block,
  .footer-links-grid {
    width: 100%;
  }

  .footer-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solutions-showcase {
    padding: 4rem 0 3rem;
  }

  .solutions-carousel {
    --solutions-visible: 2;
  }

  .evolution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-showcase-header {
    align-items: start;
    flex-direction: column;
  }

  .solutions-carousel-nav {
    align-self: flex-end;
  }

  .solution-carousel-media {
    min-height: 19rem;
  }

  .solution-chip-top {
    right: auto;
    left: 1rem;
  }

  .solution-chip-bottom {
    right: 1rem;
    bottom: 0.8rem;
  }

  .why-indra {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: auto;
    padding: 0;
  }

  .why-indra-sticky {
    position: static;
    height: auto;
  }

  .why-indra-stage {
    height: auto;
    display: grid;
    gap: 1rem;
  }

  .why-indra-card {
    position: relative;
    grid-template-columns: 1fr;
    min-height: 78vh;
    padding: 5rem 1.25rem 1.5rem;
    opacity: 1 !important;
    transform: none !important;
    z-index: auto !important;
  }

  .why-indra-panel {
    justify-self: stretch;
    width: 100%;
    max-height: none;
  }

  .why-indra-steps {
    display: none;
  }

  .impact-stats,
  .split-layout,
  .split-layout.reverse,
  .media-layout,
  .contact-grid,
  .metrics,
  .comparison-grid,
  .three-up,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: start;
  }

  .home-contact-card {
    min-height: 30rem;
  }

  .impact-stat-item {
    position: static;
    min-height: auto;
    padding: 0;
    opacity: 1;
    transform: none;
  }

  .impact-stat-step {
    min-height: auto;
    padding: 1.5rem 0;
  }

  .impact-stats-right {
    position: static;
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .products-scroll-sticky {
    gap: 1.5rem;
  }

  .products-scroll-intro h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .products-scroll-intro p:last-child,
  .product-scroll-copy > p:last-of-type {
    font-size: 1rem;
  }

  .products-scroll-copy-stage {
    min-height: 20rem;
  }

  .products-scroll-visual-stage {
    height: clamp(17rem, 62vw, 23rem);
  }

  .resource-spotlight-header h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .client-showcase-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .client-logo-item {
    width: 8.6rem;
    min-width: 8.6rem;
    height: 5rem;
  }

  .industries-card-grid {
    grid-template-columns: 1fr;
  }

  .industry-focus-card {
    min-height: 14rem;
  }

  .industry-focus-copy h3 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }

  .solutions-showcase-header {
    margin-bottom: 2rem;
  }

  .solutions-carousel {
    --solutions-visible: 1;
  }

  .solutions-carousel-nav {
    width: 100%;
    justify-content: flex-end;
  }

  .solution-carousel-media {
    min-height: 15rem;
  }

  .evolution-grid {
    grid-template-columns: 1fr;
  }

  .evolution-card img {
    height: 15rem;
  }

  .solution-chip {
    min-width: 10.5rem;
    padding: 0.85rem 0.95rem;
  }

  .solution-chip strong {
    font-size: 0.92rem;
  }

  .why-indra-copy h3 {
    font-size: clamp(1.7rem, 8.6vw, 2.45rem);
  }

  .why-indra-copy p:last-child,
  .why-indra-list {
    font-size: 0.96rem;
  }

  .site-header {
    align-items: start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    border-radius: var(--radius-lg);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .page-hero h1,
  .section-heading h2,
  .cta-band h2 {
    font-size: clamp(1.82rem, 9.6vw, 2.6rem);
  }

  .home-contact-card {
    min-height: 80vh;
    border-radius: 0;
  }

  .home-contact-content {
    width: 100%;
    gap: 1.15rem;
    padding: 1.6rem;
  }

  .home-contact-content h2 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .section {
    padding: 1.2rem 0 2.8rem;
  }

  .impact-stats {
    padding: 4rem 0 2.8rem;
  }

  .impact-stat-item {
    padding: 0;
  }

  .impact-value {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }
}
