:root {
  --bg: #f5f5f7;
  --paper: #ffffff;
  --paper-strong: #fbfbfd;
  --ink: #1d1d1f;
  --ink-soft: rgba(29, 29, 31, 0.72);
  --line: rgba(29, 29, 31, 0.08);
  --line-strong: rgba(255, 255, 255, 0.68);
  --jade: #0071e3;
  --ore: #0071e3;
  --ore-soft: rgba(0, 113, 227, 0.1);
  --stone: #e8e8ed;
  --shadow: 0 18px 48px rgba(29, 29, 31, 0.06);
  --shadow-lg: 0 30px 80px rgba(29, 29, 31, 0.1);
  --radius-xl: 2.25rem;
  --radius-lg: 1.5rem;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 113, 227, 0.06), transparent 18%),
    radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.84), transparent 18%),
    linear-gradient(180deg, #fbfbfd 0, #f7f7fa 32rem, var(--bg) 32rem, var(--bg) 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0.18) 1px, transparent 1px, transparent 12px);
  mix-blend-mode: lighten;
  opacity: 0.1;
  z-index: 0;
  animation: atmosphereDrift 26s ease-in-out infinite alternate;
}

body:not(.is-ready) .hero-copy > *,
body:not(.is-ready) .home-poster__summary,
body:not(.is-ready) .home-poster__metrics,
body:not(.is-ready) .home-poster__family-grid,
body:not(.is-ready) .home-poster__caption,
body:not(.is-ready) .proof-strip__item,
body:not(.is-ready) .product-poster__eyebrow,
body:not(.is-ready) .product-poster__title,
body:not(.is-ready) .product-poster__copy,
body:not(.is-ready) .product-poster__metrics,
body:not(.is-ready) .product-poster__caption {
  opacity: 0;
  transform: translateY(1rem);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(0, 113, 227, 0.16);
}

.shell {
  width: min(var(--max-width), calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding-top: 1rem;
}

.site-header__inner {
  width: min(var(--max-width), calc(100vw - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled .site-header__inner {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(29, 29, 31, 0.08);
  box-shadow: 0 18px 48px rgba(29, 29, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  flex: 0 0 auto;
}

.brand-mark img {
  height: 2.9rem;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.95rem;
  color: rgba(29, 29, 31, 0.66);
}

.site-header.is-scrolled .desktop-nav {
  color: rgba(29, 29, 31, 0.66);
}

.desktop-nav a,
.mobile-menu a {
  position: relative;
  transition: color 180ms ease;
}

.desktop-nav a[href="/privacy-policy/"],
.desktop-nav a[href="/terms-disclaimer/"],
.mobile-menu a[href="/privacy-policy/"],
.mobile-menu a[href="/terms-disclaimer/"] {
  display: none;
}

.desktop-nav a::after,
.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.mobile-menu a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(29, 29, 31, 0.06);
}

.site-header.is-scrolled .menu-toggle {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.mobile-menu {
  width: min(var(--max-width), calc(100vw - 2rem));
  margin: 0.75rem auto 0;
  padding: 1rem 1.15rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow: var(--shadow);
  display: none;
  gap: 0.7rem;
}

.mobile-menu:not([hidden]) {
  display: grid;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
  cursor: pointer;
  border: 1px solid transparent;
}

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

.button--dark {
  color: white;
  background: var(--ore);
  box-shadow: 0 16px 40px rgba(0, 113, 227, 0.2);
}

.button--light {
  color: var(--ink);
  background: white;
  border-color: rgba(29, 29, 31, 0.08);
  box-shadow: 0 12px 30px rgba(29, 29, 31, 0.08);
}

.button--ghost {
  color: var(--ore);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(29, 29, 31, 0.08);
  box-shadow: 0 10px 24px rgba(29, 29, 31, 0.06);
}

.button--compact {
  min-height: 2.75rem;
  padding-inline: 1.1rem;
}

.site-header.is-scrolled .button--ghost {
  color: var(--ore);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(29, 29, 31, 0.08);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 8.7rem;
  color: var(--ink);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2.8rem;
  align-items: center;
  min-height: 78vh;
  padding-bottom: 4.25rem;
}

.hero__inner--single {
  grid-template-columns: minmax(0, 1fr);
  min-height: 62vh;
  max-width: 58rem;
}

.hero__inner--product {
  align-items: stretch;
  gap: 2.4rem;
  min-height: 68vh;
}

.hero-copy {
  max-width: 42rem;
}

.hero-label,
.section-label,
.product-snapshot__label,
.footer-label,
.family-label,
.feature-row__eyebrow,
.portfolio-row__eyebrow {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-label {
  color: rgba(29, 29, 31, 0.48);
}

.hero h1,
.section-intro h2,
.product-panel h2,
.contact-copy h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 8.2vw, 7.1rem);
}

.hero-title-stack {
  display: grid;
  gap: 0.4rem;
  max-width: 13ch;
}

.hero-title-main,
.hero-title-sub {
  display: block;
}

.hero-title-sub {
  font-size: 0.56em;
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 700;
  color: rgba(29, 29, 31, 0.82);
}

.hero-text,
.section-intro p,
.about-point p,
.industry-item p,
.process-step p,
.contact-copy p,
.panel-copy,
.faq-item p,
.footer-copy,
.portfolio-row p,
.feature-row p,
.family-copy {
  margin: 0;
  line-height: 1.75;
  font-size: 1rem;
}

.hero-text {
  max-width: 34rem;
  margin-top: 1.4rem;
  color: rgba(29, 29, 31, 0.68);
}

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

.hero-proof-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.hero-proof-pill {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow: 0 12px 28px rgba(29, 29, 31, 0.07);
  color: rgba(29, 29, 31, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: grid;
  align-self: center;
  min-height: 30rem;
  will-change: transform;
}

.hero-visual__specimen {
  position: relative;
  min-height: 27rem;
  border-radius: calc(var(--radius-xl) + 0.4rem);
  background:
    radial-gradient(circle at 25% 16%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 247, 0.92));
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.hero-visual__specimen::after,
.product-snapshot__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 24%, rgba(255, 255, 255, 0.48) 50%, transparent 72%);
  transform: translateX(-120%);
  animation: specimenSweep 12s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  pointer-events: none;
}

.hero-spec-grid,
.snapshot-visual-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1.2rem;
}

.hero-spec-card,
.snapshot-visual-card {
  padding: 0.85rem 0.9rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: 0 10px 24px rgba(29, 29, 31, 0.06);
  animation: cardBreathe 8s ease-in-out infinite;
  min-width: 0;
}

.hero-spec-card:nth-child(2),
.snapshot-visual-card:nth-child(2) {
  animation-delay: 0.7s;
}

.hero-spec-card:nth-child(3),
.snapshot-visual-card:nth-child(3) {
  animation-delay: 1.4s;
}

.hero-spec-card span,
.snapshot-visual-card span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
}

.hero-spec-card strong,
.snapshot-visual-card strong {
  display: block;
  line-height: 1.32;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.hero-spec-caption,
.snapshot-visual-caption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: 0 10px 24px rgba(29, 29, 31, 0.06);
}

.hero-spec-caption p,
.snapshot-visual-caption p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.92rem;
  color: rgba(29, 29, 31, 0.62);
}

.hero-spec-caption__dot,
.snapshot-visual-caption__dot {
  flex: 0 0 auto;
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #53a3ff, #0071e3);
  box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.16);
  animation: beaconPulse 3.2s ease-in-out infinite;
}

.hero-visual__footer {
  display: none;
}

.hero-visual__footer span {
  display: none;
}

.hero-visual__footer span:nth-child(2) {
  animation-delay: 0.6s;
}

.hero-visual__footer span:nth-child(3) {
  animation-delay: 1.2s;
}

.ore-slab,
.ore-pillar {
  position: absolute;
  border-radius: 2rem;
  overflow: hidden;
  transform-origin: center;
  animation: oreDrift 14s ease-in-out infinite alternate;
}

.ore-slab::before,
.ore-pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.22)),
    linear-gradient(120deg, rgba(224, 228, 236, 0.95), rgba(255, 255, 255, 0.8) 42%, rgba(214, 229, 255, 0.9));
}

.ore-slab::after,
.ore-pillar::after {
  content: "";
  position: absolute;
  inset-inline: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29, 29, 31, 0.1), transparent);
  top: 28%;
  box-shadow: 0 2.5rem 0 rgba(29, 29, 31, 0.06), 0 5rem 0 rgba(29, 29, 31, 0.04);
}

.ore-slab--a {
  left: 7%;
  top: 11%;
  width: 52%;
  height: 32%;
}

.ore-slab--b {
  right: 6%;
  top: 29%;
  width: 60%;
  height: 28%;
  animation-duration: 18s;
}

.ore-slab--c {
  left: 15%;
  bottom: 9%;
  width: 70%;
  height: 25%;
  animation-duration: 16s;
}

.hero-track,
.product-snapshot {
  position: relative;
  align-self: center;
  padding: 2rem;
  border-radius: calc(var(--radius-xl) + 0.25rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 248, 250, 0.92)),
    linear-gradient(140deg, rgba(0, 113, 227, 0.08), rgba(255, 255, 255, 0.5) 44%, rgba(255, 255, 255, 0.18));
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-track::before,
.product-snapshot::before {
  content: "";
  position: absolute;
  inset: auto -12% -30% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.12), transparent 65%);
  filter: blur(12px);
}

.hero-track {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: min(30rem, calc(100% - 2.4rem));
  z-index: 2;
}

.hero-signal {
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  z-index: 2;
  width: min(16rem, 48%);
  padding: 1rem 1.1rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 29, 31, 0.06);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(29, 29, 31, 0.08);
}

.hero-signal p,
.hero-signal strong {
  display: block;
  margin: 0;
}

.hero-signal p {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
}

.hero-signal strong {
  margin-top: 0.45rem;
  line-height: 1.45;
  font-size: 0.98rem;
}

.hero-track__label {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(29, 29, 31, 0.42);
}

.hero-track__rows {
  display: grid;
  gap: 0.85rem;
}

.hero-track__rows div,
.snapshot-row {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.hero-track__rows div:last-child,
.snapshot-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-track__rows span {
  color: rgba(29, 29, 31, 0.42);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-track__rows strong,
.snapshot-row strong {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
}

.hero-track__rows em {
  display: block;
  margin-top: 0.22rem;
  font-style: normal;
  color: rgba(29, 29, 31, 0.56);
  font-size: 0.96rem;
}

.product-snapshot__label {
  color: rgba(29, 29, 31, 0.42);
}

.snapshot-row {
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
}

.snapshot-row span {
  color: rgba(29, 29, 31, 0.52);
  font-size: 0.94rem;
}

.hero__strata {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.strata {
  position: absolute;
  inset-inline: -8%;
  border-radius: 50%;
  opacity: 0.98;
  filter: blur(0.2px);
  transform-origin: center;
  animation: strataShift 10s ease-in-out infinite alternate;
}

.strata--a {
  inset-block-start: 14%;
  height: 32%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3) 40%, rgba(0, 113, 227, 0.12));
}

.strata--b {
  inset-block-start: 42%;
  height: 26%;
  background: linear-gradient(90deg, rgba(0, 113, 227, 0.12), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  animation-duration: 19s;
}

.strata--c {
  inset-block-end: -8%;
  height: 34%;
  background: linear-gradient(90deg, rgba(229, 232, 238, 0.9), rgba(255, 255, 255, 0.36) 45%, rgba(214, 229, 255, 0.68));
  animation-duration: 22s;
}

.route-line {
  position: absolute;
  display: block;
  overflow: hidden;
}

.route-line::before,
.route-line::after {
  content: "";
  position: absolute;
}

.route-line--hero {
  inset: auto 6% 8% 6%;
  height: 5rem;
}

.route-line--visual {
  inset: auto 8% 21% 8%;
  height: 2.8rem;
  z-index: 1;
}

.route-line--snapshot {
  inset: auto 12% 8% 12%;
  height: 2.2rem;
  z-index: 1;
}

.route-line--hero::before,
.route-line--process::before,
.route-line--visual::before,
.route-line--snapshot::before {
  inset: 50% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(29, 29, 31, 0), rgba(0, 113, 227, 0.26), rgba(29, 29, 31, 0));
  background-size: 180% 100%;
  animation: lineTravel 6.4s linear infinite;
  opacity: 0.7;
}

.route-line--hero::after,
.route-line--process::after,
.route-line--visual::after,
.route-line--snapshot::after {
  display: none;
}

.proof-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 3.4rem;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.proof-strip::after {
  display: none;
}

.proof-strip__item {
  position: relative;
  padding: 1.15rem 1.2rem 1.2rem;
  min-width: 0;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.reveal.is-visible.proof-strip .proof-strip__item {
  animation: softLiftIn 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.is-visible.proof-strip .proof-strip__item:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal.is-visible.proof-strip .proof-strip__item:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal.is-visible.proof-strip .proof-strip__item:nth-child(4) {
  animation-delay: 0.24s;
}

.proof-strip__item:not(:last-child) {
  border-right: 0;
}

.proof-strip__eyebrow {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: rgba(29, 29, 31, 0.4);
}

.proof-strip__item strong {
  display: block;
  margin-top: 0.45rem;
  line-height: 1.35;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.section-cta {
  margin-top: 1.5rem;
}

.section-shell--premium {
  padding: 1.6rem;
  border: 1px solid rgba(29, 29, 31, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 248, 250, 0.82)),
    linear-gradient(120deg, rgba(0, 113, 227, 0.035), transparent 42%, rgba(214, 229, 255, 0.14));
  box-shadow: var(--shadow);
}

.section-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.section-topline .section-label {
  margin-bottom: 0;
}

.section-topline--tight {
  margin-bottom: 1.2rem;
}

.section-topline--stack {
  align-items: flex-start;
  gap: 1rem;
}

.section-topline__copy {
  display: grid;
  gap: 0.6rem;
  padding-top: 0.25rem;
}

.section-topline__copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-kicker {
  display: block;
  margin: 0;
  padding-inline-start: 0.06em;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(29, 29, 31, 0.5);
  line-height: 1.35;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ore);
}

.section-link::after {
  content: "->";
  transition: transform 180ms ease;
}

.section-link:hover::after {
  transform: translateX(0.18rem);
}

.hero-section-link {
  margin-top: 1rem;
}

.section-block {
  padding: clamp(3.4rem, 6vw, 5.2rem) 0 0;
}

.section-shell,
.contact-shell,
.portfolio-group {
  position: relative;
  overflow: hidden;
  border-radius: 2.3rem;
}

.section-shell::before,
.contact-shell::before {
  content: "";
  position: absolute;
  inset: auto auto -20% -12%;
  width: 38%;
  height: 70%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.1), rgba(255, 255, 255, 0) 72%);
  filter: blur(24px);
  opacity: 0.75;
  animation: ambientDrift 15s ease-in-out infinite alternate;
  pointer-events: none;
}

.section-shell > *,
.contact-shell > * {
  position: relative;
  z-index: 1;
}

.section-shell {
  padding: 1.4rem 1.25rem 0;
}

.section-block--contrast .section-shell,
.section-block--contact .section-shell {
  padding-top: 0;
}

.section-intro,
.contact-copy,
.portfolio-group__intro {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-label,
.footer-label,
.family-label,
.feature-row__eyebrow,
.portfolio-row__eyebrow {
  color: rgba(29, 29, 31, 0.42);
}

.section-intro h2,
.product-panel h2,
.contact-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  color: var(--ink);
}

.section-intro p,
.contact-copy p,
.portfolio-group__intro p {
  margin-top: 1rem;
  color: var(--ink-soft);
  max-width: 42rem;
}

.about-grid,
.industry-grid,
.product-overview,
.product-specs,
.footer-grid {
  display: grid;
  gap: 1rem;
}

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

.home-hero {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.2rem;
  min-height: 78vh;
  padding-bottom: 4rem;
}

.hero-copy--home {
  max-width: 58rem;
  margin: 0 auto;
  text-align: center;
}

.hero-copy--home h1 {
  max-width: 15ch;
}

.hero-copy--home .hero-title-stack {
  max-width: 15ch;
  font-size: clamp(3.1rem, 7.4vw, 6rem);
}

.hero-copy--home h1,
.hero-copy--home .hero-text {
  margin-inline: auto;
}

.hero-copy--home .hero-text {
  max-width: 46rem;
}

.hero-copy--home .hero-actions {
  justify-content: center;
}

body.is-ready .hero-copy > * {
  animation: softLiftIn 860ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-ready .hero-copy > *:nth-child(2) {
  animation-delay: 0.08s;
}

body.is-ready .hero-copy > *:nth-child(3) {
  animation-delay: 0.16s;
}

body.is-ready .hero-copy > *:nth-child(4) {
  animation-delay: 0.24s;
}

body.is-ready .hero-copy > *:nth-child(5) {
  animation-delay: 0.32s;
}

body.is-ready .hero-copy > *:nth-child(6) {
  animation-delay: 0.4s;
}

body.is-ready .hero-copy > *:nth-child(7) {
  animation-delay: 0.48s;
}

.home-poster {
  position: relative;
  display: grid;
  min-height: 28rem;
  will-change: transform;
  animation: surfaceFloat 9s ease-in-out infinite;
}

.home-poster__surface {
  position: relative;
  min-height: 28rem;
  padding: 1.55rem;
  border-radius: calc(var(--radius-xl) + 0.45rem);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.96), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 246, 248, 0.92));
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.home-poster__surface::before,
.product-poster__surface::before {
  content: "";
  position: absolute;
  inset: -20% -12%;
  background:
    radial-gradient(circle at 18% 24%, rgba(0, 113, 227, 0.1), transparent 24%),
    radial-gradient(circle at 76% 68%, rgba(0, 113, 227, 0.08), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34) 45%, rgba(255, 255, 255, 0) 75%);
  opacity: 0.9;
  transform: translate3d(-3%, 0, 0);
  animation: ambientSweep 12s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
  pointer-events: none;
}

.home-poster__surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 24%, rgba(255, 255, 255, 0.48) 50%, transparent 72%);
  transform: translateX(-120%);
  animation: specimenSweep 7.5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  pointer-events: none;
}

.home-poster__summary,
.home-poster__metrics {
  position: relative;
  z-index: 2;
}

.home-poster__summary {
  max-width: 30rem;
  padding: 1.2rem 0 0;
}

.home-poster__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
}

.home-poster__summary strong {
  display: block;
  margin-top: 0.65rem;
  max-width: 12ch;
  font-size: clamp(2.2rem, 3.4vw, 3.3rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.home-poster__summary p:last-child {
  margin: 0.95rem 0 0;
  max-width: 28rem;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.66;
  font-size: 1rem;
}

.home-poster__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 7.1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.home-metric {
  padding: 0 1.05rem;
  min-width: 0;
  animation: none;
}

.home-metric:first-child {
  padding-left: 0;
}

.home-metric:not(:last-child) {
  border-right: 1px solid rgba(29, 29, 31, 0.08);
}

.home-metric span {
  display: block;
  margin-bottom: 0.38rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
}

.home-metric strong {
  display: block;
  max-width: 18ch;
  line-height: 1.35;
  font-size: 1.04rem;
  letter-spacing: -0.03em;
}

body.is-ready .home-poster__summary {
  animation: softLiftIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

body.is-ready .home-poster__metrics {
  animation: softLiftIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.home-ledger {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: start;
  padding-top: 1rem;
}

.home-ledger__intro {
  max-width: 34rem;
}

.home-ledger__intro h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.home-ledger__intro p {
  margin: 1.1rem 0 0;
  line-height: 1.78;
  color: var(--ink-soft);
}

.home-ledger__rows {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.home-ledger-row {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.home-ledger-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--ore);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-ledger-row strong {
  display: block;
  margin: 0 0 0.32rem;
  font-size: 1.08rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.home-ledger-row p {
  margin: 0;
  line-height: 1.72;
  color: var(--ink-soft);
}

.reveal.is-visible.home-ledger-row {
  animation: softLiftIn 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.corridor-stage {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border-radius: calc(var(--radius-xl) + 0.25rem);
  background:
    radial-gradient(circle at 16% 18%, rgba(96, 157, 233, 0.2), transparent 24%),
    radial-gradient(circle at 86% 72%, rgba(78, 134, 218, 0.18), transparent 24%),
    linear-gradient(180deg, #0e2039 0%, #102746 54%, #143055 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 56px rgba(5, 13, 24, 0.22);
}

.corridor-stage::before,
.corridor-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.corridor-stage::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 7.5rem 7.5rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08));
}

.corridor-stage::after {
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1), transparent 18%),
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.08), transparent 16%);
  opacity: 0.75;
}

.corridor-stage__top,
.corridor-stage__body {
  position: relative;
  z-index: 1;
}

.corridor-stage__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.corridor-stage__intro {
  max-width: 44rem;
}

.corridor-stage__top .section-label {
  margin: 0;
  color: rgba(225, 236, 252, 0.62);
}

.corridor-stage__top h2 {
  margin: 0;
  max-width: 12ch;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.corridor-stage__top p:last-child {
  margin: 1rem 0 0;
  color: rgba(226, 235, 247, 0.76);
  line-height: 1.74;
}

.corridor-stage__link,
.corridor-stage__link:hover,
.corridor-stage__link:focus-visible {
  color: rgba(235, 243, 255, 0.96);
}

.corridor-stage__body {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 2rem;
  align-items: start;
  padding-top: 1.4rem;
}

.corridor-stage__hub {
  position: relative;
  min-height: 100%;
  padding: 1.45rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 24% 18%, rgba(150, 198, 255, 0.16), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.corridor-stage__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(229, 237, 249, 0.56);
}

.corridor-stage__hub-mark {
  position: relative;
  width: 8.8rem;
  aspect-ratio: 1;
  margin-bottom: 1.35rem;
  display: grid;
  place-items: center;
}

.corridor-stage__hub-ring,
.corridor-stage__hub-core {
  position: absolute;
  border-radius: 50%;
}

.corridor-stage__hub-ring--outer {
  inset: 0;
  border: 1px solid rgba(190, 222, 255, 0.18);
  animation: corridorHubOrbit 7.6s linear infinite;
}

.corridor-stage__hub-ring--inner {
  inset: 18%;
  border: 1px solid rgba(221, 236, 255, 0.3);
  animation: corridorHubPulse 3.1s ease-in-out infinite;
}

.corridor-stage__hub-core {
  inset: 35%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 1), rgba(218, 235, 255, 0.98) 54%, rgba(110, 168, 244, 0.96) 100%);
  box-shadow:
    0 0 0 0.55rem rgba(142, 193, 255, 0.12),
    0 0 2.5rem rgba(148, 201, 255, 0.24);
}

.corridor-stage__hub h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.corridor-stage__hub p:last-child {
  margin: 0.8rem 0 0;
  max-width: 22rem;
  color: rgba(228, 236, 247, 0.72);
  line-height: 1.72;
}

.corridor-stage__lanes {
  display: grid;
  gap: 0.9rem;
}

.corridor-lane {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 18.5rem);
  align-items: center;
  gap: 1rem;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.corridor-lane__rail {
  position: relative;
  display: block;
  min-width: 0;
  height: 3.4rem;
}

.corridor-lane__track,
.corridor-lane__glow {
  position: absolute;
  left: 0;
  right: 0.25rem;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.corridor-lane__track {
  background: linear-gradient(90deg, rgba(190, 219, 255, 0.14), rgba(190, 219, 255, 0.26) 54%, rgba(190, 219, 255, 0.1));
}

.corridor-lane__glow {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(204, 230, 255, 0.92) 36%, rgba(204, 230, 255, 0));
  transform: translateY(-50%) scaleX(0.18);
  transform-origin: left center;
  opacity: 0;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease;
}

.corridor-lane__terminal {
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 0.32rem rgba(191, 224, 255, 0.1);
  transform: translateY(-50%);
}

.corridor-lane__ship {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.05rem;
  height: 1.35rem;
  transform: translate(-0.15rem, -50%);
  opacity: 0;
}

.corridor-lane__ship::before,
.corridor-lane__ship::after {
  content: "";
  position: absolute;
}

.corridor-lane__ship::before {
  inset: auto 0 0 0;
  height: 0.68rem;
  background: rgba(255, 255, 255, 0.96);
  clip-path: polygon(0 35%, 76% 35%, 100% 58%, 88% 100%, 14% 100%);
  filter: drop-shadow(0 8px 12px rgba(3, 8, 15, 0.28));
}

.corridor-lane__ship::after {
  left: 0.76rem;
  top: 0.04rem;
  width: 0.42rem;
  height: 0.52rem;
  border-radius: 0.16rem 0.16rem 0 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0.48rem 0.12rem 0 -0.08rem rgba(191, 223, 255, 0.94);
}

.corridor-lane__card {
  display: grid;
  gap: 0.18rem;
  padding: 0.95rem 1rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.corridor-lane__meta {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(226, 236, 250, 0.56);
}

.corridor-lane__card strong {
  font-size: 1.1rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.98);
}

.corridor-lane__countries {
  color: rgba(224, 234, 247, 0.72);
  line-height: 1.55;
}

.corridor-lane:hover .corridor-lane__card,
.corridor-lane:focus-visible .corridor-lane__card {
  transform: translateY(-1px);
  border-color: rgba(196, 225, 255, 0.22);
}

.corridor-lane:focus-visible {
  outline: none;
}

.corridor-lane.is-active .corridor-lane__glow {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.corridor-lane.is-active .corridor-lane__ship {
  opacity: 1;
  animation: corridorShipTravel 3.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.corridor-lane.is-active .corridor-lane__terminal {
  animation: corridorTerminalPulse 2.4s ease-out infinite;
}

.corridor-lane.is-active .corridor-lane__card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 12% 16%, rgba(152, 205, 255, 0.14), transparent 34%);
  border-color: rgba(204, 231, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 28px rgba(6, 16, 29, 0.18);
}

@keyframes corridorHubOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes corridorHubPulse {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.66;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes corridorShipTravel {
  0% {
    left: 0;
    transform: translate(-0.15rem, -50%) scale(0.94);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  84% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 2.05rem);
    transform: translate(0, -50%) scale(1);
    opacity: 0;
  }
}

@keyframes corridorTerminalPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(191, 224, 255, 0.34);
  }
  100% {
    box-shadow: 0 0 0 0.8rem rgba(191, 224, 255, 0);
  }
}

.home-family-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.home-family-row {
  position: relative;
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  transition: transform 200ms ease, border-color 200ms ease;
}

.home-family-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 22%;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 113, 227, 0.72), rgba(0, 113, 227, 0));
  background-size: 180% 100%;
  transform: scaleX(0.22);
  transform-origin: left center;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  animation: lineTravel 4.8s linear infinite;
  opacity: 0.42;
}

.home-family-row:hover,
.home-family-row:focus-visible {
  transform: translateX(0.22rem);
}

.home-family-row:hover::after,
.home-family-row:focus-visible::after {
  transform: scaleX(1);
  opacity: 0.9;
}

.home-family-row__index {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 800;
  color: rgba(29, 29, 31, 0.14);
}

.home-family-row__count {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
}

.home-family-row__main h3 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.home-family-row__main p {
  margin: 0.8rem 0 0;
  max-width: 38rem;
  color: var(--ink-soft);
  line-height: 1.72;
}

.home-family-row__products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.home-family-row__product {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 2.65rem;
  padding: 0.64rem 0.78rem 0.64rem 0.96rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(29, 29, 31, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(29, 29, 31, 0.05);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.home-family-row__product span {
  line-height: 1.2;
}

.home-family-row__product em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--ore);
  font-style: normal;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.home-family-row__product:hover,
.home-family-row__product:focus-visible {
  transform: translateY(-1px);
  background: white;
  border-color: rgba(0, 113, 227, 0.16);
  box-shadow: 0 16px 32px rgba(29, 29, 31, 0.08);
  color: var(--ink);
}

.home-family-row__product:hover em,
.home-family-row__product:focus-visible em {
  transform: translateX(0.08rem);
  background: rgba(0, 113, 227, 0.12);
}

.home-family-row__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8rem;
  min-height: 2.95rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ore);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.home-family-row:hover .home-family-row__cta,
.home-family-row:focus-visible .home-family-row__cta {
  transform: translateX(0.16rem);
  background: var(--ore);
  border-color: transparent;
  color: white;
}

.reveal.is-visible.home-family-row {
  animation: softLiftIn 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
  padding-top: 1rem;
}

.home-split__panel {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.home-split__panel h2 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.home-split__panel > p:last-of-type {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.home-process-list {
  display: grid;
  gap: 0;
  margin-top: 1.4rem;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.home-process-list .process-step {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  min-height: 0;
}

.home-process-list .process-step span {
  margin-bottom: 0;
}

.home-process-list .process-step__body {
  min-width: 0;
}

.home-process-list .process-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.06rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.home-process-list .process-step p {
  margin: 0;
}

.process-media-stage {
  margin-top: 1.4rem;
  padding: 1rem;
  border-radius: calc(var(--radius-xl) + 0.2rem);
  border: 1px solid rgba(29, 29, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 249, 0.94)),
    radial-gradient(circle at 18% 0%, rgba(0, 113, 227, 0.08), transparent 28%);
  box-shadow: 0 22px 42px rgba(29, 29, 31, 0.08);
}

.process-media-stage__header {
  display: grid;
  gap: 0.38rem;
  margin-bottom: 0.95rem;
}

.process-media-stage__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
}

.process-media-stage__copy {
  margin: 0;
  max-width: 34rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.96rem;
}

.process-media-stage__lead {
  margin-bottom: 0.95rem;
}

.process-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.process-media-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  align-self: start;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 0.2rem);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 38px rgba(29, 29, 31, 0.09);
}

.process-media-card--video {
  box-shadow:
    0 0 0 1px rgba(0, 113, 227, 0.12),
    0 24px 44px rgba(29, 29, 31, 0.11);
}

.process-media-card--lead {
  grid-template-rows: minmax(0, 1fr) auto;
}

.process-media-card::after {
  display: none;
}

.process-media-card img,
.process-media-card video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.process-media-card--lead img,
.process-media-card--lead video {
  aspect-ratio: 16 / 9;
}

.process-media-card--quarry img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 42%;
}

.process-media-card--wide-view img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(248, 249, 251, 0.98), rgba(241, 244, 248, 0.96));
  padding: 0.75rem;
}

.process-media-card video {
  background: #111827;
}

.process-media-card figcaption {
  margin: 0;
  padding: 0.88rem 1rem 1rem;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 251, 0.94));
  color: rgba(29, 29, 31, 0.84);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
  text-wrap: balance;
}

.reveal.is-visible.process-step {
  animation: softLiftIn 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.is-visible.process-step:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal.is-visible.process-step:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal.is-visible.process-step:nth-child(4) {
  animation-delay: 0.24s;
}

.ceo-spotlight {
  max-width: 68rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.ceo-spotlight__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(19rem, 0.72fr);
  gap: 2.2rem;
  align-items: start;
}

.ceo-spotlight__content {
  min-width: 0;
}

.ceo-spotlight h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.ceo-spotlight__quote {
  margin: 1.2rem 0 0;
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--ink);
}

.ceo-spotlight__body {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
  max-width: 46rem;
}

.ceo-spotlight__body p {
  margin: 0;
  line-height: 1.75;
  color: var(--ink-soft);
}

.ceo-spotlight__meta {
  margin: 1.35rem 0 0;
  color: rgba(29, 29, 31, 0.92);
  font-weight: 700;
  line-height: 1.55;
  display: grid;
  gap: 0.08rem;
  padding-inline-start: 0.04em;
}

.ceo-spotlight__actions {
  margin-top: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ceo-spotlight__media {
  position: relative;
  margin: 0;
  border-radius: calc(var(--radius-lg) + 0.1rem);
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 245, 248, 0.9)),
    linear-gradient(120deg, rgba(0, 113, 227, 0.05), transparent 46%);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.3;
}

.ceo-spotlight__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 24%, rgba(255, 255, 255, 0.34) 50%, transparent 74%);
  transform: translateX(-120%);
  animation: specimenSweep 8.5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  pointer-events: none;
}

.ceo-spotlight__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
}

.reveal.is-visible.ceo-spotlight__grid > * {
  animation: softLiftIn 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.is-visible.ceo-spotlight__grid > *:nth-child(2) {
  animation-delay: 0.08s;
}

.operating-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 2rem;
  align-items: start;
}

.operating-stage__intro {
  max-width: 34rem;
}

.operating-stage__intro h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.operating-stage__intro p {
  margin: 1.15rem 0 0;
  line-height: 1.78;
  color: var(--ink-soft);
  max-width: 33rem;
}

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

.operating-card {
  position: relative;
  min-height: 13rem;
  padding: 1.45rem;
  border-radius: calc(var(--radius-lg) + 0.1rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 250, 252, 0.78)),
    linear-gradient(140deg, rgba(0, 113, 227, 0.04), transparent 45%);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.operating-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -34% auto;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.08), transparent 66%);
  filter: blur(6px);
}

.operating-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(29, 29, 31, 0.1);
}

.operating-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--ore);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.operating-card h3,
.split-stage__panel h2 {
  margin: 1rem 0 0.7rem;
  font-size: 1.34rem;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.operating-card p {
  margin: 0;
  line-height: 1.72;
  color: var(--ink-soft);
}

.about-point,
.industry-item,
.product-panel,
.process-step,
.portfolio-row,
.feature-row,
.contact-shell,
.faq-item,
.portfolio-group {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: var(--shadow);
}

.about-point,
.industry-item,
.product-panel,
.process-step,
.portfolio-group {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.about-point h3,
.industry-item h3,
.process-step h3,
.feature-row h3,
.portfolio-row h3 {
  margin: 0 0 0.7rem;
  font-size: 1.22rem;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.about-point p,
.industry-item p,
.process-step p {
  color: var(--ink-soft);
}

.ceo-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
  padding: 1.8rem;
  border-radius: calc(var(--radius-xl) + 0.15rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 248, 250, 0.82)),
    linear-gradient(120deg, rgba(0, 113, 227, 0.04), transparent 40%, rgba(214, 229, 255, 0.18));
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.ceo-note::after {
  content: "";
  position: absolute;
  inset: auto -8% -28% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.08), transparent 66%);
  filter: blur(8px);
}

.ceo-note__lead,
.ceo-note__body {
  position: relative;
  z-index: 1;
}

.ceo-note__quote {
  margin: 1.4rem 0 0;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--ink);
}

.ceo-note__body {
  display: grid;
  gap: 1rem;
}

.ceo-note__body p {
  margin: 0;
  line-height: 1.75;
  color: var(--ink-soft);
}

.ceo-note__meta {
  padding-top: 0.8rem;
  color: rgba(29, 29, 31, 0.92) !important;
  font-weight: 700;
}

.family-bands {
  display: grid;
  gap: 1rem;
}

.family-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.7rem 1.7rem 2.35rem;
  border-radius: calc(var(--radius-lg) + 0.25rem);
  border: 1px solid rgba(29, 29, 31, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(250, 250, 252, 0.78)),
    linear-gradient(120deg, rgba(0, 113, 227, 0.04), transparent 42%, rgba(214, 229, 255, 0.18));
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
  position: relative;
  overflow: hidden;
}

.family-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.52) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.family-band:hover,
.portfolio-row:hover,
.feature-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(29, 29, 31, 0.1);
}

.family-band:hover::after {
  transform: translateX(120%);
}

.family-band__head h3 {
  margin: 0 0 0.7rem;
  font-size: 1.95rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.family-band__head {
  display: grid;
  gap: 0.75rem;
}

.family-copy {
  color: var(--ink-soft);
  max-width: 30rem;
}

.family-band__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.15rem;
}

.family-band__meta span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.4);
}

.family-band__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ore);
}

.family-band__cta::after {
  content: "->";
  transition: transform 180ms ease;
}

.family-band:hover .family-band__cta::after {
  transform: translateX(0.16rem);
}

.family-band__beam {
  position: absolute;
  left: 1.7rem;
  right: 1.7rem;
  bottom: 1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 113, 227, 0.32), rgba(29, 29, 31, 0.04));
  overflow: hidden;
}

.family-band__beam::after {
  content: "";
  position: absolute;
  top: -0.35rem;
  left: 0;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #53a3ff, #0071e3);
  box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.18);
  animation: bandRoute 5.8s linear infinite;
}

.family-band__links,
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.product-link,
.related-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.5rem;
  padding: 0.85rem 1.05rem 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
  overflow: hidden;
}

.product-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.55) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.product-link:hover,
.product-link:focus-visible,
.related-links a:hover,
.related-links a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(29, 29, 31, 0.08);
  border-color: rgba(0, 113, 227, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.product-link:hover::before,
.product-link:focus-visible::before {
  transform: translateX(130%);
}

.product-link__name,
.product-link__arrow {
  position: relative;
  z-index: 1;
}

.product-link__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--ore);
  font-size: 0.88rem;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
  animation: arrowDrift 3.8s ease-in-out infinite;
}

.product-link:hover .product-link__arrow,
.product-link:focus-visible .product-link__arrow {
  transform: translateX(0.2rem);
  background: var(--ore);
  color: white;
}

.reveal.is-visible .product-link {
  animation: chipEnter 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.is-visible .product-link:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal.is-visible .product-link:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal.is-visible .product-link:nth-child(4) {
  animation-delay: 0.24s;
}

.split-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.1rem;
}

.split-stage__panel {
  position: relative;
  padding: 1.6rem;
  border-radius: calc(var(--radius-lg) + 0.15rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(249, 249, 251, 0.8)),
    linear-gradient(140deg, rgba(0, 113, 227, 0.035), transparent 44%);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.split-stage__panel::after {
  content: "";
  position: absolute;
  inset: auto -14% -30% auto;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.06), transparent 68%);
  filter: blur(8px);
}

.split-stage__panel > * {
  position: relative;
  z-index: 1;
}

.split-stage__panel h2 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.split-stage__panel p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.split-stage__panel .industry-rail {
  margin-top: 1.45rem;
}

.split-stage__panel--process {
  display: grid;
  align-content: start;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.45rem;
}

.feature-stack,
.portfolio-list {
  display: grid;
  gap: 1rem;
}

.feature-row,
.portfolio-row {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 1.2rem;
  align-items: start;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 252, 0.9)),
    linear-gradient(120deg, rgba(0, 113, 227, 0.04), transparent 42%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-row p,
.portfolio-row p {
  color: var(--ink-soft);
}

.about-frame {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.principle-stack {
  display: grid;
  gap: 0;
  padding-top: 0.2rem;
}

.principle-line {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.principle-line:first-child {
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.principle-line strong {
  display: block;
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.principle-line p {
  margin: 0;
  line-height: 1.7;
  color: var(--ink-soft);
}

.industry-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 2rem;
}

.industry-line {
  position: relative;
  padding: 0.1rem 0 1rem;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  transition: transform 180ms ease;
}

.industry-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 22%;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 113, 227, 0.65), rgba(0, 113, 227, 0));
  background-size: 170% 100%;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  animation: lineTravel 5.6s linear infinite;
  opacity: 0.4;
}

.reveal.is-visible.industry-line::after {
  transform: scaleX(1);
  opacity: 0.82;
}

.industry-line:hover {
  transform: translateX(0.15rem);
}

.industry-line h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.industry-line p {
  margin: 0;
  line-height: 1.7;
  color: var(--ink-soft);
}

.process-shell {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 0.8rem;
}

.route-line--process {
  inset: 0 0 auto;
  height: 2rem;
}

.route-line--process::after {
  animation-duration: 7.8s;
}

.process-step {
  padding-top: 3rem;
}

.process-grid .process-step {
  min-height: 11.5rem;
  padding-top: 1.35rem;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 252, 0.9)),
    linear-gradient(110deg, rgba(0, 113, 227, 0.04), transparent 48%);
}

.contact-details {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.2rem;
  color: var(--ink-soft);
}

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

.contact-details a {
  font-weight: 700;
  color: var(--ink);
}

.inquiry-form {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: var(--shadow);
}

.inquiry-form::before {
  content: "";
  position: absolute;
  inset: auto -10% -22% auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.1), transparent 68%);
}

.form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.55rem;
}

.form-grid label span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: rgba(29, 29, 31, 0.46);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(245, 245, 247, 0.92);
  padding: 0.95rem 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.form-grid input[readonly] {
  color: rgba(29, 29, 31, 0.72);
}

.form-grid__attachment input[type="file"] {
  padding: 0.85rem 1rem;
  background: rgba(245, 245, 247, 0.92);
}

.form-grid__attachment input[type="file"]::file-selector-button {
  margin-right: 0.9rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.12);
  color: var(--blue);
  font-weight: 700;
  padding: 0.65rem 1rem;
  cursor: pointer;
}

.form-field-help {
  color: rgba(29, 29, 31, 0.48);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-grid textarea {
  resize: vertical;
  min-height: 7rem;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(0, 113, 227, 0.34);
  background: white;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.form-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.form-note {
  color: rgba(29, 29, 31, 0.5);
  font-size: 0.9rem;
  margin: 0;
  max-width: 20rem;
}

.form-note.is-loading {
  color: rgba(29, 29, 31, 0.62);
}

.form-note.is-success {
  color: #0f6b38;
}

.form-note.is-error {
  color: #b42318;
}

.inquiry-form.is-submitting {
  pointer-events: none;
}

.inquiry-form button.is-loading {
  opacity: 0.86;
}

.bullet-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.document-actions-shell {
  display: grid;
  gap: 0.82rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.document-actions-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
}

.section-block--documents {
  padding-top: 0;
}

.product-documents-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.4rem 1.6rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.84), transparent 30%),
    linear-gradient(180deg, rgba(248, 249, 251, 0.96), rgba(239, 243, 247, 0.96));
  box-shadow: 0 18px 32px rgba(29, 29, 31, 0.08);
}

.product-documents-band__intro {
  min-width: 0;
}

.product-documents-band__intro h2 {
  margin: 0.38rem 0 0;
  font-size: clamp(1.32rem, 2.6vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.doc-action {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 113, 227, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.doc-action:hover,
.doc-action:focus-visible {
  transform: translateY(-1px);
  background: rgba(0, 113, 227, 0.08);
  border-color: rgba(0, 113, 227, 0.28);
}

.doc-action--ghost {
  color: rgba(29, 29, 31, 0.78);
  border-color: rgba(29, 29, 31, 0.08);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--jade), var(--ore));
}

.product-hero {
  gap: 3rem;
  align-items: center;
}

.hero-copy--product {
  max-width: 34rem;
}

.product-poster {
  position: relative;
  display: grid;
  align-self: stretch;
  min-width: 0;
  animation: surfaceFloat 8.5s ease-in-out infinite;
}

.product-poster__surface {
  position: relative;
  min-height: 33rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius-xl) + 0.2rem);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.98), transparent 24%),
    linear-gradient(180deg, rgba(247, 247, 249, 0.96), rgba(241, 243, 247, 0.92));
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.product-poster__surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 24%, rgba(255, 255, 255, 0.48) 50%, transparent 72%);
  transform: translateX(-120%);
  animation: specimenSweep 7.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  pointer-events: none;
}

.product-poster__eyebrow,
.product-poster__metrics,
.product-poster__caption,
.product-poster__title,
.product-poster__copy {
  position: relative;
  z-index: 2;
}

.product-poster__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
}

.product-poster__title {
  display: block;
  margin-top: 0.7rem;
  max-width: 10ch;
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: var(--ink);
}

.product-poster__copy {
  margin: 1rem 0 0;
  max-width: 28rem;
  color: var(--ink-soft);
  line-height: 1.72;
}

.product-poster__visual {
  position: relative;
  z-index: 1;
  width: min(100%, 22rem);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin: 1.35rem auto 0;
  padding: 0.95rem;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow: 0 24px 44px rgba(29, 29, 31, 0.12);
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.96), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 244, 247, 0.92));
}

.product-poster__visual::before {
  content: "";
  position: absolute;
  inset: auto 12% 1rem;
  height: 1.2rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(23, 28, 32, 0.16), rgba(23, 28, 32, 0) 72%);
  filter: blur(12px);
  pointer-events: none;
}

.product-poster__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.34) 48%, transparent 76%);
  transform: translateX(-120%);
  animation: specimenSweep 8.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  pointer-events: none;
}

.product-poster__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-gallery.product-poster__visual {
  display: grid;
  gap: 0.85rem;
  aspect-ratio: auto;
  place-items: stretch;
  padding: 0.85rem;
}

.product-gallery.product-poster__visual::before,
.product-gallery.product-poster__visual::after {
  display: none;
}

.product-gallery__viewport {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(180deg, rgba(239, 242, 246, 0.98), rgba(225, 230, 237, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 18px 30px rgba(29, 29, 31, 0.1);
}

.product-gallery__viewport::before {
  content: "";
  position: absolute;
  inset: auto 14% 0.8rem;
  height: 1rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(17, 23, 27, 0.14), rgba(17, 23, 27, 0) 72%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 1;
}

.product-gallery__viewport::after {
  display: none;
}

.product-gallery__track {
  display: flex;
  height: 100%;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.product-gallery__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.65rem;
  overflow: hidden;
}

.product-gallery__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-gallery__slide--sample {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.44), transparent 26%),
    linear-gradient(180deg, rgba(245, 247, 249, 0.98), rgba(232, 236, 241, 0.96));
}

.product-gallery__slide--sample::before {
  display: none;
}

.product-gallery__slide--texture {
  padding: 0.5rem;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.36), transparent 28%),
    linear-gradient(180deg, rgba(239, 241, 238, 0.98), rgba(222, 226, 223, 0.98));
}

.product-gallery__slide--texture::before {
  display: none;
}

.product-gallery__slide img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  backface-visibility: hidden;
  transform: translateZ(0);
  object-fit: contain;
  object-position: center;
}

.product-gallery__slide--sample img {
  object-fit: contain;
}

.product-gallery__slide--texture img {
  object-fit: cover;
}

.product-gallery__controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
}

.product-gallery__arrow {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(29, 29, 31, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(29, 29, 31, 0.08);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.product-gallery__arrow:hover,
.product-gallery__arrow:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(29, 29, 31, 0.16);
}

.product-gallery__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-gallery__dot {
  min-height: 2.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(29, 29, 31, 0.64);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.product-gallery__dot:hover,
.product-gallery__dot:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(29, 29, 31, 0.14);
  color: var(--ink);
}

.product-gallery__dot.is-active {
  background: linear-gradient(135deg, rgba(29, 29, 31, 0.94), rgba(56, 63, 71, 0.92));
  border-color: rgba(29, 29, 31, 0.24);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 18px rgba(29, 29, 31, 0.14);
}

@media (max-width: 640px) {
  .product-gallery__controls {
    grid-template-columns: 1fr 1fr;
  }

  .product-gallery__dots {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .product-gallery__arrow:last-child {
    justify-self: end;
  }
}

.product-poster__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.product-poster__metric {
  padding: 0.92rem 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: 0 8px 20px rgba(29, 29, 31, 0.04);
  animation: cardBreathe 6.4s ease-in-out infinite;
  min-width: 0;
}

.product-poster__metric:nth-child(2) {
  animation-delay: 0.6s;
}

.product-poster__metric:nth-child(3) {
  animation-delay: 1.2s;
}

.product-poster__metric:nth-child(4) {
  animation-delay: 1.8s;
}

.product-poster__metric span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
}

.product-poster__metric strong {
  display: block;
  line-height: 1.45;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.product-poster__caption {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: 0 10px 24px rgba(29, 29, 31, 0.06);
}

.product-poster__caption p {
  margin: 0;
  line-height: 1.55;
  font-size: 0.93rem;
  color: rgba(29, 29, 31, 0.62);
}

body.is-ready .product-poster__eyebrow {
  animation: softLiftIn 820ms cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

body.is-ready .product-poster__title {
  animation: softLiftIn 860ms cubic-bezier(0.22, 1, 0.36, 1) 0.26s both;
}

body.is-ready .product-poster__copy {
  animation: softLiftIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}

body.is-ready .product-poster__metrics {
  animation: softLiftIn 940ms cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

body.is-ready .product-poster__caption {
  animation: softLiftIn 980ms cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.product-poster .route-line--snapshot {
  display: none;
}

.product-ledger {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.4rem;
  align-items: start;
}

.product-sheet {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
  border-radius: calc(var(--radius-lg) + 0.15rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 249, 251, 0.88)),
    linear-gradient(140deg, rgba(0, 113, 227, 0.03), transparent 46%);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: var(--shadow);
}

.product-sheet--full {
  grid-column: 1 / -1;
}

.product-sheet::after {
  content: "";
  position: absolute;
  inset: auto -18% -34% auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.08), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.product-sheet > * {
  position: relative;
  z-index: 1;
}

.reveal.is-visible.product-sheet .product-line,
.reveal.is-visible.product-sheet .product-info-row,
.reveal.is-visible.product-sheet .product-note,
.reveal.is-visible.product-sheet .form-pill,
.reveal.is-visible.product-sheet .product-tag-cloud span {
  animation: softLiftIn 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.is-visible.product-sheet .product-line:nth-child(2),
.reveal.is-visible.product-sheet .product-info-row:nth-child(2),
.reveal.is-visible.product-sheet .product-note:nth-child(2),
.reveal.is-visible.product-sheet .form-pill:nth-child(2),
.reveal.is-visible.product-sheet .product-tag-cloud span:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal.is-visible.product-sheet .product-line:nth-child(3),
.reveal.is-visible.product-sheet .product-info-row:nth-child(3),
.reveal.is-visible.product-sheet .product-note:nth-child(3),
.reveal.is-visible.product-sheet .form-pill:nth-child(3),
.reveal.is-visible.product-sheet .product-tag-cloud span:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal.is-visible.product-sheet .product-line:nth-child(4),
.reveal.is-visible.product-sheet .product-info-row:nth-child(4),
.reveal.is-visible.product-sheet .product-note:nth-child(4),
.reveal.is-visible.product-sheet .form-pill:nth-child(4),
.reveal.is-visible.product-sheet .product-tag-cloud span:nth-child(4) {
  animation-delay: 0.24s;
}

.product-sheet h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(1.95rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.product-sheet__intro,
.product-sheet__body {
  margin-top: 0.95rem;
  max-width: 34rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.product-line-list,
.product-info-list {
  display: grid;
  gap: 0;
  margin-top: 1.35rem;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.product-line {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.product-line span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--ore);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-line strong {
  display: block;
  padding-top: 0.14rem;
  line-height: 1.45;
  font-size: 1.04rem;
  letter-spacing: -0.03em;
}

.product-info-row {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.product-info-row span {
  color: rgba(29, 29, 31, 0.46);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-info-row strong {
  display: block;
  line-height: 1.6;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.product-form-cloud {
  margin-top: 1.25rem;
}

.bentonite-grade-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  --grade-focus-angle: -90deg;
}

.bentonite-grade-stage::before {
  content: "";
  position: absolute;
  inset: auto auto -5rem -5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 157, 116, 0.2), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.bentonite-grade-copy,
.bentonite-grade-visual {
  position: relative;
  z-index: 1;
}

.bentonite-grade-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.bentonite-grade-copy h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.1rem, 3.5vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  color: var(--ink);
}

.bentonite-grade-copy__body {
  margin: 0;
  max-width: 34rem;
  color: var(--ink-soft);
  line-height: 1.82;
}

.bentonite-grade-reading {
  display: grid;
  gap: 0.7rem;
  max-width: 32rem;
  margin-top: 0.4rem;
  padding: 1.35rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 250, 0.92)),
    linear-gradient(135deg, rgba(0, 113, 227, 0.035), transparent 48%, rgba(127, 157, 116, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 20px 48px rgba(27, 38, 59, 0.09);
}

.bentonite-grade-reading__count {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--ore);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bentonite-grade-reading strong {
  display: block;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.bentonite-grade-reading p {
  margin: 0;
  max-width: 28rem;
  color: var(--ink-soft);
  line-height: 1.74;
}

.bentonite-grade-visual {
  min-height: 42rem;
  display: grid;
  place-items: center;
  isolation: isolate;
  --grade-orbit-radius: 14rem;
}

.bentonite-grade-visual::before,
.bentonite-grade-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.bentonite-grade-visual::before {
  inset: 12%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 0, rgba(227, 234, 240, 0.18) 44%, transparent 66%),
    conic-gradient(
      from calc(var(--grade-focus-angle) - 36deg),
      rgba(0, 113, 227, 0.22),
      rgba(255, 255, 255, 0) 22%,
      rgba(127, 157, 116, 0.18) 44%,
      rgba(255, 255, 255, 0) 62%,
      rgba(0, 113, 227, 0.16)
    );
  filter: blur(1px);
  opacity: 0.9;
  animation: bentoniteOrbitSheen 16s linear infinite;
}

.bentonite-grade-visual::after {
  inset: 19%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 68%);
  box-shadow: 0 0 140px rgba(184, 202, 223, 0.24);
  opacity: 0.7;
}

.bentonite-grade-visual__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(108, 126, 158, 0.14);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.bentonite-grade-visual__orbit--outer {
  width: calc(var(--grade-orbit-radius) * 2 + 6.4rem);
  height: calc(var(--grade-orbit-radius) * 2 + 6.4rem);
}

.bentonite-grade-visual__orbit--inner {
  width: calc(var(--grade-orbit-radius) * 2 - 2.2rem);
  height: calc(var(--grade-orbit-radius) * 2 - 2.2rem);
  border-style: dashed;
  border-color: rgba(108, 126, 158, 0.1);
}

.bentonite-grade-core {
  position: relative;
  z-index: 2;
  width: min(16rem, 58%);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 0.7rem;
  padding: 2rem;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.98), rgba(246, 248, 250, 0.92) 58%, rgba(233, 239, 243, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 26px 70px rgba(26, 37, 58, 0.15);
}

.bentonite-grade-core span {
  display: block;
  color: rgba(29, 29, 31, 0.42);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bentonite-grade-core strong {
  display: block;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.bentonite-grade-core p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.bentonite-grade-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7.9rem;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%) rotate(var(--grade-angle)) translateY(calc(var(--grade-orbit-radius) * -1));
  cursor: pointer;
  z-index: 3;
}

.bentonite-grade-node__inner {
  display: grid;
  justify-items: center;
  gap: 0.22rem;
  min-height: 5rem;
  padding: 0.9rem 0.7rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 250, 0.88)),
    linear-gradient(135deg, rgba(0, 113, 227, 0.02), transparent 45%, rgba(127, 157, 116, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 14px 32px rgba(31, 41, 63, 0.08);
  transform: rotate(calc(var(--grade-angle) * -1));
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.bentonite-grade-node__name {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.bentonite-grade-node__meta {
  display: block;
  color: rgba(29, 29, 31, 0.46);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bentonite-grade-node:hover .bentonite-grade-node__inner,
.bentonite-grade-node:focus-visible .bentonite-grade-node__inner {
  transform: rotate(calc(var(--grade-angle) * -1)) translateY(-0.16rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 18px 40px rgba(26, 37, 58, 0.12);
}

.bentonite-grade-node:focus-visible {
  outline: none;
}

.bentonite-grade-node.is-active .bentonite-grade-node__inner {
  border-color: rgba(0, 113, 227, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 244, 252, 0.94)),
    linear-gradient(135deg, rgba(0, 113, 227, 0.08), transparent 52%, rgba(127, 157, 116, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 22px 46px rgba(0, 113, 227, 0.16),
    0 0 0 0.4rem rgba(0, 113, 227, 0.08);
}

.reveal.is-visible .bentonite-grade-node {
  animation: bentoniteNodeRise 0.72s both;
  animation-delay: calc(var(--grade-index) * 70ms);
}

.salt-grade-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  --grade-focus-angle: -90deg;
}

.salt-grade-stage::before {
  content: "";
  position: absolute;
  inset: auto auto -4rem -4rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188, 214, 243, 0.24), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.salt-grade-copy,
.salt-grade-visual {
  position: relative;
  z-index: 1;
}

.salt-grade-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.salt-grade-copy h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.05rem, 3.35vw, 3.7rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  color: var(--ink);
}

.salt-grade-copy__body {
  margin: 0;
  max-width: 34rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.salt-grade-reading {
  display: grid;
  gap: 0.7rem;
  max-width: 31rem;
  margin-top: 0.35rem;
  padding: 1.3rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 251, 0.94)),
    linear-gradient(135deg, rgba(0, 113, 227, 0.035), transparent 46%, rgba(201, 221, 246, 0.14));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 18px 42px rgba(27, 38, 59, 0.08);
}

.salt-grade-reading__count {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--ore);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.salt-grade-reading strong {
  display: block;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.salt-grade-reading p {
  margin: 0;
  max-width: 28rem;
  color: var(--ink-soft);
  line-height: 1.72;
}

.salt-grade-visual {
  min-height: 38rem;
  display: grid;
  place-items: center;
  isolation: isolate;
  --grade-orbit-radius: 11.8rem;
}

.salt-grade-visual::before,
.salt-grade-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.salt-grade-visual::before {
  inset: 12%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.94) 0, rgba(231, 238, 246, 0.22) 44%, transparent 66%),
    conic-gradient(
      from calc(var(--grade-focus-angle) - 42deg),
      rgba(0, 113, 227, 0.18),
      rgba(255, 255, 255, 0) 26%,
      rgba(201, 221, 246, 0.22) 48%,
      rgba(255, 255, 255, 0) 68%,
      rgba(0, 113, 227, 0.14)
    );
  opacity: 0.94;
  animation: bentoniteOrbitSheen 17s linear infinite;
}

.salt-grade-visual::after {
  inset: 18%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), transparent 68%);
  box-shadow: 0 0 120px rgba(196, 214, 238, 0.22);
  opacity: 0.75;
}

.salt-grade-visual__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 31, 0.08);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.salt-grade-visual__orbit--outer {
  width: calc(var(--grade-orbit-radius) * 2 + 6rem);
  height: calc(var(--grade-orbit-radius) * 2 + 6rem);
}

.salt-grade-visual__orbit--inner {
  width: calc(var(--grade-orbit-radius) * 2 - 1.8rem);
  height: calc(var(--grade-orbit-radius) * 2 - 1.8rem);
  border-style: dashed;
  border-color: rgba(112, 133, 165, 0.1);
}

.salt-grade-core {
  position: relative;
  z-index: 2;
  width: min(15rem, 56%);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 0.68rem;
  padding: 1.9rem;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.94) 58%, rgba(234, 240, 246, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 24px 64px rgba(26, 37, 58, 0.12);
}

.salt-grade-core span {
  display: block;
  color: rgba(29, 29, 31, 0.42);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.salt-grade-core strong {
  display: block;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.salt-grade-core p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.salt-grade-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%) rotate(var(--grade-angle)) translateY(calc(var(--grade-orbit-radius) * -1));
  cursor: pointer;
  z-index: 3;
}

.salt-grade-node__inner {
  display: grid;
  justify-items: center;
  gap: 0.22rem;
  min-height: 5rem;
  padding: 0.9rem 0.65rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 251, 0.9)),
    linear-gradient(135deg, rgba(0, 113, 227, 0.03), transparent 48%, rgba(201, 221, 246, 0.14));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 32px rgba(31, 41, 63, 0.08);
  transform: rotate(calc(var(--grade-angle) * -1));
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.salt-grade-node__name {
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.salt-grade-node__meta {
  display: block;
  color: rgba(29, 29, 31, 0.46);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.salt-grade-node:hover .salt-grade-node__inner,
.salt-grade-node:focus-visible .salt-grade-node__inner {
  transform: rotate(calc(var(--grade-angle) * -1)) translateY(-0.16rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 40px rgba(26, 37, 58, 0.11);
}

.salt-grade-node:focus-visible {
  outline: none;
}

.salt-grade-node.is-active .salt-grade-node__inner {
  border-color: rgba(0, 113, 227, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 252, 0.96)),
    linear-gradient(135deg, rgba(0, 113, 227, 0.08), transparent 52%, rgba(201, 221, 246, 0.16));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 22px 46px rgba(0, 113, 227, 0.14),
    0 0 0 0.4rem rgba(0, 113, 227, 0.07);
}

.reveal.is-visible .salt-grade-node {
  animation: bentoniteNodeRise 0.72s both;
  animation-delay: calc(var(--grade-index) * 70ms);
}

.product-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.product-tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.68rem 0.92rem;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  border: 1px solid rgba(0, 113, 227, 0.12);
  color: var(--ore);
  font-size: 0.86rem;
  font-weight: 700;
}

.product-note-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.product-note {
  display: grid;
  grid-template-columns: 0.72rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.product-note span {
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #53a3ff, #0071e3);
  box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.12);
  animation: beaconPulse 3.4s ease-in-out infinite;
}

.product-note p {
  margin: 0;
  line-height: 1.72;
  color: var(--ink-soft);
}

.product-stage,
.product-commercial {
  display: grid;
  gap: 1rem;
}

.product-stage {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
}

.product-commercial {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
}

.product-commercial__main {
  display: grid;
  gap: 1rem;
}

.product-panel {
  position: relative;
  overflow: hidden;
}

.product-panel::after {
  content: "";
  position: absolute;
  inset: auto -18% -34% auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.08), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.product-panel > * {
  position: relative;
  z-index: 1;
}

.product-panel h2 {
  max-width: 14ch;
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.product-panel__intro,
.product-panel__meta {
  margin-top: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.72;
  max-width: 34rem;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.application-card {
  min-height: 8.25rem;
  padding: 1rem 1.05rem;
  border-radius: 1.3rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 249, 251, 0.9)),
    linear-gradient(120deg, rgba(0, 113, 227, 0.04), transparent 44%);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: 0 14px 34px rgba(29, 29, 31, 0.06);
}

.application-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--ore);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.application-card strong {
  display: block;
  margin-top: 1rem;
  line-height: 1.35;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.benefit-stack,
.booking-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.benefit-item {
  display: grid;
  grid-template-columns: 0.72rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.benefit-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.benefit-item span {
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.48rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #53a3ff, #0071e3);
  box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.12);
  animation: beaconPulse 3.4s ease-in-out infinite;
}

.benefit-item p {
  margin: 0;
  line-height: 1.72;
  color: var(--ink-soft);
}

.booking-item {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 249, 251, 0.9)),
    linear-gradient(120deg, rgba(0, 113, 227, 0.035), transparent 44%);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: 0 12px 30px rgba(29, 29, 31, 0.05);
}

.booking-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.booking-item strong {
  display: block;
  padding-top: 0.1rem;
  line-height: 1.45;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.form-cloud,
.commercial-fit__tags,
.snapshot-stage__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.form-cloud {
  margin-top: 1.3rem;
}

.size-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.form-pill,
.size-pill,
.commercial-fit__tags span,
.snapshot-stage__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(29, 29, 31, 0.05);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
}

.size-pill {
  min-height: 3rem;
  padding-inline: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 253, 0.92)),
    linear-gradient(120deg, rgba(0, 113, 227, 0.05), transparent 46%);
  border-color: rgba(0, 113, 227, 0.12);
  color: rgba(29, 29, 31, 0.86);
  box-shadow: 0 14px 30px rgba(29, 29, 31, 0.06);
  letter-spacing: -0.01em;
}

.commercial-fit__tags {
  margin-top: 1.1rem;
}

.commercial-fit__tags span,
.snapshot-stage__tags span {
  background: rgba(0, 113, 227, 0.08);
  border-color: rgba(0, 113, 227, 0.12);
  color: var(--ore);
  box-shadow: none;
  font-size: 0.86rem;
}

.panel-copy--comfortable {
  margin-top: 1.1rem;
  max-width: 28rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.product-panel--commercial {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 250, 0.92)),
    linear-gradient(145deg, rgba(0, 113, 227, 0.08), rgba(255, 255, 255, 0.42) 42%);
}

.product-panel--commercial h2 {
  max-width: 8ch;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.commercial-fit__note {
  display: grid;
  gap: 0.42rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.commercial-fit__note span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: rgba(29, 29, 31, 0.42);
}

.commercial-fit__note strong {
  line-height: 1.6;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.product-snapshot__visual {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  min-height: 0;
  margin-bottom: 1.2rem;
  border-radius: 1.7rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.98), transparent 28%),
    linear-gradient(180deg, rgba(245, 245, 247, 0.96), rgba(239, 241, 246, 0.92));
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: 0 18px 48px rgba(29, 29, 31, 0.08);
  padding: 1.15rem;
}

.snapshot-stage {
  position: relative;
  z-index: 2;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: 0 14px 36px rgba(29, 29, 31, 0.06);
}

.snapshot-stage__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
}

.snapshot-stage__title {
  display: block;
  margin-top: 0.65rem;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.snapshot-stage__copy {
  margin: 0.8rem 0 0;
  max-width: 22rem;
  line-height: 1.62;
  color: var(--ink-soft);
}

.snapshot-stage__tags {
  margin-top: 1rem;
}

.product-snapshot .snapshot-visual-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
}

.product-snapshot .snapshot-visual-card {
  min-height: 6rem;
  padding: 0.95rem 1rem;
  animation-duration: 10s;
}

.product-snapshot .snapshot-visual-card strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.product-snapshot .snapshot-visual-caption {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 0.1rem;
}

.product-snapshot .route-line--snapshot {
  display: none;
}

.ore-pillar--a {
  left: 9%;
  top: 14%;
  width: 24%;
  height: 62%;
}

.ore-pillar--b {
  left: 39%;
  top: 6%;
  width: 22%;
  height: 72%;
  animation-duration: 18s;
}

.ore-pillar--c {
  right: 10%;
  top: 20%;
  width: 27%;
  height: 56%;
  animation-duration: 16s;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(29, 29, 31, 0.46);
}

.breadcrumb strong {
  color: var(--ink);
}

.related-links a {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(29, 29, 31, 0.08);
}

.faq-shell {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.3rem;
  font-weight: 700;
  position: relative;
  padding-right: 3.2rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: rgba(29, 29, 31, 0.46);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.3rem 1.25rem;
  color: var(--ink-soft);
}

.reveal.is-visible.faq-item {
  animation: softLiftIn 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.is-visible.faq-item:nth-child(2),
.reveal.is-visible .related-links a:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal.is-visible.faq-item:nth-child(3),
.reveal.is-visible .related-links a:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal.is-visible.faq-item:nth-child(4),
.reveal.is-visible .related-links a:nth-child(4) {
  animation-delay: 0.24s;
}

.reveal.is-visible .related-links a {
  animation: softLiftIn 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy--portfolio {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero-copy--portfolio h1,
.hero-copy--portfolio .hero-text {
  margin-inline: auto;
}

.hero-copy--portfolio h1 {
  max-width: 10.5ch;
}

.hero-copy--portfolio .hero-text {
  max-width: 42rem;
}

.hero-copy--product .hero-title-stack {
  max-width: 14ch;
  font-size: clamp(2.6rem, 5.1vw, 4.9rem);
}

.hero-copy--portfolio .hero-actions {
  justify-content: center;
}

.portfolio-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.portfolio-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: rgba(29, 29, 31, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(29, 29, 31, 0.05);
  animation: floatLift 7s ease-in-out infinite;
}

.portfolio-hero-meta span:nth-child(2) {
  animation-delay: 0.4s;
}

.portfolio-hero-meta span:nth-child(3) {
  animation-delay: 0.8s;
}

.portfolio-shell {
  display: grid;
  gap: 4.5rem;
}

.portfolio-anchor-rail {
  position: sticky;
  top: 5.8rem;
  z-index: 8;
  display: flex;
  gap: 0.7rem;
  padding: 0.7rem;
  margin-bottom: 0.2rem;
  overflow-x: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: 0 16px 40px rgba(29, 29, 31, 0.06);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
  animation: surfaceFloat 10s ease-in-out infinite;
}

.portfolio-anchor-rail::-webkit-scrollbar {
  display: none;
}

.portfolio-anchor {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 2.9rem;
  padding: 0.72rem 1rem;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(29, 29, 31, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.reveal.is-visible.portfolio-anchor-rail .portfolio-anchor {
  animation: softLiftIn 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.is-visible.portfolio-anchor-rail .portfolio-anchor:nth-child(2) {
  animation-delay: 0.06s;
}

.reveal.is-visible.portfolio-anchor-rail .portfolio-anchor:nth-child(3) {
  animation-delay: 0.12s;
}

.reveal.is-visible.portfolio-anchor-rail .portfolio-anchor:nth-child(4) {
  animation-delay: 0.18s;
}

.portfolio-anchor:hover,
.portfolio-anchor:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 113, 227, 0.18);
  box-shadow: 0 12px 28px rgba(29, 29, 31, 0.06);
}

.portfolio-anchor.is-active {
  background: var(--ore);
  border-color: transparent;
  color: white;
  box-shadow: 0 18px 38px rgba(0, 113, 227, 0.2);
}

.portfolio-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 3rem;
  align-items: start;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
  overflow: hidden;
}

.portfolio-stage::after {
  content: "";
  position: absolute;
  top: 0;
  left: -14rem;
  width: 16rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 113, 227, 0.36), transparent);
  animation: proofSweep 7.8s linear infinite;
}

.portfolio-stage__intro {
  position: sticky;
  top: 7.8rem;
  align-self: start;
  max-width: 30rem;
  padding-right: 1rem;
}

.portfolio-stage__index {
  margin: 0;
  font-size: clamp(4.2rem, 9vw, 7.5rem);
  line-height: 0.82;
  letter-spacing: -0.09em;
  font-weight: 800;
  color: rgba(29, 29, 31, 0.12);
}

.portfolio-stage__count {
  margin: 0.65rem 0 1rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
}

.portfolio-stage__intro h2 {
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: var(--ink);
}

.portfolio-stage__intro p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  line-height: 1.76;
  max-width: 28rem;
}

.portfolio-stage__summary {
  color: rgba(29, 29, 31, 0.58);
  font-size: 0.98rem;
}

.portfolio-stage__focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 1.15rem;
}

.portfolio-stage__focus-label {
  color: rgba(29, 29, 31, 0.42);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-stage__pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  border: 1px solid rgba(0, 113, 227, 0.12);
  color: var(--ore);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.portfolio-stage__track {
  display: grid;
  gap: 0;
  min-width: 0;
  padding-top: 0.85rem;
}

.portfolio-product {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.35rem;
  align-items: center;
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  transition: transform 220ms ease, border-color 220ms ease;
}

.portfolio-product::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, rgba(0, 113, 227, 0.06), transparent 72%);
  opacity: 0;
  transition: width 220ms ease, opacity 220ms ease;
  pointer-events: none;
}

.portfolio-product:first-child {
  padding-top: 0;
}

.portfolio-product:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.portfolio-product:hover,
.portfolio-product:focus-visible {
  transform: translateX(0.26rem);
  border-color: rgba(0, 113, 227, 0.18);
}

.portfolio-product:hover::before,
.portfolio-product:focus-visible::before {
  width: 100%;
  opacity: 1;
}

.portfolio-product__main {
  display: grid;
  gap: 0.6rem;
  min-width: 0;
}

.portfolio-product__eyebrow {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
}

.portfolio-product h3 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  color: var(--ink);
}

.portfolio-product__copy {
  margin: 0;
  max-width: 35rem;
  color: var(--ink-soft);
  line-height: 1.74;
  font-size: 1.02rem;
}

.portfolio-product__fit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0;
  color: rgba(29, 29, 31, 0.68);
  line-height: 1.55;
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.portfolio-product__fit span {
  color: rgba(29, 29, 31, 0.46);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-product__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.6rem;
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ore);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.portfolio-product:hover .portfolio-product__arrow,
.portfolio-product:focus-visible .portfolio-product__arrow {
  transform: translateX(0.18rem);
  background: var(--ore);
  border-color: transparent;
  color: white;
}

.reveal.is-visible.portfolio-stage__track .portfolio-product {
  animation: softLiftIn 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.is-visible.portfolio-stage__track .portfolio-product:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal.is-visible.portfolio-stage__track .portfolio-product:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal.is-visible.portfolio-stage__track .portfolio-product:nth-child(4) {
  animation-delay: 0.24s;
}

.site-footer {
  padding: 3rem 0 2rem;
  background: #f5f5f7;
  color: rgba(29, 29, 31, 0.72);
  margin-top: 3.5rem;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.site-footer__inner > * {
  min-width: 0;
}

.footer-copy {
  color: rgba(29, 29, 31, 0.56);
  max-width: 34rem;
}

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

.footer-grid > div {
  min-width: 0;
}

.footer-heading {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: rgba(29, 29, 31, 0.42);
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0.3rem 0;
  color: rgba(29, 29, 31, 0.72);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.site-footer__meta {
  padding-top: 1rem;
  color: rgba(29, 29, 31, 0.48);
  font-size: 0.92rem;
}

.theme-silica .strata--a,
.theme-quartz .strata--a {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(214, 229, 255, 0.72), rgba(255, 255, 255, 0.16));
}

.theme-clay .strata--a,
.theme-kaolin .strata--a,
.theme-talc .strata--a {
  background: linear-gradient(90deg, rgba(235, 237, 241, 0.92), rgba(255, 255, 255, 0.72), rgba(214, 229, 255, 0.18));
}

.theme-feldspar .strata--a,
.theme-salt .strata--a {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.54), rgba(0, 113, 227, 0.14));
}

.theme-copper .strata--a,
.theme-ash .strata--a {
  background: linear-gradient(90deg, rgba(228, 232, 238, 0.92), rgba(255, 255, 255, 0.5), rgba(214, 229, 255, 0.2));
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.988);
  filter: blur(10px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes atmosphereDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(1.2%, -1%, 0);
  }
}

@keyframes ambientDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(8%, -6%, 0) scale(1.08);
  }
}

@keyframes ambientSweep {
  from {
    transform: translate3d(-5%, 0, 0) scale(1);
  }
  to {
    transform: translate3d(6%, -4%, 0) scale(1.06);
  }
}

@keyframes softLiftIn {
  from {
    opacity: 0;
    transform: translate3d(0, 1rem, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes strataShift {
  from {
    transform: translate3d(-1%, 0, 0) scaleX(1.02);
  }
  to {
    transform: translate3d(2%, -1.5%, 0) scaleX(0.98);
  }
}

@keyframes oreDrift {
  from {
    transform: translate3d(-0.35rem, 0.3rem, 0) rotate(-2.2deg) scale(1);
  }
  to {
    transform: translate3d(0.65rem, -1.2rem, 0) rotate(2.2deg) scale(1.04);
  }
}

@keyframes surfaceFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -0.55rem, 0);
  }
}

@keyframes floatLift {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.24rem);
  }
}

@keyframes specimenSweep {
  0%,
  64% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes routePulse {
  from {
    transform: translateX(0);
    box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.24);
  }
  30% {
    box-shadow: 0 0 0 0.55rem rgba(0, 113, 227, 0.08);
  }
  to {
    transform: translateX(calc(100% - 0.8rem));
    box-shadow: 0 0 0 0 rgba(0, 113, 227, 0);
  }
}

@keyframes cardBreathe {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.42rem);
  }
}

@keyframes chipEnter {
  from {
    opacity: 0;
    transform: translateY(0.65rem) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes arrowDrift {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0.12rem);
  }
}

@keyframes bandRoute {
  from {
    transform: translateX(0);
    box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.22);
  }
  35% {
    box-shadow: 0 0 0 0.45rem rgba(0, 113, 227, 0.08);
  }
  to {
    transform: translateX(calc(100% - 0.72rem));
    box-shadow: 0 0 0 0 rgba(0, 113, 227, 0);
  }
}

@keyframes beaconPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.14);
  }
  50% {
    box-shadow: 0 0 0 0.45rem rgba(0, 113, 227, 0.06);
  }
}

@keyframes proofSweep {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes lineTravel {
  from {
    background-position: 0% 0;
  }
  to {
    background-position: 180% 0;
  }
}

@keyframes bentoniteOrbitSheen {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bentoniteNodeRise {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .hero__inner,
  .home-ledger,
  .home-split,
  .corridor-stage__body,
  .about-frame,
  .operating-stage,
  .split-stage,
  .contact-shell,
  .site-footer__inner,
  .ceo-note,
  .product-ledger {
    grid-template-columns: 1fr;
  }

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

  .route-line--process {
    display: none;
  }

  .hero-visual {
    min-height: 28rem;
  }

  .product-hero {
    gap: 2rem;
  }

  .home-poster {
    min-height: 28rem;
  }

  .portfolio-stage {
    grid-template-columns: 1fr;
    gap: 1.9rem;
  }

  .bentonite-grade-stage {
    grid-template-columns: 1fr;
  }

  .bentonite-grade-copy {
    max-width: 42rem;
  }

  .bentonite-grade-visual {
    min-height: 36rem;
    --grade-orbit-radius: 12rem;
  }

  .salt-grade-stage {
    grid-template-columns: 1fr;
  }

  .corridor-stage__body {
    gap: 1.3rem;
  }

  .corridor-stage__hub {
    max-width: 34rem;
  }

  .salt-grade-copy {
    max-width: 42rem;
  }

  .salt-grade-visual {
    min-height: 34rem;
    --grade-orbit-radius: 10.6rem;
  }

  .portfolio-stage__intro {
    position: static;
    max-width: none;
    padding-right: 0;
  }

  .portfolio-stage__track {
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-actions .button--compact {
    display: none;
  }

  .header-actions {
    gap: 0.55rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding-top: 7.5rem;
  }

  .proof-strip,
  .home-poster__metrics,
  .industry-rail,
  .corridor-stage__top,
  .operating-stage__cards,
  .process-grid,
  .product-overview,
  .product-specs,
  .product-poster__metrics,
  .product-stage,
  .product-commercial,
  .product-commercial__main,
  .application-grid,
  .footer-grid,
  .ceo-spotlight__grid {
    grid-template-columns: 1fr;
  }

  .section-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-topline--stack {
    align-items: flex-start;
  }

  .family-band__meta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .product-documents-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .corridor-stage__top {
    align-items: flex-start;
  }

  .corridor-stage__link {
    width: fit-content;
  }

  .corridor-lane {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
  }

  .corridor-lane__rail {
    height: 2.7rem;
  }

  .proof-strip__item:nth-child(2) {
    border-right: 0;
  }

  .proof-strip__item:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .family-band,
  .feature-row,
  .portfolio-row,
  .portfolio-product,
  .home-family-row {
    grid-template-columns: 1fr;
  }

  .hero-spec-grid {
    grid-template-columns: 1fr;
  }

  .home-family-row {
    gap: 1rem;
  }

  .home-family-row__cta {
    width: fit-content;
  }

  .product-info-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .product-poster .route-line--snapshot {
    inset-inline: 12%;
  }

  .portfolio-anchor-rail {
    top: 4.9rem;
  }

  .bentonite-grade-visual {
    min-height: 33rem;
    --grade-orbit-radius: 10.5rem;
  }

  .bentonite-grade-core {
    width: min(15rem, 52%);
  }

  .bentonite-grade-node {
    width: 6.3rem;
  }

  .salt-grade-visual {
    min-height: 31rem;
    --grade-orbit-radius: 9.3rem;
  }

  .salt-grade-core {
    width: min(14rem, 52%);
  }

  .salt-grade-node {
    width: 7rem;
  }

  .portfolio-product {
    align-items: start;
  }

  .portfolio-product__arrow {
    width: fit-content;
  }
}

@media (max-width: 720px) {
  body {
    background:
      radial-gradient(circle at 22% 0%, rgba(0, 113, 227, 0.08), transparent 20%),
      linear-gradient(180deg, #fbfbfd 0, #f7f7fa 22rem, var(--bg) 22rem, var(--bg) 100%);
  }

  .shell {
    width: min(var(--max-width), calc(100vw - 1.25rem));
  }

  .site-header__inner {
    width: min(var(--max-width), calc(100vw - 1.25rem));
    padding-inline: 1rem;
  }

  .menu-toggle {
    min-height: 2.65rem;
    padding-inline: 0.88rem;
  }

  .section-shell {
    padding-inline: 0.95rem;
  }

  .brand-mark img {
    height: 2.5rem;
  }

  .hero__inner,
  .hero__inner--product,
  .hero__inner--single {
    min-height: auto;
    padding-bottom: 2.5rem;
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.5rem, 12vw, 4.4rem);
  }

  .hero-title-stack {
    gap: 0.26rem;
  }

  .hero-title-sub {
    font-size: 0.62em;
  }

  .hero-track,
  .product-snapshot,
  .about-point,
  .industry-item,
  .product-panel,
  .process-step,
  .portfolio-group,
  .contact-shell {
    border-radius: 1.5rem;
  }

  .bentonite-grade-stage {
    padding: 1.15rem;
  }

  .salt-grade-stage {
    padding: 1.15rem;
  }

  .bentonite-grade-copy h2 {
    max-width: 12ch;
  }

  .salt-grade-copy h2 {
    max-width: 12ch;
  }

  .bentonite-grade-reading {
    padding: 1.15rem;
  }

  .salt-grade-reading {
    padding: 1.15rem;
  }

  .salt-grade-visual {
    min-height: 26rem;
    --grade-orbit-radius: 7.15rem;
  }

  .salt-grade-visual::before {
    inset: 8%;
  }

  .salt-grade-core {
    width: min(10.6rem, 54%);
    padding: 1.25rem;
  }

  .salt-grade-core p {
    font-size: 0.8rem;
    line-height: 1.54;
  }

  .salt-grade-node {
    width: 4.9rem;
  }

  .salt-grade-node__inner {
    min-height: 3.9rem;
    padding: 0.62rem 0.4rem;
    border-radius: 1rem;
  }

  .salt-grade-node__name {
    font-size: 0.66rem;
  }

  .salt-grade-node__meta {
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }

  .bentonite-grade-visual {
    min-height: 28rem;
    --grade-orbit-radius: 8.4rem;
  }

  .bentonite-grade-visual::before {
    inset: 8%;
  }

  .bentonite-grade-core {
    width: min(11.5rem, 54%);
    padding: 1.35rem;
  }

  .bentonite-grade-core p {
    font-size: 0.83rem;
    line-height: 1.55;
  }

  .bentonite-grade-node {
    width: 4.6rem;
  }

  .bentonite-grade-node__inner {
    min-height: 4rem;
    padding: 0.65rem 0.4rem;
    border-radius: 1rem;
  }

  .bentonite-grade-node__name {
    font-size: 0.67rem;
  }

  .bentonite-grade-node__meta {
    font-size: 0.53rem;
    letter-spacing: 0.08em;
  }

  .hero-copy--portfolio h1 {
    max-width: 11ch;
  }

  .hero-copy--home h1 {
    max-width: 12ch;
  }

  .hero-copy--home .hero-title-stack,
  .hero-copy--product .hero-title-stack {
    max-width: 12ch;
    font-size: clamp(2.35rem, 9.8vw, 4rem);
  }

  .portfolio-hero-meta {
    justify-content: flex-start;
  }

  .home-poster__metrics,
  .product-poster__metrics {
    grid-template-columns: 1fr;
  }

  .corridor-stage {
    padding: 1rem;
  }

  .corridor-stage__top {
    padding-bottom: 1rem;
  }

  .corridor-stage__top h2 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .corridor-stage__body {
    padding-top: 1rem;
  }

  .corridor-stage__hub {
    padding: 1.2rem;
  }

  .corridor-stage__hub-mark {
    width: 7.2rem;
    margin-bottom: 1rem;
  }

  .corridor-lane__card {
    padding: 0.88rem 0.92rem;
    border-radius: 1.15rem;
  }

  .corridor-lane__countries {
    font-size: 0.9rem;
  }

  .home-poster__surface {
    min-height: 25rem;
    padding: 1.25rem;
  }

  .product-poster__surface {
    min-height: 29rem;
    padding: 1.25rem;
  }

  .home-poster__metrics {
    margin-top: 2rem;
    padding-top: 1rem;
  }

  .home-metric {
    padding: 0.85rem 0 0;
  }

  .home-metric:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(29, 29, 31, 0.08);
    padding-bottom: 0.85rem;
  }

  .product-poster__caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
  }

  .product-poster .route-line--snapshot {
    inset: auto 10% 8.2rem 10%;
  }

  .home-family-row__index {
    font-size: clamp(1.9rem, 12vw, 3rem);
  }

  .home-family-row__main h3 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .home-split__panel h2 {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  .ceo-spotlight__media {
    max-width: 26rem;
  }

  .portfolio-anchor-rail {
    padding: 0.45rem;
  }

  .portfolio-anchor {
    min-height: 2.65rem;
    padding: 0.64rem 0.88rem;
  }

  .portfolio-stage {
    gap: 1.4rem;
    padding-top: 1.6rem;
  }

  .portfolio-stage__index {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .portfolio-stage__intro h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .portfolio-product {
    padding: 1.35rem 0;
  }

  .portfolio-product h3 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .hero-visual {
    min-height: 24rem;
  }

  .hero-visual__specimen {
    min-height: 21rem;
  }

  .home-poster {
    min-height: 24rem;
  }

  .product-snapshot__visual {
    min-height: 31rem;
  }

  .product-snapshot .snapshot-visual-grid {
    grid-template-columns: 1fr;
    bottom: 4.6rem;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    margin-bottom: 2.4rem;
  }

  .process-media-grid {
    grid-template-columns: 1fr;
  }

  .process-media-stage {
    padding: 0.85rem;
  }

  .process-media-card {
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .process-media-card img,
  .process-media-card video {
    aspect-ratio: 4 / 5;
  }

  .process-media-card--lead img,
  .process-media-card--lead video {
    aspect-ratio: 16 / 11;
  }

  .process-media-card--wide-view img {
    aspect-ratio: 16 / 10;
    padding: 0.5rem;
  }

  .proof-strip__item {
    border-right: 0 !important;
  }

  .proof-strip__item:not(:last-child) {
    border-bottom: 0;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }

  .site-footer {
    margin-top: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .bentonite-grade-visual::before,
  .salt-grade-visual::before,
  .reveal.is-visible .bentonite-grade-node,
  .reveal.is-visible .salt-grade-node {
    animation: none !important;
  }
}
