:root {
  --ink: #12231c;
  --ink-soft: #50615a;
  --paper: #f7f5ef;
  --white: #fff;
  --green: #0b7652;
  --green-dark: #063f2d;
  --green-deep: #032b20;
  --mint: #9ee2c5;
  --blue: #22a4da;
  --cocoa: #4b2318;
  --line: rgba(18, 35, 28, .16);
  --display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  --text: "Aptos", "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --section: clamp(88px, 10vw, 150px);
  --p: 0;
  --end-p: 0;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.6 var(--text);
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: rgba(34, 164, 218, .18);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { touch-action: manipulation; }
[id] { scroll-margin-top: 86px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 14px; color: #fff; background: var(--green-dark); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.container { width: min(var(--container), calc(100% - (2 * var(--gutter)))); margin-inline: auto; }
.section { padding-block: var(--section); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -.035em; text-wrap: balance; }
h1 { font-size: clamp(3.2rem, 5.7vw, 5.8rem); line-height: .98; }
h2 { font-size: clamp(2.35rem, 4vw, 4.2rem); line-height: 1.02; }
h3 { font-size: clamp(1.45rem, 2.2vw, 2.15rem); line-height: 1.08; }
p { max-width: 65ch; }

.eyebrow { margin-bottom: 22px; color: var(--green); font-size: .75rem; font-weight: 700; letter-spacing: .14em; line-height: 1.2; text-transform: uppercase; }
.eyebrow--light { color: #c3e0d4; }
.eyebrow--mint { color: var(--mint); }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: space-between; gap: 28px; padding: 0 21px; border: 1px solid transparent; border-radius: 2px; font-size: .9rem; font-weight: 700; line-height: 1; text-decoration: none; transition: transform .25s ease, background-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--green); }
.button--primary:hover { background: #0a6949; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 4px; border-bottom: 1px solid currentColor; color: var(--green); font-size: .92rem; font-weight: 700; text-decoration: none; }
.text-link--light { color: #fff; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; display: grid; width: 100%; min-height: 84px; grid-template-columns: 210px 1fr auto; align-items: center; gap: 40px; padding-inline: var(--gutter); color: #fff; border-bottom: 1px solid rgba(255,255,255,.2); transition: min-height .3s ease, color .3s ease, background-color .3s ease, box-shadow .3s ease; }
.site-header.is-scrolled { min-height: 70px; color: var(--ink); background: rgba(247,245,239,.96); border-bottom-color: var(--line); box-shadow: 0 8px 32px rgba(18,35,28,.06); }
.brand { width: 154px; }
.brand img { width: 100%; height: auto; filter: brightness(0) invert(1); }
.site-header.is-scrolled .brand img { filter: none; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(18px,2.3vw,36px); }
.desktop-nav a { font-size: .8rem; font-weight: 700; text-decoration: none; opacity: .82; }
.desktop-nav a:hover { opacity: 1; }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
  transition: background-color .25s cubic-bezier(.16, 1, .3, 1), border-color .25s cubic-bezier(.16, 1, .3, 1), color .25s cubic-bezier(.16, 1, .3, 1), transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s cubic-bezier(.16, 1, .3, 1);
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 118, 82, .45);
}
.header-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(11, 118, 82, .3);
}
.header-cta__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px rgba(158, 226, 197, .9);
  display: inline-block;
  flex-shrink: 0;
}
.header-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.header-cta:hover .header-cta__icon {
  transform: translate(2px, -2px);
}
.site-header.is-scrolled .header-cta {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(11, 118, 82, .28);
}
.site-header.is-scrolled .header-cta:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 8px 24px rgba(6, 63, 45, .38);
  transform: translateY(-2px);
}
.menu-button { color: inherit; }
.menu-button, .mobile-nav { display: none; }

.hero-journey { position: relative; height: 190svh; color: #fff; background: #140d0a; }
.hero-stage { position: sticky; top: 0; height: 100svh; min-height: 680px; overflow: hidden; }
.hero-backdrop { position: absolute; inset: -5%; background: #140d0a url("assets/hero-cocoa-transition.png") center / cover no-repeat; transform: scale(calc(1.04 + (var(--p) * .14))) translateX(calc(var(--p) * -2.5%)); transform-origin: 66% 50%; will-change: transform; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(12,9,7,.92) 0%,rgba(12,9,7,.7) 42%,rgba(12,9,7,.08) 76%),linear-gradient(0deg,rgba(5,18,13,calc(.2 + (var(--p) * .45))),transparent 55%); }
.hero-layout { position: relative; z-index: 3; height: 100%; }
.hero-copy { position: absolute; top: 50%; left: 0; width: min(650px,53%); transform: translateY(calc(-50% - (var(--p) * 70px))); opacity: calc(1 - (var(--p) * 1.45)); will-change: opacity,transform; }
.hero-copy h1 { max-width: 680px; margin-bottom: 26px; }
.hero-lead { max-width: 585px; margin-bottom: 34px; color: #d4d4ce; font-size: clamp(1rem,1.25vw,1.18rem); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.hero-product { position: absolute; z-index: 2; top: 17%; right: 4%; width: min(26vw,380px); height: 68%; transform: translate3d(calc(var(--p) * -13vw),calc(var(--p) * -3vh),0) rotate(calc(-3deg + (var(--p) * 7deg))) scale(calc(1 + (var(--p) * .16))); transform-origin: center; will-change: transform; }
.hero-product img { position: absolute; z-index: 2; top: 5%; left: 50%; width: 72%; height: 82%; object-fit: contain; filter: drop-shadow(0 28px 35px rgba(0,0,0,.45)); transform: translateX(-50%); }
.hero-product__orbit { position: absolute; top: 15%; left: 0; width: 100%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; transform: rotate(calc(var(--p) * 28deg)) scale(calc(1 + (var(--p) * .25))); }
.hero-product p { position: absolute; z-index: 3; right: -6%; bottom: 6%; margin: 0; padding: 14px 0 14px 18px; border-left: 1px solid rgba(255,255,255,.7); font-size: .82rem; font-weight: 600; line-height: 1.3; }
.hero-product p span { display: block; margin-bottom: 5px; color: #bebbb6; font-size: .65rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.hero-chapter { position: absolute; z-index: 4; right: 0; bottom: 34px; left: 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; color: rgba(255,255,255,.76); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; opacity: calc(1 - (var(--p) * 2.5)); }
.hero-chapter strong { color: #fff; font-weight: 700; }
.hero-chapter i { height: 1px; overflow: hidden; background: rgba(255,255,255,.26); }
.hero-chapter i::after { display: block; width: calc(var(--p) * 100%); height: 100%; content: ""; background: #fff; }
.hero-end { position: absolute; z-index: 5; right: 0; bottom: 8%; left: 0; opacity: var(--end-p); transform: translateY(calc((1 - var(--end-p)) * 35px)); }
.hero-end p { margin-bottom: 4px; color: #b8d8cb; font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.hero-end strong { display: block; max-width: 720px; font-family: var(--display); font-size: clamp(2.35rem,4.5vw,4.8rem); font-weight: 600; letter-spacing: -.035em; line-height: 1; text-wrap: balance; }

.catalog { overflow: hidden; background: var(--paper); }
.catalog-heading { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(280px,.7fr); gap: clamp(50px,9vw,140px); align-items: end; margin-bottom: 56px; }
.catalog-heading h2 { max-width: 780px; margin-bottom: 0; }
.catalog-heading > p { margin: 0 0 8px; color: var(--ink-soft); font-size: 1.05rem; }
.catalog-tools { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-bottom: 28px; }
.catalog-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.catalog-filters button { min-height: 42px; padding: 0 16px; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: .78rem; font-weight: 700; cursor: pointer; transition: color .2s ease,background-color .2s ease,border-color .2s ease; }
.catalog-filters button:hover,.catalog-filters button.is-active { color: #fff; border-color: var(--green); background: var(--green); }
.catalog-controls { display: flex; align-items: center; gap: 8px; }
.catalog-controls > span { margin-right: 12px; color: var(--ink-soft); font-size: .72rem; font-weight: 700; }
.catalog-controls button { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; transition: color .2s ease,background-color .2s ease; }
.catalog-controls button:hover { color: #fff; background: var(--ink); }
.catalog-viewport { width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; padding-left: max(var(--gutter),calc((100vw - var(--container))/2)); cursor: grab; scrollbar-width: none; scroll-padding-left: max(var(--gutter),calc((100vw - var(--container))/2)); scroll-snap-type: x mandatory; }
.catalog-viewport.is-auto-scrolling,.catalog-viewport.is-motion-active { scroll-snap-type: none; }
.catalog-viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.catalog-viewport::-webkit-scrollbar { display: none; }
.catalog-track { display: flex; width: max-content; gap: 16px; padding-right: var(--gutter); }
.product-card {
  position: relative;
  display: grid;
  width: clamp(286px,24vw,350px);
  min-height: 565px;
  grid-template-columns: 100%;
  grid-template-rows: 54px 310px minmax(201px,1fr);
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  scroll-snap-align: start;
  transition: width .45s cubic-bezier(.2,.8,.2,1), border-color .25s ease, box-shadow .25s ease;
}
.product-card:hover { border-color: rgba(11,118,82,.5); box-shadow: 0 16px 36px rgba(18,35,28,.1); }
.product-card.is-expanded {
  width: min(780px,calc(100vw - (2 * var(--gutter))));
  grid-template-columns: minmax(286px,350px) minmax(0,430px);
}
.product-card[hidden] { display: none; }
.product-card__top { grid-column: 1; grid-row: 1; display: flex; min-height: 54px; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid rgba(255,255,255,.2); color: #fff; font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-card__top small { font: inherit; opacity: .7; }
.product-card__visual { position: relative; grid-column: 1; grid-row: 2; height: 310px; overflow: hidden; color: rgba(255,255,255,.11); }
.product-card__visual > span { position: absolute; top: 10px; left: 14px; font-family: var(--display); font-size: 8rem; font-weight: 600; letter-spacing: -.09em; line-height: 1; }
.product-card__visual img { position: absolute; z-index: 2; top: 9%; left: 17%; width: 66%; height: 82%; object-fit: contain; filter: drop-shadow(0 20px 18px rgba(0,0,0,.24)); transition: transform .35s ease; }
.product-card:hover .product-card__visual img { transform: translateY(-7px) rotate(2deg) scale(1.035); }
.product-card--cocoa .product-card__top,.product-card--cocoa .product-card__visual { background: #52291d; }
.product-card--dairy .product-card__top,.product-card--dairy .product-card__visual { background: #277999; }
.product-card--protein .product-card__top,.product-card--protein .product-card__visual { background: #3a6759; }
.product-card--savory .product-card__top,.product-card--savory .product-card__visual { background: #936f2f; }
.product-card__copy { display: flex; grid-column: 1; grid-row: 3; flex-direction: column; padding: 24px 20px 22px; }
.product-card__copy h3 { margin-bottom: 12px; font-size: 1.55rem; }
.product-card__copy p { margin-bottom: 24px; color: var(--ink-soft); font-size: .88rem; }
.product-card__hint { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); color: var(--green); font-size: .78rem; font-weight: 700; }
.product-card__hint span { font-size: 1.1rem; line-height: 1; transition: transform .25s ease; }
.product-card.is-expanded .product-card__hint span { transform: rotate(45deg); }
.product-card__open {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: min(100%,350px);
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.product-card__open:focus-visible { outline-offset: -5px; }
.product-card__details {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 36px 34px 30px;
  color: var(--ink);
  border-left: 1px solid var(--line);
  background: #fff;
  opacity: 1;
}
.product-card__details[hidden] { display: none; }
.product-card__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}
.product-card__close:hover { color: #fff; background: var(--ink); }
.product-card__details-kicker { margin: 0 48px 22px 0; color: var(--green); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-card__details h4 { max-width: 300px; margin: 0 0 16px; font-family: var(--display); font-size: clamp(1.65rem,2.3vw,2.3rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.04; text-wrap: balance; }
.product-card__details-intro { margin-bottom: 24px; color: var(--ink-soft); font-size: .88rem; line-height: 1.55; }
.product-card__facts { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin: 0 0 24px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-card__facts div { min-width: 0; padding: 13px 12px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-card__facts dt { margin-bottom: 3px; color: var(--ink-soft); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-card__facts dd { margin: 0; font-size: .78rem; font-weight: 600; overflow-wrap: anywhere; }
.product-card__uses { margin-bottom: 25px; }
.product-card__uses > span { display: block; margin-bottom: 9px; color: var(--ink-soft); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-card__uses ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.product-card__uses li { padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: .68rem; }
.product-card__details-actions { display: grid; gap: 12px; margin-top: auto; }
.product-card__details-actions a { display: flex; min-height: 46px; align-items: center; justify-content: space-between; gap: 20px; padding: 0 15px; font-size: .77rem; font-weight: 700; text-decoration: none; }
.product-card__details-actions a:first-child { color: #fff; background: var(--green); }
.product-card__details-actions a:last-child { color: var(--green); border: 1px solid var(--line); }
.catalog-detail-cursor,
.application-detail-cursor {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  display: grid;
  width: 96px;
  height: 96px;
  place-content: center;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(6,94,66,.88);
  box-shadow: 0 12px 34px rgba(18,35,28,.24);
  text-align: center;
  pointer-events: none;
  opacity: 0;
  backdrop-filter: blur(8px);
  transform: translate3d(-50%,-50%,0) scale(.76);
  transition: opacity .14s ease,transform .18s ease;
}
.catalog-detail-cursor.is-visible,
.application-detail-cursor.is-visible { opacity: 1; transform: translate3d(-50%,-50%,0) scale(1); }
.catalog-detail-cursor span,.catalog-detail-cursor strong,
.application-detail-cursor span,.application-detail-cursor strong { display: block; }
.catalog-detail-cursor span,
.application-detail-cursor span { margin-bottom: 5px; font-size: 1rem; line-height: 1; }
.catalog-detail-cursor strong,
.application-detail-cursor strong { font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.catalog-footer { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 36px; margin-top: 34px; }
.catalog-progress { height: 2px; overflow: hidden; background: var(--line); }
.catalog-progress span { display: block; width: 100%; height: 100%; background: var(--green); transform-origin: left center; transform: scaleX(.12); }

@media (pointer:fine) {
  .has-catalog-detail-cursor .product-card__open { cursor: none; }
  .has-catalog-detail-cursor .catalog-viewport.is-dragging .product-card__open { cursor: grabbing; }
  .has-application-detail-cursor .application-panel__trigger { cursor: none; }
}

.applications {
  --applications-gutter: clamp(24px,3vw,52px);
  overflow: clip;
  padding-block: clamp(88px,7vw,126px);
  background: #f0ede4;
}
.application-explorer {
  position: relative;
  display: grid;
  width: min(1520px,calc(100% - (2 * var(--applications-gutter))));
  grid-template-columns: minmax(320px,.62fr) minmax(0,1.58fr);
  gap: clamp(38px,3.6vw,62px);
  align-items: stretch;
}
.applications-heading {
  display: flex;
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
  flex-direction: column;
  justify-content: center;
  transition:
    opacity .34s ease,
    visibility .34s ease,
    transform .48s cubic-bezier(.2,.76,.2,1);
}
.applications-heading h2 {
  max-width: 520px;
  margin-bottom: 23px;
  font-size: clamp(2.35rem,2.65vw,3.2rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.03;
}
.applications-heading > p:not(.eyebrow, .sr-only) {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.65;
}
.applications-cta {
  width: min(100%,310px);
  margin-top: 34px;
}
.application-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  height: clamp(600px,42vw,680px);
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: repeat(12,minmax(0,1fr));
  grid-template-rows: repeat(6,minmax(0,1fr));
  gap: 10px;
}
.application-explorer.is-immersive .applications-heading {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-34px);
}
.application-explorer.is-immersive .application-mosaic {
  grid-column: 1 / -1;
}
.application-panel {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 5px;
  background: var(--green-deep);
  box-shadow: 0 16px 34px rgba(18,35,28,.08);
  isolation: isolate;
}
.application-panel[data-application-panel="confeitaria"] { grid-area: 1 / 1 / 7 / 8; view-transition-name: application-confeitaria; }
.application-panel[data-application-panel="bebidas"] { grid-area: 1 / 8 / 3 / 13; view-transition-name: application-bebidas; }
.application-panel[data-application-panel="salgados"] { grid-area: 3 / 8 / 5 / 13; view-transition-name: application-salgados; }
.application-panel[data-application-panel="lacteos"] { grid-area: 5 / 8 / 7 / 13; view-transition-name: application-lacteos; }
.application-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}
.application-panel[data-application-panel="lacteos"] img {
  object-position: 35% center;
}
.application-panel:not(.is-active) img {
  filter: saturate(.82) brightness(.82);
}
.application-panel__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(0deg,rgba(3,24,17,.94),rgba(3,24,17,.08) 70%),
    linear-gradient(90deg,rgba(3,24,17,.24),transparent 55%);
  pointer-events: none;
}
.application-panel:not(.is-active) .application-panel__shade {
  background: linear-gradient(0deg,rgba(3,24,17,.88),rgba(3,24,17,.04) 75%);
}
.application-panel__trigger {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.application-panel__trigger:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -6px;
}
.application-panel__label {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.25;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity .2s ease, transform .3s ease;
}
.application-panel.is-active .application-panel__label {
  opacity: 0;
  transform: translateY(10px);
}
.application-panel__copy {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 650px;
  padding: clamp(30px,3vw,52px);
  color: #fff;
  pointer-events: none;
  animation: application-copy-in .48s cubic-bezier(.2,.72,.2,1) .08s both;
}
.application-panel__copy[hidden] {
  display: none;
}
.application-panel__copy > span {
  display: block;
  margin-bottom: 11px;
  color: var(--mint);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.application-panel__copy h3 {
  max-width: 590px;
  margin-bottom: 16px;
  font-size: clamp(1.9rem,2.3vw,2.85rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.04;
}
.application-panel__copy p {
  max-width: 540px;
  margin-bottom: 22px;
  color: #d4dfda;
  font-size: .9rem;
  line-height: 1.62;
}
.application-panel__copy a {
  position: relative;
  z-index: 4;
  display: inline-flex;
  gap: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  pointer-events: auto;
}
@keyframes application-copy-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
::view-transition-group(application-confeitaria),
::view-transition-group(application-bebidas),
::view-transition-group(application-salgados),
::view-transition-group(application-lacteos) {
  animation-duration: .58s;
  animation-timing-function: cubic-bezier(.2,.76,.2,1);
}

.segments { color: #fff; background: #102d24; }
.segments-heading { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); gap: clamp(50px,9vw,140px); align-items: end; margin-bottom: 64px; }
.segments-heading h2 { max-width: 800px; margin-bottom: 0; }
.segments-heading > p { margin: 0 0 8px; color: #b8cac2; }
.segment-stage { display: grid; grid-template-columns: .38fr .62fr; min-height: 650px; background: var(--green-deep); }
.segment-tabs { display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.16); }
.segment-tabs button { display: flex; flex: 1; align-items: center; justify-content: space-between; gap: 20px; min-height: 82px; padding: 18px 24px; color: #aebfb7; border: 0; border-bottom: 1px solid rgba(255,255,255,.14); background: transparent; font-family: var(--display); font-size: clamp(1.15rem,1.65vw,1.55rem); font-weight: 600; text-align: left; cursor: pointer; }
.segment-tabs button:last-child { border-bottom: 0; }
.segment-tabs button span { color: var(--mint); font-size: .9rem; opacity: 0; transform: translateX(-8px); transition: opacity .2s ease,transform .2s ease; }
.segment-tabs button:hover,.segment-tabs button[aria-selected="true"] { color: #fff; background: var(--green); }
.segment-tabs button[aria-selected="true"] span { opacity: 1; transform: none; }
.segment-panel { position: relative; min-width: 0; overflow: hidden; }
.segment-panel > img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease,transform .45s ease; }
.segment-panel.is-changing > img { opacity: .15; transform: scale(1.03); }
.segment-panel__shade { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(3,25,18,.96),rgba(3,25,18,.02) 80%); }
.segment-panel__copy { position: absolute; right: 0; bottom: 0; left: 0; max-width: 680px; padding: clamp(30px,5vw,66px); }
.segment-panel__copy > p:first-child { margin-bottom: 12px; color: var(--mint); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.segment-panel__copy h3 { margin-bottom: 15px; font-size: clamp(2rem,3.4vw,3.7rem); }
.segment-panel__copy > p:not(:first-child) { color: #cad7d2; }
.segment-panel__copy a { display: inline-flex; gap: 12px; margin-top: 10px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: .8rem; font-weight: 700; text-decoration: none; }

.origin { position: relative; overflow: hidden; color: #fff; background: #06265b; }
.origin-hero { position: relative; min-height: clamp(720px,67vw,900px); overflow: hidden; }
.origin-hero__art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.origin-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(2,23,59,.96) 0%,rgba(2,23,59,.83) 34%,rgba(3,31,79,.22) 66%,rgba(3,25,63,.2) 100%),linear-gradient(0deg,rgba(2,21,52,.94) 0%,transparent 36%); }
.origin-grid { position: relative; z-index: 2; display: grid; width: min(1520px,calc(100% - (2 * var(--gutter)))); min-height: inherit; grid-template-columns: minmax(420px,.85fr) minmax(640px,1.15fr); gap: clamp(30px,4vw,72px); align-items: center; }
.origin-copy { z-index: 3; max-width: 540px; padding-block: clamp(96px,10vw,148px); }
.eyebrow--origin { color: #43c8f5; }
.origin-copy h2 { max-width: 650px; margin-bottom: 28px; font-size: clamp(2.7rem,3.65vw,4.2rem); line-height: .98; }
.origin-copy__lead { max-width: 510px; margin-bottom: 32px; color: rgba(255,255,255,.78); font-size: clamp(.98rem,1.15vw,1.12rem); line-height: 1.62; }
.origin-facts { display: grid; max-width: 510px; grid-template-columns: repeat(2,1fr); gap: 18px; margin-bottom: 34px; }
.origin-facts p { margin: 0; padding: 16px 18px 16px 0; border-top: 1px solid rgba(116,211,244,.42); }
.origin-facts strong,.origin-facts span { display: block; }
.origin-facts strong { margin-bottom: 5px; color: #fff; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.origin-facts span { color: rgba(255,255,255,.62); font-size: .78rem; line-height: 1.45; }
.origin-button { min-width: 230px; color: #03285e; background: #28baf1; }
.origin-button:hover { background: #53c9f5; }
.origin-visual { position: relative; align-self: stretch; min-width: 0; }
.origin-location { position: absolute; z-index: 4; top: 33%; right: 3%; display: flex; align-items: center; gap: 14px; }
.origin-location i { position: relative; width: 16px; height: 16px; border: 4px solid #fff; border-radius: 50%; background: #20bcf4; box-shadow: 0 0 0 8px rgba(32,188,244,.23),0 0 0 18px rgba(32,188,244,.1); }
.origin-location i::before,.origin-location i::after { position: absolute; top: 50%; left: 50%; width: 78px; height: 1px; background: linear-gradient(90deg,rgba(82,205,249,.55),transparent); content: ""; transform: translate(7px,-50%); }
.origin-location i::after { width: 1px; height: 78px; background: linear-gradient(180deg,rgba(82,205,249,.5),transparent); transform: translate(-50%,7px); }
.origin-location p { margin: 0; }
.origin-location strong,.origin-location span { display: block; text-transform: uppercase; }
.origin-location strong { color: #fff; font-size: .82rem; letter-spacing: .07em; }
.origin-location span { margin-top: 4px; color: #39c4f5; font-size: .66rem; font-weight: 700; letter-spacing: .12em; }
.origin-products { position: absolute; z-index: 3; right: -1%; bottom: 0; width: min(670px,66vw); height: 56%; }
.origin-products::before { position: absolute; right: -5%; bottom: -5%; width: 95%; height: 33%; border-radius: 50% 50% 0 0; background: linear-gradient(150deg,#24323f,#091827 72%); box-shadow: 0 -2px 0 rgba(255,255,255,.08),0 -30px 70px rgba(0,0,0,.22); content: ""; transform: perspective(700px) rotateX(56deg); transform-origin: bottom; }
.origin-product { position: absolute; z-index: 2; bottom: 5%; object-fit: contain; filter: drop-shadow(0 28px 30px rgba(0,0,0,.5)); }
.origin-product--industrial { right: 42%; width: 30%; max-height: 94%; }
.origin-product--one-kilo { z-index: 3; right: 20%; width: 34%; max-height: 72%; }
.origin-product--five-hundred { z-index: 4; right: 0; width: 29%; max-height: 65%; }
.origin-pillars { position: relative; z-index: 5; padding-block: 42px 46px; border-top: 1px solid rgba(86,191,235,.24); background: rgba(3,36,84,.94); }
.origin-pillars::before { position: absolute; inset: 0; opacity: .13; background: radial-gradient(circle at 14% 170%,transparent 0 22%,#32b8ef 22.2% 22.35%,transparent 22.6% 29%,#32b8ef 29.2% 29.35%,transparent 29.6%); content: ""; pointer-events: none; }
.origin-pillars__grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); }
.origin-pillars article { min-height: 154px; padding: 6px clamp(24px,2.6vw,40px); border-left: 1px solid rgba(93,190,232,.25); }
.origin-pillars article:first-child { padding-left: 0; border-left: 0; }
.origin-pillars article:last-child { padding-right: 0; }
.origin-pillars article > p { margin-bottom: 17px; color: #37c1f3; font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.origin-pillars h3 { max-width: 230px; margin-bottom: 12px; font-size: clamp(1.18rem,1.45vw,1.5rem); font-weight: 500; line-height: 1.16; }
.origin-pillars article > span { display: block; max-width: 235px; color: rgba(255,255,255,.58); font-size: .78rem; line-height: 1.55; }

.contact { background: var(--paper); border-top: 1px solid var(--line); }

.contact-quick {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 8vw, 96px);
  align-items: center;
}

.contact-quick__intro .eyebrow {
  margin-bottom: 16px;
}

.contact-quick__intro h2 {
  margin-bottom: 18px;
  max-width: 20ch;
  line-height: 1.05;
}

.contact-quick__lead {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.55;
  margin: 0;
  max-width: 52ch;
}

.contact-quick__action {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.contact-quick__button {
  width: 100%;
  max-width: 360px;
  min-height: 60px;
  font-size: 1.05rem;
  border-radius: 4px;
  cursor: pointer;
}

.contact-quick__links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}

.contact-quick__text-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 700;
  color: var(--green);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-quick__text-btn:hover {
  color: var(--green-dark);
  transform: translateX(2px);
}

@media (max-width: 900px) {
  .contact-quick {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-quick__button {
    max-width: 100%;
  }
}

/* Narrativa de movimento por rolagem */
.motion-section {
  --motion-progress: .5;
  --motion-shift: 0px;
}

.motion-enabled .motion-reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 34px, 0);
  transition:
    opacity .72s cubic-bezier(.2,.72,.2,1),
    filter .72s cubic-bezier(.2,.72,.2,1),
    transform .82s cubic-bezier(.16,.76,.22,1),
    clip-path .9s cubic-bezier(.16,.76,.22,1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-enabled .motion-section.is-motion-visible .motion-reveal {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0);
}

.motion-enabled .motion-product {
  transform: translate3d(0, 54px, 0) scale(.965);
  transform-origin: 50% 100%;
}

.motion-enabled .motion-image {
  clip-path: inset(0 0 16% 0);
  transform: translate3d(0, 26px, 0) scale(.985);
}

.motion-enabled .motion-section.is-motion-visible .motion-image {
  clip-path: inset(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-enabled .applications.is-motion-visible .application-panel img {
  transform: translate3d(0, var(--motion-shift), 0) scale(1.06);
}

.motion-enabled .segments.is-motion-visible .segment-panel > img {
  transform: translate3d(0, var(--motion-shift-soft), 0) scale(1.035);
}

.motion-enabled .segments.is-motion-visible .segment-panel.is-changing > img {
  opacity: .15;
  transform: translate3d(0, var(--motion-shift-soft), 0) scale(1.065);
}

.motion-enabled .contact-form .motion-control {
  transform: translate3d(20px, 26px, 0);
}

.motion-enabled .contact.is-motion-visible .contact-form .motion-control {
  transform: none;
}

.site-footer { position: relative; overflow: hidden; padding: 56px 0 28px; color: #afc0b8; background: var(--green-deep); }
.site-footer::before { position: absolute; top: -200px; right: -140px; width: 440px; height: 440px; border: 1px solid rgba(158,226,197,.08); border-radius: 50%; pointer-events: none; content: ""; }
.site-footer .container { width: min(1400px,calc(100% - (2 * var(--gutter)))); }
.site-footer a { color: inherit; text-decoration: none; }
.footer-content { display: grid; grid-template-columns: minmax(260px, 1.3fr) minmax(130px, .75fr) minmax(140px, .8fr) minmax(250px, 1.15fr); gap: clamp(32px, 4vw, 64px); padding-bottom: 42px; }
.footer-identity { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer-brand { width: 150px; display: inline-block; }
.footer-brand img { width: 100%; height: auto; filter: brightness(0) invert(1); display: block; }
.footer-desc { margin: 0; color: #a9bfb4; font-size: 0.92rem; line-height: 1.6; max-width: 320px; }
.footer-label { margin: 0 0 18px; color: var(--mint); font-size: .68rem; font-style: normal; font-weight: 700; letter-spacing: .14em; line-height: 1.2; text-transform: uppercase; }
.footer-nav, .footer-contact { display: flex; align-items: flex-start; flex-direction: column; font-style: normal; }
.footer-nav a, .footer-contact a { padding: 4px 0; color: #dce7e2; font-size: .9rem; line-height: 1.5; transition: color .2s ease, transform .2s ease; }
.footer-nav a { display: inline-flex; align-items: center; gap: 8px; }
.footer-nav a span { color: var(--mint); font-size: .72rem; opacity: 0; transform: translate(-4px,2px); transition: opacity .2s ease, transform .2s ease; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-nav a:hover span { opacity: 1; transform: translate(0,0); }
.footer-contact { min-width: 0; }
.footer-contact__primary { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 8px; color: #fff !important; font-size: .95rem !important; font-weight: 600; }
.footer-contact__primary span { color: var(--mint); }
.footer-contact__cta { margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(158,226,197,.12); border: 1px solid rgba(158,226,197,.3); color: var(--mint) !important; font-size: 0.8rem !important; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; transition: background-color .2s ease, border-color .2s ease, color .2s ease; }
.footer-contact__cta:hover { background: var(--mint); color: var(--green-deep) !important; border-color: var(--mint); transform: translateY(-1px); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: #86a295; }
.footer-bottom a { color: #fff; font-weight: 600; transition: color .2s ease; }
.footer-bottom a:hover { color: var(--mint); }

@media (max-width:1050px) {
  .site-header { grid-template-columns: 170px 1fr auto; gap: 24px; }
  .desktop-nav { gap: 20px; }
  .hero-copy { width: 58%; }
  .hero-product { right: -2%; width: 33vw; }
  .application-explorer { grid-template-columns: minmax(260px,.7fr) minmax(0,1.3fr); gap: 34px; }
  .application-mosaic { height: 620px; }
  .segment-stage { grid-template-columns: .42fr .58fr; }
  .origin-grid { grid-template-columns: minmax(330px,.78fr) minmax(520px,1.22fr); gap: 20px; }
  .origin-products { right: -8%; width: min(630px,66vw); }
  .origin-location { right: 0; }
}

@media (max-width:1180px) {
  .footer-content { grid-template-columns: minmax(220px, 1.2fr) minmax(110px, .7fr) minmax(120px, .75fr) minmax(220px, 1fr); gap: 28px; }
}

@media (max-width:900px) {
  :root { --section: 88px; }
  h1 { font-size: clamp(2.8rem,11vw,4.3rem); }
  h2 { font-size: clamp(2.25rem,9vw,3.6rem); }
  .site-header { min-height: 72px; grid-template-columns: 1fr auto; }
  .brand { width: 140px; }
  .desktop-nav,.header-cta { display: none; }
  .menu-button { display: grid; width: 44px; height: 44px; place-content: center; gap: 7px; padding: 0; border: 0; background: transparent; cursor: pointer; }
  .menu-button span:not(.sr-only) { display: block; width: 24px; height: 1px; background: currentColor; }
  .mobile-nav { position: absolute; top: 100%; right: 0; left: 0; padding: 22px var(--gutter) 32px; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); }
  .mobile-nav:not([hidden]) { display: grid; }
  .mobile-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 600; text-decoration: none; }
  .hero-journey { height: 155svh; }
  .hero-stage { min-height: 620px; }
  .hero-backdrop { background-position: 60% center; }
  .hero-shade { background: linear-gradient(180deg,rgba(10,7,6,.82) 0%,rgba(10,7,6,.66) 54%,rgba(10,7,6,.9) 100%); }
  .hero-copy { top: 120px; width: 100%; transform: translateY(calc(var(--p) * -35px)); }
  .hero-product { top: auto; right: 7%; bottom: 8%; width: min(45vw,310px); height: 42%; transform: translateY(calc(var(--p) * -45px)) rotate(calc(-3deg + (var(--p) * 5deg))); }
  .hero-product p,.hero-chapter { display: none; }
  .hero-end { bottom: 6%; }
  .catalog-heading,.segments-heading,.origin-grid,.contact-grid,.application-explorer { grid-template-columns: 1fr; }
  .catalog-heading,.segments-heading { gap: 28px; }
  .catalog-tools { align-items: flex-start; flex-direction: column; }
  .catalog-controls > span { display: none; }
  .catalog-viewport { padding-left: var(--gutter); }
  .product-card.is-expanded {
    width: min(480px,calc(100vw - (2 * var(--gutter))));
    grid-template-columns: 100%;
    grid-template-rows: 54px 310px minmax(201px,auto) auto;
  }
  .product-card.is-expanded .product-card__open { width: 100%; height: 565px; }
  .product-card__details { grid-column: 1; grid-row: 4; min-height: 520px; border-top: 1px solid var(--line); border-left: 0; }
  .application-explorer {
    width: min(var(--container),calc(100% - (2 * var(--gutter))));
    gap: 48px;
  }
  .application-detail-cursor { display: none; }
  .has-application-detail-cursor .application-panel__trigger { cursor: pointer; }
  .applications-heading { max-width: 680px; }
  .applications-heading h2 {
    max-width: 650px;
    font-size: clamp(2.15rem,7.6vw,2.8rem);
  }
  .applications-heading > p:not(.eyebrow, .sr-only) { max-width: 620px; }
  .applications-cta { width: min(100%,360px); }
  .application-mosaic { height: auto; grid-column: 1; grid-row: auto; grid-template-columns: 1fr; grid-template-rows: none; gap: 8px; }
  .application-panel {
    grid-area: auto !important;
    height: 100px;
  }
  .application-panel.is-active { height: 520px; }
  .application-panel__copy { max-width: 660px; }
  .segment-stage { grid-template-columns: 1fr; }
  .segment-tabs { display: grid; grid-template-columns: repeat(2,1fr); border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .segment-tabs button { min-height: 74px; border-right: 1px solid rgba(255,255,255,.14); }
  .segment-panel { min-height: 580px; }
  .origin-hero { min-height: 1120px; }
  .origin-hero__art { object-position: 62% center; }
  .origin-hero__shade { background: linear-gradient(180deg,rgba(2,23,59,.97) 0%,rgba(2,23,59,.82) 44%,rgba(3,31,79,.2) 72%,rgba(2,21,52,.88) 100%); }
  .origin-grid { gap: 0; }
  .origin-copy { max-width: 620px; padding: 88px 0 18px; }
  .origin-copy h2 { max-width: 580px; }
  .origin-visual { min-height: 580px; }
  .origin-location { top: 24%; right: 3%; }
  .origin-products { right: -4%; width: min(690px,88vw); height: 62%; }
  .origin-pillars__grid { grid-template-columns: repeat(2,1fr); row-gap: 34px; }
  .origin-pillars article:nth-child(3) { padding-left: 0; border-left: 0; }
  .contact-form { margin-top: 20px; }
  .footer-content { grid-template-columns: repeat(2,1fr); row-gap: 36px; column-gap: 30px; }
  .footer-identity { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width:520px) {
  :root { --gutter:18px; }
  body { font-size: 15px; }
  .hero-journey { height: 140svh; }
  .hero-copy { top: 102px; }
  .hero-copy h1 { margin-bottom: 19px; }
  .hero-lead { margin-bottom: 25px; line-height: 1.45; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-product { right: 8%; bottom: 3%; width: 54vw; height: 35%; }
  .hero-end { bottom: 4%; }
  .hero-end strong { font-size: 2.35rem; }
  .catalog-filters { flex-wrap: nowrap; width: calc(100vw - 36px); overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .catalog-filters::-webkit-scrollbar { display: none; }
  .catalog-filters button { flex: 0 0 auto; }
  .catalog-controls { align-self: flex-end; margin-top: -12px; }
  .product-card { width: calc(100vw - 52px); min-height: 565px; }
  .product-card.is-expanded { width: calc(100vw - 52px); }
  .product-card.is-expanded .product-card__open { height: 565px; }
  .product-card__details { min-height: 0; padding: 32px 20px 24px; }
  .product-card__facts { grid-template-columns: 1fr; }
  .catalog-footer { grid-template-columns: 1fr; }
  .application-panel.is-active { height: 470px; }
  .application-panel__copy { padding: 26px 20px; }
  .application-panel__copy h3 { font-size: clamp(1.85rem,8.5vw,2.55rem); }
  .application-panel__copy p { font-size: .86rem; }
  .segment-tabs { grid-template-columns: 1fr; }
  .segment-tabs button { border-right: 0; }
  .segment-panel { min-height: 540px; }
  .segment-panel__copy { padding: 28px 22px; }
  .origin-hero { min-height: 970px; }
  .origin-hero__art { object-position: 67% center; }
  .origin-copy { padding-top: 76px; }
  .origin-copy h2 { margin-bottom: 22px; font-size: clamp(2.35rem,11vw,3.25rem); }
  .origin-copy__lead { margin-bottom: 24px; font-size: .94rem; line-height: 1.55; }
  .origin-facts { gap: 10px; margin-bottom: 26px; }
  .origin-facts p { padding-right: 8px; }
  .origin-facts span { font-size: .72rem; }
  .origin-button { width: 100%; }
  .origin-visual { min-height: 430px; }
  .origin-location { top: 20%; right: 2%; }
  .origin-location strong { font-size: .7rem; }
  .origin-location span { font-size: .58rem; }
  .origin-products { right: -4%; width: 108vw; height: 62%; }
  .origin-products::before { right: 2%; width: 84%; }
  .origin-pillars { padding-block: 34px 38px; }
  .origin-pillars__grid { grid-template-columns: 1fr; row-gap: 0; }
  .origin-pillars article,
  .origin-pillars article:first-child,
  .origin-pillars article:nth-child(3),
  .origin-pillars article:last-child { min-height: 0; padding: 22px 0; border-top: 1px solid rgba(93,190,232,.2); border-left: 0; }
  .origin-pillars article:first-child { padding-top: 0; border-top: 0; }
  .origin-pillars article:last-child { padding-bottom: 0; }
  .origin-pillars article > p { margin-bottom: 9px; }
  .origin-pillars h3 { max-width: none; margin-bottom: 8px; }
  .origin-pillars article > span { max-width: 310px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form__wide { grid-column: 1; }
  .site-footer { padding: 48px 0 24px; }
  .site-footer::before { top: -130px; right: -250px; width: 440px; height: 440px; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; padding-bottom: 34px; }
  .footer-identity { grid-column: auto; }
  .footer-contact { grid-column: auto; }
  .footer-label { margin-bottom: 12px; }
  .footer-nav a,.footer-contact a { min-height: 36px; }
  .footer-contact__primary { white-space: normal; overflow-wrap: anywhere; }
  .footer-bottom { grid-template-columns: 1fr; gap: 12px; }
  .footer-bottom a { margin-top: 4px; }
  .motion-enabled .motion-reveal { transform: translate3d(0, 22px, 0); }
  .motion-enabled .motion-product { transform: translate3d(0, 34px, 0) scale(.98); }
  .motion-enabled .motion-section.is-motion-visible .motion-reveal,
  .motion-enabled .motion-section.is-motion-visible .motion-product { transform: none; }
}

@media (prefers-reduced-motion:reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .hero-journey { height: 100svh; min-height: 680px; }
  .hero-stage { position: relative; }
  .hero-backdrop,.hero-product,.hero-copy { transform: none; }
  .hero-copy { opacity: 1; }
  .hero-end { display: none; }
  .catalog-detail-cursor,
  .application-detail-cursor { transition: none; }
  .application-panel { view-transition-name: none !important; }
  .motion-reveal { opacity: 1 !important; filter: none !important; clip-path: none !important; transform: none !important; }
}
