/* =========================================================
   LAIDN Denim — global design tokens
   Change the values below to update the brand palette site-wide.
   ========================================================= */
:root {
  --ink: #101216;
  --denim: #173b6c;
  --denim-light: #244d86;
  --paper: #f5f5f2;
  --white: #ffffff;
  --muted: #667085;
  --line: #e4e7ec;
  --line-dark: #30343b;
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --container: 1240px;
  --header-height: 76px;
  --section-space: clamp(78px, 10vw, 150px);
}

/* Reset and foundations */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
figure, blockquote { margin: 0; }
ul, ol { margin-top: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 840px); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; padding: 10px 16px; background: var(--white); transform: translateY(-180%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #6f9cd7; outline-offset: 3px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Typography */
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1 { margin-bottom: 0; font-size: clamp(2.8rem, 8.6vw, 6.8rem); line-height: .94; letter-spacing: -.065em; font-weight: 760; }
h1 em, h2 em { display: block; color: var(--denim); font-style: normal; }
h2 { margin-bottom: 24px; font-size: clamp(2.15rem, 5vw, 4.7rem); line-height: 1; letter-spacing: -.052em; font-weight: 750; }
h3 { margin-bottom: 10px; font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.2; letter-spacing: -.025em; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--denim); font-size: .73rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.eyebrow.on-dark { color: #9fbae0; }
.section-intro { max-width: 670px; color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.16rem); }
.kicker-number { display: block; margin-bottom: 28px; color: var(--denim); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }

/* Shared actions */
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 26px; min-height: 52px; padding: 13px 20px; border: 1px solid var(--denim); background: var(--denim); color: var(--white); font-weight: 750; transition: background .2s, border-color .2s, transform .2s; }
.button:hover { background: var(--denim-light); border-color: var(--denim-light); transform: translateY(-2px); }
.button-light { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-light:hover { border-color: #dce2ea; background: #dce2ea; }
.button-outline { border-color: #5f7494; background: transparent; color: var(--white); }
.button-outline:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-small { min-height: 42px; padding: 9px 16px; font-size: .9rem; }
.text-link { display: inline-flex; gap: 18px; align-items: center; padding-bottom: 2px; border-bottom: 1px solid #a4abb4; font-weight: 700; }
.text-link:hover { color: var(--denim); border-color: var(--denim); }

/* Header and navigation */
.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; height: var(--header-height); transition: background .25s, border-color .25s, box-shadow .25s; }
.site-header.is-scrolled, .site-header.header-solid { background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); box-shadow: 0 8px 26px rgba(16,18,22,.035); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: flex-end; gap: 9px; line-height: 1; letter-spacing: -.04em; }
.brand span { font-weight: 850; font-size: 1.45rem; }
.brand small { padding-bottom: 2px; color: var(--denim); font-size: .58rem; font-weight: 750; letter-spacing: .18em; }
.menu-toggle { display: grid; gap: 5px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: currentColor; transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
.site-nav { position: fixed; top: var(--header-height); right: 0; bottom: 0; width: min(88vw,380px); display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 24px; background: var(--white); transform: translateX(101%); transition: transform .25s ease; box-shadow: -20px 20px 50px rgba(16,18,22,.12); overflow: auto; }
.site-nav.is-open { transform: none; }
.site-nav > a, .nav-dropdown-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; font-weight: 650; cursor: pointer; }
.site-nav > a[aria-current="page"], .nav-dropdown-toggle.is-current { color: var(--denim); }
.nav-dropdown-menu { display: none; padding: 8px 0 8px 16px; }
.nav-dropdown.is-open .nav-dropdown-menu { display: grid; }
.nav-dropdown-menu a { padding: 10px 0; color: var(--muted); }
.nav-dropdown-menu a[aria-current="page"] { color: var(--denim); font-weight: 750; }
.site-nav .nav-cta { margin-top: 18px; padding: 14px 18px; border: 0; }

/* Home hero */
.hero { min-height: 100vh; padding: calc(var(--header-height) + 56px) 0 34px; background: linear-gradient(90deg,var(--paper) 0 72%,#e8e9e5 72%); }
.hero-grid { display: grid; gap: 45px; align-items: center; }
.hero-copy { max-width: 760px; }
.hero-lead { max-width: 640px; margin: 28px 0 0; color: #454b55; font-size: clamp(1.05rem,2vw,1.25rem); line-height: 1.65; }
.hero-media { position: relative; min-width: 0; }
.hero-media img { width: 100%; aspect-ratio: 5/5.6; object-fit: cover; background: #d9dde0; }
.hero-media figcaption { position: absolute; right: 0; bottom: 0; padding: 12px 16px; background: var(--ink); color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.proof-strip { display: grid; margin-top: 48px; border-top: 1px solid #ccd0d5; }
.proof-strip div { padding: 20px 0; border-bottom: 1px solid #ccd0d5; }
.proof-strip span, .proof-strip strong { display: block; text-transform: uppercase; }
.proof-strip span { color: var(--muted); font-size: .65rem; font-weight: 750; letter-spacing: .14em; }
.proof-strip strong { margin-top: 3px; font-size: .85rem; letter-spacing: .03em; }

/* Shared section layouts */
.section { padding-block: var(--section-space); }
.section-white { background: var(--white); }
.section-dark { background: var(--ink); color: var(--white); }
.section-denim { background: var(--denim); color: var(--white); }
.intro-grid, .split-grid, .quality-grid { display: grid; gap: 46px; align-items: start; }
.intro-copy p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 1.06rem; }
.intro-copy p:last-of-type { margin-bottom: 0; }
.section-head { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 50px; }
.section-head h2, .section-head p { margin-bottom: 0; }
.section-head .section-intro { max-width: 620px; }
.section-footer { margin-top: 42px; }
.mission-lead { margin: 0; color: #b7c9e3; font-size: clamp(1.7rem,4vw,3.4rem); line-height: 1.18; letter-spacing: -.04em; }
.aside-divider { margin: 34px 0; border: 0; border-top: 1px solid var(--line-dark); }

/* Product cards */
.product-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.product-card { position: relative; min-width: 0; padding: 14px; background: var(--white); }
.product-card-image { position: relative; display: block; overflow: hidden; background: #dfe3e7; }
.product-card-image img { width: 100%; aspect-ratio: 4/4.45; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-card-image img { transform: scale(1.025); }
.product-card-body { padding: 26px 10px 20px; }
.product-card-body h3 { display: flex; justify-content: space-between; gap: 20px; }
.product-card-body h3 span { color: var(--denim); font-size: .78rem; }
.product-card-body p { margin-bottom: 0; color: var(--muted); font-size: .94rem; }
.product-card .card-link { position: absolute; inset: 0; }

/* Low MOQ */
.moq-grid { display: grid; gap: 52px; align-items: center; }
.moq-copy p:not(.eyebrow) { max-width: 660px; color: #bec4ce; }
.moq-stat { padding: 34px 0 0; border-top: 1px solid var(--line-dark); }
.moq-stat strong { display: block; color: var(--white); font-size: clamp(4rem,13vw,8.6rem); line-height: .8; letter-spacing: -.075em; white-space: nowrap; }
.moq-stat span { display: block; margin-top: 24px; color: #c4cad3; font-weight: 750; }
.moq-stat small { display: block; margin-top: 6px; color: #858e9d; }

/* Processes and capabilities */
.process-grid { display: grid; border-top: 1px solid var(--line); }
.process-card { padding: 32px 0; border-bottom: 1px solid var(--line); }
.process-card .step { display: block; margin-bottom: 34px; color: var(--denim); font-size: .7rem; font-weight: 800; letter-spacing: .13em; }
.process-card p { margin: 0; color: var(--muted); }
.capability-list { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 32px; border-top: 1px solid var(--line); }
.capability-list span { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: .84rem; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.capability-list span:nth-child(odd) { padding-right: 12px; }
.manufacturing-media img, .quality-media img, .about-media img { width: 100%; aspect-ratio: 5/4.4; object-fit: cover; }

/* Why and quality */
.why-grid { display: grid; border-top: 1px solid var(--line); }
.why-card { padding: 30px 0; border-bottom: 1px solid var(--line); }
.why-card p { margin-bottom: 0; color: var(--muted); }
.check-list { display: grid; gap: 0; margin: 30px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { position: relative; padding: 16px 0 16px 28px; border-bottom: 1px solid var(--line); font-weight: 700; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 25px; width: 12px; height: 2px; background: var(--denim); }

/* FAQ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: grid; grid-template-columns: 34px 1fr 28px; gap: 10px; align-items: center; width: 100%; padding: 24px 0; border: 0; background: transparent; text-align: left; font-weight: 740; cursor: pointer; }
.faq-number { color: var(--denim); font-size: .7rem; letter-spacing: .08em; }
.faq-icon { position: relative; width: 18px; height: 18px; justify-self: end; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; top: 8px; left: 1px; width: 16px; height: 2px; background: currentColor; transition: transform .2s; }
.faq-icon::after { transform: rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(0); }
.faq-answer { display: none; max-width: 780px; padding: 0 36px 24px 44px; color: var(--muted); }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-item.is-open .faq-answer { display: block; }

/* Final CTA */
.final-cta { position: relative; overflow: hidden; }
.final-cta::after { content: "LAIDN"; position: absolute; right: -2vw; bottom: -11vw; color: rgba(255,255,255,.04); font-size: clamp(9rem,26vw,30rem); font-weight: 850; line-height: 1; letter-spacing: -.09em; pointer-events: none; }
.final-cta-inner { position: relative; z-index: 1; max-width: 880px; }
.final-cta p { max-width: 660px; color: #d4ddec; font-size: 1.08rem; }

/* Inner-page hero and breadcrumbs */
.page-hero { padding: calc(var(--header-height) + 66px) 0 74px; background: var(--white); border-bottom: 1px solid var(--line); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 50px; padding: 0; color: var(--muted); list-style: none; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #b0b6c0; }
.page-hero-grid { display: grid; gap: 36px; align-items: end; }
.page-hero h1 { max-width: 1000px; font-size: clamp(2.8rem,7vw,6.2rem); }
.page-hero .hero-summary { max-width: 650px; margin: 0; color: var(--muted); font-size: clamp(1.06rem,1.7vw,1.24rem); }
.page-hero-media { margin-top: 52px; }
.page-hero-media img { width: 100%; max-height: 600px; object-fit: cover; }
.page-label { color: var(--denim); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.stat-line { display: grid; gap: 1px; margin-top: 42px; background: var(--line); border: 1px solid var(--line); }
.stat-line div { padding: 18px; background: var(--paper); }
.stat-line span { display: block; color: var(--muted); font-size: .67rem; font-weight: 750; text-transform: uppercase; letter-spacing: .11em; }
.stat-line strong { display: block; margin-top: 3px; }

/* Inner product and development pages */
.category-showcase { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.category-showcase article { display: grid; background: var(--white); }
.category-showcase img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.category-copy { padding: 28px; }
.category-copy p { color: var(--muted); }
.category-copy .text-link { margin-top: 8px; }
.detail-intro { display: grid; gap: 48px; align-items: start; }
.detail-intro img { width: 100%; aspect-ratio: 4/4.1; object-fit: cover; }
.capability-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.capability-card { min-height: 190px; padding: 28px; background: var(--white); }
.capability-card p { margin: 18px 0 0; color: var(--muted); font-size: .94rem; }
.detail-band { display: grid; gap: 30px; align-items: center; padding: 38px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-band p { margin: 0; color: var(--muted); }
.input-list { display: grid; gap: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.input-list li { padding: 15px 0; border-bottom: 1px solid var(--line); font-weight: 700; }

/* Manufacturing stages */
.stage-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stage-card { display: grid; background: var(--white); }
.stage-card img { width: 100%; height: 220px; object-fit: cover; }
.stage-copy { padding: 28px; }
.stage-copy .step { display: block; margin-bottom: 22px; color: var(--denim); font-size: .7rem; font-weight: 800; letter-spacing: .13em; }
.stage-copy p { margin-bottom: 0; color: var(--muted); }
.notice-band { padding: clamp(40px,7vw,76px); background: var(--denim); color: var(--white); }
.notice-band p { color: #d3deee; }

/* Values and legal details */
.value-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value-card { min-height: 230px; padding: 30px; background: var(--white); }
.value-card p { color: var(--muted); }
.entity-box { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.entity-box dl { display: grid; gap: 18px; margin: 0; }
.entity-box dt { color: var(--muted); font-size: .7rem; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.entity-box dd { margin: 3px 0 0; font-weight: 700; }

/* Quote form */
.quote-layout { display: grid; gap: 58px; align-items: start; }
.quote-aside { padding: 30px; background: var(--ink); color: var(--white); }
.quote-aside p { color: #c2c8d0; }
.quote-aside a:not(.button) { color: #a9c3e7; text-decoration: underline; text-underline-offset: 4px; }
.form-grid { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label, .field legend { font-size: .86rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #cbd0d8; border-radius: 0; background: var(--white); color: var(--ink); }
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--denim); outline: 2px solid rgba(23,59,108,.16); outline-offset: 0; }
.field small { color: var(--muted); }
fieldset.field { margin: 0; padding: 0; border: 0; }
.checkbox-grid { display: grid; gap: 10px; margin-top: 5px; }
.checkbox-grid label { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.checkbox-grid input { width: 18px; min-height: 18px; accent-color: var(--denim); }
.form-two-col { display: grid; gap: 22px; }
.file-note { padding: 18px; border: 1px dashed #aab1bc; background: #fafaf8; }
.file-note strong, .file-note span { display: block; }
.file-note span { margin-top: 4px; color: var(--muted); font-size: .9rem; }
.form-status { min-height: 26px; margin: 4px 0 0; color: var(--denim); font-weight: 700; }

/* 404 */
.error-page { min-height: 78vh; display: grid; place-items: center; padding: calc(var(--header-height) + 60px) 0 80px; text-align: center; }
.error-code { display: block; color: var(--denim); font-size: clamp(7rem,27vw,20rem); line-height: .75; font-weight: 850; letter-spacing: -.1em; }
.error-page p { max-width: 550px; margin: 28px auto 0; color: var(--muted); }
.error-page .button-row { justify-content: center; }

/* Footer */
.site-footer { padding: 78px 0 28px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; gap: 48px; }
.footer-brand p { max-width: 370px; margin-top: 24px; color: #aeb5c0; }
.footer-nav { display: grid; grid-template-columns: repeat(2,1fr); gap: 36px 24px; }
.footer-column h2 { margin: 0 0 18px; color: #868f9d; font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-column a, .footer-column span { display: block; padding: 5px 0; color: #e5e8ec; font-size: .9rem; }
.footer-column a:hover { color: #9bb8df; }
.footer-bottom { display: flex; flex-direction: column; gap: 14px; margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line-dark); color: #858e9d; font-size: .8rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.whatsapp-button[hidden] { display: none !important; }

/* Motion */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Responsive composition */
@media (min-width: 620px) {
  .stat-line { grid-template-columns: repeat(3,1fr); }
  .form-two-col, .checkbox-grid { grid-template-columns: repeat(2,1fr); }
  .footer-nav { grid-template-columns: repeat(4,1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 700px) {
  .container { width: min(calc(100% - 64px),var(--container)); }
  .narrow { width: min(calc(100% - 64px),840px); }
  .hero-grid { grid-template-columns: minmax(0,1.18fr) minmax(320px,.82fr); }
  .proof-strip { grid-template-columns: repeat(4,1fr); }
  .proof-strip div { padding: 20px 18px; border-bottom: 0; border-right: 1px solid #ccd0d5; }
  .proof-strip div:first-child { padding-left: 0; }
  .proof-strip div:last-child { border: 0; }
  .product-grid, .category-showcase, .capability-grid, .value-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-card { padding: 34px 30px; border-right: 1px solid var(--line); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .why-card { padding: 34px 30px; }
  .stage-list { grid-template-columns: repeat(2,1fr); }
  .entity-box dl { grid-template-columns: repeat(3,1fr); }
}
@media (min-width: 900px) {
  .intro-grid { grid-template-columns: .7fr 1.3fr; gap: 8vw; }
  .split-grid { grid-template-columns: 1.06fr .94fr; gap: 7vw; align-items: center; }
  .quality-grid { grid-template-columns: .92fr 1.08fr; gap: 7vw; align-items: center; }
  .moq-grid { grid-template-columns: 1.1fr .9fr; gap: 8vw; }
  .section-head { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .section-head > :last-child { margin-left: auto; }
  .page-hero-grid { grid-template-columns: 1.25fr .75fr; }
  .detail-intro { grid-template-columns: .88fr 1.12fr; gap: 7vw; }
  .detail-band { grid-template-columns: 1fr 1fr auto; }
  .quote-layout { grid-template-columns: minmax(0,1.4fr) minmax(300px,.6fr); }
  .quote-aside { position: sticky; top: calc(var(--header-height) + 28px); }
  .footer-grid { grid-template-columns: .8fr 1.2fr; }
}
@media (min-width: 1100px) {
  :root { --header-height: 88px; }
  .menu-toggle { display: none; }
  .site-nav { position: static; width: auto; display: flex; flex-direction: row; align-items: center; gap: 27px; padding: 0; background: transparent; transform: none; box-shadow: none; overflow: visible; }
  .site-nav > a, .nav-dropdown-toggle { width: auto; padding: 10px 0; border: 0; font-size: .84rem; font-weight: 650; }
  .site-nav .nav-cta { margin: 0 0 0 5px; padding: 11px 16px; }
  .nav-dropdown { position: relative; }
  .nav-dropdown-menu { position: absolute; top: calc(100% + 12px); left: -22px; min-width: 210px; padding: 12px 20px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 40px rgba(16,18,22,.1); }
  .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu, .nav-dropdown.is-open .nav-dropdown-menu { display: grid; }
  .nav-dropdown-menu a { font-size: .84rem; }
  .hero { display: flex; flex-direction: column; justify-content: center; }
  .hero-grid { gap: 74px; }
  .hero-media img { max-height: 650px; }
  .proof-strip { margin-top: 62px; }
  .product-grid { grid-template-columns: repeat(4,1fr); }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .process-card:nth-child(3n) { border-right: 0; }
  .why-grid { grid-template-columns: repeat(4,1fr); }
  .why-card { border-right: 1px solid var(--line); }
  .why-card:last-child { border-right: 0; }
  .category-showcase { grid-template-columns: repeat(4,1fr); }
  .capability-grid { grid-template-columns: repeat(3,1fr); }
  .stage-list { grid-template-columns: repeat(4,1fr); }
}
@media (min-width: 1600px) { :root { --container: 1400px; } }
@media (max-width: 430px) {
  .container, .narrow { width: min(calc(100% - 32px),var(--container)); }
  .hero { padding-top: calc(var(--header-height) + 38px); }
  .button-row .button { width: 100%; }
  .moq-stat strong { font-size: 3.65rem; }
  .page-hero { padding-top: calc(var(--header-height) + 44px); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
