:root {
  --color-forest: #0d3f34;
  --color-teal: #4bb7a5;
  --color-mint: #e8f6f2;
  --color-ink: #1d2c2a;
  --color-muted: #65716f;
  --color-line: #dbe6e2;
  --color-soft: #f5f8f6;
  --color-white: #ffffff;
  --shadow-card: 0 18px 45px rgba(13, 63, 52, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* 2026-07-19 page refinement: About brand evolution and product feature */
.nanoso-display-word {
  display: block;
  width: min(100%, 520px);
  aspect-ratio: 1049 / 281;
  margin-top: 0.14em;
  overflow: hidden;
}

.nanoso-display-word img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: contrast(1.1);
  mix-blend-mode: multiply;
}

.production-flow .production-flow-number {
  position: static;
  display: block;
  margin-bottom: 36px;
  color: var(--color-teal, #168f80);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.production-flow .production-flow-copy {
  position: static;
  display: grid;
  gap: 5px;
  padding-right: 84px;
}

.production-flow .production-flow-visual {
  position: absolute;
  top: 22px;
  right: 22px;
  bottom: auto;
  left: auto;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border: 1px solid rgba(20, 117, 101, 0.12);
  border-radius: 18px;
  background: #edf8f5;
  transform: none;
}

.production-flow .production-flow-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.production-flow li:hover .production-flow-visual img {
  transform: scale(1.06);
}

.featured-product-page .fp-material-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-product-page .fp-writable-benefit {
  position: relative;
  overflow: hidden;
  padding-right: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(222, 247, 240, 0.82), rgba(255, 255, 255, 0.25));
}

.featured-product-page .fp-writable-benefit::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 24px;
  width: 36px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-forest) 0 72%, var(--color-teal) 72% 100%);
  transform: rotate(-34deg);
  opacity: 0.8;
}

.featured-product-page .fp-writable-benefit::after {
  content: "";
  position: absolute;
  right: 19px;
  bottom: 21px;
  width: 48px;
  height: 20px;
  border-bottom: 2px solid rgba(13, 63, 52, 0.35);
  border-radius: 50%;
  transform: rotate(-8deg);
}

@media (max-width: 980px) {
  .featured-product-page .fp-material-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .production-flow .production-flow-copy {
    padding-right: 64px;
  }

  .production-flow .production-flow-visual {
    top: 18px;
    right: 16px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .featured-product-page .fp-material-points {
    grid-template-columns: 1fr;
  }
}

.featured-product-page .fp-project-note,
.featured-product-page .site-footer {
  display: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-forest);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-forest), var(--color-teal));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  color: var(--color-ink);
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--color-teal);
}

.nav-toggle {
  display: none;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
}

.button-primary {
  background: var(--color-forest);
  color: var(--color-white);
}

.button-secondary {
  background: var(--color-mint);
  color: var(--color-forest);
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--color-soft);
}

.hero {
  padding: 70px 0 88px;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--color-soft);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.12) 42%, rgba(255, 255, 255, 0.82) 70%, #ffffff 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(245, 248, 246, 0.22) 100%);
  pointer-events: none;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
}

.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) brightness(1.04);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.home-hero-copy {
  width: min(100% - 56px, 560px);
  padding: 52px 0;
}

.home-hero-copy h1 {
  max-width: 560px;
  font-size: clamp(3.4rem, 5.8vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.home-hero-copy .lead {
  max-width: 480px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 52px;
  align-items: center;
}

.hero-immersive {
  padding: 0;
}

.hero-stage {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--color-soft);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.16) 38%, rgba(255, 255, 255, 0.92) 66%, #ffffff 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(245, 248, 246, 0.34) 100%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 72%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.62fr);
  gap: 44px;
  align-items: center;
}

.hero-copy-card {
  grid-column: 2;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 230, 226, 0.86);
  border-radius: 34px;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 0 28px 80px rgba(13, 63, 52, 0.12);
  backdrop-filter: blur(18px);
}

.hero-copy-card h1 {
  font-size: clamp(2.35rem, 4.8vw, 4.7rem);
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--color-mint);
  color: var(--color-forest);
  font-size: 0.83rem;
  font-weight: 800;
}

.hero-media {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--color-soft);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-intro.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.featured-home {
  background:
    radial-gradient(circle at 18% 8%, rgba(75, 183, 165, 0.12), transparent 30%),
    #ffffff;
}

.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.featured-visual .placeholder-media {
  height: 100%;
  min-height: 480px;
}

.feature-points {
  display: grid;
  gap: 16px;
}

.feature-point {
  border: 1px solid var(--color-line);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
}

.feature-point span,
.category-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--color-mint);
  color: var(--color-forest);
  font-weight: 800;
  font-size: 0.82rem;
}

.centered-actions {
  justify-content: center;
  margin-top: 32px;
}

.trust-section {
  padding: 38px 0;
}

.brand-wall-section {
  background: #ffffff;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.logo-wall div {
  min-height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: var(--color-white);
  color: var(--color-forest);
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(13, 63, 52, 0.05);
}

.project-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.project-chip {
  border: 1px solid var(--color-line);
  border-radius: 18px;
  padding: 22px;
  background: var(--color-white);
  color: var(--color-forest);
  font-weight: 800;
}

.category-card strong {
  color: var(--color-teal);
  font-size: 0.9rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.process-list div {
  border: 1px solid var(--color-line);
  border-radius: 18px;
  padding: 18px;
  background: var(--color-white);
  color: var(--color-forest);
  font-weight: 800;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.process-track span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 86px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: var(--color-white);
  color: var(--color-forest);
  font-weight: 800;
  text-align: center;
}

.final-cta {
  background: var(--color-forest);
  color: rgba(255, 255, 255, 0.78);
}

.final-cta h2,
.final-cta .eyebrow {
  color: var(--color-white);
}

.final-cta .lead {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-teal);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  color: var(--color-forest);
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2.55rem, 5vw, 5rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.22rem;
}

.lead {
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  max-width: 680px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.placeholder-media {
  min-height: 320px;
  border: 1px dashed rgba(13, 63, 52, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f7fbf9, #e7f5f0);
  display: grid;
  place-items: center;
  color: var(--color-muted);
  text-align: center;
  padding: 28px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.card,
.category-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.category-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.trust-item {
  border: 1px solid var(--color-line);
  border-radius: 16px;
  padding: 18px;
  background: var(--color-white);
  color: var(--color-forest);
  font-weight: 800;
  text-align: center;
}

.site-footer {
  padding: 54px 0;
  background: var(--color-forest);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.site-footer strong,
.site-footer a {
  color: var(--color-white);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--color-forest);
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
}

textarea,
.full-span {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: var(--color-white);
    padding: 10px 14px;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--color-line);
    border-radius: 20px;
    background: var(--color-white);
    box-shadow: var(--shadow-card);
  }

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

  .hero-grid,
  .two-column,
  .card-grid,
  .category-grid,
  .trust-bar,
  .form-grid,
  .footer-grid,
  .featured-layout,
  .project-row,
  .capability-grid,
  .process-track,
  .process-list,
  .logo-wall {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: calc(100vh - 76px);
    align-items: end;
  }

  .home-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.34) 36%, #ffffff 76%);
  }

  .home-hero-content {
    justify-content: flex-start;
    padding-bottom: 42px;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .final-cta-inner {
    display: block;
  }

  .hero-media {
    order: -1;
  }

  .hero-stage {
    min-height: auto;
    padding: 42px 0 58px;
  }

  .hero-stage::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, #ffffff 58%);
  }

  .hero-bg {
    position: relative;
    height: 320px;
  }

  .hero-bg img {
    width: 100%;
  }

  .hero-content {
    display: block;
    margin-top: -58px;
  }

  .hero-copy-card {
    grid-column: auto;
  }

  .hero,
  .section {
    padding: 58px 0;
  }
}

/* Home V1 */

body {
  overflow-x: hidden;
}

.site-nav a[aria-current="page"] {
  color: var(--color-forest);
  font-weight: 800;
}

.brand-image {
  width: 154px;
  height: 54px;
  overflow: hidden;
}

.brand-image img {
  width: 132px;
  height: auto;
  object-fit: contain;
}

.button,
.text-link {
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-ghost {
  border: 1px solid rgba(13, 63, 52, 0.24);
  background: rgba(255, 255, 255, 0.46);
  color: var(--color-forest);
  backdrop-filter: blur(10px);
}

.button-light {
  background: var(--color-white);
  color: var(--color-forest);
}

.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: var(--color-white);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-forest);
  font-weight: 800;
}

.home-hero {
  min-height: calc(100svh - 76px);
  isolation: isolate;
}

.home-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 38%, rgba(255, 255, 255, 0.72) 66%, #ffffff 88%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.12));
}

.home-hero-bg {
  z-index: -2;
}

.home-hero-bg img {
  object-position: center center;
  filter: saturate(0.9) brightness(1.03);
}

.home-hero-content {
  min-height: calc(100svh - 76px);
  align-items: center;
}

.home-hero-copy {
  width: min(45vw, 610px);
  padding: 56px 0 72px;
}

.home-hero-copy h1 {
  display: grid;
  gap: 0.04em;
  max-width: none;
  font-size: clamp(3.6rem, 5.25vw, 6.25rem);
  line-height: 0.94;
  letter-spacing: -0.072em;
}

.home-hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.home-hero-copy .lead {
  max-width: 540px;
  margin: 24px 0 0;
  color: #52625f;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.home-hero-copy .actions {
  margin-top: 30px;
}

.hero-proof-row {
  margin-top: 34px;
  gap: 0;
}

.hero-proof-row span {
  position: relative;
  padding: 0 18px;
  border-radius: 0;
  background: transparent;
  font-size: 0.78rem;
  letter-spacing: 0.015em;
}

.hero-proof-row span:first-child {
  padding-left: 0;
}

.hero-proof-row span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: rgba(13, 63, 52, 0.22);
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll span {
  width: 1px;
  height: 42px;
  background: var(--color-forest);
}

.featured-home {
  padding: 96px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(75, 183, 165, 0.13), transparent 32%),
    linear-gradient(180deg, #f9fcfb 0%, #ffffff 72%);
}

.featured-showcase {
  display: grid;
  grid-template-columns: minmax(570px, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(48px, 5vw, 76px);
  align-items: center;
}

.featured-product-copy h2 {
  max-width: 680px;
  font-size: clamp(2.9rem, 3.7vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.featured-product-copy h2 span {
  display: block;
  white-space: nowrap;
}

.benefit-list {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  gap: 5px;
  padding: 18px 0;
  border-top: 1px solid var(--color-line);
}

.benefit-list li:last-child {
  border-bottom: 1px solid var(--color-line);
}

.benefit-list strong {
  color: var(--color-forest);
}

.benefit-list span {
  color: var(--color-muted);
}

.featured-product-copy .actions {
  align-items: center;
}

.featured-product-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 42px 10px 42px 10px;
  background: #eef4f1;
  box-shadow: 0 30px 80px rgba(13, 63, 52, 0.12);
}

.featured-product-visual > .featured-group-image {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.03) saturate(0.9);
}

.featured-handheld-image {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 25%;
  min-width: 150px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 7px solid rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(13, 63, 52, 0.18);
}

.product-fact {
  position: absolute;
  display: grid;
  gap: 3px;
  width: min(260px, 42%);
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(13, 63, 52, 0.1);
  backdrop-filter: blur(16px);
}

.product-fact strong {
  color: var(--color-forest);
}

.product-fact span {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.product-fact-one {
  top: 38px;
  right: 34px;
}

.product-fact-two {
  right: 34px;
  bottom: 38px;
}

.brand-wall-section {
  padding: 104px 0 96px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.brand-intro {
  max-width: 840px;
}

.brand-intro h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
}

.brand-intro .lead {
  margin-left: auto;
  margin-right: auto;
}

.logo-wall {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.logo-wall .brand-logo-item {
  display: grid;
  min-width: 0;
  min-height: 126px;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  outline: 0;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.logo-wall .brand-logo-item:nth-child(6n) {
  border-right: 0;
}

.logo-wall .brand-logo-item:nth-last-child(-n + 6) {
  border-bottom: 0;
}

.brand-logo-image {
  display: block;
  width: auto;
  max-width: min(76%, 180px);
  max-height: 62px;
  object-fit: contain;
  filter: grayscale(1) contrast(0.82);
  opacity: 0.62;
  transform: scale(0.92);
  transform-origin: center;
  transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.brand-logo-item:hover,
.brand-logo-item:focus-visible {
  background: var(--color-soft);
  box-shadow: inset 0 -3px 0 rgba(75, 183, 165, 0.45);
}

.brand-logo-item:hover .brand-logo-image,
.brand-logo-item:focus-visible .brand-logo-image {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: scale(1);
}

.brand-logo-item:nth-child(6) .brand-logo-image,
.brand-logo-item:nth-child(10) .brand-logo-image,
.brand-logo-item:nth-child(12) .brand-logo-image {
  max-height: 72px;
}

.brand-note {
  margin: 18px 0 0;
  color: #87918f;
  font-size: 0.76rem;
  text-align: center;
}

.categories-home {
  padding: 112px 0;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading-row .section-intro {
  margin-bottom: 0;
}

.category-grid-editorial {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(240px, auto);
  gap: 16px;
  margin-top: 48px;
}

.category-grid-editorial .category-card {
  position: relative;
  isolation: isolate;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  padding: 26px;
  background: linear-gradient(145deg, #ffffff, #f2f7f5);
  box-shadow: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.category-grid-editorial .category-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.98) 16%, rgba(255, 255, 255, 0.84) 55%, rgba(236, 247, 243, 0.7) 100%);
  content: "";
  pointer-events: none;
}

.category-card-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  transform: scale(1.02);
  transition: opacity 260ms ease, transform 420ms ease;
}

.category-grid-editorial .category-card > *:not(.category-card-media) {
  position: relative;
  z-index: 2;
}

.category-grid-editorial .category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(75, 183, 165, 0.55);
  box-shadow: 0 24px 50px rgba(13, 63, 52, 0.1);
}

.category-grid-editorial .category-card:hover .category-card-media {
  opacity: 0.31;
  transform: scale(1.07);
}

.category-grid-editorial .category-featured {
  grid-column: span 2;
  background: var(--color-forest);
}

.category-grid-editorial .category-featured::after {
  background: linear-gradient(100deg, rgba(13, 63, 52, 0.97) 9%, rgba(13, 63, 52, 0.78) 66%, rgba(13, 63, 52, 0.57));
}

.category-grid-editorial .category-featured .category-card-media {
  opacity: 0.52;
  object-position: 68% 54%;
}

.category-grid-editorial .category-featured h3,
.category-grid-editorial .category-featured p,
.category-grid-editorial .category-featured strong,
.category-grid-editorial .category-featured .category-number {
  color: var(--color-white);
}

.category-grid-editorial .category-number {
  width: auto;
  height: auto;
  margin: 0;
  background: transparent;
  color: var(--color-teal);
}

.category-grid-editorial p {
  margin: 0 0 8px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-grid-editorial h3 {
  max-width: 390px;
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
}

.category-grid-editorial strong {
  color: var(--color-forest);
}

.oem-home {
  padding: 112px 0;
  color: rgba(255, 255, 255, 0.75);
  background:
    radial-gradient(circle at 82% 12%, rgba(75, 183, 165, 0.2), transparent 28%),
    var(--color-forest);
}

.oem-home-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
}

.oem-home-stage {
  min-width: 0;
}

.oem-home-office {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.oem-home-office::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(5, 40, 33, 0.88) 100%);
  content: "";
}

.oem-home-office img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center 44%;
  filter: brightness(0.9) saturate(0.72);
  transform: scale(1.015);
  transition: filter 500ms ease, transform 900ms ease;
}

.oem-home-office figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
}

.oem-home-stage .process-grid {
  position: relative;
  z-index: 2;
  width: calc(100% - 42px);
  margin: -28px auto 0;
  box-shadow: 0 22px 52px rgba(3, 28, 23, 0.28);
}

.reveal-ready .oem-home .oem-home-office img {
  transform: scale(1.06);
}

.reveal-ready .oem-home.is-visible .oem-home-office img {
  filter: brightness(0.94) saturate(0.8);
  transform: scale(1.015);
}

.reveal-ready .oem-home .process-grid li {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 440ms ease, transform 440ms ease;
}

.reveal-ready .oem-home.is-visible .process-grid li {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .oem-home.is-visible .process-grid li:nth-child(2) { transition-delay: 60ms; }
.reveal-ready .oem-home.is-visible .process-grid li:nth-child(3) { transition-delay: 120ms; }
.reveal-ready .oem-home.is-visible .process-grid li:nth-child(4) { transition-delay: 180ms; }
.reveal-ready .oem-home.is-visible .process-grid li:nth-child(5) { transition-delay: 240ms; }
.reveal-ready .oem-home.is-visible .process-grid li:nth-child(6) { transition-delay: 300ms; }

.eyebrow-light {
  color: #93dfd1;
}

.oem-home h2 {
  color: var(--color-white);
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.oem-home-copy > p:not(.eyebrow) {
  margin: 24px 0 30px;
  font-size: 1.1rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: rgba(255, 255, 255, 0.16);
}

.process-grid li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 6px 14px;
  padding: 26px;
  background: rgba(13, 63, 52, 0.96);
}

.process-grid li > span {
  grid-row: span 2;
  color: #93dfd1;
  font-weight: 800;
}

.process-grid strong {
  color: var(--color-white);
}

.process-grid small {
  color: rgba(255, 255, 255, 0.58);
}

.factory-home {
  padding: 112px 0;
}

.factory-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}

.factory-home-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 12px 42px 12px 42px;
}

.factory-home-visual img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: 62% center;
  filter: brightness(1.04) saturate(0.86);
}

.factory-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-forest);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.factory-process-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 64px;
}

.factory-process-gallery article {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  background: var(--color-white);
}

.factory-process-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.factory-process-gallery article > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 6px 12px;
  padding: 22px;
}

.factory-process-gallery span {
  grid-row: span 2;
  color: var(--color-teal);
  font-size: 0.78rem;
  font-weight: 800;
}

.factory-process-gallery strong {
  color: var(--color-forest);
  font-size: 1.02rem;
}

.factory-process-gallery p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.capability-list {
  display: grid;
  gap: 0;
  margin: 34px 0 28px;
  border-top: 1px solid var(--color-line);
}

.capability-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-line);
}

.capability-list span {
  color: var(--color-teal);
  font-size: 0.78rem;
  font-weight: 800;
}

.capability-list strong {
  color: var(--color-forest);
}

.trust-strip {
  padding: 28px 0;
  border-top: 1px solid var(--color-line);
  background: var(--color-soft);
}

.trust-bar-compact {
  gap: 0;
}

.trust-bar-compact .trust-item {
  display: grid;
  gap: 2px;
  border: 0;
  border-right: 1px solid var(--color-line);
  border-radius: 0;
  padding: 10px 18px;
  background: transparent;
}

.trust-bar-compact .trust-item:last-child {
  border-right: 0;
}

.trust-bar-compact small {
  color: var(--color-muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-bar-compact strong {
  font-size: 0.92rem;
}

.final-cta {
  padding: 94px 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(75, 183, 165, 0.26), transparent 30%),
    var(--color-forest);
}

.final-cta h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1080px) {
  .home-hero-copy {
    width: min(50vw, 540px);
  }

  .home-hero-copy h1 {
    font-size: clamp(3.25rem, 5.7vw, 5rem);
  }

  .featured-showcase,
  .oem-home-grid,
  .factory-home-grid {
    gap: 48px;
  }

  .featured-showcase {
    grid-template-columns: minmax(460px, 0.98fr) minmax(0, 1.02fr);
  }

  .featured-product-copy h2 {
    font-size: clamp(2.75rem, 4.8vw, 3.55rem);
  }

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

  .logo-wall .brand-logo-item {
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
  }

  .logo-wall .brand-logo-item:nth-child(3n) {
    border-right: 0;
  }

  .logo-wall .brand-logo-item:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .home-hero {
    min-height: calc(100svh - 76px);
    align-items: end;
  }

  .home-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 8%, rgba(255, 255, 255, 0.18) 34%, rgba(255, 255, 255, 0.95) 66%, #ffffff 100%);
  }

  .home-hero-bg img {
    object-position: 32% center;
  }

  .home-hero-content {
    min-height: calc(100svh - 76px);
    align-items: end;
    padding-bottom: 42px;
  }

  .home-hero-copy {
    width: 100%;
    padding: 260px 0 0;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.75rem, 12.6vw, 4.6rem);
  }

  .home-hero-copy h1 span {
    white-space: normal;
  }

  .home-hero-copy .lead {
    margin-top: 18px;
  }

  .hero-proof-row {
    gap: 8px 0;
  }

  .hero-proof-row span {
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .hero-scroll {
    display: none;
  }

  .featured-showcase,
  .oem-home-grid,
  .factory-home-grid,
  .factory-process-gallery {
    grid-template-columns: 1fr;
  }

  .featured-product-copy h2 span {
    white-space: normal;
  }

  .featured-product-visual {
    min-height: 500px;
  }

  .featured-product-visual > .featured-group-image {
    min-height: 500px;
  }

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

  .category-grid-editorial .category-featured {
    grid-column: span 2;
  }

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

  .final-cta-inner {
    display: grid;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .home-hero-copy {
    padding-top: 230px;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.5rem);
  }

  .home-hero-copy .lead {
    font-size: 0.98rem;
  }

  .home-hero-copy .actions .button {
    flex: 1 1 140px;
  }

  .hero-proof-row span {
    flex: 1 1 46%;
    padding: 0;
  }

  .hero-proof-row span + span::before {
    display: none;
  }

  .featured-home,
  .brand-wall-section,
  .categories-home,
  .oem-home,
  .factory-home {
    padding: 76px 0;
  }

  .featured-product-copy h2,
  .oem-home h2,
  .factory-home-copy h2,
  .brand-intro h2 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .featured-product-visual,
  .featured-product-visual > .featured-group-image,
  .factory-home-visual,
  .factory-home-visual img {
    min-height: 430px;
  }

  .featured-handheld-image {
    left: 14px;
    bottom: 14px;
    min-width: 118px;
    border-width: 5px;
  }

  .product-fact {
    right: 16px;
    width: min(230px, 68%);
  }

  .product-fact-one {
    top: 16px;
  }

  .product-fact-two {
    bottom: 16px;
  }

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

  .logo-wall .brand-logo-item,
  .logo-wall .brand-logo-item:nth-child(3n) {
    min-height: 102px;
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
  }

  .logo-wall .brand-logo-item:nth-child(even) {
    border-right: 0;
  }

  .logo-wall .brand-logo-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .brand-logo-image {
    max-width: min(78%, 150px);
    max-height: 54px;
    transform: scale(0.9);
  }

  .brand-logo-item:hover .brand-logo-image,
  .brand-logo-item:focus-visible .brand-logo-image {
    transform: scale(0.98);
  }

  .category-grid-editorial {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .category-grid-editorial .category-featured {
    grid-column: auto;
  }

  .category-grid-editorial .category-card {
    min-height: 210px;
  }

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

  .oem-home-stage .process-grid {
    width: calc(100% - 24px);
    margin-top: -18px;
  }

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

  .trust-bar-compact .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .trust-bar-compact .trust-item:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
}

/* ================================================================
   NANOSO V1 shared pages: Products, OEM/ODM, Contact and categories
   Stable, centered B2B layout with section-safe media.
   ================================================================ */

.brand-image {
  flex: 0 0 auto;
  width: 148px;
  height: 44px;
  overflow: hidden;
}

.brand-image img,
.footer-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.footer-logo {
  width: 148px;
  height: 44px;
  margin-bottom: 14px;
}

.site-nav a[aria-current="page"]:not(.button) {
  color: var(--color-forest);
}

.site-nav a[aria-current="page"]:not(.button)::after {
  transform: scaleX(1);
}

.v1-page {
  color: #173b34;
  background: #fff;
}

.v1-page main {
  overflow: clip;
}

.v1-page h1,
.v1-page h2,
.v1-page h3 {
  max-width: 100%;
  color: var(--color-forest);
  letter-spacing: -0.035em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}

.v1-page h1 {
  font-size: clamp(3.25rem, 5vw, 4.25rem);
  line-height: 0.98;
}

.v1-page h2 {
  font-size: clamp(2.35rem, 3.5vw, 3.25rem);
  line-height: 1.05;
}

.v1-page h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.18;
}

.v1-page p,
.v1-page li {
  text-wrap: pretty;
}

.v1-container {
  width: min(calc(100% - 96px), 1200px);
  margin-inline: auto;
}

.v1-section,
.v1-hero,
.v1-cta {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
}

.v1-section {
  padding: 112px 0;
}

.v1-section-soft {
  background: #f1f7f5;
}

.v1-hero {
  padding: 64px 0 72px;
  background:
    radial-gradient(circle at 82% 20%, rgba(75, 183, 165, 0.15), transparent 34%),
    linear-gradient(135deg, #f4f8f6 0%, #fff 65%);
}

.v1-hero-grid,
.v1-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}

.v1-hero-copy,
.v1-copy,
.v1-media,
.v1-hero-media,
.product-category-card,
.category-product-grid article,
.oem-route-grid article,
.process-grid li,
.capability-grid article {
  min-width: 0;
}

.v1-hero-copy .lead {
  max-width: 620px;
  margin-top: 24px;
  font-size: 1.13rem;
  line-height: 1.7;
}

.v1-hero-copy .actions {
  margin-top: 32px;
}

.v1-hero-media,
.v1-media {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #e9f1ee;
  box-shadow: 0 26px 70px rgba(13, 63, 52, 0.11);
}

.v1-hero-media {
  aspect-ratio: 4 / 3;
}

.v1-media {
  aspect-ratio: 4 / 3;
}

.v1-hero-media img,
.v1-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.v1-hero-media:hover img,
.v1-media:hover img {
  transform: scale(1.025);
}

.v1-section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.v1-section-heading > p:last-child {
  max-width: 690px;
  margin-top: 18px;
  font-size: 1.03rem;
  line-height: 1.7;
}

.v1-copy > p:not(.eyebrow) {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: #126d5d;
  font-weight: 750;
}

.v1-checks {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.v1-checks li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.v1-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border: 3px solid #4bb7a5;
  border-radius: 50%;
}

.featured-preview {
  background: #fff;
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.product-category-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(13, 63, 52, 0.12);
  border-radius: 22px;
  color: inherit;
  background: #fff;
  box-shadow: 0 18px 44px rgba(13, 63, 52, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(13, 63, 52, 0.12);
}

.product-category-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  grid-template-rows: none;
}

.product-category-card figure {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eef4f2;
}

.product-category-card-wide figure {
  aspect-ratio: 16 / 10;
}

.product-category-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.product-category-card:hover figure img {
  transform: scale(1.035);
}

.product-category-card > div {
  padding: 28px 30px 32px;
}

.product-category-card p {
  margin-top: 12px;
  line-height: 1.65;
}

.product-category-card .text-link {
  margin-top: 18px;
}

.category-number {
  display: block;
  margin-bottom: 18px;
  color: #4bb7a5;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.capability-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.capability-row span {
  display: grid;
  min-height: 96px;
  place-items: center;
  padding: 20px;
  border: 1px solid rgba(13, 63, 52, 0.14);
  border-radius: 16px;
  text-align: center;
  color: var(--color-forest);
  background: #fff;
  font-weight: 750;
}

.v1-cta {
  padding: 64px 0;
  color: #fff;
  background: linear-gradient(110deg, #073d33, #0e6959);
}

.v1-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
}

.v1-cta h2,
.v1-cta .eyebrow {
  color: #fff;
}

.v1-cta p:not(.eyebrow) {
  max-width: 670px;
  margin-top: 14px;
  color: rgba(255,255,255,0.78);
}

.button-light {
  color: #0d3f34;
  background: #fff;
}

.oem-route-grid,
.capability-grid,
.contact-prep-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

.oem-route-grid article,
.capability-grid article,
.contact-prep-grid article {
  padding: 36px;
  border: 1px solid rgba(13, 63, 52, 0.13);
  border-radius: 20px;
  background: #fff;
}

.oem-route-grid article > span,
.contact-prep-grid article > span {
  display: block;
  margin-bottom: 18px;
  color: #4bb7a5;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.oem-route-grid p,
.capability-grid p,
.contact-prep-grid p {
  margin-top: 13px;
  line-height: 1.68;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.process-grid li {
  min-height: 250px;
  padding: 30px;
  border-top: 3px solid #4bb7a5;
  background: #f4f8f6;
}

.process-grid li > span {
  display: block;
  margin-bottom: 44px;
  color: #4bb7a5;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.process-grid li p {
  margin-top: 12px;
  line-height: 1.62;
}

/* Home keeps its compact dark process panel; later shared page rules must not override it. */
.oem-home-stage .process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.oem-home-stage .process-grid li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 6px 14px;
  min-height: 0;
  padding: 24px;
  border-top: 0;
  background: rgba(8, 48, 39, 0.97);
}

.oem-home-stage .process-grid li > span {
  display: block;
  grid-row: span 2;
  margin: 0;
  color: #93dfd1;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.oem-home-stage .process-grid strong {
  color: #fff;
}

.oem-home-stage .process-grid small {
  color: rgba(255, 255, 255, 0.66);
}

.category-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

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

.category-product-grid article {
  overflow: hidden;
  border: 1px solid rgba(13, 63, 52, 0.12);
  border-radius: 20px;
  background: #fff;
}

.category-product-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.category-product-grid article > div {
  padding: 26px 28px 30px;
}

.category-product-grid p {
  margin-top: 12px;
  line-height: 1.62;
}

.contact-hero {
  padding-top: 78px;
  padding-bottom: 92px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 22px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(13, 63, 52, 0.16);
}

.contact-details span {
  display: block;
  margin-bottom: 7px;
  color: #4b6d66;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details a {
  color: var(--color-forest);
  font-weight: 750;
}

.contact-details p {
  line-height: 1.65;
}

.contact-note {
  margin-top: 25px;
  color: #56736d;
  font-size: 0.9rem;
  line-height: 1.6;
}

.inquiry-panel {
  padding: 40px;
  border: 1px solid rgba(13, 63, 52, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(13, 63, 52, 0.1);
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.inquiry-panel label {
  display: grid;
  gap: 9px;
  color: #23483f;
  font-weight: 720;
}

.inquiry-panel label > span {
  display: inline;
}

.required-mark {
  color: #2d9d89;
  font: inherit;
}

.inquiry-panel input,
.inquiry-panel textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cad9d5;
  border-radius: 10px;
  background: #fbfdfc;
}

.form-help {
  margin: -2px 0 0;
  color: #617c75;
  font-size: 0.8rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .v1-container {
    width: min(calc(100% - 56px), 1200px);
  }

  .v1-section {
    padding: 88px 0;
  }

  .v1-hero-grid,
  .v1-split,
  .contact-layout,
  .product-category-card-wide {
    grid-template-columns: 1fr;
  }

  .v1-hero-copy {
    max-width: 740px;
  }

  .v1-hero-media {
    max-height: 620px;
  }

  .product-category-card-wide {
    grid-column: auto;
    grid-template-rows: auto 1fr;
  }

  .product-category-card-wide figure {
    aspect-ratio: 16 / 9;
  }

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

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

@media (max-width: 700px) {
  .v1-container {
    width: min(calc(100% - 40px), 1200px);
  }

  .v1-page h1 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
  }

  .v1-page h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .v1-section {
    padding: 72px 0;
  }

  .v1-hero {
    padding: 46px 0 60px;
  }

  .v1-hero-grid,
  .v1-split,
  .contact-layout {
    gap: 36px;
  }

  .product-category-grid,
  .category-product-grid,
  .category-product-grid-three,
  .oem-route-grid,
  .capability-grid,
  .contact-prep-grid,
  .process-grid,
  .v1-cta-inner {
    grid-template-columns: 1fr;
  }

  .v1-section-heading {
    margin-bottom: 36px;
  }

  .product-category-card > div,
  .oem-route-grid article,
  .capability-grid article,
  .contact-prep-grid article,
  .inquiry-panel {
    padding: 26px 24px;
  }

  .capability-row {
    grid-template-columns: 1fr;
  }

  .capability-row span {
    min-height: 72px;
  }

  .process-grid li {
    min-height: 0;
  }

  .process-grid li > span {
    margin-bottom: 28px;
  }

  .oem-home-stage .process-grid {
    grid-template-columns: 1fr;
  }

  .v1-cta-inner {
    gap: 28px;
  }

  .v1-cta .button {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v1-page *,
  .v1-page *::before,
  .v1-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final cascade guard: keep the four confirmed featured-product benefits
   readable after the legacy product-page rules later in this stylesheet. */
.featured-product-page .fp-material-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-product-page .fp-material-points .fp-writable-benefit {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 18px 64px 18px 24px;
  border-left: 1px solid var(--fp-line);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(213, 243, 235, 0.72), rgba(255, 255, 255, 0.9));
}

@media (max-width: 980px) {
  .featured-product-page .fp-material-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .featured-product-page .fp-material-points {
    grid-template-columns: 1fr;
  }

  .featured-product-page .fp-material-points .fp-writable-benefit {
    padding: 22px 64px 22px 0;
    border-left: 0;
    border-bottom: 1px solid var(--fp-line);
    border-radius: 0;
  }
}

/* Final visual guard: complete cooperation marks, larger production imagery,
   and encoding-safe OEM process arrows. */
.skip-link {
  position: absolute;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.brand-evolution .evolution-title .nanoso-type {
  color: #62cdb8;
  background: linear-gradient(90deg, rgba(174, 238, 222, 0.12), rgba(174, 238, 222, 0.58));
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #62cdb8;
}

.brand-evolution .evolution-track .is-current .nanoso-type::after {
  display: none;
  content: none;
}

.brand-logo-wall .brand-logo-item {
  display: grid;
  overflow: hidden;
  place-items: center;
}

.brand-logo-wall .brand-logo-image.brand-logo-lancome,
.brand-logo-wall .brand-logo-image.brand-logo-nestle,
.brand-logo-wall .brand-logo-image.brand-logo-mixue,
.brand-logo-wall .brand-logo-image.brand-logo-tencent,
.brand-logo-wall .brand-logo-image.brand-logo-meituan {
  display: block;
  width: auto;
  height: auto;
  margin: auto;
  object-fit: contain;
  object-position: center;
  transform-origin: center;
}

.brand-logo-wall .brand-logo-image.brand-logo-lancome {
  max-width: 138px;
  max-height: 62px;
}

.brand-logo-wall .brand-logo-image.brand-logo-nestle {
  max-width: 138px;
  max-height: 58px;
}

.brand-logo-wall .brand-logo-image.brand-logo-mixue {
  max-width: 142px;
  max-height: 58px;
}

.brand-logo-wall .brand-logo-image.brand-logo-tencent {
  max-width: 150px;
  max-height: 52px;
}

.brand-logo-wall .brand-logo-image.brand-logo-meituan {
  max-width: 142px;
  max-height: 52px;
}

.oem-page .oem-process-grid article {
  contain: none;
}

.oem-page .oem-process-grid article:nth-child(1)::after,
.oem-page .oem-process-grid article:nth-child(2)::after,
.oem-page .oem-process-grid article:nth-child(7)::after,
.oem-page .oem-process-grid article:nth-child(8)::after {
  content: "\2192";
}

.oem-page .oem-process-grid article:nth-child(3)::after,
.oem-page .oem-process-grid article:nth-child(4)::after {
  content: "\2193";
}

.oem-page .oem-process-grid article:nth-child(5)::after,
.oem-page .oem-process-grid article:nth-child(6)::after {
  content: "\2190";
}

.reveal-ready .oem-process-refresh.is-visible .oem-process-grid article:nth-child(4) {
  animation-delay: 435ms;
}

.reveal-ready .oem-process-refresh.is-visible .oem-process-grid article:nth-child(6) {
  animation-delay: 285ms;
}

@media (min-width: 981px) {
  .brand-evolution .evolution-title {
    font-size: clamp(4.25rem, 5.8vw, 6.8rem);
  }

  .production-chain .production-flow li {
    min-height: 244px;
  }

  .production-flow .production-flow-copy {
    padding-right: 138px;
  }

  .production-flow .production-flow-visual {
    width: 118px;
    height: 118px;
    border-radius: 25px;
  }
}

@media (min-width: 621px) and (max-width: 980px) {
  .production-flow .production-flow-copy {
    padding-right: 112px;
  }

  .production-flow .production-flow-visual {
    width: 96px;
    height: 96px;
    border-radius: 21px;
  }
}

@media (max-width: 760px) {
  .oem-page .oem-process-grid article:nth-child(n)::after {
    content: "\2193";
  }

  .oem-page .oem-process-grid article:nth-child(9)::after {
    display: none;
  }
}

/* Final cascade guard for the About and OEM/ODM closing pass. */
.skip-link {
  position: absolute;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  border-radius: 8px;
  background: var(--color-forest);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.brand-evolution .evolution-title .nanoso-type {
  color: #62cdb8;
  background: linear-gradient(90deg, rgba(174, 238, 222, 0.2), rgba(174, 238, 222, 0.58));
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #62cdb8;
}

.brand-evolution .evolution-track .is-current .nanoso-type::after {
  display: none;
  content: none;
}

.oem-page .oem-process-grid article {
  min-height: 176px;
  padding: 22px;
  contain: none;
}

@media (min-width: 981px) {
  .brand-evolution .evolution-title {
    font-size: clamp(4.25rem, 5.8vw, 6.8rem);
  }
}

@media (max-width: 760px) {
  .oem-page .oem-process-grid article {
    min-height: 0;
  }
}

/* 2026-07-20 About impact and OEM/ODM flow refinements. */
.brand-evolution .evolution-layout {
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(64px, 8vw, 128px);
}

.brand-evolution .evolution-intro {
  min-height: 590px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-evolution .evolution-title {
  width: 100%;
  gap: 0.04em;
  font-size: clamp(3.9rem, 5.35vw, 6.35rem);
  line-height: 0.93;
}

.brand-evolution .evolution-title .evolution-connector {
  margin-block: 0.05em;
  font-size: 0.34em;
  line-height: 1.1;
}

.brand-evolution .evolution-title > strong {
  background: linear-gradient(90deg, #083f35 8%, #0d6f60 58%, #55bca9 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-evolution .evolution-title .nanoso-type {
  margin-top: 0.14em;
  padding: 0.14em 0.22em 0.17em 0.05em;
  color: #087b69;
  background:
    linear-gradient(90deg, #53c3ac 0%, #82dfca 48%, #b7efdf 100%);
  background-clip: text;
  font-size: 1.2em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reveal-ready .brand-evolution:not(.is-visible) .evolution-title > * {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-ready .brand-evolution.is-visible .evolution-title > * {
  animation: evolution-name-enter 680ms cubic-bezier(.2, .72, .2, 1) both;
}

.reveal-ready .brand-evolution.is-visible .evolution-title > :nth-child(2) { animation-delay: 90ms; }
.reveal-ready .brand-evolution.is-visible .evolution-title > :nth-child(3) { animation-delay: 170ms; }
.reveal-ready .brand-evolution.is-visible .evolution-title > :nth-child(4) { animation-delay: 250ms; }
.reveal-ready .brand-evolution.is-visible .evolution-title > :nth-child(5) { animation-delay: 330ms; }
.reveal-ready .brand-evolution.is-visible .evolution-title > :nth-child(6) { animation-delay: 430ms; }

@keyframes evolution-name-enter {
  from { opacity: 0; transform: translateY(24px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@media (min-width: 981px) {
  .oem-page .oem-hero-refresh {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 0.88fr);
    isolation: isolate;
    overflow: hidden;
  }

  .oem-page .oem-hero-media {
    position: absolute;
    z-index: 0;
    inset: 0;
  }

  .oem-page .oem-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 38% center;
    transform: scale(1.025) translateX(-1.2%);
  }

  .oem-page .oem-hero-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.04) 38%, rgba(255, 255, 255, 0.48) 53%, rgba(255, 255, 255, 0.9) 67%, rgba(255, 255, 255, 0.985) 82%, #fff 100%),
      linear-gradient(0deg, rgba(7, 61, 52, 0.08), transparent 44%);
    pointer-events: none;
  }

  .oem-page .oem-hero-refresh:hover .oem-hero-media img {
    transform: scale(1.04) translateX(-1.2%);
  }

  .oem-page .oem-hero-copy {
    z-index: 2;
    grid-column: 2;
    min-height: inherit;
    padding-left: clamp(34px, 4.8vw, 78px);
    background: transparent;
  }
}

.oem-page .oem-process-layout {
  grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(38px, 4.8vw, 72px);
  align-items: start;
}

.oem-page .oem-process-media {
  min-height: 530px;
  max-height: 570px;
  border-radius: 24px;
}

.oem-page .oem-process-media img {
  object-position: center 38%;
}

.oem-page .oem-process-media-label {
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.oem-page .oem-process-media-label strong {
  font-size: clamp(1.38rem, 1.8vw, 1.9rem);
}

.oem-page .oem-process-grid {
  position: relative;
  gap: 18px 20px;
  margin-top: 32px;
}

.oem-page .oem-process-grid article {
  position: relative;
  min-height: 176px;
  padding: 22px;
  contain: none;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(8, 73, 61, 0.045);
}

.oem-page .oem-process-grid h3 {
  margin: 16px 0 7px;
  font-size: clamp(1.16rem, 1.35vw, 1.34rem);
  line-height: 1.16;
}

.oem-page .oem-process-grid p {
  font-size: 0.96rem;
  line-height: 1.5;
}

.oem-page .oem-process-grid article::after {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #168f7c;
  border: 1px solid rgba(22, 143, 124, 0.18);
  border-radius: 999px;
  background: #f8fffd;
  box-shadow: 0 6px 16px rgba(8, 73, 61, 0.08);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.oem-page .oem-process-grid article:nth-child(1)::after,
.oem-page .oem-process-grid article:nth-child(2)::after,
.oem-page .oem-process-grid article:nth-child(7)::after,
.oem-page .oem-process-grid article:nth-child(8)::after {
  top: 50%;
  right: -11px;
  content: "→";
  transform: translate(50%, -50%);
}

.oem-page .oem-process-grid article:nth-child(3)::after,
.oem-page .oem-process-grid article:nth-child(4)::after {
  bottom: -11px;
  left: 50%;
  content: "↓";
  transform: translate(-50%, 50%);
}

.oem-page .oem-process-grid article:nth-child(5)::after,
.oem-page .oem-process-grid article:nth-child(6)::after {
  top: 50%;
  left: -11px;
  content: "←";
  transform: translate(-50%, -50%);
}

.reveal-ready .oem-process-refresh:not(.is-visible) .oem-process-grid article {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}

.reveal-ready .oem-process-refresh.is-visible .oem-process-grid article {
  animation: oem-step-enter 520ms cubic-bezier(.2, .72, .2, 1) both;
}

.reveal-ready .oem-process-refresh.is-visible .oem-process-grid article:nth-child(1) { animation-delay: 60ms; }
.reveal-ready .oem-process-refresh.is-visible .oem-process-grid article:nth-child(2) { animation-delay: 135ms; }
.reveal-ready .oem-process-refresh.is-visible .oem-process-grid article:nth-child(3) { animation-delay: 210ms; }
.reveal-ready .oem-process-refresh.is-visible .oem-process-grid article:nth-child(4) { animation-delay: 285ms; }
.reveal-ready .oem-process-refresh.is-visible .oem-process-grid article:nth-child(5) { animation-delay: 360ms; }
.reveal-ready .oem-process-refresh.is-visible .oem-process-grid article:nth-child(6) { animation-delay: 435ms; }
.reveal-ready .oem-process-refresh.is-visible .oem-process-grid article:nth-child(7) { animation-delay: 510ms; }
.reveal-ready .oem-process-refresh.is-visible .oem-process-grid article:nth-child(8) { animation-delay: 585ms; }
.reveal-ready .oem-process-refresh.is-visible .oem-process-grid article:nth-child(9) { animation-delay: 660ms; }

@keyframes oem-step-enter {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.oem-page .oem-process-grid article:hover {
  transform: translateY(-4px);
}

.oem-page .site-cta {
  padding: 0;
  background: #fff;
}

.oem-page .site-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  gap: 0;
  min-height: 0;
  padding: clamp(34px, 4vw, 54px);
}

.oem-page .site-cta-inner > div {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.oem-page .site-cta .eyebrow {
  margin: 0;
}

.oem-page .site-cta h2 {
  margin: 10px 0 16px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1;
}

.oem-page .site-cta .button {
  min-height: 40px;
  padding: 9px 17px;
  border: 1px solid rgba(13, 63, 52, 0.12);
  border-radius: 12px;
  font-size: 0.88rem;
}

@media (max-width: 1180px) {
  .oem-page .oem-process-layout {
    grid-template-columns: minmax(270px, 0.56fr) minmax(0, 1.44fr);
  }

  .oem-page .oem-process-media {
    min-height: 500px;
  }
}

@media (max-width: 980px) {
  .brand-evolution .evolution-layout {
    grid-template-columns: 1fr;
  }

  .brand-evolution .evolution-intro {
    min-height: 0;
  }

  .brand-evolution .evolution-title {
    max-width: 690px;
    font-size: clamp(3.6rem, 10vw, 5.8rem);
  }

  .oem-page .oem-hero-media {
    background: #f2f7f5;
  }

  .oem-page .oem-hero-media img {
    object-position: 42% center;
  }

  .oem-page .oem-process-layout {
    grid-template-columns: 1fr;
  }

  .oem-page .oem-process-media {
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 760px) {
  .brand-evolution .evolution-title {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .oem-page .oem-process-grid {
    gap: 24px;
  }

  .oem-page .oem-process-grid article {
    min-height: 0;
  }

  .oem-page .oem-process-grid article:nth-child(n)::after {
    top: auto;
    right: auto;
    bottom: -13px;
    left: 50%;
    content: "↓";
    transform: translate(-50%, 50%);
  }

  .oem-page .oem-process-grid article:nth-child(9)::after {
    display: none;
  }

  .oem-page .site-cta-inner {
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready .brand-evolution .evolution-title > *,
  .reveal-ready .oem-process-refresh .oem-process-grid article {
    opacity: 1;
    animation: none;
    transform: none;
    filter: none;
  }
}

/* 2026-07-20 closing refinements: complete cooperation marks, clearer brand
   evolution typography, and a more legible production chain. */
.brand-logo-wall .brand-logo-item {
  padding: 22px 24px;
  overflow: hidden;
}

.brand-logo-wall .brand-logo-image {
  width: 100%;
  max-width: 150px;
  max-height: 58px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) contrast(1);
  opacity: 0.78;
  transform: none;
}

.brand-logo-wall .brand-logo-image-wide {
  max-width: 170px;
  max-height: 64px;
}

.brand-logo-wall .brand-logo-item:hover .brand-logo-image,
.brand-logo-wall .brand-logo-item:focus-visible .brand-logo-image {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: scale(1.025);
}

.brand-evolution .evolution-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05em;
  font-size: clamp(1.8rem, 3.15vw, 3.45rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.brand-evolution .evolution-title .evolution-connector {
  color: var(--color-ink);
  font-size: 0.54em;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.brand-evolution .evolution-title > strong {
  color: var(--color-forest);
  font-size: 1em;
  font-weight: 850;
  letter-spacing: 0.015em;
}

.brand-evolution .nanoso-type {
  display: inline-block;
  color: #087b69;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", var(--font-main);
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 0.95;
  text-transform: uppercase;
  transform: scaleX(1.08);
  transform-origin: left center;
}

.brand-evolution .evolution-title .nanoso-type {
  margin-top: 0.12em;
  padding: 0.13em 0.18em 0.16em 0.03em;
  background: linear-gradient(90deg, transparent, rgba(75, 183, 165, 0.14));
}

.brand-evolution .evolution-track li {
  align-items: start;
}

.brand-evolution .evolution-track strong,
.brand-evolution .evolution-current-brand .nanoso-type {
  font-size: clamp(2rem, 2.7vw, 2.7rem);
  line-height: 1;
}

.brand-evolution .evolution-current-brand {
  align-items: center;
}

.brand-evolution .evolution-current-brand .nanoso-type {
  padding: 0.06em 0.08em 0.08em 0;
}

.brand-evolution .evolution-current-brand .nanoso-type::after {
  display: none;
  content: none;
}

.production-chain .production-intro h2 {
  font-size: clamp(2.8rem, 4.8vw, 4.9rem);
}

.production-chain .production-flow li {
  min-height: 224px;
  padding: 32px;
}

.production-flow .production-flow-number {
  margin-bottom: 48px;
  font-size: 0.82rem;
}

.production-flow .production-flow-copy {
  gap: 8px;
  padding-right: 112px;
}

.production-chain .production-flow strong {
  font-size: clamp(1.25rem, 1.7vw, 1.48rem);
  line-height: 1.12;
}

.production-chain .production-flow small {
  font-size: 0.94rem;
  line-height: 1.4;
}

.production-flow .production-flow-visual {
  top: 28px;
  right: 28px;
  width: 96px;
  height: 96px;
  border-radius: 22px;
}

@media (max-width: 980px) {
  .brand-evolution .evolution-title {
    font-size: clamp(2.35rem, 8vw, 4rem);
  }

  .production-flow .production-flow-copy {
    padding-right: 94px;
  }

  .production-flow .production-flow-visual {
    width: 82px;
    height: 82px;
  }
}

@media (max-width: 620px) {
  .brand-logo-wall .brand-logo-item {
    padding: 18px;
  }

  .brand-logo-wall .brand-logo-image,
  .brand-logo-wall .brand-logo-image-wide {
    max-width: 132px;
    max-height: 52px;
  }

  .brand-evolution .evolution-title {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .brand-evolution .evolution-track li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .brand-evolution .evolution-track strong,
  .brand-evolution .evolution-current-brand .nanoso-type {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .production-chain .production-flow li {
    min-height: 208px;
    padding: 24px 20px;
  }

  .production-flow .production-flow-number {
    margin-bottom: 54px;
  }

  .production-flow .production-flow-copy {
    padding-right: 0;
  }

  .production-flow .production-flow-visual {
    top: 18px;
    right: 18px;
    width: 72px;
    height: 72px;
    border-radius: 17px;
  }
}

/* Products and OEM/ODM alignment: shared hero rhythm and centered content screens */
.products-page main,
.oem-page main {
  padding-bottom: clamp(28px, 4vw, 64px);
  background: #f6f8f7;
}

.products-page .page-container,
.oem-page .page-container {
  width: min(calc(100% - 80px), 1180px);
  margin-inline: auto;
}

.products-page .section-pad,
.oem-page .section-pad {
  padding-block: clamp(76px, 8vw, 118px);
}

.products-page main > section:not(:first-child),
.oem-page main > section:not(:first-child) {
  width: min(calc(100% - 64px), 1320px);
  margin: clamp(30px, 4vw, 58px) auto 0;
  border: 1px solid rgba(9, 72, 60, 0.09);
  border-radius: 30px;
  box-shadow: 0 18px 50px rgba(13, 63, 52, 0.055);
}

.products-page .section-heading,
.oem-page .section-heading {
  margin-bottom: clamp(40px, 5vw, 68px);
}

.products-page .section-heading-split,
.oem-page .section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.62fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: end;
}

.products-page .section-heading h2,
.oem-page .section-heading h2,
.oem-page .oem-process-layout h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(2.35rem, 3.65vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.products-page .section-heading > p,
.oem-page .section-heading > p {
  max-width: 480px;
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.72;
}

.products-page h1,
.products-page h2,
.products-page h3,
.oem-page h1,
.oem-page h2,
.oem-page h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.products-page .products-hero-refresh,
.oem-page .oem-hero-refresh {
  grid-template-columns: minmax(0, 1.03fr) minmax(480px, 0.97fr);
  min-height: clamp(620px, calc(100svh - 76px), 760px);
  background: #fff;
}

.products-page .products-hero-copy,
.oem-page .oem-hero-copy {
  padding: clamp(64px, 7vw, 108px) clamp(46px, 6.5vw, 96px);
}

.products-page .products-hero-copy h1,
.oem-page .oem-hero-copy h1 {
  max-width: 650px;
  font-size: clamp(3.15rem, 4.45vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.products-page .products-hero-copy > p:not(.eyebrow),
.oem-page .oem-hero-copy > p:not(.eyebrow) {
  max-width: 560px;
}

.products-page .products-hero-media,
.oem-page .oem-hero-media {
  overflow: hidden;
}

.products-page .products-hero-media img,
.oem-page .oem-hero-media img {
  transition: transform 900ms cubic-bezier(.2, .7, .2, 1);
}

.products-page .products-hero-refresh:hover .products-hero-media img,
.oem-page .oem-hero-refresh:hover .oem-hero-media img {
  transform: scale(1.018);
}

.products-page .products-category-grid-refresh {
  gap: 26px;
}

.products-page .products-category-image img[src*="brand-collaboration-starbucks"] {
  object-position: center 48%;
}

.products-page .brand-project-card-refresh,
.oem-page .oem-route-grid article,
.oem-page .oem-case-grid article,
.oem-page .oem-process-grid article,
.oem-page .oem-capability-list article {
  contain: layout paint;
}

.products-page .brief-showcase-refresh,
.oem-page .oem-execution-refresh {
  min-height: 600px;
}

.products-page .brief-showcase-copy,
.oem-page .oem-execution-copy {
  padding: clamp(64px, 7vw, 104px) clamp(42px, 6vw, 86px);
}

.products-page .brief-showcase-copy h2,
.oem-page .oem-execution-copy h2 {
  max-width: 620px;
  font-size: clamp(2.55rem, 4.15vw, 4.8rem);
  line-height: 1.01;
  text-wrap: balance;
}

.products-page .brief-capability-list li {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  list-style: none;
}

.products-page .brief-capability-list {
  padding: 0;
}

.products-page .site-cta,
.oem-page .site-cta {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .products-page .products-hero-refresh,
  .oem-page .oem-hero-refresh {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  }

  .products-page .products-hero-copy h1,
  .oem-page .oem-hero-copy h1 {
    font-size: clamp(2.9rem, 5vw, 4.4rem);
  }

  .products-page .brand-project-card-refresh {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .products-page .products-hero-refresh,
  .oem-page .oem-hero-refresh {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .products-page .products-hero-media,
  .oem-page .oem-hero-media {
    aspect-ratio: 16 / 9;
  }

  .products-page .products-hero-copy,
  .oem-page .oem-hero-copy {
    padding: 64px max(36px, 7vw) 72px;
  }

  .products-page .section-heading-split,
  .oem-page .section-heading-split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .products-page .section-heading > p,
  .oem-page .section-heading > p {
    max-width: 680px;
  }

  .products-page .brief-showcase-refresh,
  .oem-page .oem-execution-refresh {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .products-page main,
  .oem-page main {
    padding-bottom: 24px;
  }

  .products-page main > section:not(:first-child),
  .oem-page main > section:not(:first-child) {
    width: calc(100% - 24px);
    margin-top: 20px;
    border-radius: 22px;
  }

  .products-page .page-container,
  .oem-page .page-container {
    width: calc(100% - 32px);
  }

  .products-page .section-pad,
  .oem-page .section-pad {
    padding-block: 62px;
  }

  .products-page .products-hero-media,
  .oem-page .oem-hero-media {
    aspect-ratio: 4 / 3;
  }

  .products-page .products-hero-copy,
  .oem-page .oem-hero-copy {
    padding: 52px 22px 62px;
  }

  .products-page .products-hero-copy h1,
  .oem-page .oem-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.45rem);
    line-height: 1;
  }

  .products-page .section-heading h2,
  .oem-page .section-heading h2,
  .oem-page .oem-process-layout h2 {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
  }

  .products-page .brief-showcase-copy,
  .oem-page .oem-execution-copy {
    padding: 54px 24px 62px;
  }

  .products-page .brief-showcase-copy h2,
  .oem-page .oem-execution-copy h2 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .products-page .button-row,
  .oem-page .button-row {
    width: 100%;
  }

  .products-page .button-row .button,
  .oem-page .button-row .button {
    flex: 1 1 100%;
  }

  .oem-page .oem-process-media-label,
  .oem-page .oem-capability-media > div {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .products-page .products-hero-media img,
  .oem-page .oem-hero-media img {
    transition: none;
  }
}

/* Compact brand proof cards and Mitour-inspired process icon rhythm */
.oem-page .oem-cases-refresh {
  padding-block: clamp(64px, 6.5vw, 88px);
}

.oem-page .oem-cases-refresh .section-heading {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.oem-page .oem-case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.oem-page .oem-case-grid article {
  min-height: 300px;
  padding: 24px;
  border-radius: 18px;
}

.oem-page .oem-case-top {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.oem-page .oem-case-logo {
  display: flex;
  width: 112px;
  height: 54px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  overflow: hidden;
  color: var(--color-green-deep);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
}

.oem-page .oem-case-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.oem-page .oem-case-wordmark {
  color: #f7b618;
  font-size: 0.93rem;
  font-weight: 900;
  letter-spacing: 0.045em;
}

.oem-page .oem-case-grid h3 {
  margin: 22px 0 12px;
  font-size: clamp(1.28rem, 1.55vw, 1.62rem);
  line-height: 1.12;
}

.oem-page .oem-case-grid p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.58;
}

.oem-page .oem-process-grid article {
  min-height: 172px;
  padding: 18px;
}

.oem-page .oem-process-card-head {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.oem-page .oem-process-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  color: var(--color-green-deep);
  border: 1px solid rgba(39, 170, 145, 0.18);
  border-radius: 11px;
  background: #e6f5f1;
}

.oem-page .oem-process-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.oem-page .oem-process-grid h3 {
  margin: 14px 0 6px;
}

@media (max-width: 1180px) {
  .oem-page .oem-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oem-page .oem-case-grid article {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .oem-page .oem-case-grid {
    grid-template-columns: 1fr;
  }

  .oem-page .oem-case-grid article {
    min-height: 0;
  }

  .oem-page .oem-process-grid article {
    min-height: 0;
  }
}

/* Final typography polish and Products hero image-to-copy blend */
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:where(h1, h2, h3) {
  margin-top: 0;
  font-family: inherit;
  font-synthesis: none;
  text-wrap: balance;
}

:where(p, li, figcaption, .lead) {
  text-wrap: pretty;
}

:where(main section, main article, main div, main figure) {
  min-width: 0;
}

:where(.button, .site-nav a, .text-link, .fp-text-link) {
  line-height: 1.25;
}

:where(.contact-details a, .site-footer a) {
  overflow-wrap: anywhere;
}

.products-page .products-hero-media {
  position: relative;
}

.products-page .products-hero-media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 67%, rgba(247, 252, 250, 0.42) 78%, rgba(255, 255, 255, 0.98) 100%),
    linear-gradient(0deg, rgba(9, 72, 60, 0.04), transparent 38%);
  pointer-events: none;
}

.products-page .products-hero-copy {
  position: relative;
  background:
    radial-gradient(circle at 0 46%, rgba(102, 207, 183, 0.18), transparent 36%),
    radial-gradient(circle at 72% 18%, rgba(214, 244, 236, 0.72), transparent 32%),
    linear-gradient(135deg, #fbfefd 0%, #ffffff 68%);
}

.products-page .products-hero-copy::before {
  position: absolute;
  top: 14%;
  left: -54px;
  width: 180px;
  height: 72%;
  content: "";
  background: radial-gradient(ellipse, rgba(139, 222, 202, 0.2), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.products-page .products-hero-copy > * {
  position: relative;
  z-index: 1;
}

.oem-page .oem-process-intro {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--color-text-soft);
  line-height: 1.68;
}

@media (max-width: 980px) {
  .products-page .products-hero-media::after {
    background: linear-gradient(180deg, transparent 62%, rgba(255, 255, 255, 0.98) 100%);
  }

  .products-page .products-hero-copy::before {
    top: -56px;
    left: 8%;
    width: 84%;
    height: 120px;
  }
}

@media (max-width: 620px) {
  :where(h1, h2, h3) {
    text-wrap: pretty;
  }

  :where(.button, button.button) {
    white-space: normal;
    text-align: center;
  }
}

/* Distinctive NANOSO brand treatment in the About evolution story */
.brand-evolution .evolution-current-brand {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}

.brand-evolution .evolution-current-brand img {
  width: clamp(190px, 21vw, 270px);
  height: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.12);
}

.brand-evolution .evolution-current-brand em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  color: #fff;
  border-radius: 999px;
  background: var(--color-teal);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

/* Products hero: full-width image with a readable, transparent copy blend */
@media (min-width: 981px) {
  .products-page .products-hero-refresh {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(500px, 0.86fr);
    isolation: isolate;
  }

  .products-page .products-hero-media {
    position: absolute;
    z-index: 0;
    inset: 0;
  }

  .products-page .products-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.035) translateX(2.2%);
  }

  .products-page .products-hero-refresh:hover .products-hero-media img {
    transform: scale(1.048) translateX(2.2%);
  }

  .products-page .products-hero-media::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 37%, rgba(255, 255, 255, 0.48) 53%, rgba(255, 255, 255, 0.88) 66%, rgba(255, 255, 255, 0.98) 82%, #fff 100%),
      linear-gradient(0deg, rgba(6, 61, 52, 0.06), transparent 42%);
  }

  .products-page .products-hero-copy {
    z-index: 2;
    grid-column: 2;
    min-height: inherit;
    padding-left: clamp(32px, 4.5vw, 70px);
    background: transparent;
  }

  .products-page .products-hero-copy::before {
    top: 8%;
    left: -22%;
    width: 122%;
    height: 84%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.62), transparent 70%);
    filter: blur(24px);
  }
}

@media (max-width: 980px) {
  .products-page .products-hero-media {
    position: relative;
    inset: auto;
  }

  .products-page .products-hero-media img,
  .products-page .products-hero-refresh:hover .products-hero-media img {
    transform: none;
  }

  .products-page .products-hero-copy {
    background:
      radial-gradient(circle at 20% 0, rgba(180, 232, 219, 0.24), transparent 34%),
      #fff;
  }
}

@media (max-width: 620px) {
  .brand-evolution .evolution-current-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-evolution .evolution-current-brand img {
    width: min(100%, 210px);
  }
}

/* Final refinements: emphasize the current international brand and keep the
   four Featured Product benefits stable across supported viewport widths. */
.brand-evolution .evolution-track .is-current {
  background: linear-gradient(135deg, #dff5ef 0%, #effaf7 100%);
  box-shadow: 0 20px 48px rgba(6, 77, 64, 0.09);
}

.brand-evolution .evolution-track .is-current strong {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
}

.brand-evolution .evolution-track .is-current strong::after {
  content: "International brand";
  display: inline-flex;
  margin-left: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #0d7867;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  vertical-align: middle;
}

.featured-product-page .fp-material-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .featured-product-page .fp-material-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand-evolution .evolution-track .is-current strong::after {
    display: table;
    margin: 10px 0 0;
  }

  .featured-product-page .fp-material-points {
    grid-template-columns: 1fr;
  }
}

/* Featured Product V2 */
.featured-product-page {
  --fp-cream: #f8f7f3;
  --fp-pale: #eef6f3;
  --fp-line: rgba(13, 63, 52, 0.14);
  background: #fff;
}

.featured-product-page .site-header {
  z-index: 40;
}

.featured-product-page .button-outline {
  border: 1px solid rgba(13, 63, 52, 0.5);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-forest);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.featured-product-page .button:hover,
.featured-product-page button:hover {
  transform: translateY(-2px);
}

.featured-product-page .button-outline:hover {
  background: var(--color-forest);
  color: #fff;
}

.fp-chapters {
  position: fixed;
  z-index: 30;
  top: 50%;
  right: clamp(18px, 2.4vw, 42px);
  display: grid;
  gap: 16px;
  transform: translateY(-50%);
}

.fp-chapters a {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 16px;
  color: #8a9693;
  font-size: 0.68rem;
  font-weight: 700;
}

.fp-chapters a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border: 1px solid #c9d2cf;
  border-radius: 50%;
  background: #fff;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.fp-chapters a span {
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.fp-chapters a:hover span,
.fp-chapters a:focus-visible span,
.fp-chapters a.is-active span {
  opacity: 1;
  transform: translateX(0);
}

.fp-chapters a.is-active {
  color: var(--color-forest);
}

.fp-chapters a.is-active::after {
  border-color: var(--color-forest);
  background: var(--color-forest);
  transform: scale(1.25);
}

.fp-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, 0.98fr);
  min-height: calc(100svh - 76px);
  overflow: hidden;
  background: linear-gradient(105deg, #f1f2f0 0%, #fff 66%);
}

.fp-hero-media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.fp-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, #fff 100%);
  pointer-events: none;
}

.fp-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fp-hero-copy {
  align-self: center;
  max-width: 660px;
  padding: 80px clamp(80px, 9vw, 170px) 80px clamp(54px, 6vw, 105px);
}

.fp-hero-copy h1 {
  margin: 10px 0 24px;
  color: var(--color-forest);
  font-size: clamp(3rem, 4.7vw, 5.35rem);
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.fp-hero-copy .lead {
  max-width: 580px;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.fp-series {
  margin: 20px 0 0;
  color: var(--color-forest);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fp-hero-copy .actions {
  margin-top: 28px;
}

.fp-materials {
  padding: 120px 0 105px;
  overflow: hidden;
  background: var(--fp-cream);
}

.fp-materials-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  grid-template-areas: "copy visual" "points points";
  gap: 46px 60px;
  align-items: center;
}

.fp-materials-copy {
  grid-area: copy;
}

.fp-materials-copy h2,
.fp-breakdown-intro h2,
.fp-surface-heading h2,
.fp-development-intro h2,
.fp-case-copy h2 {
  margin: 10px 0 24px;
  color: var(--color-forest);
  font-size: clamp(2.65rem, 4.4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.fp-materials-copy > p:not(.eyebrow) {
  max-width: 420px;
  color: var(--color-muted);
}

.fp-materials-visual {
  grid-area: visual;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
}

.fp-materials-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.fp-material-points {
  grid-area: points;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--fp-line);
}

.fp-material-points article {
  position: relative;
  padding: 30px 34px 8px 0;
}

.fp-material-points article + article {
  padding-left: 34px;
  border-left: 1px solid var(--fp-line);
}

.fp-material-points span,
.fp-component-list > li > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border: 1px solid rgba(75, 183, 165, 0.42);
  border-radius: 50%;
  color: var(--color-teal);
  font-size: 0.7rem;
  font-weight: 900;
}

.fp-material-points h3 {
  color: var(--color-forest);
  font-size: 1rem;
}

.fp-material-points p,
.fp-component-list p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 0.86rem;
}

.fp-breakdown {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 56% 54%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.3) 34%, transparent 58%),
    var(--fp-pale);
}

.fp-breakdown-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(420px, 1.35fr) minmax(290px, 0.78fr);
  gap: 34px;
  align-items: center;
}

.fp-breakdown-intro p:not(.eyebrow) {
  max-width: 330px;
  color: var(--color-muted);
}

.fp-text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  color: var(--color-teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.fp-breakdown-visual {
  position: relative;
  margin: 0;
}

.fp-breakdown-visual img {
  width: 100%;
  filter: drop-shadow(0 30px 46px rgba(13, 63, 52, 0.08));
  mix-blend-mode: multiply;
}

.fp-component-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--fp-line);
}

.fp-component-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--fp-line);
}

.fp-component-list > li > span {
  width: 30px;
  height: 30px;
  margin: 0;
}

.fp-component-list strong {
  color: var(--color-forest);
  font-size: 0.91rem;
}

.fp-surfaces {
  padding: 112px 0 120px;
  background: #fff;
}

.fp-surface-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.fp-surface-heading > p {
  max-width: 460px;
  margin: 0 0 8px;
  color: var(--color-muted);
}

.fp-surface-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--color-line);
}

.fp-surface-tabs button {
  position: relative;
  border: 0;
  padding: 18px;
  background: transparent;
  color: #818b89;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.fp-surface-tabs button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--color-teal);
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.fp-surface-tabs button[aria-selected="true"] {
  color: var(--color-forest);
}

.fp-surface-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.fp-surface-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: 72px;
  align-items: center;
  padding-top: 36px;
}

.fp-surface-stage figure {
  margin: 0;
  overflow: hidden;
  background: var(--color-soft);
}

.fp-surface-stage figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: opacity 160ms ease, transform 420ms ease;
}

.fp-surface-stage figure img.is-changing {
  opacity: 0;
  transform: scale(0.98);
}

.fp-surface-detail h3 {
  margin: 6px 0 14px;
  color: var(--color-forest);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1;
}

.fp-surface-detail > p:not(.eyebrow) {
  color: var(--color-muted);
}

.fp-color-options {
  display: flex;
  gap: 11px;
  margin: 26px 0;
}

.fp-color-options span {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(13, 63, 52, 0.12);
  border-radius: 50%;
}

.fp-color-options .blue { background: #2c60a5; }
.fp-color-options .pink { background: #efbcc1; }
.fp-color-options .stone { background: #d9d9d4; }
.fp-color-options .sage { background: #91a58f; }
.fp-color-options .forest { background: #1d6455; }
.fp-color-options .charcoal { background: #444744; }

.fp-custom-note {
  padding-top: 22px;
  border-top: 1px solid var(--fp-line);
  font-size: 0.83rem;
}

.fp-development {
  padding: 80px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-soft);
}

.fp-development-grid {
  display: grid;
  grid-template-columns: 0.85fr repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.fp-development-intro h2 {
  font-size: clamp(2.15rem, 3.2vw, 3.45rem);
}

.fp-development-intro > p:not(.eyebrow) {
  max-width: 320px;
  color: var(--color-muted);
  font-size: 0.87rem;
}

.fp-development-grid article {
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: #fff;
}

.fp-development-grid article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.fp-development-grid article > div {
  padding: 18px;
}

.fp-development-grid article h3 {
  color: var(--color-forest);
  font-size: 0.95rem;
}

.fp-development-grid article p {
  margin: 7px 0 0;
  color: var(--color-muted);
  font-size: 0.79rem;
}

.fp-development-card-text {
  display: grid;
  align-content: center;
  padding: 28px;
  background: linear-gradient(145deg, #dff2ed, #fff) !important;
}

.fp-development-card-text > span {
  color: var(--color-teal);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.fp-development-card-text > div {
  padding: 14px 0 0 !important;
}

.fp-case {
  display: grid;
  grid-template-columns: minmax(460px, 0.8fr) minmax(0, 1.2fr);
  min-height: 760px;
  background: var(--fp-cream);
}

.fp-case-copy {
  align-self: center;
  padding: 90px clamp(55px, 7vw, 128px);
}

.fp-case-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: var(--color-muted);
}

.fp-case-copy ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.fp-case-copy li {
  position: relative;
  padding-left: 28px;
  color: var(--color-forest);
  font-size: 0.9rem;
  font-weight: 800;
}

.fp-case-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--color-forest);
  color: #fff;
  font-size: 0.65rem;
}

.fp-case-media {
  min-height: 760px;
  margin: 0;
  overflow: hidden;
}

.fp-case-media img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center;
}

.fp-final-cta {
  padding: 62px 0;
  color: #fff;
  background:
    radial-gradient(circle at 64% 0%, rgba(75, 183, 165, 0.34), transparent 32%),
    var(--color-forest);
}

.fp-final-cta-grid {
  display: grid;
  grid-template-columns: auto 1.1fr 0.9fr auto;
  gap: 34px;
  align-items: center;
}

.fp-cta-mark {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  font-family: inherit;
  font-size: 2.2rem;
  font-weight: 800;
}

.fp-final-cta h2 {
  color: #fff;
  font-size: clamp(1.85rem, 3vw, 3.25rem);
  line-height: 1.03;
}

.fp-final-cta p {
  max-width: 410px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.fp-light-button {
  min-width: 180px;
  background: #fff;
  color: var(--color-forest);
}

.fp-project-note {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-line);
  background: #fff;
}

.fp-project-note p {
  max-width: 980px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 0.76rem;
  text-align: center;
}

@media (max-width: 1280px) {
  .fp-chapters { display: none; }
  .fp-hero { grid-template-columns: minmax(0, 1fr) minmax(470px, 0.85fr); }
  .fp-hero-copy { padding-right: 55px; padding-left: 46px; }
  .fp-breakdown-grid { grid-template-columns: 0.7fr 1.2fr 0.82fr; }
}

@media (max-width: 980px) {
  .fp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .fp-hero-media {
    min-height: 62svh;
  }

  .fp-hero-media::after {
    background: linear-gradient(180deg, transparent 68%, #fff 100%);
  }

  .fp-hero-copy {
    max-width: none;
    margin-top: -60px;
    padding: 50px 28px 82px;
    background: #fff;
  }

  .fp-materials-grid,
  .fp-breakdown-grid,
  .fp-surface-stage,
  .fp-case {
    grid-template-columns: 1fr;
  }

  .fp-materials-grid {
    grid-template-areas: "copy" "visual" "points";
  }

  .fp-breakdown-visual {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .fp-component-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--fp-line);
  }

  .fp-component-list li {
    padding: 18px;
    border-right: 1px solid var(--fp-line);
  }

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

  .fp-development-intro {
    grid-column: 1 / -1;
  }

  .fp-case {
    min-height: auto;
  }

  .fp-case-media,
  .fp-case-media img {
    min-height: 560px;
  }

  .fp-final-cta-grid {
    grid-template-columns: auto 1fr auto;
  }

  .fp-final-cta p {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .fp-hero-media { min-height: 54svh; }
  .fp-hero-copy h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .fp-hero-copy .actions .button { flex: 1 1 165px; }

  .fp-materials,
  .fp-breakdown,
  .fp-surfaces { padding: 76px 0; }

  .fp-materials-grid { gap: 32px; }
  .fp-materials-visual { margin: 0 -20px; }
  .fp-materials-visual img { aspect-ratio: 4 / 3; }

  .fp-material-points {
    grid-template-columns: 1fr;
  }

  .fp-material-points article,
  .fp-material-points article + article {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid var(--fp-line);
  }

  .fp-component-list {
    grid-template-columns: 1fr;
  }

  .fp-surface-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fp-surface-tabs button { padding: 15px 8px; font-size: 0.75rem; }
  .fp-surface-stage { gap: 32px; }
  .fp-surface-stage figure { margin: 0 -20px; }
  .fp-surface-stage figure img { aspect-ratio: 4 / 3; }

  .fp-development { padding: 68px 0; }
  .fp-development-grid { grid-template-columns: 1fr; }
  .fp-development-intro { grid-column: auto; }
  .fp-development-grid article { display: grid; grid-template-columns: 42% 58%; }
  .fp-development-grid article img { height: 100%; aspect-ratio: 1; }
  .fp-development-card-text { display: grid !important; grid-template-columns: 34% 66% !important; }

  .fp-case-copy { padding: 70px 20px; }
  .fp-case-media,
  .fp-case-media img { min-height: 420px; }

  .fp-final-cta-grid { grid-template-columns: auto 1fr; }
  .fp-final-cta p { grid-column: 1 / -1; }
  .fp-final-cta .button { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .featured-product-page *,
  .featured-product-page *::before,
  .featured-product-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Featured Product V3 — reference-fidelity geometry */
@media (min-width: 981px) {
  .featured-product-page {
    --container: 1270px;
  }

  .featured-product-page .header-inner {
    min-height: 72px;
  }

  .featured-product-page .site-nav {
    gap: 28px;
    font-size: 0.82rem;
  }

  .featured-product-page .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .fp-hero {
    grid-template-columns: 53% 47%;
    min-height: 0;
    height: 570px;
    background: #fff;
  }

  .fp-hero-media {
    min-height: 0;
    height: 570px;
    background: #f3f4f2;
  }

  .fp-hero-media::after {
    background: linear-gradient(90deg, transparent 76%, rgba(255, 255, 255, 0.98) 100%);
  }

  .fp-hero-media img {
    object-fit: cover;
    object-position: 50% 54%;
  }

  .fp-hero-copy {
    max-width: 620px;
    padding: 58px 90px 58px 44px;
  }

  .fp-hero-copy h1 {
    margin: 8px 0 22px;
    font-size: 3.25rem;
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .fp-hero-copy .lead {
    max-width: 430px;
    margin: 0;
    font-size: 1rem;
  }

  .fp-series {
    margin-top: 18px;
  }

  .fp-hero-copy .actions {
    margin-top: 24px;
  }

  .fp-chapters {
    right: 30px;
    gap: 14px;
  }

  .fp-chapters a span {
    opacity: 1;
    transform: none;
  }

  .fp-materials {
    height: 570px;
    padding: 0;
    background: #f8f7f3;
  }

  .fp-materials-grid {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr) 155px;
    gap: 0;
    align-items: stretch;
  }

  .fp-materials-copy {
    position: relative;
    z-index: 2;
    grid-area: auto;
    grid-column: 1 / span 5;
    grid-row: 1;
    align-self: center;
    padding: 28px 12px 0 8px;
  }

  .fp-materials-copy h2 {
    margin: 8px 0 20px;
    font-size: 2.4rem;
  }

  .fp-materials-copy > p:not(.eyebrow) {
    max-width: 350px;
    margin: 9px 0;
    font-size: 0.87rem;
  }

  .fp-materials-visual {
    position: relative;
    z-index: 0;
    grid-area: auto;
    grid-column: 4 / -1;
    grid-row: 1 / -1;
    align-self: stretch;
    overflow: visible;
  }

  .fp-materials-visual::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, #f8f7f3 0%, rgba(248, 247, 243, 0.76) 20%, transparent 48%);
    pointer-events: none;
  }

  .fp-materials-visual img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  .fp-material-points {
    position: relative;
    z-index: 3;
    grid-area: auto;
    grid-column: 1 / span 9;
    grid-row: 2;
    align-self: end;
    border: 0;
    background: rgba(248, 247, 243, 0.94);
  }

  .fp-material-points article,
  .fp-material-points article + article {
    padding: 18px 28px 12px 8px;
    border: 0;
  }

  .fp-material-points article + article {
    padding-left: 24px;
  }

  .fp-material-points span {
    float: left;
    width: 38px;
    height: 38px;
    margin: 0 12px 60px 0;
  }

  .fp-material-points h3 {
    padding-top: 3px;
    font-size: 0.85rem;
  }

  .fp-material-points p {
    margin-top: 5px;
    font-size: 0.74rem;
    line-height: 1.48;
  }

  .fp-breakdown {
    height: 650px;
    padding: 0;
    background: radial-gradient(ellipse 48% 72% at 50% 50%, #fbf8f4 0%, #f5f3ee 42%, #eef6f3 78%);
  }

  .fp-breakdown-grid {
    height: 100%;
    grid-template-columns: 25% 47% 28%;
    gap: 0;
  }

  .fp-breakdown-intro {
    align-self: center;
    padding: 0 22px 0 8px;
  }

  .fp-breakdown-intro h2 {
    margin: 8px 0 20px;
    font-size: clamp(2.5rem, 3.4vw, 3.8rem);
  }

  .fp-breakdown-intro p:not(.eyebrow) {
    max-width: 270px;
    font-size: 0.84rem;
  }

  .fp-breakdown-visual {
    align-self: stretch;
    display: grid;
    place-items: center;
    height: 100%;
  }

  .fp-breakdown-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .fp-component-list {
    align-self: center;
  }

  .fp-component-list li {
    grid-template-columns: 32px 1fr;
    gap: 9px;
    padding: 11px 0;
  }

  .fp-component-list > li > span {
    width: 24px;
    height: 24px;
    font-size: 0.6rem;
  }

  .fp-component-list strong {
    font-size: 0.81rem;
  }

  .fp-component-list p {
    margin-top: 3px;
    font-size: 0.69rem;
    line-height: 1.4;
  }

  .fp-surfaces {
    height: 470px;
    padding: 50px 0 42px;
  }

  .fp-surfaces > .container {
    height: 100%;
    display: grid;
    grid-template-columns: 34% 66%;
    grid-template-rows: 46px minmax(0, 1fr);
    column-gap: 44px;
  }

  .fp-surface-heading {
    grid-column: 1;
    grid-row: 1 / -1;
    display: block;
    margin: 0;
  }

  .fp-surface-heading h2 {
    margin: 8px 0 20px;
    font-size: 2.15rem;
  }

  .fp-surface-heading > p {
    max-width: 285px;
    font-size: 0.84rem;
  }

  .fp-surface-tabs {
    grid-column: 2;
    grid-row: 1;
  }

  .fp-surface-tabs button {
    padding: 10px 14px;
    font-size: 0.79rem;
  }

  .fp-surface-stage {
    grid-column: 2;
    grid-row: 2;
    grid-template-columns: 58% 42%;
    gap: 30px;
    padding-top: 18px;
  }

  .fp-surface-stage figure {
    height: 100%;
    background: transparent;
  }

  .fp-surface-stage figure img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .fp-surface-detail h3 {
    margin: 5px 0 10px;
    font-size: 2rem;
  }

  .fp-surface-detail > p:not(.eyebrow) {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .fp-color-options {
    gap: 9px;
    margin: 18px 0 15px;
  }

  .fp-color-options span {
    width: 17px;
    height: 17px;
  }

  .fp-custom-note {
    padding-top: 13px;
    font-size: 0.68rem !important;
  }

  .fp-development {
    height: 230px;
    padding: 34px 0;
  }

  .fp-development-grid {
    height: 100%;
    grid-template-columns: 25% repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .fp-development-intro h2 {
    margin: 6px 0 10px;
    font-size: clamp(2rem, 2.55vw, 2.65rem);
  }

  .fp-development-intro > p:not(.eyebrow) {
    display: none;
  }

  .fp-development-grid article {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    border: 0;
    background: transparent;
  }

  .fp-development-grid article img {
    width: 100%;
    height: 120px;
    aspect-ratio: auto;
    border-radius: 50%;
    object-fit: cover;
  }

  .fp-development-grid article > div {
    padding: 10px 0 10px 15px;
  }

  .fp-development-grid article h3 {
    font-size: 0.78rem;
  }

  .fp-development-grid article p {
    font-size: 0.68rem;
    line-height: 1.42;
  }

  .fp-case {
    grid-template-columns: 39% 61%;
    min-height: 0;
    height: 410px;
  }

  .fp-case-copy {
    padding: 46px 45px 40px max(50px, calc((100vw - 1270px) / 2));
  }

  .fp-case-copy h2 {
    margin: 6px 0 14px;
    font-size: 2.25rem;
  }

  .fp-case-copy > p:not(.eyebrow) {
    max-width: 360px;
    margin: 0;
    font-size: 0.78rem;
  }

  .fp-case-copy ul {
    gap: 8px;
    margin: 20px 0 22px;
  }

  .fp-case-copy li {
    padding-left: 24px;
    font-size: 0.72rem;
  }

  .fp-case-copy li::before {
    width: 16px;
    height: 16px;
  }

  .fp-case-copy .button {
    padding: 9px 16px;
    font-size: 0.72rem;
  }

  .fp-case-media,
  .fp-case-media img {
    min-height: 0;
    height: 410px;
  }

  .fp-case-media img {
    object-position: center 46%;
  }

  .fp-final-cta {
    height: 150px;
    padding: 0;
    background: var(--color-forest);
  }

  .fp-final-cta-grid {
    height: 100%;
    grid-template-columns: auto 1.05fr 0.9fr auto;
    gap: 28px;
  }

  .fp-cta-mark {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    font-size: 1.9rem;
  }

  .fp-final-cta h2 {
    font-size: clamp(1.65rem, 2.3vw, 2.45rem);
  }

  .fp-final-cta p {
    font-size: 0.76rem;
  }

  .fp-light-button {
    min-width: 160px;
    padding: 10px 18px;
    font-size: 0.76rem;
  }

  .fp-project-note {
    display: none;
  }

  .featured-product-page .site-footer { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Featured Product V4 — integrated image planes */
@media (min-width: 981px) {
  .fp-materials {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .fp-materials-grid {
    overflow: visible;
  }

  .fp-materials-visual {
    position: absolute;
    inset: 0 calc((100vw - 100%) / -2) 0 29%;
    width: auto;
    height: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 9%, #000 31%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 9%, #000 31%, #000 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .fp-materials-visual::before {
    content: none;
  }

  .fp-materials-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 52%;
    mix-blend-mode: multiply;
  }

  .fp-materials-copy,
  .fp-material-points {
    position: relative;
    z-index: 2;
  }

  .fp-material-points {
    background: linear-gradient(90deg, #f8f7f3 0%, rgba(248, 247, 243, 0.94) 72%, rgba(248, 247, 243, 0) 100%);
  }

  .fp-breakdown-visual img {
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 17%, #000 83%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 17%, #000 83%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    filter: brightness(1.07) contrast(1.03) saturate(0.92);
    mix-blend-mode: multiply;
  }

  .fp-surface-stage figure {
    overflow: visible;
    isolation: isolate;
    background: radial-gradient(ellipse 60% 70% at 50% 54%, #f4f0eb 0%, #fff 76%);
  }

  .fp-surface-stage figure img {
    width: 112%;
    max-width: none;
    margin-left: -6%;
    -webkit-mask-image: radial-gradient(ellipse 67% 72% at 50% 54%, #000 43%, rgba(0, 0, 0, 0.8) 58%, transparent 100%);
    mask-image: radial-gradient(ellipse 67% 72% at 50% 54%, #000 43%, rgba(0, 0, 0, 0.8) 58%, transparent 100%);
    filter: brightness(1.14) contrast(1.02) saturate(0.92);
    mix-blend-mode: multiply;
  }

  .fp-case {
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }

  .fp-case-copy {
    position: relative;
    z-index: 2;
  }

  .fp-case-media {
    position: relative;
    width: calc(100% + 120px);
    margin-left: -120px;
  }

  .fp-case-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 10%, #000 27%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 10%, #000 27%, #000 100%);
  }
}

@media (max-width: 980px) {
  .fp-materials-visual img {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  }

  .fp-breakdown-visual img,
  .fp-surface-stage figure img {
    -webkit-mask-image: radial-gradient(ellipse 86% 88% at 50% 50%, #000 62%, transparent 100%);
    mask-image: radial-gradient(ellipse 86% 88% at 50% 50%, #000 62%, transparent 100%);
    mix-blend-mode: multiply;
  }

  .fp-case-media img {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 100%);
  }
}

/* Featured Product V5 — translation-safe section containment */
.featured-product-page main {
  position: relative;
  overflow: clip;
}

.feature-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 981px) {
  .fp-chapters {
    position: absolute;
    top: 185px;
    right: max(18px, calc((100vw - 1270px) / 2));
    z-index: 5;
  }

  .fp-hero {
    height: auto;
    min-height: 570px;
    align-items: stretch;
  }

  .fp-hero-media {
    height: auto;
    min-height: 570px;
  }

  .fp-hero-copy {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 570px;
  }

  .fp-materials {
    height: auto;
    min-height: 570px;
    padding: 56px 0 38px;
  }

  .fp-materials-grid {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 476px;
    padding-right: 0;
    padding-left: max(28px, calc((100vw - 1270px) / 2));
    grid-template-columns: minmax(300px, 25%) minmax(0, 75%);
    grid-template-rows: minmax(310px, auto) auto;
    overflow: hidden;
  }

  .fp-materials-copy {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    padding: 20px 8px 22px 0;
  }

  .fp-materials-copy h2 {
    font-size: 2.1rem;
  }

  .fp-materials-visual {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    min-height: 310px;
    height: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
  }

  .fp-materials-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
  }

  .fp-material-points {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: stretch;
    width: 100%;
    background: linear-gradient(90deg, #f8f7f3 0%, rgba(248, 247, 243, 0.97) 70%, rgba(248, 247, 243, 0.76) 100%);
  }

  .fp-breakdown {
    height: auto;
    min-height: 650px;
    padding: 48px 0;
  }

  .fp-breakdown-grid {
    height: auto;
    min-height: 554px;
    overflow: hidden;
  }

  .fp-breakdown-intro,
  .fp-breakdown-visual,
  .fp-component-list {
    min-width: 0;
  }

  .fp-breakdown-visual {
    overflow: hidden;
  }

  .fp-breakdown-visual img {
    width: 100%;
    max-width: 100%;
  }

  .fp-surfaces {
    height: auto;
    min-height: 470px;
    padding: 48px 0 40px;
  }

  .fp-surfaces > .container {
    height: auto;
    min-height: 382px;
    grid-template-columns: minmax(285px, 32%) minmax(0, 68%);
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
  }

  .fp-surface-heading,
  .fp-surface-tabs,
  .fp-surface-stage,
  .fp-surface-detail {
    min-width: 0;
  }

  .fp-surface-stage {
    grid-template-columns: minmax(0, 58%) minmax(0, 42%);
    gap: 24px;
    overflow: hidden;
  }

  .fp-surface-stage figure {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .fp-surface-stage figure img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 300px;
    margin-left: 0;
    object-fit: contain;
  }

  .fp-surface-detail {
    overflow-wrap: anywhere;
  }

  .fp-development {
    height: auto;
    min-height: 230px;
    padding: 34px 0;
  }

  .fp-development-grid {
    height: auto;
    min-height: 162px;
    align-items: center;
  }

  .fp-development-grid article,
  .fp-development-grid article > div {
    min-width: 0;
  }

  .fp-development-grid article {
    overflow: hidden;
  }

  .fp-development-grid article img {
    max-width: 100%;
  }

  .fp-case {
    height: auto;
    min-height: 410px;
    align-items: stretch;
  }

  .fp-case-copy,
  .fp-case-media {
    min-width: 0;
  }

  .fp-case-media {
    width: 100%;
    height: auto;
    min-height: 410px;
    margin-left: 0;
    overflow: hidden;
  }

  .fp-case-media img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
  }

  .fp-final-cta {
    height: auto;
    min-height: 150px;
    padding: 24px 0;
  }

  .fp-final-cta-grid {
    height: auto;
    min-height: 102px;
  }
}

@media (min-width: 981px) and (max-width: 1320px) {
  .fp-chapters {
    right: 12px;
  }

  .fp-chapters a span {
    display: none;
  }

  .fp-hero-copy {
    padding-right: 72px;
  }

  .fp-materials-grid {
    grid-template-columns: minmax(300px, 26%) minmax(0, 74%);
    padding-left: 28px;
  }

  .fp-materials-copy h2 { font-size: 2rem; }

  .fp-surfaces > .container {
    grid-template-columns: minmax(270px, 30%) minmax(0, 70%);
  }
}

@media (max-width: 980px) {
  .fp-chapters {
    display: none;
  }

  .fp-materials-grid,
  .fp-breakdown-grid,
  .fp-surface-stage,
  .fp-development-grid,
  .fp-case {
    overflow: hidden;
  }

  .fp-materials-visual,
  .fp-breakdown-visual,
  .fp-surface-stage figure,
  .fp-case-media {
    overflow: hidden;
  }

  .fp-materials-visual img,
  .fp-breakdown-visual img,
  .fp-surface-stage figure img,
  .fp-case-media img {
    max-width: 100%;
    margin-left: 0;
  }
}

/* About V1 */

.about-hero {
  position: relative;
  min-height: calc(88svh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-soft);
}

.about-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0.9) 68%, #ffffff 90%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 248, 246, 0.18));
}

.about-hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.82) brightness(1.08);
}

.about-hero-content {
  display: flex;
  justify-content: flex-end;
  padding: 70px 0;
}

.about-hero-copy {
  width: min(45vw, 610px);
}

.about-hero-copy h1 {
  font-size: clamp(3.2rem, 5.2vw, 6rem);
  line-height: 0.96;
}

.about-hero-copy .lead {
  max-width: 550px;
  margin: 24px 0 0;
}

.about-hero-year {
  position: absolute;
  right: -0.02em;
  bottom: -0.28em;
  z-index: -1;
  color: rgba(13, 63, 52, 0.045);
  font-size: clamp(8rem, 19vw, 20rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
  pointer-events: none;
}

.brand-evolution {
  padding: 112px 0;
}

.evolution-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 9vw, 150px);
}

.evolution-intro {
  position: sticky;
  top: 124px;
  align-self: start;
}

.evolution-intro h2 {
  font-size: clamp(2.9rem, 4.8vw, 5.2rem);
}

.evolution-story > .lead {
  margin-top: 0;
}

.evolution-track {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.evolution-track li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--color-line);
}

.evolution-track li > span {
  color: var(--color-teal);
  font-size: 0.76rem;
  font-weight: 800;
}

.evolution-track strong {
  display: block;
  color: var(--color-forest);
  font-size: clamp(1.65rem, 2.5vw, 2.45rem);
  line-height: 1;
}

.evolution-track p {
  max-width: 540px;
  margin: 10px 0 0;
  color: var(--color-muted);
}

.evolution-track .is-current {
  position: relative;
  margin-top: 10px;
  padding: 28px;
  border: 0;
  border-radius: 20px;
  background: var(--color-mint);
}

.evolution-team {
  position: relative;
  margin: 34px 0 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--color-forest);
}

.evolution-team::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 33, 27, 0.86) 100%);
  pointer-events: none;
}

.evolution-team img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.evolution-team figcaption {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 4px;
  padding: 24px;
}

.evolution-team strong {
  color: var(--color-white);
  font-size: 1.12rem;
}

.evolution-team span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.factory-scale {
  overflow: hidden;
  background: var(--color-forest);
  color: rgba(255, 255, 255, 0.72);
}

.factory-scale-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  min-height: 720px;
}

.factory-aerial {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.factory-aerial::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 58%, var(--color-forest) 100%);
  pointer-events: none;
}

.factory-aerial img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88) saturate(0.82);
}

.factory-aerial > span {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(13, 63, 52, 0.58);
  color: var(--color-white);
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.factory-scale-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(34px, 6vw, 100px) 80px clamp(34px, 4.5vw, 76px);
}

.factory-scale-copy h2 {
  color: var(--color-white);
  font-size: clamp(2.9rem, 4.3vw, 5rem);
}

.factory-scale-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 24px 0 0;
  font-size: 1.05rem;
}

.factory-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.factory-metrics div {
  display: grid;
  gap: 6px;
  min-height: 122px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.factory-metrics strong {
  color: var(--color-white);
  font-size: clamp(1.5rem, 2vw, 2.25rem);
  line-height: 1.05;
}

.factory-metrics span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.manufacturing-capabilities {
  padding: 112px 0;
}

.capabilities-summary {
  max-width: 430px;
  margin: 0;
  color: var(--color-muted);
}

.capability-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.capability-gallery-card {
  position: relative;
  grid-column: span 4;
  min-height: 460px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--color-forest);
}

.capability-gallery-card-large {
  grid-column: span 8;
}

.capability-gallery-card-wide {
  grid-column: span 8;
}

.capability-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(4, 33, 27, 0.88) 100%);
}

.capability-gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.capability-gallery-card:hover img {
  transform: scale(1.035);
}

.capability-gallery-card > div {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 5px 14px;
  padding: 30px;
}

.capability-gallery-card span {
  grid-row: span 2;
  color: #93dfd1;
  font-size: 0.76rem;
  font-weight: 800;
}

.capability-gallery-card h3 {
  color: var(--color-white);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.capability-gallery-card p {
  max-width: 520px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.production-chain {
  padding: 112px 0;
  border-top: 1px solid var(--color-line);
  background: var(--color-soft);
}

.production-intro {
  max-width: 830px;
}

.production-intro .lead {
  margin-left: auto;
  margin-right: auto;
}

.production-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
}

.production-flow li {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.74);
  transition: background-color 180ms ease, color 180ms ease;
}

.production-flow li:hover {
  background: var(--color-forest);
}

.production-flow span {
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--color-teal);
  font-size: 0.72rem;
  font-weight: 800;
}

.production-flow strong {
  color: var(--color-forest);
  font-size: 1.12rem;
}

.production-flow small {
  margin-top: 5px;
  color: var(--color-muted);
}

.production-flow li:hover strong,
.production-flow li:hover small {
  color: var(--color-white);
}

.quality-systems {
  padding: 112px 0;
  background:
    radial-gradient(circle at 84% 16%, rgba(75, 183, 165, 0.16), transparent 30%),
    #ffffff;
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
}

.quality-layout h2 {
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}

.quality-panel {
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid var(--color-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.quality-proof-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
}

.quality-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quality-badges span {
  display: grid;
  place-items: center;
  min-height: 90px;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  background: var(--color-soft);
  color: var(--color-forest);
  font-weight: 900;
  text-align: center;
}

.quality-panel > p {
  margin: 26px 0;
  color: var(--color-muted);
}

@media (max-width: 1080px) {
  .about-hero-copy {
    width: min(49vw, 560px);
  }

  .factory-scale-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  }
}

@media (max-width: 900px) {
  .about-hero {
    min-height: calc(100svh - 76px);
    align-items: end;
  }

  .about-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 8%, rgba(255, 255, 255, 0.16) 34%, rgba(255, 255, 255, 0.94) 65%, #ffffff 100%);
  }

  .about-hero-image img {
    object-position: 36% center;
  }

  .about-hero-content {
    justify-content: flex-start;
    padding: 330px 0 52px;
  }

  .about-hero-copy {
    width: 100%;
  }

  .about-hero-year {
    display: none;
  }

  .evolution-layout,
  .factory-scale-grid,
  .quality-layout {
    grid-template-columns: 1fr;
  }

  .evolution-intro {
    position: static;
  }

  .factory-aerial,
  .factory-aerial img {
    min-height: 520px;
  }

  .factory-aerial::after {
    background: linear-gradient(180deg, transparent 62%, var(--color-forest) 100%);
  }

  .factory-scale-copy {
    padding: 70px 30px 82px;
  }

  .capability-gallery-card,
  .capability-gallery-card-large,
  .capability-gallery-card-wide {
    grid-column: span 6;
  }

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

@media (max-width: 620px) {
  .about-hero-content {
    padding-top: 280px;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.7rem, 12vw, 3.8rem);
  }

  .about-hero-copy .actions .button {
    flex: 1 1 145px;
  }

  .brand-evolution,
  .manufacturing-capabilities,
  .production-chain,
  .quality-systems {
    padding: 76px 0;
  }

  .evolution-layout {
    gap: 34px;
  }

  .evolution-intro h2,
  .factory-scale-copy h2,
  .quality-layout h2 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .evolution-track .is-current {
    margin-left: -8px;
    margin-right: -8px;
    padding: 24px 18px;
  }

  .factory-aerial,
  .factory-aerial img {
    min-height: 390px;
  }

  .factory-scale-copy {
    padding: 62px 20px 72px;
  }

  .factory-metrics {
    grid-template-columns: 1fr;
  }

  .factory-metrics div {
    min-height: 102px;
  }

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

  .capability-gallery-card,
  .capability-gallery-card-large,
  .capability-gallery-card-wide {
    grid-column: auto;
    min-height: 390px;
  }

  .capability-gallery-card img {
    min-height: 390px;
  }

  .capability-gallery-card > div {
    padding: 22px;
  }

  .production-flow {
    grid-template-columns: 1fr;
  }

  .production-flow li {
    min-height: 150px;
  }

  .quality-badges {
    grid-template-columns: 1fr;
  }
}

/* Featured Product V6 — Home/About alignment with a stable B2B content system */
.featured-product-page {
  --fp-content: 1200px;
  --fp-section-space: clamp(78px, 7vw, 104px);
}

.featured-product-page main {
  overflow: visible;
}

.product-page-container {
  width: min(calc(100% - 96px), var(--fp-content));
  margin-inline: auto;
}

.featured-product-page .feature-section {
  height: auto;
  min-height: 0;
  overflow: hidden;
}

.featured-product-page .fp-materials-copy h2,
.featured-product-page .fp-breakdown-intro h2,
.featured-product-page .fp-surface-heading h2,
.featured-product-page .fp-development-intro h2,
.featured-product-page .fp-case-copy h2 {
  margin: 10px 0 20px;
  font-size: clamp(2.15rem, 3.1vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.featured-product-page .fp-materials-copy > p:not(.eyebrow),
.featured-product-page .fp-breakdown-intro > p:not(.eyebrow),
.featured-product-page .fp-surface-heading > p,
.featured-product-page .fp-development-intro > p:not(.eyebrow),
.featured-product-page .fp-case-copy > p:not(.eyebrow) {
  max-width: 510px;
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.featured-product-page .fp-chapters {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 13px;
  width: auto;
  padding: 15px 12px 15px 15px;
  border: 1px solid rgba(13, 63, 52, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(13, 63, 52, 0.08);
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
}

.featured-product-page .fp-chapters a {
  min-height: 14px;
  color: #7b8985;
  font-size: 0.68rem;
}

.featured-product-page .fp-chapters a span {
  display: inline;
  opacity: 1;
  transform: none;
}

.featured-product-page .fp-chapters a::after {
  width: 7px;
  height: 7px;
}

.featured-product-page .fp-hero {
  min-height: 570px;
}

.featured-product-page .fp-hero-media,
.featured-product-page .fp-hero-copy {
  min-height: 570px;
}

.featured-product-page .fp-hero-copy {
  padding: 62px clamp(76px, 7vw, 118px) 62px clamp(42px, 4vw, 68px);
}

.featured-product-page .fp-hero-copy h1 {
  font-size: clamp(2.8rem, 4.2vw, 4.25rem);
  line-height: 0.99;
}

.featured-product-page .fp-materials {
  padding: var(--fp-section-space) 0;
  background: #fbfaf7;
}

.featured-product-page .fp-materials-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  grid-template-rows: auto auto;
  gap: 54px 72px;
  min-height: 0;
  padding: 0;
  overflow: visible;
}

.featured-product-page .fp-materials-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  padding: 0;
}

.featured-product-page .fp-materials-visual {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: 540px;
  min-height: 0;
  margin: 0 0 0 auto;
  overflow: hidden;
  border-radius: 22px;
  background: #f3f1ed;
  box-shadow: 0 24px 60px rgba(13, 63, 52, 0.09);
  -webkit-mask-image: none;
  mask-image: none;
}

.featured-product-page .fp-materials-visual::before {
  content: none;
}

.featured-product-page .fp-materials-visual img {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
}

.featured-product-page .fp-material-points {
  position: static;
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid var(--fp-line);
  background: transparent;
}

.featured-product-page .fp-material-points article,
.featured-product-page .fp-material-points article + article {
  min-width: 0;
  padding: 0 34px 0 0;
  border: 0;
}

.featured-product-page .fp-material-points article + article {
  padding-left: 34px;
  border-left: 1px solid var(--fp-line);
}

.featured-product-page .fp-material-points span {
  float: none;
  width: 36px;
  height: 36px;
  margin: 0 0 15px;
}

.featured-product-page .fp-material-points h3 {
  font-size: 0.95rem;
}

.featured-product-page .fp-material-points p {
  margin-top: 8px;
  font-size: 0.82rem;
  line-height: 1.58;
}

.featured-product-page .fp-breakdown {
  padding: var(--fp-section-space) 0;
  background: #eef7f4;
}

.featured-product-page .fp-breakdown-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  grid-template-rows: auto 1fr;
  gap: 32px 76px;
  min-height: 0;
  overflow: visible;
}

.featured-product-page .fp-breakdown-intro {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  padding: 0;
}

.featured-product-page .fp-breakdown-visual {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 46%, #ffffff 0%, #f6f3ee 74%, rgba(246, 243, 238, 0) 100%);
}

.featured-product-page .fp-breakdown-visual img {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: none;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 92% 94% at 50% 50%, #000 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 92% 94% at 50% 50%, #000 72%, transparent 100%);
}

.featured-product-page .fp-component-list {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: center;
  margin: 0;
  border-top: 1px solid var(--fp-line);
}

.featured-product-page .fp-component-list li {
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 20px 0;
}

.featured-product-page .fp-component-list > li > span {
  width: 30px;
  height: 30px;
  font-size: 0.65rem;
}

.featured-product-page .fp-component-list strong {
  font-size: 0.94rem;
}

.featured-product-page .fp-component-list p {
  margin-top: 5px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.featured-product-page .fp-surfaces {
  padding: var(--fp-section-space) 0;
  background: #fff;
}

.featured-product-page .fp-surfaces > .product-page-container {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  grid-template-rows: auto 1fr;
  gap: 30px 72px;
  min-height: 0;
  overflow: visible;
}

.featured-product-page .fp-surface-heading {
  grid-column: 1;
  grid-row: 1 / -1;
  display: block;
  align-self: center;
  margin: 0;
}

.featured-product-page .fp-surface-heading > p {
  margin-top: 0;
}

.featured-product-page .fp-surface-heading h2 {
  font-size: clamp(2.05rem, 2.7vw, 2.5rem);
}

.featured-product-page .fp-surface-tabs {
  grid-column: 2;
  grid-row: 1;
}

.featured-product-page .fp-surface-stage {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(230px, 0.92fr);
  gap: 34px;
  min-height: 0;
  padding-top: 0;
  overflow: visible;
}

.featured-product-page .fp-surface-stage figure {
  width: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #f8f6f2;
}

.featured-product-page .fp-surface-stage figure img {
  position: static;
  width: 100%;
  height: auto;
  max-height: none;
  margin: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: none;
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
}

.featured-product-page .fp-surface-detail {
  align-self: center;
}

.featured-product-page .fp-surface-detail h3 {
  margin: 7px 0 12px;
  font-size: clamp(1.85rem, 2.4vw, 2.55rem);
}

.featured-product-page .fp-surface-detail > p:not(.eyebrow) {
  font-size: 0.86rem;
  line-height: 1.6;
}

.featured-product-page .fp-development {
  padding: var(--fp-section-space) 0;
  background: #f4f8f6;
}

.featured-product-page .fp-development-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  min-height: 0;
  align-items: stretch;
}

.featured-product-page .fp-development-intro {
  grid-column: 1 / -1;
  max-width: 640px;
  margin: 0 auto 18px;
  text-align: center;
}

.featured-product-page .fp-development-intro > p:not(.eyebrow) {
  display: block;
  margin-inline: auto;
}

.featured-product-page .fp-development-grid article {
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: #fff;
}

.featured-product-page .fp-development-grid article img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  object-fit: cover;
}

.featured-product-page .fp-development-grid article > div {
  padding: 23px 24px 26px;
}

.featured-product-page .fp-development-grid article h3 {
  font-size: 1rem;
}

.featured-product-page .fp-development-grid article p {
  margin-top: 8px;
  font-size: 0.84rem;
  line-height: 1.55;
}

.featured-product-page .fp-case {
  display: block;
  padding: var(--fp-section-space) 0;
  background: #fbfaf7;
}

.featured-product-page .fp-case-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 72px;
  align-items: center;
}

.featured-product-page .fp-case-copy {
  min-width: 0;
  padding: 0;
}

.featured-product-page .fp-case-copy ul {
  margin: 24px 0 30px;
}

.featured-product-page .fp-case-copy li {
  font-size: 0.88rem;
}

.featured-product-page .fp-case-media {
  position: relative;
  width: 100%;
  min-height: 0;
  height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #f2eee8;
  box-shadow: 0 24px 60px rgba(13, 63, 52, 0.08);
}

.featured-product-page .fp-case-media img {
  position: static;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: none;
  mask-image: none;
}

.featured-product-page .fp-final-cta {
  min-height: 0;
  padding: 48px 0;
}

.featured-product-page .fp-final-cta-grid {
  min-height: 0;
  height: auto;
  grid-template-columns: auto 1fr minmax(260px, 0.75fr) auto;
  gap: 28px;
}

.featured-product-page .fp-project-note {
  display: block;
  padding: 22px 0;
  background: #f6f8f7;
}

.featured-product-page .site-footer {
  display: block;
}

@media (max-width: 1320px) and (min-width: 981px) {
  .featured-product-page .fp-chapters {
    right: 12px;
    padding: 13px 10px;
  }

  .featured-product-page .fp-chapters a span {
    display: none;
  }

  .featured-product-page .fp-hero-copy {
    padding-right: 74px;
  }
}

@media (max-width: 980px) {
  .product-page-container {
    width: min(calc(100% - 56px), var(--fp-content));
  }

  .featured-product-page .fp-chapters {
    display: none;
  }

  .featured-product-page .fp-hero,
  .featured-product-page .fp-materials-grid,
  .featured-product-page .fp-breakdown-grid,
  .featured-product-page .fp-surfaces > .product-page-container,
  .featured-product-page .fp-surface-stage,
  .featured-product-page .fp-case-grid {
    grid-template-columns: 1fr;
  }

  .featured-product-page .fp-hero-media,
  .featured-product-page .fp-hero-copy {
    min-height: 0;
  }

  .featured-product-page .fp-hero-copy {
    padding: 58px 28px 68px;
  }

  .featured-product-page .fp-materials-grid {
    gap: 38px;
  }

  .featured-product-page .fp-materials-copy,
  .featured-product-page .fp-materials-visual,
  .featured-product-page .fp-material-points,
  .featured-product-page .fp-breakdown-intro,
  .featured-product-page .fp-breakdown-visual,
  .featured-product-page .fp-component-list,
  .featured-product-page .fp-surface-heading,
  .featured-product-page .fp-surface-tabs,
  .featured-product-page .fp-surface-stage {
    grid-column: 1;
    grid-row: auto;
  }

  .featured-product-page .fp-materials-visual {
    max-width: none;
    margin: 0;
  }

  .featured-product-page .fp-material-points {
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .featured-product-page .fp-material-points article,
  .featured-product-page .fp-material-points article + article {
    padding: 22px 0;
    border: 0;
    border-bottom: 1px solid var(--fp-line);
  }

  .featured-product-page .fp-breakdown-grid {
    gap: 38px;
  }

  .featured-product-page .fp-component-list {
    margin-top: 0;
  }

  .featured-product-page .fp-surfaces > .product-page-container {
    gap: 34px;
  }

  .featured-product-page .fp-surface-stage {
    gap: 28px;
  }

  .featured-product-page .fp-development-grid {
    grid-template-columns: 1fr;
  }

  .featured-product-page .fp-development-intro {
    grid-column: 1;
  }

  .featured-product-page .fp-final-cta-grid {
    grid-template-columns: auto 1fr;
  }

  .featured-product-page .fp-final-cta p,
  .featured-product-page .fp-final-cta .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .product-page-container {
    width: min(calc(100% - 40px), var(--fp-content));
  }

  .featured-product-page {
    --fp-section-space: 72px;
  }

  .featured-product-page .fp-hero-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
  }

  .featured-product-page .fp-materials-copy h2,
  .featured-product-page .fp-breakdown-intro h2,
  .featured-product-page .fp-surface-heading h2,
  .featured-product-page .fp-development-intro h2,
  .featured-product-page .fp-case-copy h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .featured-product-page .fp-surface-tabs button {
    padding-inline: 6px;
    font-size: 0.72rem;
  }

  .featured-product-page .fp-case-grid {
    gap: 42px;
  }
}

/* Products refresh: stable editorial grid with image-safe boundaries */
.products-hero-refresh,
.products-category-section,
.brand-projects-refresh,
.brief-showcase-refresh,
.oem-hero-refresh,
.oem-route-refresh,
.oem-cases-refresh,
.oem-certificates-refresh,
.oem-process-refresh,
.oem-capabilities-refresh,
.oem-execution-refresh {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
}

.products-hero-refresh > *,
.products-category-grid-refresh > *,
.brand-project-grid-refresh > *,
.brief-showcase-refresh > *,
.oem-hero-refresh > *,
.oem-route-grid > *,
.oem-case-grid > *,
.certificate-grid-refresh > *,
.oem-process-layout > *,
.oem-process-grid > *,
.oem-capability-layout > *,
.oem-capability-list > *,
.oem-execution-refresh > * {
  min-width: 0;
}

.products-hero-refresh img,
.products-category-section img,
.brand-projects-refresh img,
.brief-showcase-refresh img,
.oem-hero-refresh img,
.oem-certificates-refresh img,
.oem-process-refresh img,
.oem-capabilities-refresh img,
.oem-execution-refresh img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.products-hero-refresh h1,
.products-category-section h2,
.brand-projects-refresh h2,
.brief-showcase-refresh h2,
.oem-hero-refresh h1,
.oem-route-refresh h2,
.oem-cases-refresh h2,
.oem-certificates-refresh h2,
.oem-process-refresh h2,
.oem-capabilities-refresh h2,
.oem-execution-refresh h2 {
  overflow-wrap: break-word;
}

.products-hero-refresh {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  min-height: clamp(580px, 72vh, 760px);
  background: linear-gradient(110deg, #eff8f5 0%, #ffffff 72%);
  border-bottom: 1px solid var(--color-line);
}

.products-hero-media {
  min-height: 100%;
  background: #f4f5f2;
}

.products-hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.products-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(70px, 8vw, 132px) clamp(42px, 7vw, 112px);
  background:
    radial-gradient(circle at 20% 22%, rgba(69, 184, 161, 0.12), transparent 36%),
    #fff;
}

.products-hero-copy h1 {
  max-width: 650px;
  margin: 12px 0 24px;
  color: var(--color-green-deep);
  font-size: clamp(3.1rem, 5.4vw, 6.3rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.products-hero-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 0 30px;
  color: var(--color-text-soft);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.7;
}

.products-category-section,
.brand-projects-refresh {
  background: #f3faf7;
}

.products-category-section .section-heading,
.brand-projects-refresh .section-heading {
  margin-bottom: clamp(42px, 5vw, 72px);
}

.products-category-grid-refresh {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.products-category-card-refresh {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(9, 72, 60, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(17, 76, 64, 0.07);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.products-category-card-refresh:hover,
.products-category-card-refresh:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(32, 165, 140, 0.42);
  box-shadow: 0 28px 64px rgba(17, 76, 64, 0.14);
}

.products-category-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #eef7f4, #fff);
}

.products-category-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.products-category-card-refresh:hover .products-category-image img {
  transform: scale(1.035);
}

.products-category-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 28px 30px;
}

.products-category-body > span,
.brand-project-card-refresh span,
.oem-case-grid article > span {
  color: var(--color-teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-category-body h3 {
  margin: 13px 0 12px;
  color: var(--color-green-deep);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.08;
}

.products-category-body p {
  margin: 0 0 24px;
  color: var(--color-text-soft);
  line-height: 1.65;
}

.products-category-body strong {
  margin-top: auto;
  color: var(--color-green-deep);
  font-size: 0.9rem;
}

.brand-projects-refresh {
  border-top: 1px solid var(--color-line);
}

.brand-project-grid-refresh {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.brand-project-card-refresh {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(260px, 0.94fr);
  min-height: 360px;
  background: #fff;
  border: 1px solid rgba(9, 72, 60, 0.12);
  border-radius: 24px;
  overflow: hidden;
}

.brand-project-card-refresh img {
  height: 100%;
  object-fit: cover;
}

.brand-project-card-refresh > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 44px);
}

.brand-project-card-refresh h3 {
  margin: 10px 0 14px;
  color: var(--color-green-deep);
  font-size: clamp(1.7rem, 2.3vw, 2.35rem);
}

.brand-project-card-refresh p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.65;
}

.brief-showcase-refresh {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(75, 211, 181, 0.24), transparent 32%),
    linear-gradient(135deg, #063d34 0%, #0c5d4f 100%);
}

.brief-showcase-media {
  min-height: 620px;
  overflow: hidden;
}

.brief-showcase-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}

.brief-showcase-refresh:hover .brief-showcase-media img {
  transform: scale(1.025);
}

.brief-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 128px) clamp(44px, 7vw, 108px);
}

.brief-showcase-copy h2 {
  max-width: 650px;
  margin: 12px 0 22px;
  color: #fff;
  font-size: clamp(2.8rem, 4.8vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.brief-showcase-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.75;
}

.brief-capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 36px;
}

.brief-capability-list span {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
  transition: background 220ms ease, transform 220ms ease;
}

.brief-capability-list span:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.12);
}

/* OEM / ODM refresh: proof-led case studies, certificates, and process */
.oem-hero-refresh {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: clamp(570px, 72vh, 760px);
  background: #f4faf8;
  border-bottom: 1px solid var(--color-line);
}

.oem-hero-media {
  min-height: 100%;
  overflow: hidden;
  background: #ecece8;
}

.oem-hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.oem-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(70px, 8vw, 130px) clamp(46px, 7vw, 112px);
  background:
    radial-gradient(circle at 10% 20%, rgba(70, 190, 165, 0.12), transparent 34%),
    #fff;
}

.oem-hero-copy h1 {
  max-width: 720px;
  margin: 12px 0 24px;
  color: var(--color-green-deep);
  font-size: clamp(3.1rem, 5.2vw, 6rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.oem-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--color-text-soft);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.72;
}

.oem-route-refresh {
  background: #fff;
}

.oem-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.oem-route-grid article {
  position: relative;
  padding: clamp(34px, 4vw, 58px);
  background: linear-gradient(145deg, #eff9f6, #fff);
  border: 1px solid rgba(9, 72, 60, 0.14);
  border-radius: 24px;
  overflow: hidden;
}

.oem-route-grid article::after {
  position: absolute;
  right: -30px;
  bottom: -54px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(39, 170, 145, 0.22);
  border-radius: 50%;
}

.oem-route-grid article > span {
  color: var(--color-teal);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.oem-route-grid h3 {
  max-width: 560px;
  margin: 42px 0 16px;
  color: var(--color-green-deep);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
}

.oem-route-grid p {
  max-width: 600px;
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.oem-cases-refresh {
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(64, 205, 174, 0.2), transparent 30%),
    #063e35;
}

.oem-cases-refresh .section-heading h2,
.oem-cases-refresh .section-heading p {
  color: inherit;
}

.oem-cases-refresh .section-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.oem-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.oem-case-grid article {
  padding: clamp(30px, 3.4vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
  transition: transform 260ms ease, background 260ms ease;
}

.oem-case-grid article:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}

.oem-case-mark {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-bottom: 30px;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.oem-case-grid h3 {
  margin: 12px 0 15px;
  color: #fff;
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  line-height: 1.1;
}

.oem-case-grid p,
.oem-case-grid li {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.oem-case-grid ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.oem-certificates-refresh {
  background: #fff;
}

.certificate-grid-refresh {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.certificate-grid-refresh figure {
  margin: 0;
  padding: 24px;
  background: #f7faf9;
  border: 1px solid rgba(9, 72, 60, 0.12);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(13, 77, 66, 0.06);
}

.certificate-grid-refresh figure img {
  aspect-ratio: 0.72;
  object-fit: contain;
  background: #fff;
}

.certificate-grid-refresh figcaption {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 20px;
}

.certificate-grid-refresh strong {
  color: var(--color-green-deep);
  font-size: 1.12rem;
}

.certificate-grid-refresh span,
.certificate-note {
  color: var(--color-text-soft);
}

.certificate-note {
  max-width: 880px;
  margin: 32px auto 0;
  text-align: center;
  line-height: 1.65;
}

.oem-process-refresh {
  background: #edf8f5;
}

.oem-process-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(46px, 6vw, 92px);
  align-items: center;
}

.oem-process-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 74px rgba(11, 77, 65, 0.16);
}

.oem-process-media img {
  height: 100%;
  object-fit: cover;
}

.oem-process-media::after {
  position: absolute;
  inset: 35% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(2, 38, 33, 0.82));
  pointer-events: none;
}

.oem-process-media-label {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
}

.oem-process-media-label span {
  color: #72d8c2;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.oem-process-media-label strong {
  max-width: 420px;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.15;
}

.oem-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.oem-process-grid article {
  min-height: 160px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(9, 72, 60, 0.11);
  border-radius: 16px;
  transition: transform 220ms ease, background 220ms ease;
}

.oem-process-grid article:hover {
  transform: translateY(-5px);
  background: #fff;
}

.oem-process-grid span,
.oem-capability-list span {
  color: var(--color-teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.oem-process-grid h3,
.oem-capability-list h3 {
  margin: 24px 0 8px;
  color: var(--color-green-deep);
  font-size: 1.08rem;
}

.oem-process-grid p,
.oem-capability-list p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.oem-capabilities-refresh {
  background: #fff;
}

.oem-capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 1.04fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: stretch;
}

.oem-capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.oem-capability-list article {
  padding: 28px;
  border: 1px solid rgba(9, 72, 60, 0.12);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f2faf7);
}

.oem-capability-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 26px;
}

.oem-capability-media img {
  height: 100%;
  object-fit: cover;
}

.oem-capability-media > div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(4, 54, 46, 0.82);
  backdrop-filter: blur(10px);
}

.oem-capability-media strong {
  font-size: 1.22rem;
}

.oem-capability-media span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.oem-execution-refresh {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  min-height: 620px;
  color: #fff;
  background: #063e35;
}

.oem-execution-media {
  min-height: 100%;
  overflow: hidden;
}

.oem-execution-media img {
  height: 100%;
  object-fit: cover;
}

.oem-execution-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(70px, 8vw, 126px) clamp(44px, 7vw, 108px);
}

.oem-execution-copy h2 {
  max-width: 680px;
  margin: 12px 0 24px;
  color: #fff;
  font-size: clamp(2.8rem, 4.6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.oem-execution-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.72;
}

@media (max-width: 1180px) {
  .brand-project-card-refresh {
    grid-template-columns: 1fr;
  }

  .brand-project-card-refresh img {
    aspect-ratio: 16 / 10;
  }

  .oem-process-layout {
    grid-template-columns: 0.76fr 1.24fr;
  }

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

@media (max-width: 980px) {
  .products-hero-refresh,
  .oem-hero-refresh,
  .brief-showcase-refresh,
  .oem-execution-refresh {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .products-hero-media,
  .oem-hero-media,
  .brief-showcase-media,
  .oem-execution-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .products-hero-copy,
  .oem-hero-copy,
  .brief-showcase-copy,
  .oem-execution-copy {
    padding: 72px max(36px, 7vw) 82px;
  }

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

  .oem-process-layout,
  .oem-capability-layout {
    grid-template-columns: 1fr;
  }

  .oem-process-media,
  .oem-capability-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  .products-category-grid-refresh,
  .brand-project-grid-refresh,
  .oem-route-grid,
  .oem-case-grid,
  .certificate-grid-refresh,
  .oem-capability-list {
    grid-template-columns: 1fr;
  }

  .brief-capability-list,
  .oem-process-grid {
    grid-template-columns: 1fr;
  }

  .products-hero-copy h1,
  .oem-hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .brief-showcase-copy h2,
  .oem-execution-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
  }

  .oem-process-media-label,
  .oem-capability-media > div {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .products-category-card-refresh,
  .products-category-image img,
  .brand-project-card-refresh,
  .brief-showcase-media img,
  .brief-capability-list span,
  .oem-case-grid article,
  .oem-process-grid article {
    transition: none;
  }
}

/* Featured Product cascade guard — intentionally last in the file. */
.featured-product-page .fp-material-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-product-page .fp-material-points .fp-writable-benefit {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 18px 64px 18px 24px;
  border-left: 1px solid var(--fp-line);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(213, 243, 235, 0.72), rgba(255, 255, 255, 0.9));
}

@media (max-width: 980px) {
  .featured-product-page .fp-material-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .featured-product-page .fp-material-points {
    grid-template-columns: 1fr;
  }

  .featured-product-page .fp-material-points .fp-writable-benefit {
    padding: 22px 64px 22px 0;
    border-left: 0;
    border-bottom: 1px solid var(--fp-line);
    border-radius: 0;
  }
}
