@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #111111;
  --paper: #ffffff;
  --soft: #f5f6f7;
  --line: #dedfe2;
  --muted: #62656b;
  --lime: #cbf24d;
  --yellow: #ffd340;
  --sky: #7ed7f7;
  --pink: #ff8cc7;
  --purple: #a78bfa;
  --success: #19783c;
  --danger: #b42318;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --shadow: 0 18px 55px rgba(17, 17, 17, .08);
  --container: 1460px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  font-variant-emoji: text;
}
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select, [role="button"] { cursor: pointer; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--lime); }
:focus-visible { outline: 3px solid var(--purple); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 12px 18px; background: var(--ink); color: #fff; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }
.section--soft { background: var(--soft); }
.section--ink { color: #fff; background: var(--ink); }
.section-head { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 40px; align-items: end; margin-bottom: 46px; }
.section-head h2, .display-title { margin: 0; font-size: clamp(42px, 6.1vw, 94px); line-height: .93; letter-spacing: -.065em; }
.section-head p { max-width: 620px; margin: 0; color: var(--muted); font-size: clamp(17px, 1.4vw, 21px); }
.section--ink .section-head p { color: #b8bbc2; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px; font-weight: 800; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); content: ""; }
.muted { color: var(--muted); }
.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; }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  font-weight: 800;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--ink); }
.btn--primary { background: var(--lime); }
.btn--dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.btn--ghost { background: transparent; }
.btn--small { min-height: 42px; padding: 9px 15px; border-radius: 12px; font-size: 14px; }
.btn svg, .icon-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.icon-button { width: 46px; height: 46px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 14px; background: #fff; transition: background-color .2s ease, transform .2s ease; }
.icon-button:hover { background: var(--lime); transform: translateY(-2px); }

.topline { padding: 8px 0; color: #fff; background: var(--ink); font-size: 12px; font-weight: 700; text-align: center; letter-spacing: .03em; }
.site-header { position: sticky; z-index: 100; top: 0; height: var(--header-h); border-bottom: 1px solid rgba(17,17,17,.1); background: rgba(255,255,255,.94); backdrop-filter: blur(16px); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 26px; }
.brand { min-width: 176px; display: inline-flex; flex-direction: column; line-height: .8; }
.brand-main { display: flex; align-items: center; gap: 6px; font-size: 27px; font-weight: 900; letter-spacing: -.075em; text-transform: lowercase; }
.brand-main b { color: #a9d91d; }
.brand-arrow { margin-left: 2px; font-size: 28px; font-weight: 500; transform: translateY(-2px); }
.brand small { margin-top: 7px; font-size: 9px; font-weight: 800; letter-spacing: -.02em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); margin-right: auto; }
.desktop-nav a, .nav-trigger { min-height: 44px; display: inline-flex; align-items: center; border: 0; background: none; font-size: 14px; font-weight: 700; }
.desktop-nav a::after, .nav-trigger::after { position: absolute; right: 0; bottom: 4px; left: 0; height: 2px; background: var(--lime); transform: scaleX(0); transform-origin: left; content: ""; transition: transform .2s ease; }
.desktop-nav a, .nav-trigger { position: relative; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after, .nav-trigger:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.project-count, .cart-count { min-width: 22px; height: 22px; display: grid; place-items: center; padding: 0 6px; color: var(--ink); background: var(--pink); border: 1px solid var(--ink); border-radius: 999px; font-size: 10px; font-weight: 900; }
.header-cart { min-height: 46px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px 10px 17px; border: 1.5px solid var(--ink); border-radius: 16px; background: var(--lime); font-size: 13px; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease; }
.header-cart:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--ink); }
.header-actions .icon-button { position: relative; border: 0; }
.mobile-menu-btn { display: none; }
.mobile-menu-btn::after { content: none; }
.mega-menu { position: fixed; z-index: 90; top: calc(var(--header-h) + 31px); right: 0; left: 0; padding: 24px 0 30px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.mega-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 14px; }
.mega-card { min-height: 150px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); transition: background-color .2s ease, transform .2s ease; }
.mega-card:hover { background: var(--lime); transform: translateY(-3px); }
.mega-card strong { display: block; margin-bottom: 10px; font-size: 22px; letter-spacing: -.035em; }
.mega-card span { color: var(--muted); font-size: 14px; }

.hero { position: relative; overflow: hidden; padding: 64px 0 28px; }
.hero::before { position: absolute; inset: 0; background-image: url("../images/patterns/dots.webp"); background-size: 720px; opacity: .13; content: ""; animation: patternDrift 25s linear infinite; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr); gap: 38px; align-items: center; min-height: 650px; }
.hero-copy { position: relative; z-index: 2; }
.hero-chip { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; padding: 9px 14px; border: 1px solid var(--ink); border-radius: 999px; background: #fff; font-size: 13px; font-weight: 800; }
.hero-chip i { width: 11px; height: 11px; background: var(--lime); transform: rotate(45deg); }
.hero h1 { max-width: 790px; margin: 0; font-size: clamp(54px, 5.85vw, 94px); line-height: .88; letter-spacing: -.075em; }
.hero-title-line, .hero-word-line { display: block; }
.hero-title-line { white-space: nowrap; }
.hero-word-line { min-height: .91em; display: flex; align-items: baseline; }
.hero h1 .dynamic-word { display: inline-block; min-width: 8.1ch; color: #8a5bea; }
.hero-lead { max-width: 620px; margin: 28px 0 0; color: var(--muted); font-size: clamp(18px, 1.5vw, 23px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-stage { position: relative; min-height: 620px; display: grid; place-items: center; }
.hero-stage::before, .hero-stage::after { position: absolute; border-radius: 32px; content: ""; }
.hero-stage::before { inset: 2% 3% 2% 2%; background-image: url("../images/patterns/tiles.webp"); background-size: 660px; opacity: .85; animation: patternPan 24s ease-in-out infinite alternate; }
.hero-stage::after { width: 150px; height: 150px; right: 1%; top: 5%; background: var(--lime); border: 2px solid var(--ink); transform: rotate(7deg); animation: floatCard 5s ease-in-out infinite; }
.hero-product-shot { position: relative; z-index: 2; width: 94%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border: 2px solid var(--ink); border-radius: 42px; box-shadow: 18px 18px 0 var(--ink); transform: rotate(-1.5deg); }
.float-label { position: absolute; z-index: 3; padding: 14px 18px; border: 2px solid var(--ink); border-radius: 16px; background: #fff; font-weight: 900; box-shadow: 7px 7px 0 var(--ink); transition: left 1.45s cubic-bezier(.2,.78,.2,1), right 1.45s cubic-bezier(.2,.78,.2,1), bottom 1.45s cubic-bezier(.2,.78,.2,1); animation: floatCard 4s ease-in-out infinite; }
.float-label--a { left: -2%; bottom: 18%; background: var(--yellow); transform: rotate(-7deg); }
.float-label--b { right: -1%; bottom: 8%; background: var(--pink); transform: rotate(6deg); animation-delay: -2s; }
.hero-stage.pattern-state-alt .float-label--a { left: 3%; bottom: 12%; }
.hero-stage.pattern-state-alt .float-label--b { right: 3%; bottom: 13%; }
.hero-proof { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: -22px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.96); box-shadow: 0 16px 48px rgba(17,17,17,.07); overflow: hidden; }
.proof-item { min-height: 94px; display: flex; align-items: center; gap: 14px; padding: 20px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-icon { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 12px; background: var(--lime); }
.proof-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.proof-item strong { display: block; font-size: 15px; line-height: 1.2; }
.proof-item span { color: var(--muted); font-size: 12px; }

.ticker { overflow: hidden; border-block: 2px solid var(--ink); background: var(--lime); }
.ticker-track { width: max-content; display: flex; align-items: center; animation: marquee 26s linear infinite; }
.ticker span { display: flex; align-items: center; gap: 25px; padding: 15px 26px; font-size: 16px; font-weight: 900; text-transform: uppercase; white-space: nowrap; }
.ticker span::after { content: "↗"; font-size: 24px; }

.category-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.category-card { position: relative; min-height: 230px; grid-column: span 3; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; border: 1.5px solid var(--ink); border-radius: var(--radius); overflow: hidden; transition: transform .22s ease, box-shadow .22s ease; }
.category-card:nth-child(1), .category-card:nth-child(6) { grid-column: span 6; }
.category-card:nth-child(3) { grid-column: span 3; }
.category-card:nth-child(7), .category-card:nth-child(8) { grid-column: span 6; }
.category-card:hover { transform: translateY(-6px); box-shadow: 9px 9px 0 var(--ink); }
.category-card--lime { background: var(--lime); }
.category-card--pink { background: var(--pink); }
.category-card--sky { background: var(--sky); }
.category-card--purple { background: var(--purple); }
.category-card--yellow { background: var(--yellow); }
.category-card--white { background: #fff; }
.category-card h3 { max-width: 330px; margin: 0; font-size: clamp(24px, 2.7vw, 42px); line-height: .95; letter-spacing: -.055em; }
.category-card p { max-width: 430px; margin: 12px 0 0; font-size: 14px; }
.category-card > div, .category-card .category-count { position: relative; z-index: 2; }
.category-card-icon { position: absolute; z-index: 1; right: 15px; bottom: 12px; width: min(39%, 154px); height: min(62%, 150px); object-fit: contain; opacity: .82; transform: rotate(2deg); transition: transform .32s cubic-bezier(.16,1,.3,1), opacity .2s ease; }
.category-card:nth-child(odd) .category-card-icon { transform: rotate(-3deg); }
.category-card:hover .category-card-icon { opacity: 1; transform: translateY(-5px) rotate(0) scale(1.06); }
.category-arrow { position: absolute; top: 20px; right: 22px; font-size: 35px; transition: transform .22s ease; }
.category-card:hover .category-arrow { transform: translate(5px, -5px); }
.category-count { align-self: flex-start; margin-top: 26px; padding: 6px 10px; border: 1px solid currentColor; border-radius: 999px; font-size: 12px; font-weight: 800; }
.category-card::after { position: absolute; width: 150px; height: 150px; right: -55px; bottom: -60px; border: 20px solid rgba(255,255,255,.45); border-radius: 40px; content: ""; transform: rotate(15deg); transition: transform .3s ease; }
.category-card:hover::after { transform: rotate(45deg) scale(1.1); }
.category-directory { padding-top: 0; }
.category-directory-panel { position: relative; padding: 28px; border: 1.5px solid var(--ink); border-radius: var(--radius-lg); background: var(--ink); overflow: hidden; }
.category-directory-panel::before { position: absolute; inset: 0; background: url("../images/patterns/dots.webp") center / 680px; opacity: .08; content: ""; animation: patternDrift 30s linear infinite; }
.category-directory-head { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr minmax(260px, .65fr); gap: 28px; align-items: end; margin-bottom: 22px; color: #fff; }
.category-directory-head h2 { max-width: 850px; margin: 0; font-size: clamp(38px, 5vw, 72px); line-height: .92; letter-spacing: -.06em; }
.category-directory-head p { margin: 0; color: #bfc1c6; }
.category-icon-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 9px; }
.category-icon-link { min-width: 0; min-height: 154px; display: grid; grid-template-rows: 88px auto; gap: 7px; align-content: start; padding: 11px; border: 1px solid #3b3d42; border-radius: 16px; color: #fff; background: #1b1c1f; transition: transform .22s ease, border-color .22s ease, background-color .22s ease; }
.category-icon-link img { width: 100%; height: 88px; object-fit: contain; filter: saturate(.95); transition: transform .32s cubic-bezier(.16,1,.3,1); }
.category-icon-link strong { overflow: hidden; font-size: 11px; line-height: 1.12; text-overflow: ellipsis; }
.category-icon-link:hover { border-color: var(--lime); color: var(--ink); background: var(--lime); transform: translateY(-4px); }
.category-icon-link:hover img { transform: scale(1.08) rotate(-2deg); }
.home-portfolio { background: #fff; }
.home-portfolio .section-head > div:last-child { display: grid; justify-items: start; gap: 18px; }
.home-portfolio-link { margin-top: 4px; }
.home-portfolio-grid .portfolio-card-copy { min-height: 230px; }
.home-portfolio-grid .portfolio-card:nth-child(2) { transform: translateY(32px) rotate(.55deg); }
.home-portfolio-grid .portfolio-card:nth-child(3) { transform: rotate(-.45deg); }
.home-portfolio-grid .portfolio-card:nth-child(2):hover, .home-portfolio-grid .portfolio-card:nth-child(3):hover { transform: translateY(-6px) rotate(0); }

.filter-tabs { display: flex; gap: 8px; margin-bottom: 28px; overflow-x: auto; scrollbar-width: none; }
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab { min-height: 44px; flex: 0 0 auto; padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 800; transition: background-color .2s ease, border-color .2s ease; }
.filter-tab:hover, .filter-tab.is-active { border-color: var(--ink); background: var(--lime); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.product-card { position: relative; min-width: 0; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.product-card:hover { border-color: var(--ink); transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card-media { position: relative; aspect-ratio: 1 / 1; padding: 22px; background: #f7f7f8; overflow: hidden; }
.product-card-media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .35s cubic-bezier(.2,.75,.2,1); }
.product-card:hover .product-card-media img { transform: scale(1.055) rotate(-1deg); }
.product-badge { position: absolute; z-index: 2; top: 14px; left: 14px; padding: 6px 9px; border-radius: 8px; background: var(--yellow); font-size: 11px; font-weight: 900; }
.card-cart-btn { position: absolute; z-index: 2; top: 12px; right: 12px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.92); cursor: pointer; transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease; }
.card-cart-btn:hover { transform: translateY(-2px); border-color: var(--ink); }
.card-cart-btn:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; }
.card-cart-btn:disabled { cursor: progress; opacity: .62; }
.card-cart-btn svg { width: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.card-cart-btn.is-active { color: #fff; background: var(--ink); border-color: var(--ink); }
.product-card-body { flex: 1; display: flex; flex-direction: column; padding: 19px; }
.product-kicker { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3 { margin: 8px 0 12px; font-size: 18px; line-height: 1.18; letter-spacing: -.035em; }
.product-card h3 a::after { position: absolute; inset: 0; z-index: 1; content: ""; }
.swatches { display: flex; gap: 6px; margin-top: auto; }
.swatch { width: 17px; height: 17px; display: block; border: 1px solid rgba(17,17,17,.25); border-radius: 50%; background: var(--swatch, #ddd); }
.swatch-button { position: relative; z-index: 2; width: 21px; height: 21px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: transparent; }
.swatch-button.is-active { outline: 2px solid var(--ink); outline-offset: 2px; }
.swatch-button .swatch { width: 17px; height: 17px; }
.swatch-more { align-self: center; color: var(--muted); font-size: 10px; font-weight: 800; }
.product-variant-note { min-height: 17px; margin-top: 8px; color: var(--muted); font-size: 9px; }
.product-card-footer { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; margin-top: 18px; }
#similarProducts .product-card-footer,
#complementaryProducts .product-card-footer { margin-top: auto; padding-top: 18px; }
.price strong { display: block; font-size: 20px; line-height: 1; }
.price small { color: var(--muted); font-size: 10px; }
.card-calc-btn { min-height: 44px; padding: 9px 12px; border: 1px solid var(--ink); border-radius: 12px; background: var(--lime); font-weight: 800; font-size: 12px; transition: background-color .2s ease; }
.card-calc-btn:hover { background: var(--yellow); }

.set-builder { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .8fr); gap: 20px; }
.builder-stage { position: relative; min-height: 620px; display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; border: 2px solid var(--ink); border-radius: var(--radius-lg); background: linear-gradient(145deg, #bda9ff 0%, var(--purple) 52%, #9270ef 100%); overflow: hidden; }
.builder-stage::before { position: absolute; inset: 0; background: url("../images/patterns/stickers.webp") center / 720px; opacity: .18; content: ""; animation: patternPan 22s ease-in-out infinite alternate; }
.builder-box { position: relative; z-index: 2; width: min(92%, 560px); min-height: 255px; margin: 105px auto 34px; display: grid; place-items: center; padding: 44px 34px 28px; border: 3px solid var(--ink); border-radius: 20px 20px 46px 46px; background: linear-gradient(145deg, #e7ff92 0%, var(--lime) 58%, #b2df32 100%); box-shadow: 0 20px 0 rgba(17,17,17,.88), 0 34px 40px rgba(17,17,17,.22); transform: perspective(800px) rotateX(3deg) rotateZ(-1.4deg); }
.builder-box::before { position: absolute; inset: 17px; border: 2px dashed rgba(17,17,17,.38); border-radius: 13px 13px 28px 28px; content: ""; }
.builder-box::after { position: absolute; z-index: 0; inset: 16px; border-radius: 12px 12px 28px 28px; box-shadow: inset 0 28px 34px rgba(86,112,13,.16); content: ""; }
.builder-box-lid { position: absolute; z-index: 0; left: 4%; right: 4%; top: -90px; height: 112px; border: 3px solid var(--ink); border-radius: 32px 32px 12px 12px; background: linear-gradient(165deg, #dcff72, var(--lime)); box-shadow: 0 11px 0 rgba(17,17,17,.84); transform: perspective(650px) rotateX(56deg); transform-origin: bottom center; }
.builder-box-lid::after { position: absolute; inset: 16px; border: 2px dashed rgba(17,17,17,.34); border-radius: 18px 18px 7px 7px; content: ""; }
.builder-box-items { position: relative; z-index: 2; width: 100%; min-height: 150px; display: flex; flex-wrap: wrap; align-content: center; align-items: center; justify-content: center; gap: 10px; }
.builder-box-items.is-receiving { animation: boxReceive .48s cubic-bezier(.2,.8,.2,1); }
.builder-placeholder { max-width: 260px; margin: 0; color: rgba(17,17,17,.72); text-align: center; font-weight: 800; }
.builder-placeholder svg { width: 52px; display: block; margin: 0 auto 12px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.builder-token { min-width: 96px; flex: 0 1 112px; display: grid; place-items: center; gap: 4px; padding: 12px 9px 10px; border: 2px solid var(--ink); border-radius: 18px; background: rgba(255,255,255,.94); font-weight: 900; text-align: center; box-shadow: 5px 6px 0 rgba(17,17,17,.82); animation: tokenIn .42s cubic-bezier(.2,.8,.2,1); }
.builder-token:nth-child(even) { transform: translateY(6px) rotate(2deg); }
.builder-token:nth-child(3n) { transform: translateY(-4px) rotate(-2deg); }
.builder-token-visual { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 15px; background: var(--soft); }
.builder-token-visual svg { width: 48px; height: 48px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.builder-token b { font-size: 12px; line-height: 1.1; }
.builder-fly-token { position: fixed; z-index: 500; width: 58px; height: 58px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 16px; background: var(--lime); box-shadow: 5px 5px 0 var(--ink); pointer-events: none; }
.builder-fly-token svg { width: 40px; height: 40px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.builder-total { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; color: #fff; }
.builder-total strong { font-size: 34px; white-space: nowrap; }
.builder-controls { display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.builder-controls h3 { margin: 0 0 8px; font-size: 30px; letter-spacing: -.045em; }
.builder-steps { display: grid; gap: 12px; margin: 25px 0 24px; }
.builder-option { display: grid; grid-template-columns: 54px 1fr auto; gap: 14px; align-items: center; padding: 13px; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: border-color .2s ease, background-color .2s ease; }
.builder-option:hover { border-color: var(--ink); background: var(--soft); }
.builder-option.is-added { background: color-mix(in srgb, var(--lime) 68%, #fff); border-color: var(--ink); }
.builder-option-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 13px; background: var(--soft); font-weight: 900; }
.builder-option-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.builder-option strong { display: block; font-size: 14px; }
.builder-option small { color: var(--muted); }
.builder-option button { position: relative; z-index: 1; min-width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 12px; background: #fff; font-size: 20px; font-weight: 900; transition: color .2s ease, background-color .2s ease, transform .2s ease; }
.builder-option button:hover { transform: translateY(-2px); }
.builder-option button.is-active { color: #fff; background: var(--ink); }
.builder-option button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.builder-controls-note { display: grid; gap: 4px; margin-top: auto; padding: 18px 20px; border-radius: 16px; background: var(--soft); }
.builder-controls-note strong { font-size: 14px; }
.builder-controls-note span { color: var(--muted); font-size: 12px; line-height: 1.45; }

.budget-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.budget-card { min-height: 350px; display: flex; flex-direction: column; padding: 30px; border: 2px solid var(--ink); border-radius: var(--radius); transition: transform .22s ease, box-shadow .22s ease; }
.budget-card:hover { transform: translateY(-7px); box-shadow: 10px 10px 0 var(--ink); }
.budget-card:nth-child(1) { background: var(--sky); }
.budget-card:nth-child(2) { background: var(--lime); }
.budget-card:nth-child(3) { background: var(--pink); }
.budget-card b { font-size: 12px; letter-spacing: .12em; }
.budget-card h3 { margin: auto 0 12px; font-size: clamp(40px, 5vw, 70px); line-height: .9; letter-spacing: -.06em; }
.budget-card p { margin: 0; font-weight: 650; }

.printing-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(400px, .8fr); gap: 20px; }
.method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.method-card { position: relative; min-height: 205px; padding: 22px; border: 1px solid #3c3d40; border-radius: var(--radius); background: #191a1c; overflow: hidden; transition: border-color .2s ease, transform .2s ease; }
.method-card:hover { border-color: var(--lime); transform: translateY(-4px); }
.method-card h3 { position: relative; z-index: 2; margin: 0; font-size: 24px; }
.method-card p { position: relative; z-index: 2; max-width: 260px; margin: 8px 0 0; color: #aaadb3; font-size: 13px; }
.method-card img { position: absolute; width: 120px; height: 120px; right: -10px; bottom: -10px; object-fit: cover; border-radius: 26px; opacity: .92; transform: rotate(7deg); transition: transform .3s ease; }
.method-card:hover img { transform: rotate(0) scale(1.06); }
.print-calculator { position: sticky; top: calc(var(--header-h) + 22px); align-self: start; padding: 30px; color: var(--ink); background: #fff; border-radius: var(--radius-lg); }
.print-calculator h3 { margin: 0; font-size: 32px; letter-spacing: -.05em; }
.calc-grid { display: grid; gap: 16px; margin-top: 24px; }
.field { display: grid; gap: 7px; }
.field > span, .field label { font-size: 12px; font-weight: 800; }
.input, .select { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #cfd1d6; border-radius: 13px; color: var(--ink); background: #fff; }
.input:focus, .select:focus { border-color: var(--ink); outline: 3px solid rgba(167,139,250,.35); }
.range-row { display: grid; grid-template-columns: 1fr 100px; gap: 12px; align-items: center; }
input[type="range"] { width: 100%; accent-color: #98c700; }
.calc-result { margin-top: 24px; padding: 22px; border: 2px solid var(--ink); border-radius: 17px; background: var(--lime); }
.calc-result dl { display: grid; gap: 8px; margin: 0 0 14px; }
.calc-result dl div { display: flex; justify-content: space-between; gap: 15px; }
.calc-result dt { color: #3b430f; }
.calc-result dd { margin: 0; font-weight: 850; }
.calc-total { display: flex; justify-content: space-between; gap: 15px; padding-top: 14px; border-top: 1px solid rgba(17,17,17,.35); }
.calc-total strong { font-size: 26px; }
.calc-run-note { margin: 8px 0 0; color: #3b430f; font-size: 11px; text-align: right; }
.calc-note { margin: 12px 0 0; color: #555; font-size: 11px; }
.method-choices { display: flex; flex-wrap: wrap; gap: 7px; }
.method-choice { padding: 9px 11px; border: 1px solid #cfd1d6; border-radius: 10px; background: #fff; font-size: 12px; font-weight: 800; }
.method-choice.is-active { border-color: var(--ink); background: var(--lime); }
.method-choice .recommended { display: block; color: var(--success); font-size: 9px; text-transform: uppercase; }

.solutions-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.solution-card { min-height: 330px; grid-column: span 4; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; overflow: hidden; }
.solution-card--wide { grid-column: span 8; }
.solution-card--image { min-height: 520px; justify-content: flex-end; color: #fff; background: var(--ink) url("../images/brand/welcome.webp") center / cover no-repeat; }
.solution-card--image > * { position: relative; z-index: 2; }
.solution-card--image::before { position: absolute; inset: 0; background: rgba(17,17,17,.35); content: ""; }
.solution-card { position: relative; }
.solution-card:nth-child(2) { background: var(--yellow); }
.solution-card:nth-child(3) { background: var(--sky); }
.solution-card:nth-child(4) { background: var(--pink); }
.solution-card h3 { margin: auto 0 14px; font-size: clamp(32px, 4vw, 58px); line-height: .95; letter-spacing: -.055em; }
.solution-card p { max-width: 560px; margin: 0 0 20px; }
.solution-card .btn { align-self: flex-start; }

.production-steps { display: grid; grid-template-columns: repeat(5, 1fr); counter-reset: steps; border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; }
.production-step { min-height: 270px; padding: 24px; border-right: 2px solid var(--ink); background: #fff; counter-increment: steps; transition: background-color .2s ease; }
.production-step:last-child { border-right: 0; }
.production-step:hover { background: var(--lime); }
.production-step::before { display: block; margin-bottom: 75px; content: "0" counter(steps); font-size: 13px; font-weight: 900; }
.production-step h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -.04em; }
.production-step p { margin: 0; color: var(--muted); font-size: 13px; }

.pattern-break { min-height: 300px; display: grid; justify-items: start; align-items: center; padding-inline: max(20px, calc((100vw - var(--container)) / 2 + 72px)); color: var(--ink); background: var(--lime) url("../images/patterns/arrows.webp") center / 700px; overflow: hidden; animation: patternDrift 22s linear infinite; }
.pattern-break h2 { width: min(780px, 78vw); margin: 0; padding: 30px 42px; border: 2px solid var(--ink); border-radius: 28px; background: rgba(255,255,255,.96); box-shadow: 10px 11px 0 var(--ink); font-size: clamp(38px, 4.6vw, 68px); line-height: .9; letter-spacing: -.06em; text-align: left; transform: rotate(-.45deg); }
.pattern-break + .section { padding-top: 68px; }

.ideas-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.idea-card { min-height: 340px; grid-column: span 4; display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.idea-card:first-child { grid-column: span 8; color: #fff; background: var(--ink); }
.idea-card:nth-child(2) { background: var(--purple); }
.idea-card:nth-child(3) { background: var(--lime); }
.idea-card:hover { transform: translateY(-5px); box-shadow: 9px 9px 0 var(--ink); }
.idea-card .idea-meta { display: flex; justify-content: space-between; gap: 10px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.idea-card h3 { margin: auto 0 14px; max-width: 780px; font-size: clamp(28px, 4vw, 56px); line-height: .96; letter-spacing: -.055em; }
.idea-card p { margin: 0; max-width: 570px; }

.final-cta { position: relative; overflow: hidden; padding: 100px 0; background: var(--lime); }
.final-cta::before { position: absolute; inset: 0; background: url("../images/patterns/tiles.webp") center / 820px; opacity: .18; content: ""; animation: patternPan 22s ease-in-out infinite alternate; }
.final-cta-inner { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: end; }
.final-cta h2 { margin: 0; font-size: clamp(56px, 9vw, 140px); line-height: .82; letter-spacing: -.075em; }
.final-cta p { margin: 0 0 24px; font-size: 20px; font-weight: 650; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.site-footer { padding: 55px 0 28px; color: #fff; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 50px; }
.footer-brand .brand { color: #fff; }
.footer-brand p { max-width: 350px; color: #9fa2a9; }
.footer-column strong { display: block; margin-bottom: 15px; color: #7c7f86; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a { display: block; margin: 10px 0; color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid #35363a; color: #8c8f96; font-size: 12px; }

/* Catalog */
.page-hero { padding: 55px 0 35px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: var(--muted); font-size: 12px; }
.breadcrumbs a:hover { color: var(--ink); }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: end; }
.page-hero h1 { margin: 0; font-size: clamp(60px, 9vw, 132px); line-height: .84; letter-spacing: -.075em; }
.page-hero p { max-width: 600px; margin: 0 0 10px; color: var(--muted); font-size: 20px; }
.catalog-page .page-hero { padding-block: 42px 28px; }
.catalog-page .page-hero h1 { max-width: 900px; font-size: clamp(50px, 6.6vw, 96px); }
.catalog-page .page-hero p { font-size: clamp(16px, 1.35vw, 20px); }
.catalog-category-rail { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.category-rail { display: flex; gap: 10px; overflow-x: auto; padding: 7px 1px 10px; scroll-snap-type: x proximity; scrollbar-width: none; }
.category-rail::-webkit-scrollbar { display: none; }
.category-pill { --pill-accent: var(--lime); position: relative; isolation: isolate; min-width: 138px; width: 138px; min-height: 150px; flex: 0 0 auto; scroll-snap-align: start; display: grid; grid-template-rows: 82px auto; gap: 8px; align-content: start; padding: 10px 11px 12px; border: 1px solid var(--line); border-radius: 20px; background: #fff; text-align: left; font-size: 12px; font-weight: 800; overflow: hidden; transition: border-color .24s ease, background-color .24s ease, color .24s ease, transform .24s cubic-bezier(.2,.75,.2,1), box-shadow .24s ease; }
.category-pill:nth-child(5n+2) { --pill-accent: var(--pink); }
.category-pill:nth-child(5n+3) { --pill-accent: var(--purple); }
.category-pill:nth-child(5n+4) { --pill-accent: var(--sky); }
.category-pill:nth-child(5n+5) { --pill-accent: var(--yellow); }
.category-pill::before { position: absolute; z-index: -1; top: 8px; right: 9px; left: 9px; height: 86px; border: 1px solid color-mix(in srgb, var(--pill-accent) 52%, var(--line)); border-radius: 15px 20px 15px 18px; background: color-mix(in srgb, var(--pill-accent) 18%, var(--soft)); content: ""; transform: rotate(-1.4deg); transition: border-color .24s ease, background-color .24s ease, transform .34s cubic-bezier(.16,1,.3,1); }
.category-pill img { position: relative; z-index: 1; width: 100%; height: 82px; object-fit: contain; mix-blend-mode: multiply; filter: saturate(1.04) contrast(1.04); transform: scale(.94); transition: transform .34s cubic-bezier(.16,1,.3,1), filter .24s ease; }
.category-pill span { position: relative; z-index: 1; min-width: 0; display: grid; align-content: end; gap: 3px; }
.category-pill b { line-height: 1.08; }
.category-pill small { color: var(--muted); font-size: 10px; font-weight: 700; }
.category-pill:hover, .category-pill:focus-visible { border-color: var(--ink); background: color-mix(in srgb, var(--pill-accent) 22%, #fff); transform: translateY(-4px); box-shadow: 4px 5px 0 var(--ink); outline: 0; }
.category-pill.is-active { border-color: var(--ink); background: var(--lime); transform: translateY(-3px); box-shadow: 4px 5px 0 var(--ink); }
.category-pill:hover::before, .category-pill:focus-visible::before, .category-pill.is-active::before { border-color: var(--ink); background: color-mix(in srgb, var(--pill-accent) 34%, rgba(255,255,255,.56)); transform: rotate(1.6deg) scale(.96); }
.category-pill:hover img, .category-pill:focus-visible img, .category-pill.is-active img { filter: saturate(1.12) contrast(1.08); transform: scale(1.06) rotate(-2.5deg); }
.category-pill.is-active small { color: #303313; }
.catalog-rubrics-section { min-width: 0; margin: -3px 0 20px; padding: 0 0 18px; border-bottom: 1px solid var(--line); }
.catalog-rubrics-section[hidden] { display: none; }
.catalog-rubrics-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 10px; }
.catalog-rubrics-head h2 { margin: 0; font-size: 14px; line-height: 1.2; letter-spacing: .01em; }
.catalog-rubrics-head > p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.4; }
.catalog-rubrics { display: flex; flex-wrap: wrap; gap: 7px; }
.catalog-rubric-card { min-height: 40px; display: inline-flex; align-items: center; gap: 9px; padding: 8px 9px 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); white-space: nowrap; transition: border-color .18s ease, background-color .18s ease, transform .18s ease; }
.catalog-rubric-card > strong { font-size: 12px; line-height: 1; }
.catalog-rubric-card > span { min-width: 25px; min-height: 22px; display: inline-grid; place-items: center; padding: 3px 6px; border-radius: 999px; background: var(--soft); color: var(--muted); font-size: 9px; font-weight: 800; line-height: 1; }
.catalog-rubric-card > .catalog-rubric-card__icon { width: 30px; min-width: 30px; height: 30px; min-height: 30px; padding: 0; overflow: hidden; border: 1px solid rgba(21,24,20,.08); border-radius: 9px; background: #f5f6f2; }
.catalog-rubric-card__icon img { display: block; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.catalog-rubric-card:hover { border-color: #8b8e94; background: color-mix(in srgb, var(--lime) 12%, #fff); transform: translateY(-1px); }
.catalog-rubric-card.is-active { border-color: var(--ink); background: var(--lime); box-shadow: inset 0 0 0 1px var(--ink); }
.catalog-rubric-card.is-active > span { background: rgba(255,255,255,.62); color: var(--ink); }
.catalog-rubric-card:hover > .catalog-rubric-card__icon,
.catalog-rubric-card:focus-visible > .catalog-rubric-card__icon,
.catalog-rubric-card.is-active > .catalog-rubric-card__icon { background: transparent; }
.catalog-rubric-card--all { padding-left: 12px; }
.catalog-landing-title { display: grid; grid-template-columns: 96px minmax(0, 1fr); align-items: center; gap: 20px; }
.catalog-landing-title__icon { display: grid; width: 96px; height: 96px; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: color-mix(in srgb, var(--lime) 22%, #fff); }
.catalog-landing-title__icon img { display: block; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.catalog-shell { display: grid; grid-template-columns: 244px minmax(0, 1fr); gap: 22px; padding: 36px 0 100px; }
.filters { position: sticky; top: calc(var(--header-h) + 20px); align-self: start; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.filter-backdrop, .filters-mobile-actions { display: none; }
.filters-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.filters-head strong { font-size: 20px; }
.filter-group { padding: 18px 0; border-top: 1px solid var(--line); }
.filter-group > strong { display: block; margin-bottom: 12px; font-size: 13px; }
.filter-group-title { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 12px; }
.filter-group-title strong { font-size: 13px; }
.filter-group-title small { color: var(--muted); font-size: 10px; }
.check-list { display: grid; gap: 9px; max-height: 220px; overflow: auto; }
.check { display: flex; align-items: center; gap: 9px; font-size: 13px; }
.check input { width: 19px; height: 19px; accent-color: #98c700; }
.color-filter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.color-filter { min-width: 0; display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 8px; align-items: center; min-height: 43px; padding: 7px; border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer; transition: border-color .18s ease, background-color .18s ease, transform .18s ease; }
.color-filter:hover { border-color: #8b8e94; transform: translateY(-1px); }
.color-filter input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.color-filter > i, .active-filters button i { width: 24px; height: 24px; display: block; border: 1px solid rgba(17,17,17,.24); border-radius: 50%; background: var(--filter-color); box-shadow: inset 0 0 0 2px rgba(255,255,255,.55); }
.color-filter span { min-width: 0; display: grid; line-height: 1.05; }
.color-filter b { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.color-filter small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.color-filter.is-active { border-color: var(--ink); background: var(--lime); box-shadow: 2px 3px 0 var(--ink); }
.color-filter.is-disabled { opacity: .33; cursor: not-allowed; }
.price-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.price-fields input { width: 100%; min-height: 42px; padding: 9px; border: 1px solid var(--line); border-radius: 10px; }
.catalog-main { min-width: 0; }
.catalog-tag-bar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 0 0 16px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 16px; background: color-mix(in srgb, var(--lime) 11%, #fff); }
.catalog-tag-bar > div:first-child { display: grid; gap: 2px; }
.catalog-tag-bar strong { font-size: 13px; }
.catalog-tag-bar small { color: var(--muted); font-size: 10px; }
.catalog-tag-shortcuts { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.catalog-tag-chip { min-height: 38px; display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 12px; font-weight: 850; cursor: pointer; transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease; }
.catalog-tag-chip small { min-width: 25px; padding: 2px 6px; border-radius: 999px; background: var(--surface); color: var(--muted); text-align: center; }
.catalog-tag-chip:hover { border-color: var(--ink); transform: translateY(-1px); }
.catalog-tag-chip.is-active { border-color: var(--ink); background: var(--lime); box-shadow: 2px 3px 0 var(--ink); }
.catalog-tag-chip.is-active small { background: #fff; color: var(--ink); }
.catalog-tag-chip:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.catalog-toolbar { display: grid; grid-template-columns: minmax(240px, 1fr) 220px auto; gap: 10px; margin-bottom: 20px; }
.active-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin: -7px 0 18px; }
.active-filters[hidden] { display: none; }
.active-filters > span { margin-right: 2px; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.active-filters button { min-height: 34px; display: inline-flex; align-items: center; gap: 7px; padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 11px; font-weight: 800; }
.active-filters button:hover { border-color: var(--ink); }
.active-filters button i { width: 16px; height: 16px; }
.active-filters button b { font-size: 15px; line-height: 1; }
.active-filters .active-filters-reset { color: var(--muted); border-color: transparent; background: transparent; text-decoration: underline; text-underline-offset: 3px; }
.search-box { position: relative; }
.search-box svg { position: absolute; top: 15px; left: 15px; width: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.search-box input { padding-left: 46px; }
.result-meta { display: flex; align-items: center; padding: 0 12px; color: var(--muted); font-size: 13px; white-space: nowrap; }
.catalog-related-strip { display: flex; gap: 7px; margin: -5px 0 18px; overflow-x: auto; scrollbar-width: none; }
.catalog-related-strip:empty { display: none; }
.catalog-related-strip::-webkit-scrollbar { display: none; }
.catalog-related-strip a { min-height: 36px; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 11px; font-weight: 800; }
.catalog-related-strip a:hover { border-color: var(--ink); background: var(--lime); }
.catalog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.catalog-grid .product-card-body { padding: 15px; }
.catalog-grid .product-card h3 { font-size: 16px; }
.catalog-grid .product-card-media { padding: 16px; }
.catalog-loading { min-height: 340px; display: grid; place-items: center; color: var(--muted); }
.catalog-loading::before { width: 44px; height: 44px; border: 4px solid var(--line); border-top-color: var(--ink); border-radius: 50%; content: ""; animation: spin .8s linear infinite; }
.load-more-wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; min-height: 72px; margin-top: 34px; }
.catalog-pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; }
.catalog-pagination:empty { display: none; }
.catalog-page-link, .catalog-page-arrow { min-width: 38px; min-height: 38px; display: inline-grid; place-items: center; padding: 6px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); font-size: 12px; font-weight: 850; text-decoration: none; }
.catalog-page-link:hover, .catalog-page-arrow:hover { border-color: var(--ink); background: color-mix(in srgb, var(--lime) 32%, #fff); }
.catalog-page-link.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.catalog-page-gap { min-width: 24px; color: var(--muted); text-align: center; }
.mobile-filter-trigger { display: none; }
.empty-state { grid-column: 1 / -1; padding: 70px 20px; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }
.empty-state h2 { margin: 0 0 8px; font-size: 32px; }
.catalog-guide-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.catalog-guide-card { position: relative; min-height: 250px; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; transition: transform .25s cubic-bezier(.2,.75,.2,1), border-color .2s ease, box-shadow .25s ease; }
.catalog-guide-card::after { position: absolute; right: -34px; bottom: -42px; width: 120px; height: 120px; border: 1px solid currentColor; border-radius: 50%; opacity: .08; content: ""; transition: transform .35s cubic-bezier(.2,.75,.2,1); }
.catalog-guide-card:nth-child(4n+1) { background: color-mix(in srgb, var(--lime) 17%, #fff); }
.catalog-guide-card:nth-child(4n+2) { background: color-mix(in srgb, var(--sky) 12%, #fff); }
.catalog-guide-card:nth-child(4n+3) { background: color-mix(in srgb, var(--pink) 12%, #fff); }
.catalog-guide-card:nth-child(4n+4) { background: color-mix(in srgb, var(--purple) 11%, #fff); }
.catalog-guide-card:hover { z-index: 1; border-color: var(--ink); transform: translateY(-4px); box-shadow: 7px 7px 0 var(--ink); }
.catalog-guide-card:hover::after { transform: translate(-18px, -12px) scale(1.12); }
.catalog-guide-index { display: block; margin-bottom: 34px; font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.catalog-guide-card h3 { margin: 0 0 12px !important; font-size: 21px !important; line-height: 1.08; letter-spacing: -.035em; }
.catalog-guide-card p { margin: 0; color: #45474c; font-size: 14px; line-height: 1.58; }

/* Product */
.product-page { padding: 35px 0 110px; }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .75fr); gap: 34px; align-items: start; }
.product-gallery { position: sticky; top: calc(var(--header-h) + 20px); min-width: 0; display: grid; gap: 12px; }
.gallery-orbit { position: relative; min-width: 0; padding: 8px 42px 22px; overflow: hidden; }
.gallery-orbit::before { position: absolute; left: 5%; right: 5%; bottom: -42px; height: 88px; border: 1px solid var(--line); border-radius: 50% 50% 0 0 / 100% 100% 0 0; content: ""; pointer-events: none; }
.gallery-thumbs { display: flex; justify-content: center; gap: 9px; overflow-x: auto; padding: 4px 6px 22px; scroll-snap-type: x proximity; scrollbar-width: none; }
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb { width: 76px; height: 76px; flex: 0 0 76px; scroll-snap-align: center; padding: 6px; border: 1px solid var(--line); border-radius: 16px; background: var(--soft); overflow: hidden; transform: translateY(var(--arc-y, 0)) rotate(var(--arc-r, 0)); transition: transform .25s cubic-bezier(.2,.75,.2,1), border-color .2s ease, background-color .2s ease; }
.gallery-thumb.is-active { border: 2px solid var(--ink); background: color-mix(in srgb, var(--lime) 30%, #fff); transform: translateY(calc(var(--arc-y, 0px) - 6px)) rotate(0deg); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.gallery-main { position: relative; min-height: 610px; display: grid; place-items: center; padding: 45px; border-radius: var(--radius-lg); background: var(--soft); overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; max-height: 650px; object-fit: contain; mix-blend-mode: multiply; }
.gallery-nav { position: absolute; z-index: 2; top: 50%; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.9); transform: translateY(-50%); transition: background-color .2s ease, transform .2s ease; }
.gallery-nav:hover { background: var(--lime); transform: translateY(-50%) scale(1.06); }
.gallery-nav--prev { left: 16px; }
.gallery-nav--next { right: 16px; }
.product-info { padding: 10px 0; }
.product-info h1 { margin: 10px 0 15px; font-size: clamp(38px, 4.4vw, 66px); line-height: .96; letter-spacing: -.06em; }
.product-meta-line { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 12px; }
.product-media-tools { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 10px; margin: 20px 0 6px; }
.product-video-preview { position: relative; min-height: 164px; padding: 0; overflow: hidden; border: 1.5px solid var(--ink); border-radius: 18px; background: var(--ink); color: #fff; text-align: left; cursor: pointer; }
.product-video-preview video { width: 100%; height: 100%; min-height: 164px; display: block; object-fit: cover; opacity: .76; transition: opacity .2s ease, transform .35s ease; }
.product-video-preview:hover video { opacity: .9; transform: scale(1.025); }
.product-video-overlay { position: absolute; inset: 0; display: flex; align-items: end; gap: 12px; padding: 18px; background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.78)); }
.product-video-overlay i { width: 43px; height: 43px; flex: 0 0 43px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 14px; font-style: normal; }
.product-video-overlay span span { display: grid; gap: 3px; }
.product-video-overlay strong { font-size: 14px; }
.product-video-overlay small { color: rgba(255,255,255,.78); font-size: 10px; }
.product-downloads { min-width: 0; padding: 17px; border: 1.5px solid var(--ink); border-radius: 18px; background: color-mix(in srgb, var(--purple) 12%, #fff); }
.product-downloads > div:first-child { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 11px; }
.product-downloads > div:first-child strong { font-size: 14px; }
.product-downloads > div:first-child small { color: var(--muted); font-size: 10px; }
.product-file-list { max-height: 210px; display: grid; gap: 7px; overflow: auto; padding-right: 2px; }
.product-file { min-width: 0; display: grid; grid-template-columns: 43px minmax(0, 1fr) auto; align-items: center; gap: 10px; padding: 9px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.product-file-ext { min-height: 36px; display: grid; place-items: center; border-radius: 8px; background: var(--lime); font-size: 9px; font-weight: 900; }
.product-file > div:nth-child(2) { min-width: 0; display: grid; gap: 2px; }
.product-file > div:nth-child(2) strong { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.product-file > div:nth-child(2) small { color: var(--muted); font-size: 9px; }
.product-file-actions { display: flex; gap: 7px; }
.product-file-actions a { color: var(--ink); font-size: 9px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.product-video-dialog { width: min(960px, calc(100% - 28px)); }
.product-video-dialog video { width: 100%; max-height: 68vh; display: block; border-radius: 18px; background: #000; }
.product-video-playlist { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.product-price { margin: 25px 0 6px; font-size: 38px; font-weight: 900; letter-spacing: -.04em; }
.stock { display: inline-flex; align-items: center; gap: 7px; color: var(--success); font-size: 13px; font-weight: 800; }
.stock::before { width: 8px; height: 8px; border-radius: 50%; background: currentColor; content: ""; }
.product-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 24px 0; }
.product-fact { padding: 14px; border: 1px solid var(--line); border-radius: 13px; }
.product-fact small { display: block; color: var(--muted); font-size: 10px; }
.product-fact strong { font-size: 13px; }
.variant-section { margin: 24px 0; }
.variant-section > strong { display: block; margin-bottom: 10px; font-size: 13px; }
.variant-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-button { min-height: 44px; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff; font-size: 12px; font-weight: 750; }
.variant-button.is-active { border: 2px solid var(--ink); background: var(--soft); }
.variant-button .swatch { width: 18px; height: 18px; }
.manual-size-field { display: grid; gap: 6px; width: min(100%, 320px); }
.product-calculator { margin-top: 24px; padding: 20px; border: 2px solid var(--ink); border-radius: var(--radius); background: #fff; box-shadow: 8px 8px 0 var(--lime); }
.product-calculator-head { display: flex; justify-content: space-between; gap: 15px; margin-bottom: 14px; }
.product-calculator h2 { margin: 0; font-size: 24px; letter-spacing: -.04em; }
.rec-badge { align-self: flex-start; padding: 6px 9px; border-radius: 8px; background: var(--lime); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.product-calculator .calc-grid { grid-template-columns: minmax(0, 1.12fr) minmax(185px, .88fr); gap: 10px; margin-top: 0; }
.product-calculator .calc-grid > .field:first-child { grid-column: 1 / -1; margin-bottom: 2px; }
.product-calculator .calc-grid > .field:not(:first-child) { min-width: 0; padding: 11px; border: 1px solid var(--line); border-radius: 14px; background: var(--soft); transition: border-color .2s ease, background-color .2s ease, transform .2s ease; }
.product-calculator .calc-grid > .field:not(:first-child):focus-within { border-color: var(--ink); background: color-mix(in srgb, var(--lime) 10%, #fff); transform: translateY(-1px); }
.quantity-stepper { display: grid; grid-template-columns: 42px 1fr 42px; gap: 5px; }
.quantity-stepper button { min-height: 46px; border: 1px solid var(--line); border-radius: 10px; background: #fff; font-size: 21px; transition: border-color .18s ease, background-color .18s ease, transform .18s ease; }
.quantity-stepper button:hover { border-color: var(--ink); background: var(--lime); transform: translateY(-1px); }
.quantity-stepper input { min-width: 0; text-align: center; }
.product-calculator .select, .product-calculator .input { min-height: 46px; }
.product-calc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 12px; }
.product-calc-actions .btn { width: 100%; min-width: 0; padding-inline: 12px; }
.price-breakdown { margin-top: 12px; }
.price-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 0; }
.price-metrics > div { --metric-accent: var(--sky); position: relative; min-width: 0; min-height: 96px; display: flex; flex-direction: column; justify-content: space-between; padding: 13px; border: 1.5px solid color-mix(in srgb, var(--metric-accent) 72%, var(--ink)); border-radius: 14px; background: color-mix(in srgb, var(--metric-accent) 13%, #fff); overflow: hidden; transition: transform .2s cubic-bezier(.2,.75,.2,1), box-shadow .2s ease, background-color .2s ease; }
.price-metrics > div:nth-child(2) { --metric-accent: var(--pink); }
.price-metrics > div:nth-child(3) { --metric-accent: var(--purple); }
.price-metrics > div:nth-child(4) { --metric-accent: var(--lime); }
.price-metrics > div::before { position: absolute; top: 0; right: 0; left: 0; height: 5px; background: var(--metric-accent); content: ""; }
.price-metrics > div:hover { background: color-mix(in srgb, var(--metric-accent) 24%, #fff); box-shadow: 3px 4px 0 color-mix(in srgb, var(--metric-accent) 56%, var(--ink)); transform: translateY(-3px); }
.price-metrics dt { color: var(--muted); font-size: 11px; }
.price-metrics dd { margin: 8px 0 3px; font-size: clamp(18px, 2vw, 26px); font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.price-metrics small { color: var(--muted); font-size: 9px; }
.price-metrics .price-metric-total { color: var(--ink); border-color: var(--ink); background: color-mix(in srgb, var(--lime) 84%, #fff); }
.price-metrics .price-metric-total dt, .price-metrics .price-metric-total small { color: #3d451f; }
.related-category-links { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.related-category-links a { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; padding: 10px 14px; border: 1px solid var(--ink); border-radius: 14px; background: #fff; font-size: 13px; font-weight: 800; transition: transform .2s ease, background-color .2s ease; }
.related-category-links a:hover { background: var(--lime); transform: translateY(-2px); }
.complementary-section { margin-top: 78px; padding: 70px 0; border-radius: var(--radius-lg); background: var(--soft); }
.product-detail-section { padding-top: 80px; }
.detail-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; }
.detail-grid h2 { margin: 0; font-size: 44px; letter-spacing: -.055em; }
.spec-list { margin: 0; }
.spec-list div { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.spec-list dt { color: var(--muted); }
.spec-list dd { margin: 0; font-weight: 750; }

/* Printing page */
.printing-hero { padding: 55px 0 75px; color: #fff; background: var(--ink); overflow: hidden; }
.printing-hero-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 45px; align-items: center; }
.printing-hero h1 { margin: 0; font-size: clamp(58px, 9vw, 136px); line-height: .83; letter-spacing: -.075em; }
.printing-hero p { max-width: 650px; color: #bfc1c6; font-size: 20px; }
.printing-visual { position: relative; aspect-ratio: 1; }
.printing-orbit { position: absolute; inset: 8%; border: 1px solid #444; border-radius: 50%; animation: spin 18s linear infinite; }
.printing-orbit::before, .printing-orbit::after { position: absolute; width: 110px; height: 110px; border: 2px solid var(--ink); border-radius: 24px; background-size: cover; content: ""; animation: counterSpin 18s linear infinite; }
.printing-orbit::before { top: 5%; left: 5%; background-image: url("../images/printing/dtf.webp"); }
.printing-orbit::after { right: 0; bottom: 12%; background-image: url("../images/printing/laser.webp"); }
.printing-center { position: absolute; inset: 29%; display: grid; place-items: center; border-radius: 35%; color: var(--ink); background: var(--lime); font-size: clamp(26px, 4vw, 50px); font-weight: 900; text-align: center; line-height: .9; transform: rotate(-6deg); }
.tech-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.tech-row { display: grid; grid-template-columns: 100px minmax(220px, .7fr) 1fr auto; gap: 25px; align-items: center; min-height: 145px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.tech-row img { width: 88px; height: 88px; object-fit: cover; border-radius: 20px; }
.tech-row h2 { margin: 0; font-size: clamp(26px, 3vw, 44px); letter-spacing: -.05em; }
.tech-row p { margin: 0; color: var(--muted); }
.tech-row a { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 24px; transition: background-color .2s ease, transform .2s ease; }
.tech-row a:hover { background: var(--lime); transform: translate(3px, -3px); }
.tech-directory { margin-top: 82px; padding-top: 54px; border-top: 1px solid var(--line); }
.tech-directory > header { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .65fr); gap: 40px; align-items: end; margin-bottom: 30px; }
.tech-directory > header .eyebrow { grid-column: 1 / -1; margin-bottom: -22px; }
.tech-directory > header h2 { max-width: 820px; margin: 0; font-size: clamp(42px, 6vw, 76px); line-height: .93; letter-spacing: -.06em; }
.tech-directory > header > p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.tech-directory-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.tech-directory-card { min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; gap: 35px; padding: 22px; border: 1px solid var(--ink); border-radius: var(--radius); background: #fff; transition: color .2s ease, background-color .2s ease, transform .2s ease; }
.tech-directory-card strong { font-size: 21px; }
.tech-directory-card span { color: var(--muted); font-size: 14px; line-height: 1.5; }
.tech-directory-card:hover { color: #fff; background: var(--ink); transform: translateY(-4px); }
.tech-directory-card:hover span { color: #c7c9ce; }
.tech-article-hero { padding: 54px 0 90px; background: var(--soft); }
.tech-article-hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .65fr); gap: 45px; align-items: end; }
.tech-article-hero h1 { max-width: 1050px; margin: 0; font-size: clamp(54px, 8vw, 126px); line-height: .84; letter-spacing: -.075em; }
.tech-article-hero p { max-width: 580px; margin: 0 0 8px; font-size: 20px; }
.tech-article-grid { display: grid; grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr); gap: 70px; }
.tech-article-aside { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; padding: 24px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--lime); }
.tech-article-aside strong { display: block; margin-bottom: 14px; font-size: 18px; }
.tech-article-aside ul { margin: 0; padding-left: 20px; }
.tech-article-aside li { margin: 8px 0; }
.tech-article-body { max-width: 880px; }
.tech-article-body h2 { margin: 0 0 20px; font-size: clamp(38px, 5vw, 68px); line-height: .95; letter-spacing: -.055em; }
.tech-article-body h3 { margin: 48px 0 12px; font-size: 28px; letter-spacing: -.045em; }
.tech-article-body p, .tech-article-body li { color: #46494f; font-size: 18px; line-height: 1.7; }
.tech-article-body ul { padding-left: 22px; }
.tech-article-section { padding-top: 84px; }
.tech-aside-button { width: 100%; margin-top: 22px; }
.tech-article-body .tech-lead { max-width: 820px; margin-bottom: 34px; font-size: 21px; line-height: 1.65; }
.tech-decision-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 34px 0 56px; }
.tech-decision-card { min-height: 235px; padding: 25px; border: 2px solid var(--ink); border-radius: var(--radius); background: #fff; }
.tech-decision-card--accent { background: var(--lime); }
.tech-decision-card span { display: block; margin-bottom: 28px; font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.tech-decision-card p { margin: 0; color: var(--ink); font-size: 17px; line-height: 1.55; }
.tech-category-links { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 12px; }
.tech-category-links a { padding: 10px 13px; border: 1px solid var(--ink); border-radius: 999px; background: #fff; font-size: 14px; font-weight: 800; transition: color .2s ease, background-color .2s ease, transform .2s ease; }
.tech-category-links a:hover { color: #fff; background: var(--ink); transform: translateY(-2px); }
.tech-table-wrap { max-width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.tech-spec-table, .tech-price-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.tech-spec-table th, .tech-spec-table td, .tech-price-table th, .tech-price-table td { padding: 17px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.tech-spec-table thead th, .tech-price-table thead th { color: var(--muted); background: #f4f4f5; font-size: 12px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.tech-spec-table tbody th { width: 18%; font-size: 15px; }
.tech-spec-table tbody td { color: #46494f; font-size: 15px; line-height: 1.5; }
.tech-spec-table tr:last-child th, .tech-spec-table tr:last-child td, .tech-price-table tr:last-child th, .tech-price-table tr:last-child td { border-bottom: 0; }
.tech-price-box { margin: 58px 0; padding: 34px; border-radius: var(--radius-lg); color: #fff; background: var(--ink); }
.tech-article-body .tech-price-box h3 { margin: 6px 0 12px; color: #fff; font-size: clamp(32px, 4vw, 48px); }
.tech-article-body .tech-price-box p, .tech-article-body .tech-price-box li { color: #c7c9ce; }
.tech-price-box .tech-table-wrap { margin: 24px 0 16px; border-color: #3b3c40; }
.tech-price-table th, .tech-price-table td { border-color: #3b3c40; }
.tech-price-table thead th { color: #c7c9ce; background: #242528; }
.tech-price-table tbody th, .tech-price-table tbody td { color: #fff; background: #191a1c; font-size: 16px; }
.tech-price-box small { display: block; max-width: 720px; color: #9fa2a9; line-height: 1.55; }
.tech-price-box .btn { margin-top: 24px; }
.tech-process { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 0; list-style: none; counter-reset: tech-step; }
.tech-process li { min-height: 190px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; counter-increment: tech-step; }
.tech-process li::before { display: block; margin-bottom: 28px; color: var(--muted); font-size: 13px; font-weight: 900; content: "0" counter(tech-step); }
.tech-process strong, .tech-process span { display: block; }
.tech-process strong { margin-bottom: 8px; color: var(--ink); font-size: 18px; }
.tech-process span { color: #5a5d63; font-size: 15px; line-height: 1.55; }
.tech-brief { margin: 58px 0; padding: 34px; border: 2px solid var(--ink); border-radius: var(--radius-lg); background: var(--yellow); }
.tech-article-body .tech-brief h3 { margin: 5px 0 14px; font-size: clamp(31px, 4vw, 48px); }
.tech-article-body .tech-brief p { color: var(--ink); }
.tech-related { margin-top: 56px; }
.tech-article-body .tech-related h3 { margin-top: 5px; }
.tech-related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.tech-related-card { min-height: 145px; display: flex; flex-direction: column; justify-content: space-between; gap: 26px; padding: 22px; border: 1px solid var(--ink); border-radius: var(--radius); transition: color .2s ease, background-color .2s ease, transform .2s ease; }
.tech-related-card strong { font-size: 19px; }
.tech-related-card span { color: var(--muted); font-size: 14px; }
.tech-related-card:hover { color: #fff; background: var(--ink); transform: translateY(-3px); }
.tech-related-card:hover span { color: #c7c9ce; }

/* Dialogs */
.dialog { width: min(720px, calc(100% - 28px)); max-height: calc(100vh - 28px); padding: 0; border: 0; border-radius: var(--radius-lg); box-shadow: 0 30px 90px rgba(0,0,0,.28); overflow: auto; }
.dialog::backdrop { background: rgba(17,17,17,.64); backdrop-filter: blur(5px); }
.dialog-inner { padding: 30px; }
.dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.dialog-head h2 { margin: 0; font-size: 34px; letter-spacing: -.05em; }
.quick-product { display: grid; grid-template-columns: 130px 1fr; gap: 18px; align-items: center; margin-bottom: 20px; }
.quick-product img { width: 130px; height: 130px; object-fit: contain; border-radius: 18px; background: var(--soft); mix-blend-mode: multiply; }
.quick-product h3 { margin: 0 0 6px; font-size: 20px; line-height: 1.1; }
.toast { position: fixed; z-index: 300; right: 20px; bottom: 20px; max-width: 340px; padding: 14px 18px; color: #fff; background: var(--ink); border-radius: 14px; box-shadow: var(--shadow); transform: translateY(130%); transition: transform .25s ease; }
.toast.is-showing { transform: translateY(0); }

/* Ideas */
.editorial-hero { padding: 70px 0; }
.editorial-hero h1 { max-width: 1200px; margin: 0; font-size: clamp(70px, 13vw, 190px); line-height: .77; letter-spacing: -.085em; }
.editorial-hero h1 span { color: #8b61e6; }
.editorial-hero p { max-width: 700px; margin: 45px 0 0 auto; font-size: 22px; }
.article-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.article-card { position: relative; min-height: 400px; grid-column: span 4; display: flex; flex-direction: column; padding: 26px; color: var(--ink); text-decoration: none; border: 2px solid var(--ink); border-radius: var(--radius); transition: transform .2s ease, box-shadow .2s ease; }
.article-card:nth-child(4n+1) { grid-column: span 8; background: var(--lime); }
.article-card:nth-child(4n+2) { background: var(--purple); }
.article-card:nth-child(4n+3) { background: var(--sky); }
.article-card:nth-child(4n+4) { background: var(--pink); }
.article-card:hover { transform: translateY(-5px); box-shadow: 10px 10px 0 var(--ink); }
.article-card small { font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.article-card h2 { margin: auto 0 16px; font-size: clamp(30px, 4vw, 58px); line-height: .94; letter-spacing: -.06em; }
.article-card p { margin: 0; max-width: 620px; }
.article-card__arrow { position: absolute; top: 22px; right: 24px; font-size: 30px; font-weight: 850; transition: transform .2s ease; }
.article-card:hover .article-card__arrow { transform: translate(3px, -3px) rotate(8deg); }

.seo-copy { padding: 82px 0; border-top: 1px solid var(--line); background: color-mix(in srgb, var(--soft) 56%, #fff); }
.seo-copy-grid { display: grid; grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr); gap: clamp(36px, 5vw, 76px); align-items: start; }
.seo-copy h2 { position: sticky; top: calc(var(--header-h) + 28px); margin: 0; font-size: clamp(34px, 3.4vw, 52px); line-height: .96; letter-spacing: -.055em; text-wrap: balance; }
.seo-copy article { max-width: 960px; }
.seo-copy-intro { display: grid; gap: 12px; }
.seo-copy-intro p { margin: 0; color: #34363a; font-size: 17px; line-height: 1.62; }
.seo-copy h3 { margin: 35px 0 10px; font-size: 24px; }
.catalog-faq-section { margin-top: 52px; }
.catalog-faq-section > h3 { margin-bottom: 8px; font-size: 30px; line-height: 1.06; letter-spacing: -.04em; }
.catalog-faq-lead { margin: 0 0 20px; color: var(--muted); }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 18px; font-weight: 850; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 26px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 800px; margin: -4px 0 24px; color: var(--muted); }

.motion-ready [data-reveal] { opacity: 0; transform: translateY(22px); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.75,.2,1); }

/* Live brand patterns */
html.pattern-motion-ready .hero::before,
html.pattern-motion-ready .hero-stage::before,
html.pattern-motion-ready .builder-stage::before,
html.pattern-motion-ready .final-cta::before { display: none; }
html.pattern-motion-ready .pattern-break { position: relative; background-image: none; animation: none; }

.motion-pattern {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
}
.motion-pattern:not(.is-active),
.motion-pattern:not(.is-active) * { animation-play-state: paused !important; }
.hero > .motion-pattern--dots { opacity: .56; mask-image: radial-gradient(ellipse 39% 56% at 24% 46%, transparent 0 54%, rgba(0,0,0,.18) 68%, #000 100%); }
.hero-stage > .motion-pattern--tiles { inset: 2% 3% 2% 2%; border-radius: 32px; opacity: .88; mask-image: radial-gradient(ellipse 62% 56% at 50% 50%, transparent 0 45%, rgba(0,0,0,.34) 61%, #000 78%); }
.builder-stage > .motion-pattern--stickers { opacity: .23; mix-blend-mode: multiply; }
.pattern-break > .motion-pattern--arrows { opacity: .84; }
.final-cta > .motion-pattern--tiles { opacity: .34; mix-blend-mode: multiply; }
.pattern-break h2,
.final-cta-inner { position: relative; z-index: 2; }

.motion-pattern--dots {
  display: grid;
  grid-template-columns: repeat(28, 1fr);
  grid-template-rows: repeat(18, 1fr);
  align-items: center;
  justify-items: center;
  padding: 12px 1.8vw;
  animation: dotFieldDrift 18s ease-in-out infinite alternate;
}
.motion-dot {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-style: normal;
}
.motion-dot::before {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
  animation: dotPulse var(--pulse) ease-in-out var(--delay) infinite;
}
.motion-dot--accent::before {
  width: 9px;
  height: 9px;
  background: var(--dot-color, var(--pink));
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--dot-color, var(--pink)) 36%, transparent);
  animation-name: accentDotPulse;
}
.motion-dot--arrow::before { display: none; }
.motion-dot--arrow svg {
  width: 18px;
  height: 18px;
  overflow: visible;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 3;
  animation: dotArrowPop 4.2s cubic-bezier(.2,.8,.2,1) var(--delay) infinite;
}

.motion-pattern--arrows {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-auto-rows: 1fr;
  align-items: center;
  justify-items: center;
  padding: 12px 1.7vw;
}
.motion-arrow {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-style: normal;
}
.motion-arrow svg {
  width: var(--size);
  height: var(--size);
  overflow: visible;
  fill: none;
  stroke: var(--ink);
  stroke-width: 4;
  stroke-linecap: square;
  stroke-linejoin: miter;
  animation: arrowBreathe 3.4s cubic-bezier(.4,0,.2,1) var(--delay) infinite;
}
.motion-arrow path {
  stroke-dasharray: none;
}

.motion-sticker-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.motion-sticker-links path {
  fill: none;
  stroke: rgba(17,17,17,.7);
  stroke-width: .45;
  stroke-dasharray: 2.2 2.2;
  vector-effect: non-scaling-stroke;
  transition: d 1.15s cubic-bezier(.2,.75,.2,1);
  animation: stickerLink 2.8s linear infinite;
}
.motion-sticker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: var(--h);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(17,17,17,.42);
  border-radius: var(--shape);
  background: var(--card-color);
  box-shadow: 0 5px 14px rgba(17,17,17,.16);
  transform: translate(-50%, -50%) rotate(var(--r));
  transition:
    left 1.15s cubic-bezier(.2,.75,.2,1),
    top 1.15s cubic-bezier(.2,.75,.2,1),
    width 1.15s cubic-bezier(.2,.75,.2,1),
    height 1.15s cubic-bezier(.2,.75,.2,1),
    border-radius 1.15s ease,
    transform 1.15s cubic-bezier(.2,.75,.2,1);
}
.motion-sticker.is-instant,
.motion-tile.is-instant { transition: none !important; }
.motion-sticker::after {
  position: absolute;
  inset: -60% -90%;
  background: linear-gradient(100deg, transparent 40%, rgba(255,255,255,.62) 50%, transparent 60%);
  transform: translateX(-35%) rotate(8deg);
  content: "";
  animation: stickerShine 5.2s ease-in-out infinite;
}
.motion-sticker__word {
  position: relative;
  z-index: 1;
  max-width: 90%;
  font-size: clamp(10px, 2.15vw, 31px);
  font-weight: 950;
  line-height: .82;
  letter-spacing: -.075em;
  transition: opacity .22s ease, transform .22s ease;
}
.motion-sticker__word.is-changing { opacity: 0; transform: translateY(-10px); }
.motion-sticker__mini-arrow,
.motion-sticker__big-arrow {
  position: absolute;
  z-index: 1;
  display: block;
}
.motion-sticker__mini-arrow { right: 7%; bottom: 8%; width: 27%; }
.motion-sticker__big-arrow { width: 62%; }
.motion-sticker__mini-arrow svg,
.motion-sticker__big-arrow svg {
  display: block;
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: miter;
  stroke-width: 4;
}
.motion-sticker__dots {
  z-index: 1;
  width: 62%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10%;
}
.motion-sticker__dots i { aspect-ratio: 1; border-radius: 50%; background: currentColor; animation: stickerDot 1.8s ease-in-out calc(var(--delay, 0s) + .15s) infinite alternate; }
.motion-sticker__dots i:nth-child(3n) { animation-delay: -.6s; }
.motion-sticker__shapes { position: absolute; z-index: 1; inset: 0; }
.motion-sticker__shapes i { position: absolute; background: var(--ink); }
.motion-sticker__shapes i:nth-child(1) { inset: 0 48% 48% 0; }
.motion-sticker__shapes i:nth-child(2) { right: -4%; bottom: -5%; width: 64%; aspect-ratio: 1; border-radius: 50%; background: var(--pink); }
.motion-sticker__shapes i:nth-child(3) { left: 36%; top: 35%; width: 50%; height: 18%; background: var(--yellow); transform: rotate(-12deg); }
.motion-sticker > .motion-trace { inset: 16%; }

.motion-tile {
  position: absolute;
  color: var(--ink);
  border: 1px solid rgba(17,17,17,.22);
  border-radius: var(--tile-radius);
  background: var(--tile-color);
  overflow: hidden;
  transform: translateZ(0);
  transition:
    left 1.45s cubic-bezier(.2,.78,.2,1) var(--tile-delay),
    top 1.45s cubic-bezier(.2,.78,.2,1) var(--tile-delay),
    width 1.45s cubic-bezier(.2,.78,.2,1) var(--tile-delay),
    height 1.45s cubic-bezier(.2,.78,.2,1) var(--tile-delay),
    border-radius 1.45s ease var(--tile-delay);
}
.motion-tile:nth-child(6n) { color: #fff; }
.motion-trace {
  position: absolute;
  inset: 14%;
  width: 72%;
  height: 72%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  opacity: .78;
  transform: rotate(var(--trace-turn));
  transition: transform 1.45s cubic-bezier(.2,.78,.2,1) var(--tile-delay);
}
.motion-trace path {
  stroke-dasharray: 92 38;
  animation: traceFlow 3.2s ease-in-out var(--tile-delay) infinite;
}
.motion-tile__mark {
  position: absolute;
  z-index: 1;
  right: 9%;
  bottom: 9%;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  font-weight: 950;
  line-height: 1;
}
.motion-tile__mark b { font-size: clamp(14px, 2.2vw, 36px); letter-spacing: -.08em; }
.motion-tile__mark svg { width: clamp(20px, 3vw, 44px); fill: none; stroke: currentColor; stroke-width: 4; }

/* Cart: selected SKU, production configuration and four comparable price levels. */
.cart-hero { padding-bottom: 42px; }
.cart-section { padding-top: 32px; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 24px; align-items: start; }
.cart-list-wrap { min-width: 0; }
.cart-presentation-tools { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .82fr); gap: 18px 24px; margin-bottom: 34px; padding: 24px; border: 1.5px solid var(--ink); border-radius: 24px; background: color-mix(in srgb, var(--sky) 14%, #fff); box-shadow: 7px 7px 0 color-mix(in srgb, var(--sky) 60%, #fff); }
.cart-presentation-copy h2 { margin: 3px 0 9px; font-size: clamp(26px, 3vw, 38px); line-height: 1; letter-spacing: -.05em; }
.cart-presentation-copy > p:last-child { max-width: 620px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.cart-intro-field { position: relative; display: grid; gap: 7px; font-size: 12px; font-weight: 800; }
.cart-intro-field textarea { min-height: 108px; padding: 13px 15px 28px; resize: vertical; line-height: 1.45; }
.cart-intro-field small { position: absolute; right: 12px; bottom: 9px; color: var(--muted); font-size: 10px; }
.cart-presentation-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.cart-presentation-actions .btn { min-width: 190px; justify-content: center; }
.cart-presentation-actions .btn:disabled { cursor: progress; opacity: .62; }
.cart-share-result { grid-column: 1 / -1; padding-top: 16px; border-top: 1px solid var(--line); }
.cart-share-result > label { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 800; }
.cart-share-result > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.cart-share-result input { min-width: 0; font-size: 12px; }
.cart-tool-status { grid-column: 1 / -1; min-height: 18px; margin: -2px 0 0; color: #38510d; font-size: 12px; font-weight: 750; }
.cart-list-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.cart-list-head h2 { margin: 2px 0 0; font-size: clamp(32px, 4vw, 54px); letter-spacing: -.055em; }
.text-button, .cart-remove { border: 0; background: transparent; color: var(--ink); text-decoration: underline; text-underline-offset: 4px; cursor: pointer; font: inherit; }
.cart-list { display: grid; gap: 14px; }
.cart-line { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 20px; padding: 16px; border: 1.5px solid var(--ink); border-radius: 24px; background: #fff; }
.cart-line-media { display: grid; place-items: center; min-height: 190px; padding: 16px; border-radius: 17px; overflow: hidden; background: var(--soft); }
.cart-line-media img { width: 100%; height: 100%; max-height: 190px; object-fit: contain; transition: transform .25s ease; }
.cart-line:hover .cart-line-media img { transform: scale(1.035) rotate(-1deg); }
.cart-line-main { min-width: 0; display: grid; gap: 14px; }
.cart-line-title { display: flex; justify-content: space-between; gap: 18px; }
.cart-line-title h3 { margin: 4px 0 0; max-width: 660px; font-size: clamp(20px, 2vw, 28px); line-height: 1.08; letter-spacing: -.035em; }
.cart-line-title h3 a { color: inherit; text-decoration: none; }
.cart-remove { width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; text-decoration: none; font-size: 23px; }
.cart-remove:hover { background: var(--pink); border-color: var(--ink); }
.cart-line-config { display: flex; flex-wrap: wrap; gap: 7px; }
.cart-line-config span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; }
.cart-line-config b { color: var(--ink); }
.cart-line-controls { display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.cart-line-controls label { display: grid; gap: 5px; font-size: 12px; font-weight: 700; }
.cart-line-controls input { width: 118px; height: 42px; }
.cart-line-controls a { color: var(--ink); font-size: 12px; font-weight: 700; }
.cart-line-prices { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.cart-line-prices > div { min-width: 0; padding: 11px; border-right: 1px solid var(--line); }
.cart-line-prices > div:last-child { border-right: 0; }
.cart-line-prices .is-total { background: var(--lime); }
.cart-line-prices dt { min-height: 30px; color: var(--muted); font-size: 10px; line-height: 1.25; }
.cart-line-prices dd { margin: 3px 0; font-size: 17px; font-weight: 800; line-height: 1.1; }
.cart-line-prices small { color: var(--muted); font-size: 10px; }
.cart-summary { position: sticky; top: 120px; padding: 25px; border: 1.5px solid var(--ink); border-radius: 24px; background: var(--lime); box-shadow: 8px 8px 0 var(--ink); }
.cart-summary h2 { margin: 5px 0 24px; font-size: 34px; line-height: 1; letter-spacing: -.05em; }
.cart-summary-list { display: grid; gap: 12px; margin: 0; }
.cart-summary-list > div { display: flex; justify-content: space-between; gap: 12px; }
.cart-summary-list dd { margin: 0; font-weight: 800; text-align: right; }
.cart-summary-total { margin-top: 5px; padding-top: 17px; border-top: 1.5px solid var(--ink); align-items: end; }
.cart-summary-total dt { font-weight: 800; }
.cart-summary-total dd { font-size: 28px; line-height: 1; }
.cart-summary-note { margin: 22px 0; color: #39421f; font-size: 12px; line-height: 1.55; }
.cart-submit, .cart-summary > .btn { width: 100%; justify-content: center; margin-top: 9px; }
.cart-empty { max-width: 760px; padding: 50px; border: 1.5px solid var(--ink); border-radius: 28px; background: var(--lime); box-shadow: 9px 9px 0 var(--ink); }
.cart-empty h2 { margin: 6px 0 12px; font-size: clamp(42px, 7vw, 72px); letter-spacing: -.06em; }
.cart-empty p:not(.eyebrow) { max-width: 600px; margin-bottom: 25px; }

@media (max-width: 720px) {
  .catalog-landing-title { grid-template-columns: 68px minmax(0, 1fr); gap: 14px; }
  .catalog-landing-title__icon { width: 68px; height: 68px; border-radius: 18px; }
  .product-media-tools { grid-template-columns: 1fr; }
  .product-file { grid-template-columns: 40px minmax(0, 1fr); }
  .product-file-actions { grid-column: 1 / -1; justify-content: flex-end; padding-top: 3px; }
  .product-video-dialog .dialog-inner { padding: 15px; }
  .cart-presentation-tools { grid-template-columns: 1fr; padding: 19px; }
  .cart-presentation-actions { display: grid; grid-template-columns: 1fr; }
  .cart-presentation-actions .btn { width: 100%; min-width: 0; }
  .cart-share-result, .cart-tool-status { grid-column: 1; }
  .cart-share-result > div { grid-template-columns: 1fr; }
}

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes patternDrift { to { background-position: 700px 340px; } }
@keyframes patternPan { 0% { background-position: 10% 20%; } 100% { background-position: 90% 75%; } }
@keyframes floatCard { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }
@keyframes tokenIn { from { opacity: 0; transform: translateY(20px) scale(.86) rotate(-5deg); } }
@keyframes boxReceive { 0%,100% { transform: translateY(0) scale(1); } 42% { transform: translateY(6px) scale(.975); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes counterSpin { to { transform: rotate(-360deg); } }
@keyframes dotFieldDrift { from { transform: translate3d(-8px,-5px,0); } to { transform: translate3d(10px,7px,0); } }
@keyframes dotPulse { 0%,75%,100% { transform: scale(.72); opacity: .62; } 34% { transform: scale(1.65); opacity: 1; } }
@keyframes accentDotPulse { 0%,100% { transform: scale(.72); box-shadow: 0 0 0 0 color-mix(in srgb, var(--dot-color) 36%, transparent); } 44% { transform: scale(1.35); box-shadow: 0 0 0 9px transparent; } }
@keyframes dotArrowPop { 0%,68%,100% { opacity: .12; transform: scale(.65) rotate(-20deg); } 76%,92% { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes arrowBreathe { 0%,100% { transform: translateX(0) scale(.78); opacity: .38; } 35%,72% { transform: translateX(var(--travel)) scale(1.08); opacity: 1; } }
@keyframes stickerLink { to { stroke-dashoffset: -8.8; } }
@keyframes stickerShine { 0%,62% { transform: translateX(-35%) rotate(8deg); } 88%,100% { transform: translateX(38%) rotate(8deg); } }
@keyframes stickerDot { from { transform: scale(.65); } to { transform: scale(1.2); } }
@keyframes traceFlow { 0% { stroke-dashoffset: 130; opacity: .15; } 38%,72% { opacity: .86; } 100% { stroke-dashoffset: 0; opacity: .22; } }

@media (max-width: 1180px) {
  .desktop-nav { gap: 16px; }
  .header-actions .btn { display: none; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; }
  .hero-stage { min-height: 500px; }
  .hero-product-shot { box-shadow: 12px 12px 0 var(--ink); }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cart-layout { grid-template-columns: minmax(0, 1fr) 320px; }
  .cart-line { grid-template-columns: 150px minmax(0, 1fr); }
  .cart-line-prices { grid-template-columns: 1fr 1fr; }
  .cart-line-prices > div:nth-child(2) { border-right: 0; }
  .cart-line-prices > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .production-steps { grid-template-columns: repeat(3, 1fr); }
  .production-step:nth-child(3) { border-right: 0; }
  .production-step:nth-child(n+4) { border-top: 2px solid var(--ink); }
  .printing-layout { grid-template-columns: 1fr 420px; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .section { padding: 78px 0; }
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .mobile-menu-btn { display: inline-grid; }
  .mobile-menu-btn.is-active svg { display: none; }
  .mobile-menu-btn.is-active::after { display: block; content: "×"; font-size: 27px; font-weight: 500; line-height: 1; }
  .site-header { top: 0; }
  .mega-menu { top: calc(var(--header-h) + 31px); max-height: calc(100vh - var(--header-h) - 31px); overflow: auto; }
  .mega-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 38px; }
  .hero-grid, .page-hero-grid, .printing-hero-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-stage { min-height: 480px; }
  .hero-proof { margin-top: -8px; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .category-card, .category-card:nth-child(3), .category-card:nth-child(8) { grid-column: span 6; }
  .category-card:nth-child(1), .category-card:nth-child(6) { grid-column: span 12; }
  .category-directory-head { grid-template-columns: 1fr; }
  .category-icon-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .home-portfolio-grid .portfolio-card:nth-child(n) { transform: none; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .set-builder, .printing-layout, .final-cta-inner { grid-template-columns: 1fr; }
  .print-calculator { position: static; }
  .solutions-grid .solution-card, .solutions-grid .solution-card--wide { grid-column: span 6; }
  .solution-card--image { grid-column: span 12 !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .catalog-shell { grid-template-columns: 1fr; }
  .catalog-rubrics-head { grid-template-columns: 1fr; gap: 12px; }
  .filter-backdrop { position: fixed; z-index: 210; inset: 0; display: block; border: 0; background: rgba(17,17,17,.48); opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s; }
  body.filters-open .filter-backdrop { opacity: 1; visibility: visible; }
  .filters { position: fixed; z-index: 220; inset: 7dvh 0 0; max-height: 93dvh; overflow: auto; overscroll-behavior: contain; padding-top: 0; padding-bottom: 0; border-radius: 28px 28px 0 0; transform: translateY(105%); transition: transform .25s ease; box-shadow: 0 -20px 60px rgba(0,0,0,.2); }
  .filters.is-open { transform: translateY(0); }
  .filters-head { position: sticky; z-index: 3; top: 0; margin: 0 -20px; padding: 18px 20px 14px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(14px); }
  .filters .filter-group:first-of-type { border-top: 0; }
  .filters-mobile-actions { position: sticky; z-index: 3; bottom: 0; display: grid; grid-template-columns: auto minmax(0,1fr); gap: 12px; align-items: center; margin: 16px -20px 0; padding: 13px 20px max(13px, env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(255,255,255,.97); backdrop-filter: blur(14px); }
  .filters-mobile-actions span { color: var(--muted); font-size: 11px; font-weight: 750; }
  .filters-mobile-actions .btn { min-height: 46px; }
  .mobile-filter-trigger { display: inline-flex; }
  .catalog-toolbar { grid-template-columns: 1fr auto; }
  .catalog-toolbar .select { display: none; }
  .catalog-guide-cards { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .tech-row { grid-template-columns: 90px 1fr auto; }
  .tech-row p { grid-column: 2 / 4; }
  .tech-directory > header { grid-template-columns: 1fr; gap: 18px; }
  .tech-directory > header .eyebrow { grid-column: auto; margin-bottom: -6px; }
  .tech-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tech-article-hero-grid, .tech-article-grid { grid-template-columns: 1fr; }
  .tech-article-aside { position: static; }
  .tech-decision-grid, .tech-process, .tech-related-grid { grid-template-columns: 1fr; }
  .ideas-grid .idea-card, .ideas-grid .idea-card:first-child { grid-column: span 6; }
  .seo-copy-grid { grid-template-columns: 1fr; gap: 25px; }
  .seo-copy h2 { position: static; }
  .pattern-break { min-height: 280px; padding-inline: 28px; }
  .pattern-break h2 { width: min(760px, 84vw); }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .topline { padding-inline: 10px; font-size: 10px; }
  .brand { min-width: 132px; }
  .brand-main { font-size: 23px; }
  .header-inner { gap: 6px; }
  .header-actions { gap: 5px; }
  .header-cart { width: 46px; justify-content: center; padding: 8px; }
  .header-cart__label { display: none; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-card { min-height: 100px; }
  .hero h1 { font-size: clamp(48px, 15vw, 66px); }
  .hero-title-line { white-space: normal; }
  .hero h1 .dynamic-word { min-width: 0; }
  .hero > .motion-pattern--dots { opacity: .34; mask-image: radial-gradient(ellipse 88% 28% at 50% 23%, transparent 0 58%, rgba(0,0,0,.18) 72%, #000 100%); }
  .hero-stage { min-height: 360px; }
  .hero-product-shot { width: 95%; border-radius: 26px; box-shadow: 8px 8px 0 var(--ink); }
  .float-label { padding: 9px 12px; font-size: 11px; box-shadow: 4px 4px 0 var(--ink); }
  .hero-proof { grid-template-columns: 1fr; }
  .proof-item { min-height: 74px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 28px; }
  .section-head h2, .display-title { font-size: clamp(42px, 14vw, 64px); }
  .category-bento { gap: 10px; }
  .category-card, .category-card:nth-child(n) { min-height: 190px; grid-column: span 12; }
  .category-directory-panel { margin-inline: -12px; padding: 22px 12px; border-radius: 0; }
  .category-directory-head { padding-inline: 6px; }
  .category-icon-grid { grid-template-columns: none; grid-template-rows: repeat(2, 132px); grid-auto-columns: 118px; grid-auto-flow: column; gap: 8px; overflow-x: auto; padding: 3px 6px 14px; scroll-snap-type: x proximity; scrollbar-width: none; }
  .category-icon-link { min-height: 128px; grid-template-rows: 72px auto; scroll-snap-align: start; }
  .category-icon-link img { height: 72px; }
  .product-grid, .catalog-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .product-card-body { padding: 12px; }
  .product-card-media { padding: 10px; }
  .product-card h3 { font-size: 14px; }
  .product-card-footer { align-items: center; }
  .price strong { font-size: 16px; }
  .card-calc-btn { width: 44px; min-width: 44px; padding: 0; font-size: 0; }
  .card-calc-btn::after { content: "+"; font-size: 20px; }
  .card-cart-btn { width: 36px; height: 36px; }
  .builder-stage { min-height: 520px; padding: 22px; }
  .builder-box { width: 94%; min-height: 225px; margin: 88px auto 24px; padding: 36px 20px 24px; }
  .builder-box-lid { top: -72px; height: 92px; }
  .builder-box-items { min-height: 145px; }
  .builder-token { min-width: 82px; flex-basis: 42%; }
  .builder-token-visual { width: 54px; height: 54px; }
  .builder-token-visual svg { width: 40px; height: 40px; }
  .builder-total { flex-direction: column; align-items: flex-start; }
  .builder-controls { padding: 22px; }
  .budget-grid, .method-grid { grid-template-columns: 1fr; }
  .budget-card { min-height: 260px; }
  .solutions-grid .solution-card, .solutions-grid .solution-card--wide { min-height: 300px; grid-column: span 12; }
  .production-steps { grid-template-columns: 1fr; }
  .production-step { min-height: 190px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .production-step:nth-child(n) { border-top: 0; }
  .production-step:last-child { border-bottom: 0; }
  .production-step::before { margin-bottom: 35px; }
  .ideas-grid .idea-card, .ideas-grid .idea-card:first-child { grid-column: span 12; }
  .pattern-break { min-height: 258px; padding-inline: 18px; }
  .pattern-break h2 { width: 89vw; padding: 24px 26px; border-radius: 22px; box-shadow: 7px 8px 0 var(--ink); font-size: clamp(35px, 11vw, 48px); }
  .pattern-break + .section { padding-top: 52px; }
  .final-cta h2 { font-size: clamp(55px, 20vw, 90px); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .page-hero h1 { font-size: clamp(58px, 20vw, 90px); }
  .catalog-page .page-hero h1 { font-size: clamp(46px, 15vw, 70px); }
  .category-pill { min-width: 118px; width: 118px; min-height: 136px; grid-template-rows: 70px auto; }
  .category-pill img { height: 70px; }
  .catalog-category-rail { padding-bottom: 14px; }
  .category-rail { margin-right: -12px; padding-right: 28px; scroll-snap-type: x mandatory; }
  .catalog-tag-bar { align-items: flex-start; flex-direction: column; padding: 12px; }
  .catalog-tag-shortcuts { width: 100%; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: none; }
  .catalog-tag-chip { flex: 0 0 auto; }
  .catalog-toolbar { grid-template-columns: 1fr; }
  .catalog-toolbar .mobile-filter-trigger { width: 100%; }
  .result-meta { padding: 4px 0; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-page { padding-top: 22px; }
  .product-page .breadcrumbs { flex-wrap: nowrap; gap: 7px; margin: 0 -12px 18px; padding: 0 12px 6px; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
  .product-page .breadcrumbs::-webkit-scrollbar { display: none; }
  .product-gallery { gap: 8px; }
  .gallery-orbit { padding-inline: 0; }
  .gallery-thumbs { overflow-x: auto; justify-content: flex-start; }
  .gallery-thumbs { gap: 7px; padding: 3px 1px 8px; }
  .gallery-thumb { width: 54px; height: 54px; flex-basis: 54px; padding: 4px; border-radius: 11px; }
  .gallery-main { min-height: 308px; padding: 18px; border-radius: 24px; }
  .gallery-nav { width: 42px; height: 42px; }
  .gallery-nav--prev { left: 10px; }
  .gallery-nav--next { right: 10px; }
  .gallery-scrub-hint { display: none; }
  .product-info { padding-top: 4px; }
  .product-info h1 { font-size: clamp(34px, 10.8vw, 46px); }
  .product-facts { grid-template-columns: 1fr; }
  .product-calc-actions { grid-template-columns: 1fr; }
  .price-metrics { grid-template-columns: 1fr 1fr; }
  .tech-row { grid-template-columns: 70px 1fr auto; gap: 12px; }
  .tech-row img { width: 68px; height: 68px; }
  .tech-directory { margin-top: 58px; padding-top: 42px; }
  .tech-directory-grid { grid-template-columns: 1fr; }
  .tech-directory-card { min-height: 155px; }
  .tech-article-hero { padding-bottom: 60px; }
  .tech-article-section { padding-top: 52px; }
  .tech-article-body .tech-lead { font-size: 18px; }
  .tech-decision-card { min-height: 0; }
  .tech-price-box, .tech-brief { margin-block: 42px; padding: 24px; }
  .tech-process li { min-height: 165px; }
  .article-card, .article-card:nth-child(n) { min-height: 330px; grid-column: span 12; }
  .dialog-inner { padding: 20px; }
  .quick-product { grid-template-columns: 90px 1fr; }
  .quick-product img { width: 90px; height: 90px; }
  .cart-line { grid-template-columns: 92px minmax(0, 1fr); gap: 12px; padding: 10px; border-radius: 18px; }
  .cart-line-media { min-height: 92px; height: 116px; padding: 8px; border-radius: 13px; }
  .cart-line-main { gap: 11px; }
  .cart-line-title h3 { font-size: 17px; }
  .cart-line-config, .cart-line-controls, .cart-line-prices { grid-column: 1 / -1; }
  .cart-line-prices dd { font-size: 15px; }
  .cart-line-controls { align-items: center; flex-wrap: wrap; }
  .cart-summary { padding: 21px; margin-right: 7px; box-shadow: 7px 7px 0 var(--ink); }
  .cart-empty { padding: 28px 22px; margin-right: 7px; box-shadow: 7px 7px 0 var(--ink); }
  .cart-hero { padding-block: 30px 18px; }
  .cart-hero .breadcrumbs { margin-bottom: 20px; }
  .cart-hero .page-hero-grid { gap: 18px; }
  .cart-hero h1 { font-size: clamp(58px, 18vw, 76px); }
  .cart-hero p { font-size: 17px; line-height: 1.48; }
  .cart-section { padding-top: 18px; }
}

@media (max-width: 370px) {
  .container { width: min(calc(100% - 18px), var(--container)); }
  .brand { min-width: 116px; }
  .brand-main { font-size: 21px; }
  .brand-arrow { font-size: 23px; }
  .header-actions { gap: 3px; }
  .icon-button, .header-cart { width: 44px; height: 44px; min-height: 44px; }
}

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

/* 2026 visual refinement: quieter commerce surfaces and purposeful motion */
.hero::before,
.hero-stage::before,
.hero-stage::after { display: none; }
.hero { padding-top: 42px; background: #fff; }
.hero-grid { min-height: min(650px, calc(100dvh - var(--header-h) - 104px)); }
.hero-stage { min-height: 560px; padding: clamp(10px, 2vw, 28px); border-radius: var(--radius-lg); background: linear-gradient(145deg, #f5f5f3 0 78%, color-mix(in srgb, var(--lime) 34%, #fff) 78%); }
.hero-product-shot { width: 100%; max-height: 560px; border-width: 1px; border-radius: var(--radius-lg); box-shadow: 12px 12px 0 color-mix(in srgb, var(--lime) 72%, #fff); transform: none; }
.hero .float-label { transform: rotate(-2deg); }
.hero .float-label--b { right: 1%; bottom: 5%; }
.hero .float-label--a { left: 1%; bottom: 6%; }

.category-directory { padding-top: 72px; background: #fff; }
.category-directory-panel { padding: clamp(24px, 3vw, 48px); border-color: var(--line); background: #fff; }
.category-directory-panel::before { display: none; }
.category-directory-head { grid-template-columns: minmax(0, 1fr) auto; align-items: end; color: var(--ink); }
.category-directory-head h2 { font-size: clamp(58px, 7vw, 104px); }
.category-directory-head p { max-width: 680px; margin: 14px 0 0; color: var(--muted); font-size: 17px; }
.category-icon-grid { gap: 10px; }
.category-icon-link { position: relative; isolation: isolate; min-height: 164px; grid-template-rows: 106px auto; padding: 12px; border-color: var(--line); color: var(--ink); background: #f5f5f4; overflow: hidden; }
.category-icon-link::before { position: absolute; z-index: -1; inset: -1px; padding: 2px; border-radius: inherit; background: conic-gradient(from 90deg, transparent 0 65%, var(--lime), var(--pink), var(--sky), transparent 96%); opacity: 0; content: ""; -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.category-icon-link img { height: 106px; mix-blend-mode: multiply; filter: saturate(1.05) contrast(1.03); }
.category-icon-link span { position: relative; font-size: 12px; font-weight: 800; line-height: 1.15; }
.category-icon-link:hover { border-color: transparent; color: var(--ink); background: color-mix(in srgb, var(--lime) 12%, #f5f5f4); box-shadow: 0 12px 30px rgba(17,17,17,.08); transform: translateY(-4px); }
.category-icon-link:hover::before { opacity: 1; animation: borderOrbit 1.7s linear infinite; }
.category-icon-link:hover img { transform: scale(1.08) rotate(2.5deg); }
@keyframes borderOrbit { to { transform: rotate(360deg); } }

.popular-color-nav { display: flex; gap: 8px; margin: 16px 0 0; overflow-x: auto; padding: 2px 2px 7px; scrollbar-width: none; }
.popular-color-nav::-webkit-scrollbar { display: none; }
.popular-color { min-height: 42px; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px 7px 8px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 800; transition: transform .18s ease, border-color .18s ease, background-color .18s ease; }
.popular-color i { width: 27px; height: 27px; display: block; border: 1px solid rgba(17,17,17,.24); border-radius: 50%; background: var(--color); }
.popular-color .popular-color-all { background: conic-gradient(var(--lime), var(--sky), var(--purple), var(--pink), var(--yellow), var(--lime)); }
.popular-color:hover { border-color: var(--ink); transform: translateY(-2px); }
.popular-color.is-active { border-color: var(--ink); background: var(--lime); box-shadow: 3px 3px 0 var(--ink); }
.popular-color-hint { margin: 7px 0 26px; color: var(--muted); font-size: 13px; }
.swatch.is-active { outline: 2px solid var(--ink); outline-offset: 2px; }
.vat-note { color: var(--muted); display: block; font-size: 10px; font-weight: 700; line-height: 1.25; margin-top: 3px; }
.vat-inline { margin: -8px 0 18px; color: var(--muted); font-size: 12px; font-weight: 800; }
.cart-line-vat { margin: 10px 0 0; color: var(--muted); font-size: 12px; font-weight: 700; }

.solution-finder { background: #fff; }
.solution-finder-head { max-width: 900px; margin-bottom: 34px; }
.solution-finder-head h2 { margin: 0; font-size: clamp(52px, 7vw, 96px); line-height: .9; letter-spacing: -.07em; }
.solution-finder-head p { max-width: 720px; margin: 20px 0 0; color: var(--muted); font-size: 18px; }
.solution-photo-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 300px; gap: 12px; }
.solution-photo { position: relative; grid-column: span 4; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.solution-photo--wide { grid-column: span 6; }
.solution-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.solution-photo::after { position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(17,17,19,.88)); content: ""; }
.solution-photo span { position: absolute; z-index: 2; right: 20px; bottom: 18px; left: 20px; color: #fff; }
.solution-photo strong, .solution-photo small { display: block; }
.solution-photo strong { font-size: clamp(21px, 2vw, 30px); line-height: 1; letter-spacing: -.035em; }
.solution-photo small { margin-top: 7px; color: rgba(255,255,255,.78); }
.solution-photo:hover img { transform: scale(1.055); }

.printing-directory { padding-block: 64px; background: #fff; }
.printing-directory-head { max-width: 980px; margin-bottom: 34px; }
.printing-directory-head h2 { margin: 0; font-size: clamp(46px, 5.3vw, 76px); line-height: .92; letter-spacing: -.065em; }
.printing-directory-head p { max-width: 720px; margin: 20px 0 0; color: var(--muted); font-size: 18px; }
.technology-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.technology-card { min-width: 0; min-height: 230px; display: grid; grid-template-rows: 132px 1fr; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius); background: #f7f7f6; overflow: hidden; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.technology-card img { width: 100%; height: 132px; object-fit: contain; mix-blend-mode: multiply; transition: transform .45s cubic-bezier(.16,1,.3,1); }
.technology-card span { padding: 6px 8px 8px; }
.technology-card h3 { margin: 0; font-size: clamp(20px, 1.8vw, 28px); letter-spacing: -.04em; }
.technology-card p { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.technology-card:hover { border-color: var(--ink); box-shadow: 7px 7px 0 var(--lime); transform: translateY(-4px); }
.technology-card:hover img { transform: scale(1.07) rotate(2deg); }
.printing-directory-action { display: flex; align-items: center; gap: 20px; margin-top: 24px; }
.printing-directory-action p { margin: 0; color: var(--muted); }

.brand-motion { position: relative; min-height: 640px; display: grid; align-items: end; overflow: hidden; background: #f4f4f2; }
.brand-motion video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.brand-motion-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,17,19,.88) 0 42%, rgba(17,17,19,.3) 72%, transparent); }
.brand-motion-inner { position: relative; z-index: 1; padding-block: clamp(70px, 9vw, 120px); color: #fff; }
.brand-motion h2 { max-width: 760px; margin: 0; font-size: clamp(58px, 8vw, 116px); line-height: .84; letter-spacing: -.075em; }
.brand-motion p { max-width: 570px; margin: 24px 0 30px; color: rgba(255,255,255,.82); font-size: 18px; }

.home-portfolio-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.home-portfolio-grid .portfolio-card { grid-column: auto; transform: none; }
.home-portfolio-grid .portfolio-card:nth-child(n) { transform: none; }
.home-portfolio-grid .portfolio-card:nth-child(n):hover { transform: translateY(-5px); }
.home-portfolio-grid .portfolio-card figure { aspect-ratio: 4 / 3; }
.home-portfolio-grid .portfolio-card-copy { min-height: 240px; padding: 18px; }
.home-portfolio-grid .portfolio-card-copy h3 { font-size: clamp(20px, 1.65vw, 27px); }

.gallery-orbit { padding: 0; overflow: visible; }
.gallery-orbit::before { display: none; }
.gallery-thumbs { justify-content: flex-start; gap: 8px; padding: 2px 0 4px; }
.gallery-thumb { width: 78px; height: 78px; flex-basis: 78px; padding: 6px; border-radius: 14px; transform: none; }
.gallery-thumb.is-active { background: color-mix(in srgb, var(--lime) 24%, #fff); transform: translateY(-3px); }
.gallery-scrub-hint { display: flex; align-items: center; gap: 9px; margin: 2px 0 0; color: var(--muted); font-size: 12px; }
.gallery-scrub-hint::before { width: 28px; height: 1px; background: var(--ink); content: ""; }
.gallery-main.is-scrubbing, .product-gallery figure.is-scrubbing { cursor: ew-resize; }
.product-long-description { display: grid; grid-template-columns: minmax(280px,.7fr) minmax(0,1.3fr); gap: clamp(34px,7vw,110px); align-items: start; }
.product-long-description h2 { position: sticky; top: calc(var(--header-h) + 30px); margin: 0; font-size: clamp(42px,5vw,74px); line-height: .92; letter-spacing: -.06em; }
.product-long-copy { display: grid; gap: 20px; }
.product-long-copy p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.product-long-copy .product-data-warning { padding: 18px 20px; border: 1px solid #d9b63c; border-radius: 16px; background: #fff8d9; color: #5f4d12; font-size: 15px; }
.product-context-note { margin: 0 0 18px; color: var(--muted); font-size: 14px; }

@media (max-width: 1120px) {
  .technology-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-icon-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .hero { padding-top: 26px; }
  .hero-grid { min-height: 0; }
  .hero-stage { min-height: 0; padding: 8px; }
  .hero-product-shot { max-height: none; box-shadow: 6px 6px 0 color-mix(in srgb, var(--lime) 72%, #fff); }
  .category-directory { padding-top: 54px; }
  .category-directory-panel { margin-inline: -12px; padding: 26px 12px; border-radius: 0; }
  .category-directory-head { grid-template-columns: 1fr; align-items: start; }
  .category-directory-head h2 { font-size: clamp(54px, 19vw, 82px); }
  .category-icon-grid { grid-template-columns: none; grid-template-rows: repeat(2, 144px); grid-auto-columns: 132px; grid-auto-flow: column; overflow-x: auto; }
  .category-icon-link { min-height: 140px; grid-template-rows: 86px auto; }
  .category-icon-link img { height: 86px; }
  .catalog-rubrics-section { margin-bottom: 17px; padding-bottom: 14px; }
  .catalog-rubrics-head { align-items: flex-start; flex-direction: column; gap: 3px; }
  .catalog-rubrics-head > p { font-size: 10px; }
  .catalog-rubrics { flex-wrap: nowrap; margin-right: -12px; padding: 1px 12px 8px 0; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
  .catalog-rubrics::-webkit-scrollbar { display: none; }
  .catalog-rubric-card { flex: 0 0 auto; scroll-snap-align: start; }
  .popular-color-nav { margin-inline: -2px; }
  .solution-photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 230px; }
  .solution-photo, .solution-photo--wide { grid-column: auto; }
  .solution-photo:first-child, .solution-photo:last-child { grid-column: 1 / -1; }
  .technology-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .technology-card { min-height: 250px; grid-template-rows: 138px 1fr; padding: 9px; }
  .technology-card img { height: 138px; }
  .technology-card span { padding-inline: 5px; }
  .technology-card h3 { font-size: 18px; }
  .technology-card p { font-size: 12px; }
  .printing-directory-action { align-items: flex-start; flex-direction: column; }
  .brand-motion { min-height: 540px; }
  .brand-motion-scrim { background: linear-gradient(0deg, rgba(17,17,19,.9) 0 52%, rgba(17,17,19,.18)); }
  .brand-motion h2 { font-size: clamp(52px, 18vw, 78px); }
  .home-portfolio-grid { grid-template-columns: 1fr; }
  .home-portfolio-grid .portfolio-card-copy { min-height: 210px; }
  .product-long-description { grid-template-columns: 1fr; }
  .product-long-description h2 { position: static; }
}

@media (prefers-reduced-motion: reduce) {
  .category-icon-link:hover::before { animation: none; }
  .solution-photo img, .technology-card img { transition: none; }
  .brand-motion video { display: none; }
  .brand-motion { background: url("../video/popgift-motion-poster.webp") center / cover no-repeat; }
}

/* Feedback pass: calm ambient motion, complete photo grid and richer navigation. */
body::after {
  position: fixed;
  z-index: 45;
  inset: -10vh -10vw;
  background: url("../images/patterns/dots.webp") center / 760px 760px repeat;
  mix-blend-mode: multiply;
  opacity: .038;
  content: "";
  pointer-events: none;
  will-change: transform;
  animation: ambientPatternMove 64s ease-in-out infinite alternate;
}

.solution-photo--hero { grid-column: span 7; }
.solution-photo--companion { grid-column: span 5; }
.solution-photo span { padding-right: 42px; transition: transform .35s cubic-bezier(.16,1,.3,1); }
.solution-photo span::after { position: absolute; right: 0; bottom: 1px; content: "↗"; font-size: 24px; font-weight: 800; }
.solution-photo:hover span { transform: translateY(-4px); }

.production-head { grid-template-columns: minmax(0, 1.7fr) minmax(310px, .55fr); gap: clamp(38px, 6vw, 96px); }
.production-head h2 { max-width: none; font-size: clamp(58px, 5.8vw, 94px); line-height: .88; }
.production-head h2 span { display: block; }
.production-steps { position: relative; }
.production-steps::after {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 22%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--lime) 32%, var(--pink) 68%, transparent);
  content: "";
  pointer-events: none;
  transform: translateX(-110%);
  will-change: transform;
  animation: productionProgress 7s cubic-bezier(.45,0,.2,1) infinite;
}
.production-step { position: relative; }
.production-steps.is-visible .production-step { animation: productionStepRise .6s cubic-bezier(.16,1,.3,1) both; }
.production-steps.is-visible .production-step:nth-child(2) { animation-delay: .07s; }
.production-steps.is-visible .production-step:nth-child(3) { animation-delay: .14s; }
.production-steps.is-visible .production-step:nth-child(4) { animation-delay: .21s; }
.production-steps.is-visible .production-step:nth-child(5) { animation-delay: .28s; }
.production-step::before { transition: color .25s ease, transform .25s ease; transform-origin: left center; }
.production-step:hover::before { color: #7650dc; transform: translateX(6px); }

.final-cta { background: var(--lime); }
.final-cta::before,
html.pattern-motion-ready .final-cta::before {
  display: block;
  position: absolute;
  inset: -20%;
  background: url("../images/patterns/dots.webp") center / 620px 620px repeat;
  mix-blend-mode: multiply;
  opacity: .38;
  content: "";
  pointer-events: none;
  animation: finalPatternMove 28s ease-in-out infinite alternate;
}

.site-footer { padding: 58px 0 28px; }
.footer-intro { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(440px, 1.28fr); gap: clamp(42px, 8vw, 130px); align-items: end; padding-bottom: 42px; }
.footer-brand p { max-width: 430px; margin: 18px 0 0; }
.footer-callout { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px 26px; align-items: center; padding: 24px 26px; border: 1px solid #35363a; border-radius: var(--radius); background: #1a1a1d; }
.footer-callout span { grid-column: 1 / -1; color: #8c8f96; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-callout strong { max-width: 670px; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.3; }
.footer-callout a, .footer-contact-link { color: var(--lime) !important; font-weight: 850; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.footer-grid { grid-template-columns: 1.05fr 1.35fr 1fr .82fr 1.05fr; gap: clamp(28px, 4vw, 68px); padding-top: 38px; border-top: 1px solid #35363a; }
.footer-column a { width: fit-content; margin: 9px 0; color: #e9e9eb; font-size: 13px; transition: color .18s ease, transform .18s ease; }
.footer-column a:hover { color: var(--lime); transform: translateX(3px); }
.footer-column p { max-width: 250px; margin: 14px 0 18px; color: #8c8f96; font-size: 13px; }
.footer-contact > a:first-of-type { font-size: 16px; font-weight: 750; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; margin-top: 42px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--lime); }

@keyframes ambientPatternMove {
  from { transform: translate3d(-1.2vw, -1vh, 0) scale(1.02); }
  to { transform: translate3d(2.4vw, 2vh, 0) scale(1.02); }
}
@keyframes finalPatternMove {
  from { transform: translate3d(-1.5%, -1%, 0) rotate(-.2deg); }
  to { transform: translate3d(1.5%, 1%, 0) rotate(.2deg); }
}
@keyframes productionProgress {
  0% { transform: translateX(-110%); }
  44%, 56% { transform: translateX(280%); }
  100% { transform: translateX(560%); }
}
@keyframes productionStepRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 901px) {
  .production-head h2 span:last-child { white-space: nowrap; }
}

@media (max-width: 1180px) {
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .production-head { grid-template-columns: 1fr; gap: 20px; }
  .production-head h2 { font-size: clamp(52px, 10vw, 76px); }
  .footer-intro { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .solution-photo--hero, .solution-photo--companion { grid-column: auto; }
  .solution-photo:first-child, .solution-photo:last-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body::after { background-size: 560px 560px; opacity: .03; }
  .production-head h2 { font-size: clamp(46px, 14vw, 64px); }
  .footer-callout { grid-template-columns: 1fr; padding: 22px; }
  .footer-callout span { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { grid-template-columns: 1fr; }
  .product-calculator { padding: 16px; box-shadow: 5px 6px 0 var(--lime); }
  .product-calculator .calc-grid { grid-template-columns: 1fr; }
  .product-calculator .calc-grid > .field:first-child { grid-column: auto; }
  .price-metrics > div { min-height: 90px; padding: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  body::after, .final-cta::before, .production-steps::after { animation: none; }
  body::after { opacity: .026; }
  .production-steps.is-visible .production-step { animation: none; }
}

@media print {
  body::after { display: none; }
}

/* Long-form SEO landing pages */
.seo-article-hero { padding: 34px 0 62px; border-bottom: 1px solid var(--line); background: linear-gradient(145deg, rgba(203,242,77,.16), rgba(167,139,250,.08) 44%, rgba(126,215,247,.08)); }
.seo-article-hero__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(240px, .5fr); gap: clamp(44px, 8vw, 140px); align-items: end; margin-top: 42px; }
.seo-article-hero h1 { max-width: 1050px; margin: 12px 0 24px; font-size: clamp(46px, 6.4vw, 104px); line-height: .94; letter-spacing: -.065em; text-wrap: balance; }
.seo-article-hero__grid > div > p:not(.eyebrow) { max-width: 820px; color: #5f6268; font-size: clamp(17px, 1.45vw, 22px); line-height: 1.55; }
body[data-content-hub-page] .seo-article-hero { padding-bottom: 42px; }
body[data-content-hub-page] .seo-article-hero__grid { margin-top: 28px; }
body[data-content-hub-page] .seo-article-hero h1 { font-size: clamp(46px, 5.2vw, 80px); }
.seo-article-meta { display: grid; gap: 0; margin: 0; border: 1px solid var(--ink); border-radius: 22px; overflow: hidden; background: rgba(255,255,255,.82); box-shadow: 8px 8px 0 var(--lime); }
.seo-article-meta div { display: flex; justify-content: space-between; gap: 20px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.seo-article-meta div:last-child { border-bottom: 0; }
.seo-article-meta dt { color: var(--muted); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.seo-article-meta dd { margin: 0; font-weight: 800; text-align: right; }
.seo-article-section { padding: clamp(52px, 7vw, 104px) 0; }
.seo-article-layout { display: grid; grid-template-columns: 260px minmax(0, 920px); gap: clamp(46px, 8vw, 120px); justify-content: center; align-items: start; }
.seo-article-toc { position: sticky; top: 114px; display: grid; gap: 0; max-height: calc(100vh - 140px); overflow: auto; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.9); backdrop-filter: blur(14px); }
.seo-article-toc strong { padding: 5px 8px 13px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.seo-article-toc a { padding: 9px 8px; border-top: 1px solid #ececef; color: #676a70; font-size: 12px; font-weight: 650; line-height: 1.35; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.seo-article-toc a:hover { color: var(--ink); transform: translateX(4px); }
.seo-article-body { min-width: 0; color: #2c2e31; font-size: clamp(16px, 1.15vw, 19px); line-height: 1.76; }
.seo-article-body > p:first-of-type { margin-top: 0; color: var(--ink); font-size: clamp(20px, 1.7vw, 27px); line-height: 1.5; }
.seo-article-body h2 { scroll-margin-top: 120px; margin: clamp(56px, 7vw, 92px) 0 20px; padding-top: 24px; border-top: 1px solid var(--ink); color: var(--ink); font-size: clamp(30px, 3.4vw, 52px); line-height: 1.03; letter-spacing: -.045em; text-wrap: balance; }
.seo-article-body h3 { margin: 38px 0 12px; color: var(--ink); font-size: clamp(21px, 2vw, 30px); line-height: 1.22; letter-spacing: -.025em; }
.seo-article-body p { margin: 0 0 22px; }
.seo-article-image { margin: 0 0 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #f1f1f3; }
.seo-article-image img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.seo-article-image + p:has(> em:only-child) { margin-top: -6px; color: #6b6d72; font-size: 13px; line-height: 1.45; }
.seo-article-body a { color: #5d2bc8; font-weight: 720; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.seo-article-body ul, .seo-article-body ol { display: grid; gap: 10px; margin: 20px 0 32px; padding-left: 1.4em; }
.seo-article-body li::marker { color: #7138e2; font-weight: 900; }
.seo-table-wrap { width: 100%; margin: 26px 0 42px; overflow-x: auto; border: 1px solid var(--ink); border-radius: 18px; background: white; box-shadow: 5px 5px 0 rgba(203,242,77,.9); }
.seo-table-wrap table { width: 100%; min-width: 690px; border-collapse: collapse; font-size: 14px; line-height: 1.45; }
.seo-table-wrap th, .seo-table-wrap td { padding: 15px 16px; border-right: 1px solid #dfe0e3; border-bottom: 1px solid #dfe0e3; text-align: left; vertical-align: top; }
.seo-table-wrap th:last-child, .seo-table-wrap td:last-child { border-right: 0; }
.seo-table-wrap tbody tr:last-child td { border-bottom: 0; }
.seo-table-wrap th { background: var(--ink); color: white; font-size: 12px; letter-spacing: .035em; }
.seo-table-wrap tbody tr:nth-child(even) { background: #f7f7f8; }
.seo-hub-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.seo-hub-card { display: flex; min-height: 310px; flex-direction: column; padding: 28px; border: 1px solid var(--ink); border-radius: 24px; background: white; color: var(--ink); text-decoration: none; box-shadow: 0 0 0 transparent; transition: transform .25s cubic-bezier(.2,.75,.2,1), box-shadow .25s ease, background .25s ease; }
.seo-hub-card:nth-child(4n+1) { background: #f4ffd0; }
.seo-hub-card:nth-child(4n+2) { background: #fff0f8; }
.seo-hub-card:nth-child(4n+3) { background: #eef9ff; }
.seo-hub-card:hover { transform: translate(-4px,-4px); box-shadow: 8px 8px 0 var(--ink); }
.seo-hub-card span { color: #6d7076; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.seo-hub-card h2 { margin: 20px 0 14px; font-size: clamp(23px, 2vw, 32px); line-height: 1.05; letter-spacing: -.04em; }
.seo-hub-card p { margin: 0; color: #676a70; line-height: 1.5; }
.seo-hub-card b { margin-top: auto; padding-top: 24px; }
.seo-hub-card[hidden] { display: none !important; }
.content-hub-toolbar { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr) auto; gap: 18px; align-items: end; margin: 0 0 34px; padding: 20px; border: 1px solid var(--ink); border-radius: 24px; background: rgba(255,255,255,.92); box-shadow: 7px 7px 0 var(--lime); }
.content-hub-toolbar--search { grid-template-columns: minmax(280px,620px) auto; justify-content: space-between; }
.content-hub-search { display: grid; gap: 8px; color: #65686e; font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.content-hub-search input { width: 100%; min-height: 48px; padding: 0 16px; border: 1px solid #cfd1d5; border-radius: 13px; background: #f7f7f8; color: var(--ink); font: 650 14px/1.2 "Manrope", sans-serif; outline: 0; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.content-hub-search input:focus { border-color: var(--ink); background: #fff; box-shadow: 0 0 0 3px rgba(159,122,234,.24); }
.content-hub-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.content-hub-filters button { min-height: 42px; padding: 9px 13px; border: 1px solid #cfd1d5; border-radius: 999px; background: #fff; color: var(--ink); cursor: pointer; font: 750 12px/1 "Manrope", sans-serif; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.content-hub-filters button:hover { transform: translateY(-2px); border-color: var(--ink); }
.content-hub-filters button[aria-pressed="true"] { border-color: var(--ink); background: var(--lime); box-shadow: 2px 3px 0 var(--ink); }
.content-hub-filters button span { display: inline-grid; min-width: 21px; height: 21px; margin-left: 5px; place-items: center; border-radius: 999px; background: rgba(17,17,17,.08); font-size: 10px; }
.content-hub-result { min-width: 120px; margin: 0 0 13px; color: #74777c; font-size: 12px; text-align: right; }
.content-hub-result strong { color: var(--ink); }
.content-hub-empty { padding: 64px 24px; border: 1px dashed #b8bbc0; border-radius: 24px; text-align: center; }
.content-hub-empty h2 { margin: 0 0 10px; font-size: clamp(28px, 3vw, 44px); }
.content-hub-empty p { margin: 0; color: var(--muted); }
.content-hub-intro { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin: 0 0 30px; }
.content-hub-intro p { margin: 0; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--soft); color: var(--muted); line-height: 1.65; }
.content-hub-intro a { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 900px) {
  .seo-article-hero__grid { grid-template-columns: 1fr; gap: 32px; margin-top: 28px; }
  .seo-article-hero h1 { font-size: clamp(42px, 11vw, 72px); }
  .seo-article-meta { max-width: 520px; }
  .seo-article-layout { grid-template-columns: 1fr; }
  .seo-article-toc { position: relative; top: auto; max-height: 260px; }
  .seo-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-hub-toolbar { grid-template-columns: 1fr; align-items: stretch; }
  .content-hub-result { margin: 0; text-align: left; }
}

@media (max-width: 620px) {
  .seo-article-hero { padding: 20px 0 42px; }
  .seo-article-hero h1 { letter-spacing: -.055em; }
  .seo-article-section { padding: 44px 0 68px; }
  .seo-article-layout { gap: 36px; }
  .seo-article-body h2 { margin-top: 52px; }
  .seo-table-wrap { width: calc(100vw - 30px); margin-left: 0; border-radius: 14px; }
  .seo-hub-grid { grid-template-columns: 1fr; }
  .seo-hub-card { min-height: 250px; padding: 24px; }
  .content-hub-toolbar { margin-bottom: 26px; padding: 15px; border-radius: 18px; box-shadow: 5px 5px 0 var(--lime); }
  .content-hub-filters { flex-wrap: nowrap; margin: 0 -15px; padding: 3px 15px 8px; overflow-x: auto; scrollbar-width: none; }
  .content-hub-filters::-webkit-scrollbar { display: none; }
  .content-hub-filters button { flex: 0 0 auto; }
  .content-hub-intro { grid-template-columns: 1fr; }
}

/* Lead forms: shared feedback dialog, contact page and cart request. */
.quick-contact { position: fixed; z-index: 240; right: 22px; bottom: 22px; min-height: 54px; display: inline-flex; align-items: center; gap: 13px; padding: 13px 18px; border: 1.5px solid var(--ink); border-radius: 17px; color: var(--ink); background: var(--lime); box-shadow: 6px 7px 0 var(--ink); font-weight: 850; transition: transform .2s ease, box-shadow .2s ease; }
.quick-contact:hover { transform: translate(-2px,-2px); box-shadow: 8px 9px 0 var(--ink); }
.quick-contact span { font-size: 22px; line-height: 1; }
.contact-dialog { width: min(780px, calc(100% - 28px)); max-height: calc(100dvh - 28px); padding: 0; border: 0; border-radius: 28px; background: #fff; box-shadow: 0 28px 90px rgba(0,0,0,.3); overflow: auto; }
.contact-dialog::backdrop { background: rgba(17,17,17,.68); backdrop-filter: blur(5px); }
.contact-dialog__inner { padding: clamp(22px, 4vw, 38px); }
.contact-dialog__head { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; align-items: start; margin-bottom: 25px; }
.contact-dialog__head h2 { margin: 3px 0 10px; font-size: clamp(34px, 5vw, 56px); line-height: .96; letter-spacing: -.055em; }
.contact-dialog__head p:last-child { max-width: 610px; margin: 0; color: var(--muted); }
.contact-dialog__close { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--soft); font-size: 25px; line-height: 1; }
.contact-dialog__close:hover { border-color: var(--ink); background: var(--pink); }
.contact-dialog__links { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 22px; padding-top: 19px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 750; }
.contact-dialog__links a { text-decoration: underline; text-underline-offset: 4px; }
.consultation-nudge { position: fixed; z-index: 255; right: 22px; bottom: 94px; width: min(370px, calc(100% - 28px)); padding: 20px; border: 1.5px solid var(--ink); border-radius: 22px; background: #fff; box-shadow: 8px 9px 0 var(--ink); opacity: 0; transform: translateY(14px) scale(.985); transition: opacity .18s ease, transform .18s ease; }
.consultation-nudge.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.consultation-nudge__close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--soft); font-size: 21px; line-height: 1; }
.consultation-nudge .eyebrow { margin: 0 42px 7px 0; }
.consultation-nudge h2 { margin: 0 42px 8px 0; font-size: 27px; line-height: 1; letter-spacing: -.045em; }
.consultation-nudge__copy { margin: 0 0 15px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.lead-form--consultation { gap: 11px; }
.lead-form--consultation .lead-consent { font-size: 10px; }
.lead-form--consultation .lead-form__status { min-height: 0; }
body.consultation-nudge-open .quick-contact { opacity: 0; visibility: hidden; pointer-events: none; }
.lead-form { display: grid; gap: 16px; }
.lead-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.lead-field { min-width: 0; display: grid; gap: 7px; color: #555960; font-size: 12px; font-weight: 800; }
.lead-field--wide { grid-column: 1 / -1; }
.lead-field .input { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid #cfd1d5; border-radius: 13px; color: var(--ink); background: #fff; outline: 0; }
.lead-field textarea.input { min-height: 118px; resize: vertical; line-height: 1.45; }
.lead-field .input:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(167,139,250,.2); }
.lead-field .input[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(180,35,24,.12); }
.lead-consent { display: grid; grid-template-columns: 20px minmax(0,1fr); gap: 10px; align-items: start; color: var(--muted); font-size: 11px; line-height: 1.45; }
.lead-consent input { width: 18px; height: 18px; margin: 0; accent-color: #98c700; }
.lead-form__hint { margin: -4px 0 0; color: var(--muted); font-size: 11px; }
.lead-form__submit { width: 100%; }
.lead-form__submit:disabled { cursor: progress; opacity: .62; }
.lead-form__status { min-height: 22px; margin: 0; font-size: 12px; font-weight: 750; line-height: 1.45; }
.lead-form__status[data-state="success"] { color: var(--success); }
.lead-form__status[data-state="error"] { color: var(--danger); }
.lead-form__trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.cart-lead { display: grid; gap: 13px; margin-top: 24px; padding-top: 22px; border-top: 1.5px solid rgba(17,17,17,.35); }
.cart-lead h3 { margin: 0; font-size: 21px; line-height: 1.05; letter-spacing: -.035em; }
.cart-lead > p { margin: -5px 0 0; color: #39421f; font-size: 11px; line-height: 1.5; }
.cart-lead .lead-form__grid { grid-template-columns: 1fr; gap: 10px; }
.cart-lead .lead-field--wide { grid-column: auto; }
.cart-lead .lead-field .input { min-height: 44px; padding: 10px 12px; }
.cart-lead .lead-field textarea.input { min-height: 86px; }
.contact-page { position: relative; overflow: hidden; background: linear-gradient(145deg, rgba(203,242,77,.18), rgba(126,215,247,.1) 48%, rgba(255,140,199,.09)); }
.contact-page__layout { display: grid; grid-template-columns: minmax(0,.82fr) minmax(520px,1.18fr); gap: clamp(50px,8vw,130px); align-items: start; }
.contact-page__intro h1 { max-width: 760px; margin: 34px 0 25px; font-size: clamp(54px,7vw,108px); line-height: .9; letter-spacing: -.07em; }
.contact-page__intro > p:not(.eyebrow) { max-width: 670px; color: var(--muted); font-size: clamp(17px,1.5vw,22px); }
.contact-page__direct { display: grid; gap: 9px; margin-top: 38px; padding-top: 25px; border-top: 1px solid var(--ink); }
.contact-page__direct span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-page__direct a { width: fit-content; font-weight: 800; text-decoration: underline; text-underline-offset: 5px; }
.contact-page__form-card { padding: clamp(22px,3vw,36px); border: 1.5px solid var(--ink); border-radius: 28px; background: #fff; box-shadow: 10px 11px 0 var(--ink); }

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

@media (max-width: 620px) {
  .quick-contact { right: 14px; bottom: 14px; min-height: 48px; padding: 11px 14px; border-radius: 14px; box-shadow: 4px 5px 0 var(--ink); font-size: 13px; }
  .consultation-nudge { right: 12px; bottom: 72px; width: calc(100% - 24px); padding: 17px; border-radius: 18px; box-shadow: 5px 6px 0 var(--ink); }
  .consultation-nudge h2 { font-size: 24px; }
  .consultation-nudge__copy { font-size: 12px; }
  .contact-dialog__inner { padding: 20px; }
  .contact-dialog__head { gap: 12px; }
  .lead-form__grid { grid-template-columns: 1fr; }
  .lead-field--wide { grid-column: auto; }
  .contact-page__intro h1 { margin-top: 25px; }
  .contact-page__form-card { padding: 18px; border-radius: 20px; box-shadow: 6px 7px 0 var(--ink); }
}

/* Mobile audit 2026-09-05: keep navigation and commerce controls unobstructed. */
body.is-locked .pg-snake-guide-layer,
body.is-locked .quick-contact,
body.is-locked .consultation-nudge { opacity: 0; visibility: hidden; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .consultation-nudge { transition: none; }
}

@media (max-width: 900px) {
  .pg-snake-guide-layer { display: none !important; }
  [data-pg-snake-active="true"] { outline: 0 !important; animation: none !important; }
  .quick-contact { min-width: 108px; min-height: 48px; justify-content: center; gap: 7px; font-size: 0; }
  .quick-contact::before { content: "Написать"; font-size: 12px; }
  .quick-contact span { font-size: 18px; }
}

@media (max-width: 620px) {
  .gallery-orbit { padding: 0; }
  .gallery-thumbs { gap: 7px; justify-content: flex-start; padding: 3px 1px 8px; }
  .gallery-thumb { width: 54px; height: 54px; flex-basis: 54px; padding: 4px; border-radius: 11px; }
  .gallery-thumb.is-active { transform: translateY(-2px); }
  .gallery-scrub-hint { display: none; }
}
