:root {
  --green: #086f34;
  --green-bright: #14a24f;
  --green-dark: #03170c;
  --green-ink: #062216;
  --orange: #ff6500;
  --orange-dark: #d94e00;
  --paper: #f4f3ed;
  --paper-2: #eae9e1;
  --white: #fffef8;
  --ink: #0b1711;
  --muted: #68736d;
  --line: rgba(9, 37, 23, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 28px 80px rgba(3, 16, 9, 0.14);
  --shell: min(1280px, calc(100vw - 64px));
  --pointer-x: 0px;
  --pointer-y: 0px;
  --pointer-x-rev: 0px;
  --pointer-y-rev: 0px;
  --pointer-rx: 0deg;
  --pointer-ry: 0deg;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--green-dark); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--green-dark);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--orange); color: #fff; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.page-shell { width: var(--shell); margin: 0 auto; }
.webgl-layer,
.fallback-flow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.webgl-layer canvas { display: block; }
.fallback-flow {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 101, 0, .18), transparent 24%),
    radial-gradient(circle at 78% 55%, rgba(10, 150, 69, .25), transparent 32%),
    linear-gradient(140deg, #021109 0%, #06331d 52%, #06130c 100%);
}
.has-webgl .fallback-flow { opacity: 0; }
.no-webgl .fallback-flow { opacity: 1; }

.site-header {
  position: fixed;
  z-index: 50;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: min(1360px, calc(100vw - 36px));
  height: 74px;
  display: grid;
  grid-template-columns: 205px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 9px 12px 9px 18px;
  border: 1px solid transparent;
  border-radius: 20px;
  color: #fff;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, top .35s ease;
}
.site-header.is-scrolled {
  top: 10px;
  background: rgba(4, 24, 13, .84);
  border-color: rgba(255,255,255,.12);
  backdrop-filter: blur(20px) saturate(130%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
}
.brand {
  width: 120px;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 26px rgba(0,0,0,.16), inset 0 0 0 1px rgba(3,34,18,.08);
}
.brand img { width: 100%; max-height: 42px; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(18px, 2.4vw, 38px); }
.desktop-nav a { font-size: 12px; letter-spacing: .08em; font-weight: 650; color: rgba(255,255,255,.74); transition: color .2s ease; }
.desktop-nav a:hover { color: #fff; }
.header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-2px); background: #ff7b1f; }
.menu-toggle, .mobile-menu { display: none; }

.flow-status {
  position: fixed;
  z-index: 15;
  right: 26px;
  bottom: 24px;
  width: 178px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  background: rgba(3, 20, 11, .66);
  backdrop-filter: blur(14px);
  color: #fff;
  pointer-events: none;
}
.flow-status > span { display: block; color: rgba(255,255,255,.52); font-size: 9px; letter-spacing: .18em; margin-bottom: 4px; }
.flow-status strong { display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.flow-status > div { height: 2px; margin-top: 10px; overflow: hidden; background: rgba(255,255,255,.14); }
.flow-status i { display: block; height: 100%; background: var(--orange); transition: width .1s linear; }

main, .site-footer { position: relative; z-index: 2; }
.section-dark { color: #fff; }
.band-paper { background: var(--paper); }
.band-light { background: #fbfaf5; }
.band-green { background: #086a33; color: #fff; }
.band-orange { background: var(--orange); color: #14110e; }

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 14, 8, .76) 0%, rgba(2, 14, 8, .48) 36%, rgba(2, 14, 8, .08) 70%, rgba(2,14,8,.22) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(transparent, rgba(3,20,11,.84));
  z-index: -1;
}
.hero-grid {
  padding-top: 120px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 50px;
  align-items: center;
  min-height: 100svh;
}
.hero-copy { position: relative; z-index: 3; max-width: 750px; }
.hero-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .18em;
  font-weight: 760;
  text-transform: uppercase;
}
.hero-eyebrow { color: rgba(255,255,255,.68); margin-bottom: 24px; }
.hero-eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 18px var(--orange); }
.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(58px, 7.6vw, 118px);
  line-height: .86;
  letter-spacing: -.064em;
  font-weight: 760;
}
.hero h1 em,
.manifesto h2 em,
.quality-intro h2 em { color: var(--orange); font-style: normal; }
.hero-copy > p {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.62;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-orange { background: var(--orange); color: #fff; }
.button-orange:hover { background: #ff7b1f; }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.045); backdrop-filter: blur(12px); }
.button-ghost:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.38); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; color: rgba(255,255,255,.52); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta i { width: 4px; height: 4px; border-radius: 50%; background: #44c979; }
.hero-space { min-height: 560px; position: relative; }
.hero-product-stage {
  min-height: 620px;
  perspective: 1200px;
  transform-style: preserve-3d;
  isolation: isolate;
}
.hero-product-stage::before {
  content: "";
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  right: 2%;
  top: 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,162,79,.24), rgba(255,101,0,.08) 38%, transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}
.hero-product-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  background: #071c10;
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-product-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,.12), transparent 30%, transparent 70%, rgba(3,16,9,.38));
  pointer-events: none;
}
.hero-product-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045) translate3d(var(--pointer-x-rev), var(--pointer-y-rev), 0);
  transition: transform .18s ease-out;
}
.hero-product-frame figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.hero-product-frame figcaption span { font-size: 8px; font-weight: 800; letter-spacing: .18em; color: #ff9a59; }
.hero-product-frame figcaption strong { font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.hero-product-main {
  width: min(640px, 96%);
  aspect-ratio: 16 / 10;
  top: 10%;
  right: -3%;
  border-radius: 34px;
  transform: translate3d(var(--pointer-x), var(--pointer-y), 0) rotateX(var(--pointer-rx)) rotateY(var(--pointer-ry)) rotate(-1.4deg);
}
.hero-product-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3,20,11,.12), transparent 44%, rgba(255,101,0,.08));
  pointer-events: none;
}
.hero-product-detail {
  width: min(245px, 39%);
  aspect-ratio: 1 / 1.05;
  left: -2%;
  bottom: 2%;
  z-index: 4;
  border: 5px solid rgba(255,255,255,.94);
  border-radius: 23px;
  transform: translate3d(var(--pointer-x-rev), var(--pointer-y-rev), 44px) rotateX(var(--pointer-rx)) rotateY(var(--pointer-ry)) rotate(4deg);
}
.hero-product-detail figcaption { left: 11px; right: 11px; bottom: 10px; display: block; }
.hero-product-detail figcaption span, .hero-product-detail figcaption strong { display: block; }
.hero-product-detail figcaption strong { margin-top: 4px; }
.hero-resin-orbit {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 5%;
  width: 150px;
  height: 95px;
  pointer-events: none;
  transform: translate3d(var(--pointer-x-rev), var(--pointer-y), 0);
}
.hero-resin-orbit i {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #f9fff8 0 9%, #1ec665 18% 48%, #087235 70% 100%);
  box-shadow: 0 7px 18px rgba(0,0,0,.28);
  animation: resinFloat 4.5s ease-in-out infinite;
}
.hero-resin-orbit i:nth-child(1){left:6%;top:48%;animation-delay:-.4s}.hero-resin-orbit i:nth-child(2){left:27%;top:10%;background:radial-gradient(circle at 35% 25%,#fff 0 9%,#ff9349 18% 48%,#ef5e00 70% 100%);animation-delay:-1.5s}.hero-resin-orbit i:nth-child(3){left:52%;top:58%;animation-delay:-2.2s}.hero-resin-orbit i:nth-child(4){left:75%;top:24%;background:radial-gradient(circle at 35% 25%,#fff 0 9%,#ff9349 18% 48%,#ef5e00 70% 100%);animation-delay:-3.3s}.hero-resin-orbit i:nth-child(5){left:90%;top:67%;width:10px;height:10px;animation-delay:-1.9s}
@keyframes resinFloat { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(18deg); } }
.signal-card {
  position: absolute;
  min-width: 180px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(3, 24, 13, .42);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,.13);
  color: #fff;
  animation: signalFloat 5s ease-in-out infinite;
}
.signal-card span { display: block; color: var(--orange); font-size: 8px; letter-spacing: .19em; margin-bottom: 5px; }
.signal-card strong { font-size: 11px; letter-spacing: .03em; font-weight: 600; }
.signal-card-a { top: 16%; right: 16%; transform: rotate(3deg); }
.signal-card-b { top: 51%; left: 5%; animation-delay: -1.7s; }
.signal-card-c { bottom: 13%; right: 5%; animation-delay: -3.2s; }
@keyframes signalFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -9px; } }
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.48);
  font-size: 9px;
  letter-spacing: .18em;
}
.scroll-cue i { width: 52px; height: 1px; background: rgba(255,255,255,.2); overflow: hidden; position: relative; }
.scroll-cue i::after { content: ""; position: absolute; top: 0; left: -45%; width: 45%; height: 100%; background: var(--orange); animation: scrollScan 2.1s ease-in-out infinite; }
@keyframes scrollScan { 0% { left: -45%; } 65%,100% { left: 100%; } }

.manifesto { padding: 140px 0; position: relative; }
.manifesto-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: end; }
.manifesto-index { margin: 0 0 18px; color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.manifesto h2 { margin: 0; font-size: clamp(42px, 5.4vw, 82px); line-height: .98; letter-spacing: -.052em; }
.manifesto-copy { border-left: 1px solid var(--line); padding-left: 34px; }
.manifesto-copy p { margin: 0; color: #4c5a52; font-size: 16px; line-height: 1.72; }
.manifesto-copy p + p { margin-top: 20px; }

.solutions-section { padding: 138px 0 150px; }
.section-heading { max-width: 820px; margin-bottom: 56px; }
.section-heading .eyebrow { color: var(--green); margin-bottom: 18px; }
.section-heading h2 { margin: 0; font-size: clamp(42px, 5vw, 76px); line-height: .96; letter-spacing: -.052em; }
.section-heading p { max-width: 690px; margin: 24px 0 0; color: #58635e; font-size: 16px; line-height: 1.7; }
.section-heading.light .eyebrow { color: #94e8b7; }
.section-heading.light p { color: rgba(255,255,255,.65); }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.solution-card {
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.26);
  transition: background .28s ease, transform .28s ease, box-shadow .28s ease;
  overflow: hidden;
  position: relative;
}
.solution-card::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -90px; bottom: -100px; background: radial-gradient(circle, rgba(255,101,0,.16), transparent 70%); transition: transform .35s ease; }
.solution-card:hover { background: #fff; z-index: 3; transform: translateY(-7px); box-shadow: var(--shadow); }
.solution-card:hover::after { transform: translate(-20px,-18px) scale(1.3); }
.solution-card-top { display: flex; justify-content: space-between; align-items: flex-start; min-height: 90px; }
.solution-code { color: #758079; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.solution-card h3 { margin: 20px 0 13px; font-size: 25px; line-height: 1.05; letter-spacing: -.035em; }
.solution-short { margin: 0; font-size: 14px; line-height: 1.5; font-weight: 680; color: #2a3931; }
.solution-detail { margin: 14px 0 26px; color: #67726c; font-size: 13px; line-height: 1.65; }
.solution-card a { margin-top: auto; display: flex; align-items: center; justify-content: space-between; color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.solution-glyph { width: 82px; height: 70px; position: relative; transform: rotate(-5deg); }
.solution-glyph i { position: absolute; display: block; border: 2px solid var(--green); background: rgba(8,111,52,.06); }
.glyph-bottle i:nth-child(1) { width: 34px; height: 51px; right: 12px; bottom: 0; border-radius: 7px 7px 11px 11px; }
.glyph-bottle i:nth-child(2) { width: 18px; height: 10px; right: 20px; top: 4px; }
.glyph-bottle i:nth-child(3) { width: 24px; height: 3px; right: 17px; top: 0; background: var(--orange); border: 0; }
.glyph-pipe i:nth-child(1) { width: 62px; height: 26px; right: 0; top: 20px; border-radius: 50%; }
.glyph-pipe i:nth-child(2) { width: 45px; height: 26px; left: 0; top: 20px; border-radius: 50%; border-color: var(--orange); }
.glyph-pipe i:nth-child(3) { width: 42px; height: 2px; border: 0; background: var(--green); top: 32px; left: 20px; }
.glyph-layers i { width: 62px; height: 25px; right: 4px; transform: skewX(-21deg); }
.glyph-layers i:nth-child(1) { top: 8px; }
.glyph-layers i:nth-child(2) { top: 24px; right: 10px; border-color: var(--orange); }
.glyph-layers i:nth-child(3) { top: 40px; right: 16px; }
.glyph-droplet i:nth-child(1) { width: 34px; height: 48px; right: 18px; top: 10px; border-radius: 50% 50% 52% 48% / 66% 66% 34% 34%; transform: rotate(45deg); border-color: var(--orange); }
.glyph-droplet i:nth-child(2), .glyph-droplet i:nth-child(3) { width: 28px; height: 2px; border: 0; background: var(--green); left: 3px; }
.glyph-droplet i:nth-child(2) { top: 47px; }.glyph-droplet i:nth-child(3) { top: 56px; width: 40px; }
.glyph-component i { width: 26px; height: 26px; border-radius: 7px; }
.glyph-component i:nth-child(1) { left: 8px; top: 11px; transform: rotate(14deg); }
.glyph-component i:nth-child(2) { right: 7px; top: 22px; border-color: var(--orange); transform: rotate(-8deg); }
.glyph-component i:nth-child(3) { left: 29px; bottom: 3px; }
.glyph-custom i:nth-child(1) { width: 62px; height: 42px; right: 3px; top: 13px; clip-path: polygon(0 0, 100% 0, 100% 32%, 62% 32%, 62% 100%, 0 100%); }
.glyph-custom i:nth-child(2) { width: 34px; height: 4px; border: 0; background: var(--orange); left: 2px; top: 7px; }
.glyph-custom i:nth-child(3) { width: 4px; height: 28px; border: 0; background: var(--green); right: 2px; bottom: 2px; }

.visual-break { padding: 130px 0; background: rgba(3, 19, 10, .90); overflow: hidden; }
.visual-break-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 82px; align-items: center; }
.industrial-image { margin: 0; position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 36px 90px rgba(0,0,0,.28); }
.industrial-image::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.15); border-radius: inherit; pointer-events: none; }
.industrial-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.industrial-image:hover img { transform: scale(1.035); }
.product-image { aspect-ratio: 1.55 / 1; }
.product-image img { object-position: center; }
.industrial-image figcaption { position: absolute; left: 18px; bottom: 16px; padding: 8px 10px; border-radius: 8px; background: rgba(3,17,10,.76); backdrop-filter: blur(10px); color: rgba(255,255,255,.78); font-size: 8px; letter-spacing: .18em; z-index: 2; }
 .regional-visual-stack { position: relative; min-height: 600px; }
.regional-image { width: 92%; aspect-ratio: 1.18 / 1; margin-left: auto; }
.regional-image img { object-position: 48% center; }
.regional-inset { position: absolute; left: 0; bottom: -28px; width: 48%; aspect-ratio: 1.15 / 1; border: 5px solid var(--paper); border-radius: 24px; transform: translate3d(var(--pointer-x-rev), var(--pointer-y), 0) rotate(-2.5deg); z-index: 3; }
.regional-inset img { object-position: center; }
.visual-break-copy .eyebrow { color: #72da9d; }
.visual-break-copy h2 { margin: 18px 0 24px; font-size: clamp(40px, 4.4vw, 68px); line-height: .98; letter-spacing: -.05em; }
.visual-break-copy > p { max-width: 560px; margin: 0; color: rgba(255,255,255,.63); line-height: 1.72; }
.spec-stack { margin-top: 35px; border-top: 1px solid rgba(255,255,255,.12); }
.spec-stack span { display: flex; gap: 16px; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.36); font-size: 9px; letter-spacing: .14em; }
.spec-stack b { color: #fff; font-size: 11px; letter-spacing: .09em; }

.materials-section { padding: 145px 0; position: relative; overflow: hidden; }
.materials-section::before { content: ""; position: absolute; width: 680px; height: 680px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; right: -240px; top: 60px; box-shadow: 0 0 0 110px rgba(255,255,255,.025), 0 0 0 220px rgba(255,255,255,.018); }
.material-lab { border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius-xl); background: rgba(3,35,18,.22); backdrop-filter: blur(10px); overflow: hidden; }
.material-tabs { display: grid; grid-template-columns: repeat(6, 1fr); border-bottom: 1px solid rgba(255,255,255,.16); }
.material-tabs button { min-height: 66px; border: 0; border-right: 1px solid rgba(255,255,255,.12); background: transparent; color: rgba(255,255,255,.56); cursor: pointer; font-size: 11px; font-weight: 760; letter-spacing: .05em; transition: color .2s ease, background .2s ease; }
.material-tabs button:last-child { border-right: 0; }
.material-tabs button:hover { color: #fff; }
.material-tabs button.is-active { background: var(--orange); color: #fff; }
.material-stage { min-height: 460px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 50px; padding: 50px 58px; }
.material-orbit { width: min(360px, 86%); aspect-ratio: 1; margin: 0 auto; position: relative; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.12), rgba(255,255,255,.03) 45%, transparent 68%); }
.material-core { width: 130px; height: 130px; display: grid; place-items: center; border-radius: 35% 65% 52% 48% / 55% 37% 63% 45%; background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.18)); box-shadow: inset 0 0 30px rgba(255,255,255,.3), 0 18px 55px rgba(1,17,8,.28); color: #075e2d; font-size: 20px; font-weight: 850; letter-spacing: -.02em; animation: blobFloat 5s ease-in-out infinite; }
.orbit { position: absolute; inset: 14%; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); animation: orbitSpin 13s linear infinite; }
.orbit::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); top: 12%; left: 12%; box-shadow: 0 0 20px rgba(255,101,0,.8); }
.orbit-b { inset: 28%; animation-direction: reverse; animation-duration: 8s; transform: rotate(66deg); }
.resin-dot { position: absolute; width: 18px; height: 18px; border-radius: 45% 55% 52% 48%; background: rgba(255,255,255,.66); box-shadow: inset 0 0 8px rgba(255,255,255,.8); }
.dot-a { left: 8%; top: 42%; }.dot-b { right: 12%; top: 25%; width: 12px; height: 12px; }.dot-c { right: 22%; bottom: 11%; width: 23px; height: 23px; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes blobFloat { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-10px) rotate(4deg); } }
.material-copy { max-width: 610px; }
.material-label { color: #9de9bd; font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.material-copy h3 { margin: 13px 0 9px; font-size: clamp(37px, 4.2vw, 66px); line-height: .95; letter-spacing: -.052em; }
.material-copy strong { color: #c0f0d2; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.material-copy > p { margin: 20px 0 0; max-width: 590px; color: rgba(255,255,255,.72); line-height: 1.7; }
.material-copy .material-note { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.46); font-size: 11px; }

.applications-section { padding: 145px 0; }
.applications-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 75px; align-items: start; }
.applications-panel { border-top: 1px solid var(--line); }
.application-tabs { display: flex; flex-wrap: wrap; gap: 8px; padding: 18px 0 24px; }
.application-tabs button { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: #657069; font-size: 9px; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: all .2s ease; }
.application-tabs button.is-active, .application-tabs button:hover { background: var(--green); border-color: var(--green); color: #fff; }
.application-detail { min-height: 280px; padding-top: 28px; display: grid; grid-template-columns: 1fr .75fr; gap: 44px; border-top: 1px solid var(--line); }
.application-kicker { color: var(--orange); font-size: 9px; letter-spacing: .16em; font-weight: 800; text-transform: uppercase; }
.application-detail h3 { margin: 12px 0 15px; font-size: 34px; line-height: 1; letter-spacing: -.04em; }
.application-detail p { margin: 0; color: #66716b; font-size: 14px; line-height: 1.65; }
.application-detail ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.application-detail li { padding: 12px 0; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); color: #314139; font-size: 11px; font-weight: 660; }
.application-detail li span { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.application-image-column { padding-top: 50px; position: sticky; top: 100px; }
.factory-image { aspect-ratio: .98 / 1; }
.factory-image img { object-position: center; }
.image-stat-card { position: relative; width: 78%; margin: -72px 0 0 auto; padding: 24px; border-radius: 18px; background: #fff; box-shadow: 0 22px 70px rgba(3,20,11,.16); z-index: 2; }
.image-stat-card span { display: block; margin-bottom: 9px; color: var(--orange); font-size: 9px; letter-spacing: .17em; }
.image-stat-card strong { font-size: 18px; line-height: 1.22; letter-spacing: -.025em; }

.process-section { padding: 150px 0; background: rgba(3, 18, 10, .91); overflow: hidden; }
.process-section .section-heading { margin-bottom: 80px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-line { height: 1px; margin-bottom: -1px; background: rgba(255,255,255,.14); position: relative; overflow: hidden; }
.process-line i { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: linear-gradient(90deg, var(--orange), #43cb78); transform-origin: left; animation: linePulse 5s ease-in-out infinite; }
@keyframes linePulse { 0%,100% { transform: scaleX(.12); opacity: .45; } 50% { transform: scaleX(1); opacity: 1; } }
.process-card { min-height: 330px; padding: 31px 28px; border-right: 1px solid rgba(255,255,255,.13); }
.process-grid > div:first-child .process-card { border-left: 1px solid rgba(255,255,255,.13); }
.process-card > span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); color: var(--orange); font-size: 10px; }
.process-card h3 { margin: 88px 0 13px; font-size: 23px; letter-spacing: -.03em; }
.process-card p { margin: 0; color: rgba(255,255,255,.54); font-size: 13px; line-height: 1.65; }

.quality-section { padding: 145px 0; }
.quality-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.quality-intro { position: sticky; top: 125px; }
.quality-intro .eyebrow { color: var(--green); }
.quality-intro h2 { margin: 18px 0 24px; font-size: clamp(40px, 4.5vw, 68px); line-height: .98; letter-spacing: -.05em; }
.quality-intro p { margin: 0; color: #66716b; line-height: 1.72; }
.quality-cards { border-top: 1px solid var(--line); }
.quality-cards article { display: grid; grid-template-columns: 58px 1fr; column-gap: 20px; padding: 33px 0; border-bottom: 1px solid var(--line); }
.quality-cards article > span { grid-row: 1 / span 2; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: #e8efe9; color: var(--green); font-size: 9px; font-weight: 800; }
.quality-cards h3 { margin: 2px 0 9px; font-size: 24px; letter-spacing: -.03em; }
.quality-cards p { margin: 0; color: #66716b; font-size: 14px; line-height: 1.7; }

.quote-section { padding: 140px 0; }
.quote-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.quote-copy { position: sticky; top: 125px; }
.quote-copy .eyebrow { color: #522000; }
.quote-copy h2 { margin: 18px 0 22px; font-size: clamp(46px, 5vw, 78px); line-height: .94; letter-spacing: -.055em; color: #fff; }
.quote-copy > p { max-width: 530px; margin: 0; color: rgba(255,255,255,.77); font-size: 16px; line-height: 1.66; }
.quote-contact-list { margin-top: 45px; border-top: 1px solid rgba(255,255,255,.34); }
.quote-contact-list a, .quote-contact-list > div { display: grid; grid-template-columns: 80px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.34); }
.quote-contact-list span { color: rgba(255,255,255,.58); font-size: 8px; letter-spacing: .16em; }
.quote-contact-list strong { color: #fff; font-size: 12px; font-weight: 650; line-height: 1.45; }
.rfq-form { padding: 34px; border-radius: var(--radius-xl); background: #fffdf8; box-shadow: 0 35px 90px rgba(86,30,0,.16); }
.field-grid { display: grid; gap: 14px; }
.field-grid.two { grid-template-columns: repeat(2, 1fr); }
.rfq-form label { display: block; margin-bottom: 15px; }
.rfq-form label > span { display: block; margin: 0 0 7px 2px; color: #5f665f; font-size: 9px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.rfq-form input, .rfq-form select, .rfq-form textarea { width: 100%; border: 1px solid #d9d8d0; border-radius: 11px; background: #f7f6f1; color: var(--ink); outline: 0; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.rfq-form input, .rfq-form select { height: 52px; padding: 0 14px; }
.rfq-form textarea { min-height: 150px; resize: vertical; padding: 14px; line-height: 1.55; }
.rfq-form input:focus, .rfq-form select:focus, .rfq-form textarea:focus { border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(8,111,52,.1); }
.form-submit-row { display: flex; align-items: center; gap: 18px; padding-top: 7px; }
.form-submit-row button { border: 0; }
.form-submit-row p { margin: 0; max-width: 280px; color: #838981; font-size: 10px; line-height: 1.45; }
.form-alt { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 25px; padding-top: 17px; border-top: 1px solid #e1e0d8; color: #727971; font-size: 10px; }
.form-alt a { color: var(--green); font-weight: 760; }
.form-status { margin: 8px 0 0; min-height: 17px; color: var(--green); font-size: 10px; }

.site-footer { padding: 80px 0 25px; background: #021109; color: #fff; }
.footer-top { width: var(--shell); margin: 0 auto; display: grid; grid-template-columns: 1.4fr .9fr 1.1fr .75fr; gap: 50px; align-items: start; padding-bottom: 65px; }
.footer-brand img { width: 245px; margin-bottom: 18px; padding: 10px 13px; border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: inset 0 0 0 1px rgba(255,255,255,.35); }
.footer-brand p { max-width: 300px; margin: 0; color: rgba(255,255,255,.46); font-size: 13px; line-height: 1.55; }
.footer-contact, .footer-address, .footer-action { display: flex; flex-direction: column; gap: 10px; }
.footer-contact > span, .footer-address > span, .footer-action > span { margin-bottom: 7px; color: rgba(255,255,255,.36); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.footer-contact a { color: rgba(255,255,255,.78); font-size: 12px; }
.footer-contact a:hover { color: var(--orange); }
.footer-address address { max-width: 230px; color: rgba(255,255,255,.64); font-style: normal; font-size: 12px; line-height: 1.6; }
.footer-action .button { align-self: flex-start; }
.footer-bottom { width: var(--shell); margin: 0 auto; display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.32); font-size: 9px; letter-spacing: .05em; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms), transform .8s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 44px, 1060px); }
  .site-header { grid-template-columns: 175px 1fr auto; }
  .brand { width: 160px; }
  .desktop-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1.1fr .9fr; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .visual-break-grid, .applications-grid { gap: 50px; }
  .material-stage { padding: 45px 40px; }
  .quality-grid { gap: 65px; }
  .quote-grid { gap: 45px; }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-action { grid-column: 2 / 4; flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (max-width: 880px) {
  :root { --shell: calc(100vw - 34px); }
  .site-header { height: 66px; width: calc(100vw - 24px); top: 10px; grid-template-columns: 1fr auto; padding: 7px 9px 7px 14px; }
  .site-header.is-scrolled { top: 8px; }
  .brand { width: 154px; height: 48px; padding: 6px 9px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: grid; width: 48px; height: 48px; place-content: center; gap: 6px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; background: rgba(255,255,255,.06); }
  .menu-toggle span { width: 20px; height: 1px; background: #fff; transition: transform .2s ease; }
  .menu-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { position: absolute; top: 74px; left: 0; right: 0; display: grid; gap: 0; padding: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(3, 22, 12, .96); backdrop-filter: blur(18px); opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
  .mobile-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-menu > a:not(.button) { padding: 13px 8px; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.78); font-size: 12px; }
  .mobile-menu .button { margin-top: 10px; }
  .flow-status { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 105px; padding-bottom: 70px; }
  .hero-copy { max-width: 680px; }
  .hero-space { position: absolute; inset: 0; min-height: 0; pointer-events: none; opacity: .88; }
  .hero-product-main { width: min(520px, 68vw); top: 13%; right: -17%; opacity: .58; }
  .hero-product-detail { width: 185px; left: auto; right: 4%; bottom: 10%; opacity: .72; }
  .hero-resin-orbit { right: 5%; bottom: 29%; opacity: .72; }
  .signal-card { min-width: 145px; padding: 9px 10px; }
  .signal-card-a { top: 19%; right: 3%; }.signal-card-b { top: auto; bottom: 14%; left: auto; right: 6%; }.signal-card-c { display: none; }
  .hero h1 { max-width: 720px; font-size: clamp(60px, 12vw, 96px); }
  .hero-copy > p { max-width: 570px; }
  .manifesto-grid, .visual-break-grid, .applications-grid, .quality-grid, .quote-grid { grid-template-columns: 1fr; }
  .manifesto-grid { gap: 45px; }
  .manifesto-copy { border-left: 0; border-top: 1px solid var(--line); padding: 30px 0 0; }
  .visual-break-grid { gap: 55px; }
  .material-stage { grid-template-columns: 1fr; gap: 35px; }
  .material-tabs { grid-template-columns: repeat(3, 1fr); }
  .material-tabs button:nth-child(3) { border-right: 0; }
  .material-tabs button:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .application-image-column, .quality-intro, .quote-copy { position: static; padding-top: 0; }
  .factory-image { aspect-ratio: 1.5 / 1; }
  .regional-visual-stack { min-height: 560px; }
  .regional-image { width: 95%; }
  .regional-inset { width: 45%; bottom: -18px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid > div:nth-child(3) .process-card { border-left: 1px solid rgba(255,255,255,.13); }
  .quality-grid { gap: 55px; }
  .quote-grid { gap: 55px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-action { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100vw - 28px); --radius-xl: 24px; }
  .hero-grid { padding-top: 92px; }
  .hero::before { background: linear-gradient(180deg, rgba(2,14,8,.35), rgba(2,14,8,.58) 45%, rgba(2,14,8,.88)); }
  .hero h1 { font-size: clamp(52px, 17vw, 82px); line-height: .88; }
  .hero-copy > p { margin-top: 24px; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-meta { gap: 12px 17px; }
  .hero-product-main { width: 88vw; top: 18%; right: -44%; border-radius: 24px; opacity: .42; }
  .hero-product-detail { width: 145px; right: -18px; bottom: 12%; opacity: .58; }
  .hero-product-frame figcaption { display: none; }
  .hero-resin-orbit { display: none; }
  .signal-card-a { top: 17%; right: -18px; opacity: .66; }
  .signal-card-b { bottom: 7%; right: -12px; opacity: .6; }
  .scroll-cue { display: none; }
  .manifesto, .solutions-section, .materials-section, .applications-section, .process-section, .quality-section, .quote-section { padding: 95px 0; }
  .manifesto h2, .section-heading h2, .visual-break-copy h2, .quality-intro h2 { font-size: clamp(39px, 12vw, 56px); }
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 365px; padding: 24px; }
  .visual-break { padding: 95px 0; }
  .product-image { aspect-ratio: 1 / .86; }
  .material-tabs { grid-template-columns: repeat(2, 1fr); }
  .material-tabs button { min-height: 58px; }
  .material-tabs button:nth-child(2n) { border-right: 0; }
  .material-tabs button:nth-child(3) { border-right: 1px solid rgba(255,255,255,.12); }
  .material-tabs button:nth-child(-n+4) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .material-stage { min-height: 0; padding: 32px 22px 35px; }
  .material-orbit { width: min(300px, 93%); }
  .material-copy h3 { font-size: 40px; }
  .application-detail { grid-template-columns: 1fr; gap: 26px; }
  .application-detail ul { margin-top: 4px; }
  .factory-image { aspect-ratio: 1 / .9; }
  .regional-visual-stack { min-height: 470px; }
  .regional-image { width: 100%; aspect-ratio: 1 / .92; }
  .regional-inset { width: 52%; left: -4px; bottom: -22px; border-width: 4px; }
  .image-stat-card { width: 90%; margin-top: -50px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid > div .process-card, .process-grid > div:first-child .process-card, .process-grid > div:nth-child(3) .process-card { border-left: 1px solid rgba(255,255,255,.13); }
  .process-card { min-height: 260px; }
  .process-card h3 { margin-top: 54px; }
  .field-grid.two { grid-template-columns: 1fr; gap: 0; }
  .rfq-form { padding: 23px; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .form-submit-row .button { width: 100%; }
  .quote-contact-list a, .quote-contact-list > div { grid-template-columns: 65px 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand, .footer-action { grid-column: auto; }
  .footer-action { align-items: flex-start; flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Local-safe fallback shell: visible before/without CDN modules. */
.static-webgl { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.static-shell { position: relative; min-height: 100vh; }
.static-shell > main, .static-shell > footer { position: relative; z-index: 2; }
.static-shell .site-header { z-index: 50; }
.static-shell .fallback-flow { opacity: .22; z-index: 0; }
.static-material-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; margin-top:54px; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.14); border-radius:24px; overflow:hidden; }
.static-material-grid article { min-height:150px; display:flex; flex-direction:column; justify-content:flex-end; gap:8px; padding:26px; background:rgba(3,28,15,.76); }
.static-material-grid b { font-size:30px; letter-spacing:-.04em; color:#fff; }
.static-material-grid span { color:rgba(255,255,255,.56); font-size:12px; }
.static-application-list { display:flex; flex-wrap:wrap; gap:9px; margin-top:32px; }
.static-application-list span { padding:11px 14px; border:1px solid var(--line); border-radius:999px; color:#4f5f56; font-size:11px; font-weight:700; }
.button-green { background:var(--green); color:#fff; }
.button-green:hover { background:#075a2c; }
@media (max-width:880px){ .static-material-grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width:560px){ .static-material-grid{grid-template-columns:1fr}.static-material-grid article{min-height:120px}.static-shell .site-header{grid-template-columns:1fr auto}.static-shell .desktop-nav,.static-shell .header-cta{display:none} }

/* Progressive enhancement safety: never remove the working local shell until React commits. */
#react-root { display: none; }
.enhanced-ready .static-shell { display: none; }
.enhanced-ready #react-root { display: block; }
