:root {
  --ink: #071a32;
  --ink-2: #0c294b;
  --blue: #0862ce;
  --blue-bright: #0d75ee;
  --green: #89cf32;
  --paper: #f3f6f8;
  --white: #fff;
  --muted: #607086;
  --line: #dce4eb;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(7, 26, 50, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 116px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 20px; top: -80px; z-index: 1000; padding: 12px 18px;
  background: #fff; color: var(--ink); border-radius: 10px; transition: top .2s;
}
.skip-link:focus { top: 20px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  color: #fff; transition: background .25s, box-shadow .25s, color .25s;
}
.site-header.scrolled {
  color: var(--ink); background: rgba(255,255,255,.94);
  box-shadow: 0 8px 30px rgba(7,26,50,.09); backdrop-filter: blur(12px);
}
.header-inner { height: 88px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 200px; }
.brand-mark {
  position: relative; display: block; overflow: hidden; width: 58px; height: 28px; flex: 0 0 58px;
}
.brand-mark img {
  position: absolute; width: 150px; max-width: none; left: -46px; top: -20px;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 16px; letter-spacing: .095em; }
.brand-copy small { margin-top: 7px; font-size: 7px; font-weight: 700; letter-spacing: .25em; opacity: .68; }
.primary-nav { display: flex; align-items: center; gap: 32px; font-size: 13px; font-weight: 650; }
.primary-nav > a:not(.nav-cta) { position: relative; padding: 9px 0; opacity: .86; }
.primary-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: 2px;
  background: var(--green); transition: right .2s;
}
.primary-nav > a:hover::after { right: 0; }
.nav-cta { padding: 13px 20px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; }
.site-header.scrolled .nav-cta { border-color: var(--ink); }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px; background: currentColor; }

.hero {
  position: relative; min-height: 860px; overflow: hidden; color: #fff;
  background:
    linear-gradient(110deg, rgba(7,26,50,.98) 0%, rgba(6,36,69,.96) 48%, rgba(7,46,90,.95) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 70px 70px; mask-image: linear-gradient(90deg, #000, transparent 76%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); }
.hero-glow-one { width: 620px; height: 620px; right: -120px; top: 85px; background: radial-gradient(circle, rgba(10,112,232,.36), transparent 68%); }
.hero-glow-two { width: 380px; height: 380px; right: 230px; bottom: 40px; background: radial-gradient(circle, rgba(137,207,50,.12), transparent 70%); }
.hero-grid {
  position: relative; z-index: 2; min-height: 800px; padding-top: 125px;
  display: grid; grid-template-columns: .98fr 1.02fr; align-items: center; gap: 44px;
}
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .2em; }
.eyebrow span { width: 30px; height: 2px; background: currentColor; }
.eyebrow.light { color: #95d743; }
.hero h1 {
  max-width: 660px; margin: 22px 0 22px; font-size: clamp(48px, 5.1vw, 76px);
  line-height: .99; letter-spacing: -.048em; font-weight: 720;
}
.hero-lead { max-width: 600px; margin: 0; color: #bfd0e0; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 20px;
  min-height: 56px; padding: 0 25px; border-radius: 999px; font-size: 13px; font-weight: 750;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #06192f; background: var(--green); box-shadow: 0 12px 30px rgba(137,207,50,.18); }
.button-primary:hover { box-shadow: 0 16px 36px rgba(137,207,50,.28); }
.button-ghost { border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.button-dark { color: #fff; background: var(--ink); }
.hero-proof { display: flex; gap: 26px; margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.13); }
.hero-proof div { min-width: 100px; }
.hero-proof strong { display: block; font-size: 21px; letter-spacing: -.02em; }
.hero-proof span { display: block; margin-top: 5px; color: #8da5bb; font-size: 11px; line-height: 1.35; }
.hero-visual { position: relative; height: 610px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; }
.orbit-one { width: 530px; height: 530px; }
.orbit-two { width: 410px; height: 410px; border-style: dashed; animation: spin 40s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.product-stage {
  position: relative; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle at 50% 48%, rgba(14,105,209,.3), rgba(8,40,75,.1) 62%, transparent 63%);
}
.product-stage::before {
  content: ""; position: absolute; left: 70px; right: 70px; bottom: 70px; height: 34px;
  background: rgba(0,0,0,.3); filter: blur(20px); border-radius: 50%;
}
.product-stage > img {
  position: absolute; width: 510px; max-width: none; left: 0; top: 90px;
  filter: drop-shadow(0 28px 24px rgba(0,0,0,.25)); transform: rotate(-5deg);
}
.stage-label {
  position: absolute; left: 24px; top: 30px; z-index: 2; font-size: 10px; font-weight: 800;
  letter-spacing: .22em; color: #a9bed0;
}
.stage-label span { color: var(--green); margin-right: 10px; }
.stage-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; color: #a9bed0; font-size: 10px; line-height: 1.45; letter-spacing: .08em; }
.stage-note i { display: block; width: 54px; height: 1px; background: rgba(255,255,255,.4); position: relative; }
.stage-note i::after { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.note-neck { right: -10px; top: 170px; }
.note-body { left: -10px; bottom: 100px; flex-direction: row-reverse; text-align: right; }
.note-body i::after { left: 0; right: auto; }
.hero-bottom { position: absolute; z-index: 3; inset: auto 0 0; border-top: 1px solid rgba(255,255,255,.12); background: rgba(4,19,36,.46); }
.hero-bottom .shell { min-height: 60px; display: flex; align-items: center; justify-content: space-between; }
.hero-bottom p { margin: 0; color: #7f9ab2; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
.trust-list { display: flex; align-items: center; gap: 17px; color: #b9c9d7; font-size: 11px; }
.trust-list i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); }

.products { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 90px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .selection h2, .capability h2, .about h2, .contact h2 {
  margin: 18px 0 0; font-size: clamp(39px, 4vw, 59px); line-height: 1.05; letter-spacing: -.045em;
}
.section-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.product-feature {
  display: grid; grid-template-columns: 1.12fr .88fr; min-height: 455px; background: #fff;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.product-feature-image { position: relative; overflow: hidden; display: grid; place-items: center; min-height: 420px; background: linear-gradient(135deg, #dfeefa, #bcdcf5); }
.product-feature-image::before { content: ""; position: absolute; width: 460px; height: 460px; border: 1px solid rgba(7,26,50,.1); border-radius: 50%; }
.product-feature-image img { position: relative; z-index: 1; width: 90%; filter: drop-shadow(0 22px 20px rgba(7,26,50,.18)); }
.image-index { position: absolute; z-index: 2; top: 25px; left: 28px; font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.product-feature-copy { padding: 62px 58px; display: flex; flex-direction: column; justify-content: center; }
.family-tag { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.product-feature h3 { margin: 15px 0; font-size: 35px; letter-spacing: -.035em; }
.product-feature-copy > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.spec-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0 25px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-row span { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.spec-row strong { display: block; margin-top: 7px; font-size: 17px; }
.text-link { width: max-content; color: var(--blue); font-size: 13px; font-weight: 750; }
.text-link span { margin-left: 8px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.product-card { overflow: hidden; border-radius: var(--radius); background: #fff; transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-image { position: relative; height: 300px; display: grid; place-items: center; overflow: hidden; }
.card-image::before { content: ""; position: absolute; width: 300px; height: 300px; border: 1px solid rgba(7,26,50,.1); border-radius: 50%; }
.card-image img { position: relative; z-index: 1; width: 83%; max-height: 270px; object-fit: contain; filter: drop-shadow(0 18px 16px rgba(7,26,50,.17)); transition: transform .35s; }
.product-card:hover .card-image img { transform: scale(1.035); }
.card-image > span { position: absolute; right: 20px; top: 20px; font-size: 10px; font-weight: 800; }
.blue-wash { background: #dcecf8; }
.green-wash { background: #e5f0dc; }
.navy-wash { background: #d9e0eb; }
.ice-wash { background: #e7f1f2; }
.card-content { padding: 31px 34px 35px; }
.card-content h3 { margin: 12px 0 10px; font-size: 25px; letter-spacing: -.025em; }
.card-content p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.reference-note { margin: 24px auto 0; max-width: 800px; text-align: center; color: #778494; font-size: 11px; line-height: 1.6; }

.transformation { color: #fff; overflow: hidden; background: var(--ink); }
.section-heading.inverse > p { color: #9fb1c2; }
.process-visual {
  position: relative; min-height: 560px; display: grid; grid-template-columns: 1fr .64fr 1fr;
  align-items: center; gap: 35px; padding: 48px 44px; border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px; background: radial-gradient(circle at 50% 50%, rgba(8,98,206,.19), transparent 44%);
}
.process-visual::before {
  content: ""; position: absolute; inset: 0; opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 55px 55px;
}
.process-step { position: relative; z-index: 1; text-align: center; }
.step-num { position: absolute; left: 5px; top: 0; color: var(--green); font-size: 10px; font-weight: 800; }
.preform-illustration, .bottle-illustration { position: relative; width: 180px; height: 290px; margin: 0 auto 25px; filter: drop-shadow(0 22px 19px rgba(0,0,0,.3)); }
.preform-neck, .bottle-neck {
  position: absolute; z-index: 2; left: 50%; top: 5px; transform: translateX(-50%);
  width: 71px; height: 60px; border: 3px solid rgba(143,206,255,.86); border-radius: 7px 7px 12px 12px;
  background: linear-gradient(90deg, rgba(33,114,177,.45), rgba(126,207,255,.28), rgba(20,91,155,.5));
}
.preform-neck i, .bottle-neck i { display: block; height: 4px; margin-top: 8px; background: rgba(155,219,255,.76); box-shadow: 0 2px 0 rgba(3,43,83,.6); }
.preform-body {
  position: absolute; left: 50%; top: 55px; width: 112px; height: 230px; transform: translateX(-50%);
  border: 3px solid rgba(143,206,255,.78); border-radius: 27px 27px 55px 55px;
  background: linear-gradient(90deg, rgba(33,114,177,.45), rgba(135,213,255,.28) 45%, rgba(20,91,155,.52));
  box-shadow: inset 20px 0 24px rgba(41,140,208,.13), inset -20px 0 24px rgba(0,51,105,.2);
}
.bottle-illustration { width: 230px; }
.bottle-neck { width: 71px; }
.bottle-body {
  position: absolute; left: 50%; top: 55px; width: 205px; height: 230px; transform: translateX(-50%);
  border: 3px solid rgba(143,206,255,.75); border-radius: 23px 23px 42px 42px;
  background: linear-gradient(90deg, rgba(33,114,177,.32), rgba(135,213,255,.17) 45%, rgba(20,91,155,.42));
  clip-path: polygon(31% 0, 69% 0, 82% 9%, 94% 20%, 97% 95%, 92% 100%, 8% 100%, 3% 95%, 6% 20%, 18% 9%);
}
.process-step h3 { margin: 0 0 8px; font-size: 20px; }
.process-step p { max-width: 250px; margin: 0 auto; color: #94a9bc; font-size: 12px; line-height: 1.55; }
.process-arrow { position: relative; z-index: 1; text-align: center; color: #7793aa; font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.process-arrow i { display: block; position: relative; width: 100%; height: 1px; margin: 14px 0; background: linear-gradient(90deg, rgba(137,207,50,.1), var(--green)); }
.process-arrow i::after { content: ""; position: absolute; right: -1px; top: -4px; width: 8px; height: 8px; border-top: 1px solid var(--green); border-right: 1px solid var(--green); transform: rotate(45deg); }
.process-fact {
  position: absolute; z-index: 2; right: 35px; bottom: 28px; width: 310px; padding: 18px 20px 18px 29px;
  border-radius: 12px; background: rgba(255,255,255,.07); backdrop-filter: blur(8px); text-align: left;
}
.fact-line { position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--green); border-radius: 12px 0 0 12px; }
.process-fact strong { font-size: 12px; }
.process-fact p { margin: 5px 0 0; max-width: none; color: #8fa4b8; font-size: 10px; }

.selection { background: #fff; }
.selection-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.selection-intro { position: sticky; top: 130px; }
.selection-intro > p { margin: 24px 0 30px; max-width: 460px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.selection-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.selection-list li { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.selection-list li > span { color: var(--blue); font-size: 11px; font-weight: 800; }
.selection-list h3 { margin: 0 0 8px; font-size: 21px; }
.selection-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.capability { background: var(--paper); }
.capability-grid { display: grid; grid-template-columns: .93fr 1.07fr; gap: 82px; align-items: center; }
.capability-image { position: relative; height: 650px; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.capability-image::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(7,26,50,.92)); }
.capability-image img { width: 100%; height: 100%; object-fit: cover; }
.image-caption { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 30px; color: #fff; }
.image-caption span { display: block; color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.image-caption strong { display: block; margin-top: 9px; font-size: 20px; }
.capability-copy .large-copy { margin: 24px 0 32px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.capability-points { display: grid; gap: 0; }
.capability-points > div { position: relative; padding: 22px 0 22px 52px; border-top: 1px solid var(--line); }
.capability-points span { position: absolute; left: 0; top: 25px; color: var(--blue); font-size: 10px; font-weight: 800; }
.capability-points h3 { margin: 0 0 7px; font-size: 17px; }
.capability-points p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.status-note { display: flex; gap: 12px; align-items: flex-start; margin-top: 24px; padding: 18px; border-radius: 12px; background: #fff; }
.status-note > span { flex: 0 0 auto; width: 9px; height: 9px; margin-top: 4px; border: 2px solid var(--green); border-radius: 50%; }
.status-note p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.status-note strong { color: var(--ink); }

.about { color: #fff; background: linear-gradient(135deg, #0862ce, #064b9e); }
.about-grid { display: grid; grid-template-columns: 1fr .83fr; gap: 100px; align-items: start; }
.about-copy { padding-top: 9px; }
.about-copy > p { margin: 0 0 20px; color: #cbdced; font-size: 16px; line-height: 1.8; }
.about-values { display: flex; flex-wrap: wrap; gap: 17px 25px; margin-top: 34px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.2); }
.about-values span { display: flex; align-items: center; gap: 9px; color: #fff; font-size: 11px; }
.about-values i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.contact { padding: 80px 0; background: #fff; }
.contact-card {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr .75fr; gap: 80px;
  padding: 64px 70px; border-radius: 28px; color: #fff; background: var(--ink);
}
.contact-card::after { content: ""; position: absolute; width: 420px; height: 420px; right: -160px; top: -180px; border: 1px solid rgba(137,207,50,.28); border-radius: 50%; box-shadow: 0 0 0 70px rgba(8,98,206,.07), 0 0 0 140px rgba(8,98,206,.04); }
.contact-copy, .contact-actions { position: relative; z-index: 2; }
.contact h2 { font-size: clamp(37px, 3.8vw, 54px); }
.contact-copy p { max-width: 610px; margin: 20px 0 0; color: #9db1c4; font-size: 14px; line-height: 1.7; }
.contact-actions { display: flex; flex-direction: column; justify-content: center; }
.contact-link { position: relative; display: flex; flex-direction: column; padding: 22px 40px 22px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-link:first-child { border-top: 1px solid rgba(255,255,255,.18); }
.contact-link span { color: #7790a7; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .17em; }
.contact-link strong { margin-top: 7px; font-size: 17px; font-weight: 600; }
.contact-link i { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); color: var(--green); font-style: normal; }

.site-footer { color: #8698aa; background: #041323; }
.footer-main { min-height: 150px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { color: #fff; }
.footer-main > p { margin: 0; text-align: center; font-size: 11px; line-height: 1.5; }
.footer-links { display: flex; justify-content: flex-end; gap: 25px; font-size: 11px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { min-height: 66px; display: flex; align-items: center; justify-content: space-between; font-size: 9px; letter-spacing: .05em; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 980px) {
  .shell { width: min(100% - 36px, 760px); }
  .primary-nav { gap: 18px; }
  .primary-nav > a:not(.nav-cta) { display: none; }
  .hero { min-height: 1050px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 150px; padding-bottom: 105px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { height: 470px; }
  .product-stage { transform: scale(.85); }
  .hero-bottom .shell { flex-direction: column; justify-content: center; gap: 10px; padding: 12px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .product-feature { grid-template-columns: 1fr; }
  .process-visual { grid-template-columns: 1fr .5fr 1fr; padding-inline: 25px; }
  .process-fact { right: 25px; }
  .selection-grid, .capability-grid, .about-grid, .contact-card { grid-template-columns: 1fr; gap: 48px; }
  .selection-intro { position: static; }
  .capability-image { height: 500px; }
  .about-grid { gap: 40px; }
  .footer-main { grid-template-columns: 1fr; gap: 20px; padding: 35px 0; text-align: center; }
  .footer-brand { margin: auto; }
  .footer-links { justify-content: center; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 520px); }
  .section { padding: 80px 0; }
  .header-inner { height: 76px; }
  .brand { min-width: auto; }
  .brand-copy strong { font-size: 14px; }
  .primary-nav {
    display: none; position: absolute; top: 76px; left: 14px; right: 14px; flex-direction: column;
    align-items: stretch; padding: 17px; color: var(--ink); background: #fff; border-radius: 15px; box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.nav-cta) { display: block; padding: 12px; }
  .nav-cta { text-align: center; background: var(--ink); color: #fff; }
  .menu-button { display: block; color: inherit; }
  .hero { min-height: 940px; }
  .hero-grid { min-height: 875px; padding-top: 130px; gap: 20px; }
  .hero h1 { font-size: 45px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { width: 100%; }
  .button { width: 100%; }
  .hero-proof { width: 100%; justify-content: space-between; gap: 8px; }
  .hero-proof div { min-width: 0; }
  .hero-proof strong { font-size: 17px; }
  .hero-proof span { font-size: 9px; }
  .hero-visual { height: 340px; width: 100%; }
  .product-stage { transform: scale(.62); }
  .orbit-one { width: 340px; height: 340px; }
  .orbit-two { width: 280px; height: 280px; }
  .hero-bottom p { display: none; }
  .trust-list { gap: 8px; font-size: 8px; }
  .section-heading h2, .selection h2, .capability h2, .about h2, .contact h2 { font-size: 38px; }
  .product-feature-image { min-height: 280px; }
  .product-feature-copy { padding: 36px 27px; }
  .spec-row { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .card-image { height: 250px; }
  .section-heading { margin-bottom: 38px; }
  .process-visual { grid-template-columns: 1fr; gap: 30px; padding: 42px 20px 180px; }
  .process-arrow { width: 110px; margin: auto; transform: rotate(90deg); }
  .process-arrow span { display: none; }
  .process-fact { left: 20px; right: 20px; bottom: 24px; width: auto; }
  .preform-illustration, .bottle-illustration { transform: scale(.8); margin-top: -25px; margin-bottom: -5px; }
  .selection-list li { grid-template-columns: 40px 1fr; }
  .capability-grid { gap: 45px; }
  .capability-image { height: 390px; }
  .capability-copy .large-copy { font-size: 15px; }
  .contact { padding: 20px 0; }
  .contact-card { width: calc(100% - 20px); padding: 45px 25px; gap: 35px; }
  .contact-link strong { font-size: 14px; }
  .footer-bottom { flex-direction: column; justify-content: center; gap: 8px; text-align: center; }
}

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