/* ============================================================
   STICKR LAB — main stylesheet
   1.  Tokens
   2.  Reset & base
   3.  Utilities / shared blocks
   4.  Announcement ticker
   5.  Header + navigation
   6.  Hero
   7.  Category strip
   8.  Use cases
   9.  Audience
   10. Process + spec panel
   11. Materials
   12. Sticker wall
   13. Pricing
   14. File guide
   15. Testimonials
   16. Closing CTA
   17. Footer
   18. Back to top / modal / drawer
   19. Motion
   20. Responsive
   ============================================================ */

/* 1. Tokens ------------------------------------------------ */
:root {
  --paper: #f6f8fb;
  --paper-2: #e8edf5;
  --card: #ffffff;
  --ink: #141923;
  --ink-soft: #3a4454;
  --muted: #6b788e;
  --line: rgba(20, 25, 35, 0.08);
  --line-strong: rgba(20, 25, 35, 0.70);
  --acid: #a3b8d1;
  --acid-deep: #5d82b3;
  --violet: #d07560;
  --violet-ink: #fdf6f4;
  --shadow-hard: 3px 3px 0 var(--ink);
  --shadow-soft: 0 16px 36px -20px rgba(20, 25, 35, 0.12);

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  --shell: 1240px;
  --gutter: 24px;
  --radius: 12px;
  --radius-lg: 20px;
  --section-y: clamp(64px, 8vw, 112px);
  --header-h: 68px;
}

/* 2. Reset & base ------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden;}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);   /* new — reserves space for the fixed header */
}
img, svg { max-width: 100%; display: block; }

a { text-decoration: none; }

button, input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
  text-transform: uppercase;
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 8px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* 3. Utilities / shared blocks ------------------------------ */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 5vw, 72px); }

.section-head { margin-bottom: 42px; max-width: 62ch; }

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(30px, 4.6vw, 54px);
}

.section-lede {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  max-width: 58ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--card);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--solid { background: var(--ink); color: #ffffff; border-color: var(--ink); }
.btn--solid:hover { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.btn--acid { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.btn--acid:hover { background: var(--ink); color: #ffffff; border-color: var(--ink); }
.btn--ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #ffffff; border-color: var(--ink); }
.btn--sm { padding: 9px 18px; font-size: 11px; }
.btn--block { width: 100%; justify-content: center; }

.card {
  background: #141923;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin: 4px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--ink-soft);
  display: inline-block;
}

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* 4. Announcement ticker ------------------------------------ */
.ticker {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 8px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ticker__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: slide-left 34s linear infinite;
}
.ticker__item { white-space: nowrap; opacity: 0.9; }
.ticker__item span { color: var(--violet); }

/* 5. Header ------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 90;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-stuck { box-shadow: 0 12px 32px -20px rgba(13, 14, 18, 0.18); border-bottom-color: rgba(13, 14, 18, 0.18); }

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { width: 30px; height: 30px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand__name em { font-style: normal; color: var(--acid); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  border: 0;
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--paper) 90%, transparent);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background 0.16s ease, color 0.16s ease;
}
.nav__link:hover { background: #a3b8d1; color: #141923; }
.nav__link[aria-current="page"] { background: var(--acid); color: var(--ink); font-weight: 700; }

.nav__item { position: relative; }
.nav__caret { width: 9px; transition: transform 0.2s ease; }
.nav__item.is-open .nav__caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  inset-inline-start: 0;
  top: calc(100% + 10px);
  min-width: 210px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav__item.is-open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.dropdown a:hover { background: var(--paper-2); color: var(--acid); }
.dropdown a small {
  display: block;
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.tools { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease, border-color 0.16s ease;
}
.icon-btn:hover { background: var(--ink); color: #ffffff; border-color: var(--ink); transform: translateY(-2px); }
.icon-btn svg { width: 17px; height: 17px; }
.icon-btn__lang {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.icon-btn .icon-sun { display: none; }
.nav-toggle { display: none; }

/* 6. Hero --------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(48px, 6vw, 84px) clamp(40px, 5vw, 64px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.hero__title {
  font-size: clamp(42px, 7.2vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.hero__title mark {
  background: var(--acid);
  color: #ffffff;
  padding: 0 0.15em;
  border-radius: 4px;
  box-decoration-break: clone;
}
.hero__copy {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 48ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 34px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.hero__meta li::before { content: "◆"; color: var(--violet); margin-inline-end: 8px; }

.hero__stage { position: relative; min-height: 360px; }
.sticker {
  position: absolute;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--card);
  box-shadow: var(--shadow-hard);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.02em;
  animation: float-y 7s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.sticker:hover { transform: scale(1.05) translateY(-4px) !important; box-shadow: 0 16px 32px -12px rgba(13, 14, 18, 0.35); }
.sticker small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 5px;
}
.sticker--a { top: 2%; inset-inline-start: 4%; background: var(--violet); color: #fff; transform: rotate(-7deg); }
.sticker--a small { color: rgba(255, 255, 255, 0.82); }
.sticker--b { top: 22%; inset-inline-start: 34%; background: var(--acid); color: #fff; animation-delay: -1.4s; transform: rotate(4deg); }
.sticker--b small { color: rgba(255, 255, 255, 0.82); }
.sticker--c { top: 6%; inset-inline-end: 2%; background: var(--ink); color: #fff; animation-delay: -2.6s; transform: rotate(8deg); }
.sticker--c small { color: rgba(255, 255, 255, 0.75); }
.sticker--d { bottom: 12%; inset-inline-start: 12%; background: var(--card); color: var(--ink); animation-delay: -3.4s; transform: rotate(-3deg); }
.sticker--e { bottom: 2%; inset-inline-end: 8%; background: var(--violet); color: #ffffff; animation-delay: -4.8s; transform: rotate(6deg); }
.sticker--e small { color: rgba(255, 255, 255, 0.8); }
.sticker--e small { color: rgba(255, 255, 255, 0.6); }
.sticker__round {
  position: absolute;
  bottom: 30%;
  inset-inline-end: 26%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: repeating-conic-gradient(from 0deg, #ffd166 0 25%, #fff 0 50%);
  box-shadow: var(--shadow-hard);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  animation: spin-slow 16s linear infinite;
}

/* 7. Category strip ----------------------------------------- */
.strip {
  background: var(--acid);
  color: var(--ink);
  border-block: 1.5px solid var(--ink);
  padding: 11px 0;
  overflow: hidden;
}
.strip__track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: slide-left 26s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.strip__track span::before { content: "✦"; margin-inline-end: 12px; opacity: 0.8; }

/* 8. Use cases ---------------------------------------------- */
.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}
.split-head .section-lede { margin-top: 0; }

.split-head--catalogue { align-items: start; grid-template-columns: minmax(0, 1fr) auto; }
.accent-coral { color: var(--violet); }
.catalogue-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  justify-self: end;
  padding-top: 8px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 18px;
}
.bento-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(220px, 24vw, 300px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.bento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: var(--line-strong); }

.bento-card__top { display: flex; align-items: center; justify-content: space-between; }
.bento-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--ink);
}
.bento-card__arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line-strong);
  font-size: 15px;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.bento-card__arrow:hover { background: var(--acid); color: #ffffff; transform: rotate(45deg); border-color: var(--acid); }

.bento-card__body h3 {
  font-size: clamp(18px, 2vw, 22px);
  text-transform: uppercase;
  color: var(--ink);
}
.bento-card__body p {
  margin-top: 4px;
  font-size: 13px;
  max-width: 26ch;
  color: var(--muted);
}

/* Card fills */
.bento-card--labels { background: linear-gradient(155deg, #ffffff 0%, #f6f8fb 55%, #e8edf5 100%); }
.bento-card--diecut { background: linear-gradient(135deg, #a3b8d1 0%, #d07560 100%); }
.bento-card--barcode { background: var(--ink); }
.bento-card--decals { background: linear-gradient(150deg, #141923 0%, #2b394e 55%, #a3b8d1 100%); }

.bento-card--barcode .bento-card__body p,
.bento-card--decals .bento-card__body p,
.bento-card--diecut .bento-card__body p { color: rgba(255, 255, 255, 0.85); }
.bento-card--barcode .bento-card__body h3 { color: #ffffff; }
.bento-card--decals .bento-card__body h3,
.bento-card--diecut .bento-card__body h3 { color: #fff; }

.bento-card--barcode .bento-card__num,
.bento-card--decals .bento-card__num,
.bento-card--diecut .bento-card__num,
.bento-card--barcode .bento-card__arrow,
.bento-card--decals .bento-card__arrow,
.bento-card--diecut .bento-card__arrow {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.bento-card--barcode .bento-card__arrow:hover,
.bento-card--decals .bento-card__arrow:hover,
.bento-card--diecut .bento-card__arrow:hover { background: #fff; color: var(--ink); border-color: #fff; }

.bento-card--barcode::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  height: 64px;
  background: repeating-linear-gradient(90deg, #ffffff 0 3px, transparent 3px 7px, #ffffff 7px 9px, transparent 9px 16px);
  opacity: 0.85;
}

/* Card images ------------------------------------------------- */
.bento-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-card:hover .bento-card__media { transform: scale(1.05); }

.bento-card__top,
.bento-card__body {
  position: relative;
  z-index: 2;
}

/* Darken the bottom so text stays readable over any photo */
.bento-card:has(.bento-card__media)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 35%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.bento-card:has(.bento-card__media) .bento-card__body h3 { color: #fff; }
.bento-card:has(.bento-card__media) .bento-card__body p { color: rgba(255,255,255,0.85); }

.bento-card:has(.bento-card__media) .bento-card__num,
.bento-card:has(.bento-card__media) .bento-card__arrow {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.bento-card:has(.bento-card__media) .bento-card__arrow:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Hide the decorative barcode lines once a real photo is used */
.bento-card--barcode:has(.bento-card__media)::before { display: none; }

@media (max-width: 900px) {
  .split-head--catalogue { grid-template-columns: minmax(0, 1fr); }
  .catalogue-tag { justify-self: start; padding-top: 0; }
  .bento-grid { grid-template-columns: minmax(0, 1fr); }
  .bento-card { min-height: 220px; }
}

/* 9. Audience ----------------------------------------------- */
.audience { background: var(--paper-2); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.audience-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.audience-card__art { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink); }
.audience-card__art img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.audience-card:hover .audience-card__art img { transform: scale(1.06); }
.audience-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.audience-card h3 { font-size: 16px; color: var(--ink); }
.audience-card p { font-size: 13.5px; color: var(--muted); }
.audience-card__meta {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: auto;
}

/* 10. Process ----------------------------------------------- */
.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: start;
}
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  transition: border-color 0.2s ease;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  opacity: 0.22;
  line-height: 1;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.step h3 { font-size: 18px; margin-bottom: 8px; color: var(--ink); }
.step p { color: var(--muted); font-size: 14px; }
.step:hover .step__num { opacity: 1; color: var(--acid); }

.spec-panel {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  border: 1px solid var(--line-strong);
}
.spec-panel h3 { font-size: 16px; color: var(--violet); margin-bottom: 20px; }
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}
.spec-row dt { display: flex; align-items: center; gap: 10px; opacity: 0.85; }
.spec-row dt::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--acid);
  border-radius: 2px;
  flex: none;
}
.spec-row dd { margin: 0; font-family: var(--font-mono); font-size: 11.5px; text-align: end; }
.spec-panel__note {
  margin-top: 22px;
  font-size: 12.5px;
  opacity: 0.6;
  line-height: 1.5;
}

/* 11. Materials --------------------------------------------- */
.material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.material-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.material-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.material-card__swatch {
  height: 116px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.material-card__swatch::after {
  content: attr(data-code);
  position: absolute;
  inset-block-end: 10px;
  inset-inline-end: 12px;
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: rgba(17, 17, 16, 0.55);
}
.swatch--matte { background: linear-gradient(140deg, #fafafa, #e7e6e1); }
.swatch--gloss { background: linear-gradient(140deg, #ffffff 0%, #d9dde3 45%, #ffffff 100%); }
.swatch--holo { background: linear-gradient(120deg, #ff8ad4, #ffe27a, #7ef2c6, #7fb5ff, #d09bff); }
.swatch--clear {
  background:
    linear-gradient(140deg, rgba(160, 205, 220, 0.5), rgba(255, 255, 255, 0.2)),
    repeating-conic-gradient(#e9e9e5 0 25%, #fdfdfb 0 50%) 0 0 / 18px 18px;
}
.swatch--kraft { background: linear-gradient(140deg, #d9bf96, #c3a274); }
.swatch--chrome { background: linear-gradient(105deg, #c8ccd2 0%, #f7f8fa 20%, #9aa1ab 46%, #eef0f3 68%, #b3b9c2 100%); }
.material-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.material-card h3 { font-size: 17px; }
.material-card__sub {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.material-card p { font-size: 13.5px; color: var(--muted); }
.material-card__props {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* 12. Sticker wall ------------------------------------------ */
/* ============================================================
   12. STICKER WALL — INTERACTIVE HORIZONTAL WALL
   ============================================================ */

.sl-wall {
  position: relative;
  width: 100%;
  height: min(720px, 100vh);
  min-height: 570px;
  overflow: hidden;
  background: #0b0b0b;
  color: #fff;
  border-top: 1px solid #242424;
  border-bottom: 1px solid #242424;
  isolation: isolate;
}

/* Top bar --------------------------------------------------- */

.sl-wall__top {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 58px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: #0b0b0b;
}

.sl-wall__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.sl-wall__brand > span:last-child span {
  color: var(--acid);
}

.sl-wall__logo {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #f5f4ef;
  transform: rotate(-8deg);
  overflow: hidden;
}

.sl-wall__logo::before,
.sl-wall__logo::after,
.sl-wall__logo span {
  content: "";
  position: absolute;
  width: 4px;
  height: 21px;
  border-radius: 999px;
  background: var(--acid);
}

.sl-wall__logo::before {
  transform: rotate(45deg);
}

.sl-wall__logo::after {
  transform: rotate(-45deg);
}

.sl-wall__logo span:nth-child(1) {
  transform: rotate(0deg);
  background: var(--violet);
}

.sl-wall__logo span:nth-child(2) {
  transform: rotate(90deg);
  background: #ffffff;
}

.sl-wall__logo span:nth-child(3) {
  display: none;
}

.sl-wall__logo span:nth-child(4) {
  display: none;
}

.sl-wall__menu {
  width: 34px;
  height: 34px;
  border: 0;
  padding: 5px 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.sl-wall__menu i {
  display: block;
  width: 24px;
  height: 2px;
  margin-left: auto;
  background: #fff;
}

/* Horizontal wall viewport --------------------------------- */

.sl-wall__viewport {
  position: absolute;
  inset: 58px 0 0;
  overflow: hidden;
  cursor: grab;
}

.sl-wall__viewport.is-dragging {
  cursor: grabbing;
}

.sl-wall__canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 300vw;
  min-width: 2200px;
  height: 100%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* Huge background typography ------------------------------- */

.sl-wall__word {
  position: absolute;
  left: 105px;
  top: 165px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(70px, 10vw, 138px);
  line-height: .8;
  font-weight: 800;
  letter-spacing: -.075em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.10);
  pointer-events: none;
  user-select: none;
}

/* Heading overlay ------------------------------------------- */

.sl-wall__heading {
  position: absolute;
  top: 90px;
  left: 34px;
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  pointer-events: none;
}

.sl-wall__pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border: 1.5px solid var(--violet);
  border-radius: 999px;
  color: var(--violet);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sl-wall__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.sl-wall__title span {
  background: linear-gradient(90deg, #ff4d85 0%, #ff8a5c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* inside @media (max-width: 900px) */
.sl-wall__heading { top: 78px; left: 22px; }

/* inside @media (max-width: 620px) */
.sl-wall__heading { top: 72px; left: 18px; gap: 10px; }
.sl-wall__title { font-size: 26px; }
.sl-wall__pill { padding: 6px 14px; font-size: 15px; }
/* Sticker base --------------------------------------------- */

.sl-sticker {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 17px;
  transform-origin: center;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.45));
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    filter .35s ease;
  z-index: 5;
}

.sl-sticker:hover {
  z-index: 15;
  filter: drop-shadow(0 20px 28px rgba(0,0,0,.6));
}

.sl-photo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 17px;
  border: 1px solid rgba(255,255,255,.3);
  background: #eee;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.18),
    0 0 30px rgba(255,255,255,.07);
}

.sl-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Brand sticker -------------------------------------------- */

.sl-sticker--brand {
  left: 2%;
  top: 8%;
  width: 200px;
  height: 200px;
  transform: rotate(-8deg);
}

.sl-photo--brand {
  background:
    linear-gradient(135deg,#fff 0 45%,#e8e8e8 45% 100%);
  padding: 25px 13px;
}

.brand-mini {
  color: #1777ff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  line-height: .9;
  transform: rotate(-4deg);
}

.brand-blocks {
  position: absolute;
  right: 14px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 3px;
}

.brand-blocks b:nth-child(1) { background:#ff4e77; }
.brand-blocks b:nth-child(2) { background:#713aff; }
.brand-blocks b:nth-child(3) { background:#9bd936; }
.brand-blocks b:nth-child(4) { background:#f8ca35; }

/* Laptop --------------------------------------------------- */

.sl-sticker--laptop {
  left: 9%;
  top: 54%;
  width: 215px;
  height: 170px;
  transform: rotate(5deg);
}

.sl-photo--laptop {
  background: linear-gradient(150deg,#76634e,#b5a083 48%,#604d3b);
  padding: 13px;
}

.laptop-screen {
  position: absolute;
  left: 28px;
  top: 13px;
  width: 73px;
  height: 54px;
  border: 3px solid #222;
  border-radius: 4px;
  background: #e6e0d4;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  place-items: center;
  font-size: 13px;
}

.laptop-base {
  position: absolute;
  left: 20px;
  bottom: 14px;
  width: 91px;
  height: 9px;
  border-radius: 0 0 8px 8px;
  background: #292929;
}

/* Rainbow sticker ------------------------------------------ */

.sl-sticker--rainbow {
  left: 16%;
  top: 30%;
  width: 195px;
  height: 195px;
  transform: rotate(-6deg);
}

.sl-photo--rainbow {
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 4px;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%,#fff 0 10%,transparent 11%),
    linear-gradient(140deg,#dff6d4,#bce7f0 50%,#f4d8ef);
  font-size: 19px;
}

/* Egg ------------------------------------------------------ */

.sl-sticker--egg {
  left: 23%;
  top: 60%;
  width: 180px;
  height: 180px;
  transform: rotate(7deg);
}

.sl-photo--egg {
  display: grid;
  place-items: center;
  background: #f5f4ed;
}

.egg-shape {
  width: 51px;
  height: 64px;
  border-radius: 52% 48% 45% 45%;
  background: #d7e2bc;
  border: 2px solid #b8c39f;
  display: grid;
  place-items: center;
  color: #78816e;
  font-size: 15px;
}

/* Barcode -------------------------------------------------- */

.sl-sticker--barcode {
  left: 30%;
  top: 6%;
  width: 185px;
  height: 185px;
  transform: rotate(-4deg);
}

.sl-photo--barcode {
  background: #efefed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.barcode-lines {
  width: 53px;
  height: 43px;
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.barcode-lines b {
  flex: 1;
  background: #111;
}

.barcode-lines b:nth-child(2),
.barcode-lines b:nth-child(5),
.barcode-lines b:nth-child(8) {
  flex: .45;
}

.sl-photo--barcode small {
  font-family: var(--font-mono);
  font-size: 6px;
  color: #333;
}

/* Fruit ---------------------------------------------------- */

.sl-sticker--fruit {
  left: 37%;
  top: 52%;
  width: 210px;
  height: 165px;
  transform: rotate(6deg);
}

.sl-photo--fruit {
  background:
    linear-gradient(#73522d 0 7%,transparent 7% 48%,#68482a 48% 55%,transparent 55%),
    linear-gradient(180deg,#a86c27,#d58c30);
  padding: 15px;
}

.fruit-row {
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.fruit-row span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%,#d9f66a 0 13%,transparent 14%),
    radial-gradient(circle at 65% 68%,#8eaf26 0 12%,transparent 13%),
    #a8c933;
  color: transparent;
  box-shadow: inset -5px -5px 7px rgba(45,65,10,.2);
}

.fruit-row--second {
  margin-top: 3px;
}

/* Bottle --------------------------------------------------- */

.sl-sticker--bottle {
  left: 44%;
  top: 26%;
  width: 165px;
  height: 210px;
  transform: rotate(-9deg);
}

.sl-photo--bottle {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,#efebe2,#ddd6c8);
}

.bottle {
  position: relative;
  width: 42px;
  height: 88px;
}

.bottle-cap {
  position: absolute;
  top: 0;
  left: 15px;
  width: 12px;
  height: 18px;
  background: #b76b2a;
  border-radius: 2px;
}

.bottle-body {
  position: absolute;
  left: 5px;
  top: 15px;
  width: 32px;
  height: 69px;
  border-radius: 5px 5px 11px 11px;
  background: linear-gradient(90deg,#fff,#e6e2d8,#fff);
  border: 1px solid #c9c4b9;
  display: grid;
  place-items: center;
  text-align: center;
  color: #555;
  font-size: 6px;
  line-height: 1.1;
}

/* Coffee --------------------------------------------------- */

.sl-sticker--coffee {
  left: 51%;
  top: 6%;
  width: 175px;
  height: 175px;
  transform: rotate(4deg);
}

.sl-photo--coffee {
  background:
    linear-gradient(135deg,#7c421c,#c17b3b 50%,#4b2918);
  display: grid;
  place-items: center;
}

.coffee-cup {
  width: 51px;
  height: 44px;
  border-radius: 8px 8px 16px 16px;
  background: #eee5d5;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 8px 8px 0 rgba(0,0,0,.15);
}

/* Perfume -------------------------------------------------- */

.sl-sticker--perfume {
  left: 58%;
  top: 56%;
  width: 165px;
  height: 210px;
  transform: rotate(-7deg);
}
.sl-photo--perfume {
  background: linear-gradient(135deg,#eee9df,#c8bca8);
  display: grid;
  place-items: center;
}

.perfume-bottle {
  position: relative;
  width: 45px;
  height: 91px;
}

.perfume-cap {
  position: absolute;
  left: 15px;
  top: 0;
  width: 15px;
  height: 20px;
  background: #b46d30;
}

.perfume-body {
  position: absolute;
  top: 17px;
  width: 45px;
  height: 72px;
  border-radius: 5px 5px 10px 10px;
  background: rgba(235,237,226,.9);
  border: 1px solid #b7b4a9;
  display: grid;
  place-items: center;
  text-align: center;
  color: #444;
  font-family: var(--font-mono);
  font-size: 6px;
}

/* Small label --------------------------------------------- */
.sl-sticker--label {
  left: 65%;
  top: 28%;
  width: 185px;
  height: 200px;
  transform: rotate(8deg);
}

.sl-photo--label {
  display: grid;
  place-items: center;
  text-align: center;
  background: #f3f3f0;
  color: #17377f;
  font-family: var(--font-display);
  font-size: 15px;
}

/* Second half --------------------------------------------- */

.sl-sticker--second-1 {
  left: 72%;
  top: 6%;
  width: 205px;
  height: 170px;
  transform: rotate(-5deg);
}

.sl-photo--second {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #c9f24c;
  color: #111;
  font-family: var(--font-display);
  line-height: .9;
}

.sl-photo--second span {
  font-size: 15px;
}

.sl-photo--second strong {
  font-size: 25px;
}

/* Second colorful card ------------------------------------ */

.sl-sticker--second-2 {
  left: 79%;
  top: 54%;
  width: 195px;
  height: 195px;
  transform: rotate(6deg);
}

.sl-photo--second-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  place-items: center;
  background:
    linear-gradient(135deg,#f7d5e7,#d6eaff);
  font-size: 23px;
}

/* Second bottle ------------------------------------------- */

.sl-sticker--second-3 {
  left: 86%;
  top: 26%;
  width: 175px;
  height: 210px;
  transform: rotate(-8deg);
}

.sl-photo--second-bottle {
  display: grid;
  place-items: center;
  background: #e8e2d7;
}

.second-bottle {
  width: 38px;
  height: 83px;
  border-radius: 7px 7px 12px 12px;
  background: linear-gradient(90deg,#eee,#d8d5c7,#fff);
  border: 1px solid #bbb7ad;
}

/* Second card --------------------------------------------- */

.sl-sticker--second-4 {
  left: 93%;
  top: 8%;
  width: 195px;
  height: 195px;
  transform: rotate(5deg);
}

/* Intro sticker — below the heading ------------------------- */
.sl-sticker--intro {
  left: 4%;
  top: 28%;
  width: 185px;
  height: 185px;
  transform: rotate(-5deg);
}

.sl-photo--second-card {
  display: grid;
  place-items: center;
  text-align: center;
  background: #fff;
  color: #713aff;
  font-family: var(--font-display);
}

.sl-photo--second-card span {
  font-size: 11px;
}

.sl-photo--second-card strong {
  font-size: 28px;
  color: #111;
}
 

/* Bottom progress bar ------------------------------------- */

.sl-wall__progress {
  position: absolute;
  z-index: 30;
  left: 26px;
  right: 154px;
  bottom: 46px;
  height: 15px;
  pointer-events: auto;
  cursor: pointer;
  touch-action: none;
}


.sl-wall__progress-track {
  position: relative;
  width: 100%;
  height: 15px;
  background: rgba(255,255,255,.08);
  border-radius: 1px;
  overflow: hidden;
}

.sl-wall__progress-fill {
  width: 0%;
  height: 100%;
  background: var(--acid);
  transition: width .08s linear;
}

/* Right controller ---------------------------------------- */

.sl-wall__controller {
  position: absolute;
  z-index: 40;
  right: 0;
  top: 58px;
  bottom: 58px;
  width: 38px;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  touch-action: none;
}

.sl-wall__controller-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,.06);
}

.sl-wall__handle {
  position: absolute;
  top: 0;
  right: 7px;

  width: 7px;
  height: 35px;

  padding: 0;
  border: 0;
  border-radius: 4px;

  background: var(--acid);

  cursor: grab;

  box-shadow:
    0 0 14px rgba(27,59,245,.8);

  touch-action: none;
  z-index: 50;
}

.sl-wall__handle:active {
  cursor: grabbing;
}

.sl-wall__corner {
  position: absolute;
  z-index: 50;
  left: 23px;
  bottom: 9px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: #050505;
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
}

.sl-wall__corner span {
  color: var(--acid);
}

/* Tablet --------------------------------------------------- */

@media (max-width: 900px) {
  .sl-wall {
    min-height: 540px;
  }

  .sl-wall__top {
    padding-inline: 22px;
  }

  .sl-wall__canvas {
    width: 250vw;
  }

  .sl-wall__word {
    left: 70px;
    top: 175px;
  }

  .sl-wall__progress {
    right: 90px;
  }
}

/* Mobile --------------------------------------------------- */

@media (max-width: 620px) {
  .sl-wall {
    height: 620px;
    min-height: 620px;
  }

  .sl-wall__top {
    height: 58px;
    padding-inline: 18px;
  }

  .sl-wall__brand {
    font-size: 16px;
  }

  .sl-wall__viewport {
    inset-block: 58px;
  }

  .sl-wall__canvas {
    width: 400vw;
    min-width: 1400px;
  }

  .sl-wall__word {
    left: 45px;
    top: 155px;
    font-size: 76px;
  }

  .sl-wall__progress {
    left: 18px;
    right: 58px;
    bottom: 40px;
  }

  .sl-wall__controller {
    width: 15px;
  }

  .sl-wall__handle {
    right: 5px;
  }

  .sl-wall__corner {
    left: 16px;
    bottom: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sl-sticker {
    transition: none;
  }

  .sl-wall__canvas {
    transition: none;
  }
}
@media (max-width: 620px) {
  .sl-wall__canvas {
    width: 400vw;
    min-width: 1900px; /* was 1400px */
  }
}

/* 13. Pricing ----------------------------------------------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.price-card--featured { border: 2px solid var(--acid); background: #ffffff; }
.price-card__flag {
  position: absolute;
  top: -12px;
  inset-inline-start: 24px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.price-card__qty { font-family: var(--font-display); font-size: 40px; font-weight: 800; line-height: 1; color: var(--ink); }
.price-card__unit { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--muted); }
.price-card--featured .price-card__unit { color: var(--ink-soft); }
.price-card__each { font-size: 14px; color: var(--ink-soft); }
.price-card__each b { font-family: var(--font-display); font-size: 22px; color: var(--ink); }
.price-card ul { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: var(--ink-soft); }
.price-card ul li::before { content: "→"; margin-inline-end: 8px; color: var(--acid); }
.price-card .btn { margin-top: auto; }

.price-note {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--card);
}

/* 14. File guide -------------------------------------------- */
.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: start;
}
.guide-list { display: flex; flex-direction: column; gap: 14px; }
.guide-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  transition: border-color 0.2s ease;
}
.guide-item:hover { border-color: var(--line-strong); }
.guide-item__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--acid);
  font-weight: 700;
}
.guide-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--ink); }
.guide-item p { font-size: 13.5px; color: var(--muted); }
.guide-item code {
  font-family: var(--font-mono);
  font-size: 11.5px;
  background: var(--paper-2);
  padding: 2px 6px;
  border-radius: 5px;
  color: var(--ink);
}
.guide-visual {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.guide-visual h3 { font-size: 15px; margin-bottom: 16px; color: var(--ink); }
.guide-visual p { font-size: 13px; color: var(--muted); margin-top: 16px; }
.cut-preview {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background:
    repeating-conic-gradient(var(--paper-2) 0 25%, var(--card) 0 50%) 0 0 / 20px 20px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

/* 15. Testimonials ------------------------------------------ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.quote-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.quote-card__stars { color: var(--violet); letter-spacing: 3px; font-size: 13px; }
.quote-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.quote-card__by {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: auto;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--acid);
  color: #ffffff;
  border: 1.5px solid var(--ink);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
  flex-shrink: 0;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.quote-card__by b { font-size: 13.5px; display: block; color: var(--ink); }
.quote-card__by span { font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.1em; color: var(--muted); }

/* 16. Closing CTA ------------------------------------------- */
.cta { padding-block: 0 var(--section-y); }
.cta__panel {
  background: linear-gradient(135deg, #141923 0%, #2b394e 50%, #a3b8d1 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 72px);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
}
.cta__panel::after {
  content: "";
  position: absolute;
  inset-block-start: -60px;
  inset-inline-end: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(208, 117, 96, 0.25);
  filter: blur(20px);
}
.cta__inner { position: relative; z-index: 1; max-width: 640px; }
.cta__title { font-size: clamp(30px, 5vw, 56px); color: #fff; line-height: 0.95; }
.cta__title mark { background: var(--violet); color: #ffffff; padding: 0 0.12em; border-radius: 4px; }
.cta p { margin-top: 18px; font-size: 16px; opacity: 0.9; line-height: 1.6; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cta .btn { border-color: transparent; }
.cta .btn--acid:hover { background: #fff; color: var(--ink); }
.cta .btn--ghost { border-color: rgba(255, 255, 255, 0.45); color: #fff; }
.cta .btn--ghost:hover { background: #fff; color: var(--ink); }

/* 17. Footer ------------------------------------------------- */

.site-footer {
  background: var(--paper-2);
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-block: clamp(56px, 7vw, 88px) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.15fr 1.3fr;
  gap: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--ink);
}
.site-footer p { font-size: 14px; line-height: 1.75; color: var(--muted); max-width: 34ch; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--acid);
  margin-bottom: 20px;
}
.footer-brand__name em { font-style: normal; color: var(--acid); }
.footer-col li + li { margin-top: 12px; }
.footer-col a { font-size: 14px; color: var(--ink-soft); transition: color 0.16s ease; }
.footer-col a:hover { color: var(--acid); }
.footer-contact li { display: flex; gap: 12px; font-size: 14px; color: var(--ink-soft); }
.footer-contact svg { width: 15px; height: 15px; flex: none; margin-top: 4px; color: var(--acid); }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.socials a:hover { background: var(--acid); color: #ffffff; border-color: var(--acid); transform: translateY(-3px); }
.socials svg { width: 16px; height: 16px; }
.newsletter-form { display: flex; gap: 10px; margin-top: 8px; }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--ink);
  font-size: 14px;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form input.is-invalid { border-color: #ff5d73; }
.newsletter-form input.is-valid { border-color: var(--acid-deep); }
.newsletter-form button {
  background: var(--acid);
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s ease;
}
.newsletter-form button:hover { background: var(--acid-deep); }

.form-note { font-size: 12px; margin-top: 10px; min-height: 18px; color: var(--violet); }
.form-note.is-error { color: #ff5d73; }
.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid var(--line);
  padding-block: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom nav { display: flex; gap: 26px; }
.footer-bottom a { color: var(--muted); transition: color 0.16s ease; }
.footer-bottom a:hover { color: var(--violet); }

/* 18. Back to top / modal / drawer ---------------------------- */
.to-top {
  position: fixed;
  inset-block-end: 26px;
  inset-inline-end: 26px;
  z-index: 80;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: var(--shadow-hard);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--ink); color: var(--acid); }
.to-top svg { width: 18px; height: 18px; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17, 17, 16, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__box {
  width: min(420px, 100%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s ease;
}
.modal.is-open .modal__box { transform: none; }
.modal__head { display: flex; justify-content: space-between; align-items: start; gap: 16px; margin-bottom: 20px; }
.modal__head h2 { font-size: 24px; }
.modal__head p { font-size: 13.5px; color: var(--muted); margin-top: 8px; }
.field { display: block; margin-bottom: 14px; }
.field span {
  display: block;
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}
.field input:focus { border-color: var(--ink); outline: none; }
.modal__alt { font-size: 13px; color: var(--muted); margin-top: 16px; text-align: center; }
.modal__alt a { border-bottom: 1px solid var(--acid); }

.drawer {
  position: fixed;
  inset-block: 0;
  inset-inline-end: 0;
  width: min(330px, 84vw);
  z-index: 110;
  background: var(--card);
  border-inline-start: 1px solid var(--line);
  padding: 26px 22px;
  transform: translateX(110%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}
.drawer.is-open { transform: none; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.drawer a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.drawer a.is-sub { font-family: var(--font-body); font-size: 14px; font-weight: 400; text-transform: none; padding-inline-start: 16px; }
.scrim {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(17, 17, 16, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.scrim.is-open { opacity: 1; visibility: visible; }
body.no-scroll { overflow: hidden; }

/* 19. Motion -------------------------------------------------- */
@keyframes slide-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes float-y {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
@keyframes spin-slow {
  to { rotate: 360deg; }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* 20. Responsive ---------------------------------------------- */
@media (max-width: 1080px) {
  .audience-grid, .price-grid, .quote-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .material-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wall-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-layout, .guide-layout { grid-template-columns: minmax(0, 1fr); }
  .spec-panel { position: static; }
}

@media (max-width: 900px) {
  .nav, .tools .is-desktop { display: none; }
  .nav-toggle { display: grid; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__stage { min-height: 320px; order: -1; }
  .split-head { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
}

@media (max-width: 620px) {
  :root { --gutter: 18px; }
  .use-grid, .audience-grid, .material-grid, .price-grid, .quote-grid { grid-template-columns: minmax(0, 1fr); }
  .wall-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .step { grid-template-columns: 40px minmax(0, 1fr); gap: 14px; }
  .hero__stage { min-height: 280px; }
  .sticker { font-size: 11px; padding: 11px 13px; }
  .sticker__round { width: 74px; height: 74px; font-size: 9px; }
  .footer-bottom { flex-direction: column; }
  .to-top { inset-block-end: 18px; inset-inline-end: 18px; }
}

/* Context tweaks ------------------------------------------- */
.modal .form-note,
.guide-visual .form-note { color: var(--ink-soft); }
.guide-visual .price-note { margin-top: 0; margin-bottom: 14px; }
.guide-visual .field input[readonly] { color: var(--muted); cursor: default; }
.guide-visual p + p { margin-top: 12px; }

/* ============================================================
   21. INTERIOR PAGES — Products & Materials
   ============================================================ */

/* 21.1 Breadcrumb + page head ------------------------------- */
.crumbs {
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.crumbs__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  padding-block: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.crumbs__inner a:hover { color: var(--ink); }
.crumbs__path { display: flex; gap: 8px; }
.crumbs__path span::after { content: "/"; margin-inline-start: 8px; opacity: 0.5; }
.crumbs__path span:last-child::after { content: ""; }

.page-head { padding-block: clamp(40px, 5vw, 66px) 0; }
.page-head__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
}
.page-head__title { font-size: clamp(34px, 5.6vw, 64px); }
.page-head__title mark { background: var(--acid); padding: 0 0.08em; box-decoration-break: clone; }
.page-head__title u { text-decoration: none; color: var(--violet); border-bottom: 5px solid var(--violet); }
.page-head p { color: var(--ink-soft); font-size: 15px; max-width: 52ch; }
.page-head__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.badge-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 20px;
}
.badge-line::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid-deep);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168, 214, 47, 0.7); }
  60% { box-shadow: 0 0 0 7px rgba(168, 214, 47, 0); }
}

/* 21.2 Stat row --------------------------------------------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(30px, 4vw, 48px);
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
}
.stat-card__label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.stat-card__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  margin-top: 12px;
  display: block;
}
.stat-card__note { font-size: 12px; color: var(--muted); margin-top: 8px; }
.stat-card__pin {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--acid-deep);
}

/* 21.3 Filter bar ------------------------------------------- */
.filter-bar {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.chip:hover { border-color: var(--line-strong); }
.chip[aria-pressed="true"] { background: var(--acid); border-color: var(--ink); color: var(--ink); }
.filter-bar__meta { font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.12em; color: var(--muted); }

/* 21.4 Section band + heading with highlight ---------------- */
.band { border-top: 1px solid var(--line); }
.title-mark mark { background: var(--acid); padding: 0 0.1em; box-decoration-break: clone; }
.title-mark u { text-decoration: none; border-bottom: 5px solid var(--violet); }

/* 21.5 Split: option panel + product grid -------------------- */
.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.55fr);
  gap: 22px;
  align-items: start;
}
.option-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 18px);
}
.option-panel > p { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.option-list { display: flex; flex-direction: column; gap: 10px; }
.option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease;
}
.option:hover { border-color: var(--line-strong); }
.option input { appearance: none; width: 18px; height: 18px; margin: 2px 0 0; border: 1.5px solid var(--line-strong); border-radius: 5px; position: relative; cursor: pointer; }
.option input:checked { background: var(--acid); border-color: var(--ink); }
.option input:checked::after {
  content: "";
  position: absolute;
  inset: 3px 4px;
  border-inline-start: 2px solid var(--ink);
  border-block-end: 2px solid var(--ink);
  transform: rotate(-45deg);
}
.option b { font-size: 13.5px; display: block; }
.option span { font-size: 12.5px; color: var(--muted); }
.option-panel__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.product-card__art { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink); }
.product-card__art img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.6s ease; }
.product-card:hover .product-card__art img { transform: scale(1.05); }
.product-card__price {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  background: var(--acid);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 4px 11px;
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.product-card__stamp {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: rgba(17, 17, 16, 0.78);
  color: #fff;
  border-radius: 6px;
  padding: 4px 9px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}
.product-card__body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card h3 { font-size: 16px; }
.product-card p { font-size: 13px; color: var(--muted); }
.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.is-hidden { display: none !important; }

/* 21.6 Scan panel (barcode) --------------------------------- */
.scan-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.scan-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.scan-panel__head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.scan-panel h3 { font-size: 17px; }
.scan-stage {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 26px 22px;
  overflow: hidden;
}
.scan-stage::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--acid-deep), transparent);
  box-shadow: 0 0 16px 3px rgba(168, 214, 47, 0.55);
  animation: scan-sweep 3.4s cubic-bezier(0.6, 0, 0.4, 1) infinite;
}
@keyframes scan-sweep {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(190px); opacity: 0; }
}
.barcode { display: flex; align-items: flex-end; gap: 3px; height: 92px; }
.barcode i {
  display: block;
  flex: 1;
  background: var(--ink);
  border-radius: 1px;
  height: 100%;
}
.barcode i:nth-child(3n) { opacity: 0.35; }
.barcode i:nth-child(4n) { height: 82%; }
.barcode i:nth-child(7n) { flex: 2; }
.scan-readout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.scan-readout b { color: var(--acid-deep); }
.scan-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.mini-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.mini-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.mini-card h4 { font-family: var(--font-display); font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: -0.01em; margin: 0; }
.mini-card p { font-size: 12.5px; color: var(--muted); }
.mini-card__meta { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.12em; color: var(--acid-deep); margin-top: auto; }

/* 21.7 Wide media cards + size strip ------------------------- */
.wide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.wide-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  display: flex;
  flex-direction: column;
}
.wide-card__art { position: relative; aspect-ratio: 5 / 4; overflow: hidden; background: var(--ink); }
.wide-card__art img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.wide-card:hover .wide-card__art img { transform: scale(1.06); }
.wide-card__flag {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: var(--acid);
  border: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 4px 9px;
  border-radius: 4px;
  color: var(--ink);
}
.wide-card__body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.wide-card h3 { font-size: 16px; }
.wide-card p { font-size: 13px; color: var(--muted); }
.spec-mini { display: flex; flex-wrap: wrap; gap: 6px; }

.size-strip {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}
.size-strip__label { font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.14em; color: var(--muted); }
.size-strip__price { font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.size-strip__price small { font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.12em; color: var(--muted); margin-inline-start: 8px; }

/* 21.8 Comparison table -------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
table.matrix { width: 100%; border-collapse: collapse; min-width: 780px; }
table.matrix th, table.matrix td { padding: 15px 18px; text-align: start; font-size: 13px; border-bottom: 1px solid var(--line); vertical-align: middle; }
table.matrix thead th {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 500;
  background: var(--paper-2);
}
table.matrix tbody tr { transition: background 0.16s ease; }
table.matrix tbody tr:hover { background: var(--paper-2); }
table.matrix tbody th { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 13px; }
table.matrix td b { font-family: var(--font-display); font-size: 14px; }
.cell-link { color: var(--violet); border-bottom: 1px solid currentColor; }
.pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
}
.pill--quiet { background: var(--paper-2); color: var(--ink-soft); }
.pill--violet { background: var(--violet); color: #fff; }

/* 21.9 Layer stack + chart (materials) ----------------------- */
.stack-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 22px; align-items: start; }
.layer-list { display: flex; flex-direction: column; gap: 10px; }
.layer {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease;
  position: relative;
  overflow: hidden;
}
.layer::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 4px;
  background: var(--acid);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.layer:hover, .layer.is-active { border-color: var(--line-strong); transform: translateX(4px); }
.layer:hover::before, .layer.is-active::before { transform: scaleY(1); }
.layer__top { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.layer__tier { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; color: var(--muted); }
.layer__gauge { font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.1em; color: var(--acid-deep); }
.layer h3 { font-size: 15px; margin: 8px 0 6px; }
.layer p { font-size: 12.5px; color: var(--muted); }

.chart-panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.chart-panel h3 { font-size: 15px; }
.chart-panel__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; }
.chart { width: 100%; height: auto; }
.chart__line { fill: none; stroke: var(--acid-deep); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 620; stroke-dashoffset: 620; }
.chart__line.is-drawn { animation: draw-line 1.8s ease forwards; }
@keyframes draw-line { to { stroke-dashoffset: 0; } }
.chart__fill { fill: rgba(168, 214, 47, 0.16); opacity: 0; transition: opacity 0.7s ease 0.7s; }
.chart__fill.is-drawn { opacity: 1; }
.chart__grid { stroke: var(--line); stroke-width: 1; }
.chart__dot { fill: var(--card); stroke: var(--ink); stroke-width: 2; }
.chart__label { font-family: var(--font-mono); font-size: 7.5px; fill: var(--muted); letter-spacing: 0.1em; }
.chart-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.chart-metrics div { border-top: 1px solid var(--line); padding-top: 10px; }
.chart-metrics dt { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; color: var(--muted); }
.chart-metrics dd { margin: 6px 0 0; font-family: var(--font-display); font-weight: 800; font-size: 15px; }

/* 21.10 Vault cards ------------------------------------------ */
.vault-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.vault-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.vault-card__art { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); }
.vault-card__art img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.vault-card:hover .vault-card__art img { transform: scale(1.05); }
.vault-card__flag {
  position: absolute;
  bottom: 12px;
  inset-inline-end: 12px;
  background: var(--violet);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: 4px;
}
.vault-card__body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.vault-card__title { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.vault-card h3 { font-size: 16px; }
.vault-card__gauge { font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.1em; color: var(--muted); white-space: nowrap; }
.vault-card p { font-size: 13px; color: var(--muted); }
.spec-lines { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; }
.spec-lines div { border-top: 1px solid var(--line); padding-top: 9px; }
.spec-lines dt { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; color: var(--muted); }
.spec-lines dd { margin: 5px 0 0; font-size: 12.5px; }
.vault-card__link {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--acid);
  align-self: flex-start;
  padding-bottom: 2px;
}
.vault-card__link:hover { border-color: var(--ink); }

/* 21.11 Finish cards with meters ----------------------------- */
.finish-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.finish-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.finish-card__icon { width: 34px; height: 34px; color: var(--violet); }
.finish-card h3 { font-size: 14px; }
.finish-card p { font-size: 12.5px; color: var(--muted); }
.meter { margin-top: auto; }
.meter__head { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 7px; }
.meter__track { height: 4px; border-radius: 999px; background: var(--paper-2); overflow: hidden; }
.meter__fill { display: block; height: 100%; width: 0; background: var(--violet); border-radius: 999px; transition: width 1.1s cubic-bezier(0.2, 0.7, 0.3, 1); }

/* 21.12 Test matrix badges ----------------------------------- */
.badge-pass {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(168, 214, 47, 0.25);
  border: 1px solid var(--acid-deep);
  color: var(--ink);
  white-space: nowrap;
}
.test-icon { width: 22px; height: 22px; color: var(--violet); flex: none; }
.test-name { display: flex; align-items: center; gap: 12px; }

/* 21.13 Specimen box (dark CTA) ------------------------------ */
.specimen {
  background: #121210;
  color: #ece9e0;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: start;
}
.specimen h2 { font-size: clamp(28px, 4vw, 46px); color: #fff; }
.specimen h2 mark { background: var(--acid); color: #111110; padding: 0 0.08em; }
.specimen p { color: #a7a397; font-size: 14px; margin-top: 16px; max-width: 46ch; }
.specimen__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 26px; }
.specimen__list li {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #cfcabd;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 10px 12px;
}
.specimen__list li::before { content: "✓ "; color: var(--acid); }
.specimen__note { font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.12em; color: #7e7a6f; margin-top: 26px; }

.order-card { background: #1b1b18; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius); padding: 24px; }
.order-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.order-card h3 { font-size: 17px; color: #fff; }
.order-card__price { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--acid); }
.order-card__sub { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.12em; color: #8b8779; margin-bottom: 18px; }
.order-card .field span { color: #8b8779; }
.order-card .field input {
  background: #121210;
  border-color: rgba(255, 255, 255, 0.16);
  color: #ece9e0;
}
.order-card .field input::placeholder { color: #6d695f; }
.btn--violet { background: var(--violet); border-color: var(--violet); color: #fff; }
.btn--violet:hover { background: #fff; color: var(--violet); border-color: #fff; }
.order-card .form-note { color: var(--acid); }

/* 21.14 Interior responsive ---------------------------------- */
@media (max-width: 1080px) {
  .stat-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-layout, .scan-layout, .stack-layout, .specimen { grid-template-columns: minmax(0, 1fr); }
  .option-panel { position: static; }
  .wide-grid, .finish-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-head__grid { grid-template-columns: minmax(0, 1fr); align-items: start; }
}

@media (max-width: 620px) {
  .product-grid, .mini-grid, .wide-grid, .vault-grid, .finish-grid, .spec-lines, .specimen__list { grid-template-columns: minmax(0, 1fr); }
  .stat-row { grid-template-columns: minmax(0, 1fr); }
  .chart-metrics { grid-template-columns: minmax(0, 1fr); }
}
.is-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ============================================================
   Media Gallery — curved ring carousel (Home §9 Audience)
   ============================================================ */
.media-ring { position: relative; margin-top: clamp(40px, 6vw, 64px); }

.media-ring__viewport {
  position: relative;
  height: clamp(300px, 40vw, 440px);
  perspective: 1500px;        /* must match P in media-ring.js */
  perspective-origin: 50% 40%;
  touch-action: pan-y;
  cursor: grab;
}
.media-ring__viewport:active { cursor: grabbing; }

.media-ring__track {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  transform-style: preserve-3d;
}

.media-ring__item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(108px, 13.5vw, 178px);
  transform: translate(-50%, -50%);
  padding: 0 10px;
  box-sizing: border-box;
  transform-style: preserve-3d;
  opacity: 0;
  transition: opacity 0.25s ease;
  will-change: transform, opacity;
}

.media-ring__card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  pointer-events: none;
}

.media-ring__media { aspect-ratio: 3 / 4; overflow: hidden; background: var(--ink); }
.media-ring__media img { width: 100%; height: 100%; object-fit: cover; }

.media-ring__body { display: flex; flex-direction: column; gap: 3px; padding: 10px 12px 12px; }
.media-ring__tag { font-family: var(--font-display); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: -0.01em; }
.media-ring__meta { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.06em; color: var(--muted); }

.media-ring__controls { display: flex; justify-content: center; gap: 12px; margin-top: 22px; }
.media-ring__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--card);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.media-ring__btn:hover { background: var(--acid); transform: translateY(-2px); }
.media-ring__btn:active { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .media-ring__item { transition: none !important; }
}

@media (max-width: 640px) {
  .media-ring__viewport { height: clamp(240px, 62vw, 320px); }
  .media-ring__item { padding: 0 5px; }
}

/* ============================================================
   Card Folder — Materials section (Home §11)
   A manila-folder card whose tab slides down on hover to
   reveal the material's gradient underneath, with a die-cut
   sticker shape rising up from behind it. The folder + notch
   silhouette is one shared SVG mask (#folder-mask, defined
   once in the page), so the face layer can carry any gradient
   — here it reuses the existing .swatch--* classes.
   ============================================================ */
:root {
  --manila: #ecd9ab;
  --manila-deep: #cdae78;
}

.card-folder__frame {
  position: relative;
  height: 168px;
  overflow: hidden;
  border-radius: var(--radius);
  border-bottom: 1px solid var(--line);
}

.card-folder__face,
.card-folder__tab {
  position: absolute;
  inset: 0;
  -webkit-mask-image: url(#folder-mask);
  mask-image: url(#folder-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.card-folder__face { z-index: 1; }

.card-folder__tab {
  z-index: 3;
  background: linear-gradient(160deg, var(--manila), var(--manila-deep));
  transform: translateY(0);
  transition: transform 0.55s cubic-bezier(0.16, 0.84, 0.24, 1);
}

.card-folder__frame::after {
  content: attr(data-code);
  position: absolute;
  z-index: 5;
  inset-block-end: 10px;
  inset-inline-end: 12px;
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: rgba(17, 17, 16, 0.55);
  pointer-events: none;
}

.card-folder__object {
  position: absolute;
  z-index: 2;
  top: 6%;
  left: 30%;
  width: 34%;
  aspect-ratio: 1 / 1;
  opacity: 0;
  transform: translateY(38%) rotate(-8deg);
  transition: transform 0.5s cubic-bezier(0.16, 0.84, 0.24, 1) 0.06s,
              opacity 0.4s ease 0.06s;
  filter: drop-shadow(0 6px 10px rgba(17, 17, 16, 0.25));
  pointer-events: none;
}
.card-folder__object svg { width: 100%; height: 100%; display: block; }

.card-folder:hover .card-folder__tab,
.card-folder.is-open .card-folder__tab {
  transform: translateY(78%);
}
.card-folder:hover .card-folder__object,
.card-folder.is-open .card-folder__object {
  opacity: 1;
  transform: translateY(-4%) rotate(0deg);
}

@media (prefers-reduced-motion: reduce) {
  .card-folder__tab, .card-folder__object { transition: none !important; }
}

/* Small touch target nicety: on coarse pointers, tapping the
   frame toggles .is-open (see card-folder.js) instead of relying
   on :hover. */
@media (hover: none) {
  .card-folder__frame { cursor: pointer; }
}

/* ============================================================
   Process section cascade — Home §10
   Steps 1→4 reveal one at a time (staggered transition-delay),
   left to right won't apply here since it's a vertical list, so
   each step slides in from the left. The spec panel on the
   right only starts once step 4 has finished animating in.
   ============================================================ */
.process-layout[data-process-reveal] .step {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.55s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 0.55s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.process-layout[data-process-reveal] .spec-panel {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.process-layout[data-process-reveal].is-revealed .step {
  opacity: 1;
  transform: none;
}
.process-layout[data-process-reveal].is-revealed .step:nth-child(1) { transition-delay: 0s; }
.process-layout[data-process-reveal].is-revealed .step:nth-child(2) { transition-delay: 0.28s; }
.process-layout[data-process-reveal].is-revealed .step:nth-child(3) { transition-delay: 0.56s; }
.process-layout[data-process-reveal].is-revealed .step:nth-child(4) { transition-delay: 0.84s; }

/* Step 4 finishes at 0.84s delay + 0.55s duration = 1.34s,
   so the panel starts just after that. */
.process-layout[data-process-reveal].is-revealed .spec-panel {
  opacity: 1;
  transform: none;
  transition-delay: 1.4s;
}

@media (prefers-reduced-motion: reduce) {
  .process-layout[data-process-reveal] .step,
  .process-layout[data-process-reveal] .spec-panel {
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Bulk pricing (estimator, batching, B2B, FAQ, outro) +
   File guide (anatomy, underbase, code panels, audit, vault, preflight)
   ============================================================ */

/* 22. Bulk pricing — estimator ------------------------------- */
.estimator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
  gap: 28px;
  align-items: start;
}
.estimator-panel { display: flex; flex-direction: column; gap: 26px; }
.estimator-panel {
  background: #141923;              /* keep whatever black you set */
  border-color: rgba(255,255,255,0.12);
}
.estimator-panel .estimator-step__head h3,
.estimator-panel .estimator-qty-big,
.estimator-panel .chip { color: #f6f8fb; }

.estimator-panel .estimator-step { border-top-color: rgba(255,255,255,0.14); }
.estimator-panel .estimator-ticks { color: rgba(246,248,251,0.55); }
.estimator-panel .estimator-ticks span.is-near { color: #f6f8fb; }

.estimator-panel .chip { border-color: rgba(255,255,255,0.25); }
.estimator-panel .chip:hover { border-color: rgba(255,255,255,0.5); }
.estimator-panel .chip[aria-pressed="true"] { background: var(--acid); color: #141923; border-color: var(--acid); }

.estimator-step { padding-top: 22px; border-top: 1px solid var(--line); }
.estimator-step:first-child { padding-top: 0; border-top: 0; }
.estimator-step__head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.estimator-step__num { font-family: var(--font-mono); font-size: 11px; color: var(--acid-deep); letter-spacing: 0.12em; }
.estimator-step__head h3 { font-size: 14px; text-transform: uppercase; font-family: var(--font-display); font-weight: 800; }

.estimator-range { margin-top: 6px; }
.estimator-range input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--paper-2);
  outline: none;
}
.estimator-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--acid);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.estimator-range input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
.estimator-range input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--ink); border: 3px solid var(--acid); cursor: pointer;
}
.estimator-ticks {
  display: flex; justify-content: space-between; margin-top: 8px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--muted);
}
.estimator-ticks span.is-near { color: var(--ink); font-weight: 700; }

.estimator-summary { position: sticky; top: calc(var(--header-h) + 20px); }
.estimator-summary__flag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.12em;
  color: var(--acid); margin-bottom: 16px;
}
.estimator-summary__flag::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--acid); animation: pulse-dot 2.4s ease-in-out infinite;
}
.estimator-summary__total { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 4vw, 46px); color: #fff; }
.estimator-summary__total small {
  display: block; font-family: var(--font-mono); font-weight: 400;
  font-size: 15px; letter-spacing: 0.14em; color: var(--acid); margin-top: 6px;
}
.estimator-summary .btn { width: 100%; justify-content: center; margin-top: 6px; }
.estimator-summary .btn--ghost { border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.estimator-summary .btn--ghost:hover { background: #fff; color: var(--ink); }

.batch-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }

.b2b-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.b2b-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; display: flex; flex-direction: column; gap: 18px; position: relative;
}
.b2b-card--featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.b2b-card__tag {
  position: absolute; top: -12px; inset-inline-end: 26px; background: var(--acid); color: var(--ink);
  font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.1em; padding: 5px 12px; border-radius: 999px;
}
.b2b-card h3 { font-size: 22px; }
.b2b-card__sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted); }
.b2b-card--featured .b2b-card__sub { color: rgba(242, 240, 233, 0.6); }
.b2b-card ul { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.b2b-card ul li { display: flex; gap: 10px; align-items: flex-start; }
.b2b-card ul li::before { content: "✓"; color: var(--acid-deep); font-weight: 700; flex: none; }
.b2b-card--featured ul li::before { color: var(--acid); }
.b2b-card .btn { margin-top: auto; }

.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 22px; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 30px 18px 0; position: relative; font-family: var(--font-display); font-weight: 700; font-size: 14.5px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 14px; font-size: 20px; font-weight: 400; transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item p { padding-bottom: 20px; color: var(--muted); font-size: 13.5px; max-width: 56ch; }

.outro {
  background: var(--ink); color: var(--paper); border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px); display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 28px; align-items: center;
}
.outro__title { font-size: clamp(28px, 5vw, 52px); color: #fff; }
.outro__title mark { background: var(--acid); color: var(--ink); padding: 0 0.08em; }
.outro p { color: rgba(242, 240, 233, 0.6); font-size: 13px; margin-top: 10px; font-family: var(--font-mono); letter-spacing: 0.08em; }
.outro-form { display: flex; gap: 10px; min-width: 300px; flex: 1; max-width: 420px; }
.outro-form input {
  flex: 1; min-width: 0; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px; padding: 13px 18px; color: #fff; font-size: 13px;
}
.outro-form input::placeholder { color: rgba(242, 240, 233, 0.45); }
.outro-form button {
  background: var(--acid); color: var(--ink); border: 0; border-radius: 999px; padding: 13px 22px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; transition: background 0.18s ease;
}
.outro-form button:hover { background: #fff; }

table.matrix tbody tr.is-current { background: rgba(168, 214, 47, 0.14); }
table.matrix tbody tr.is-current th { color: var(--violet); }

/* 23. File guide — anatomy, underbase, code, audit, vault ---- */
.safety-diagram { width: 100%; height: auto; }
.safety-diagram .zone-bleed { fill: rgba(255, 93, 115, 0.12); stroke: #ff5d73; stroke-width: 1.4; stroke-dasharray: 5 4; transition: opacity 0.25s ease; }
.safety-diagram .zone-cut { fill: none; stroke: var(--ink); stroke-width: 2; transition: opacity 0.25s ease; }
.safety-diagram .zone-safe { fill: none; stroke: var(--violet); stroke-width: 1.4; stroke-dasharray: 3 3; transition: opacity 0.25s ease; }
.safety-diagram text { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.08em; fill: var(--muted); }
.guide-item[data-anatomy-item] { cursor: pointer; transition: border-color 0.18s ease, transform 0.18s ease; }
.guide-item.is-active { border-color: var(--violet); transform: translateX(4px); }
.guide-item.is-active .guide-item__mark { background: var(--violet); color: #fff; }

.code-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 18px; }
.code-panel { background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); padding: 22px 24px; }
.code-panel__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.code-panel__head h4 { font-family: var(--font-display); font-size: 13px; color: var(--acid); text-transform: uppercase; letter-spacing: 0.04em; }
.code-copy {
  background: transparent; border: 1px solid rgba(242, 240, 233, 0.25); color: var(--paper);
  border-radius: 999px; padding: 5px 12px; font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: 0.1em; cursor: pointer; transition: background 0.16s ease, color 0.16s ease;
}
.code-copy:hover { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.code-copy.is-copied { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.code-panel pre { margin: 0; overflow-x: auto; }
.code-panel code { font-family: var(--font-mono); font-size: 12px; line-height: 1.7; color: #d8f79b; white-space: pre; }
.code-panel code .tok-muted { color: rgba(242, 240, 233, 0.45); }

.mini-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.badge-fail {
  display: inline-block; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.1em;
  padding: 5px 10px; border-radius: 6px; background: rgba(255, 93, 115, 0.14);
  border: 1px solid #ff5d73; color: var(--ink); white-space: nowrap;
}

.vault-card__download {
  display: inline-flex; align-items: center; gap: 8px; margin-top: auto; background: transparent;
  border: 2px solid var(--ink); border-radius: 999px; padding: 10px 18px; font-family: var(--font-display);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease; align-self: flex-start;
}
.vault-card__download:hover { background: var(--ink); color: var(--acid); }
.vault-card__art--flat {
  display: flex; align-items: center; justify-content: center;
  background: repeating-conic-gradient(var(--paper-2) 0 25%, var(--card) 0 50%) 0 0 / 16px 16px;
}
.vault-card__art--flat svg { width: 46px; height: 46px; color: var(--ink); }

.preflight-panel { background: #1b1b18; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-lg); padding: 26px; color: #ece9e0; }
.preflight-panel h3 { font-size: 16px; color: #fff; }
.preflight-panel > p { font-size: 12.5px; color: #a7a397; margin-top: 8px; }
.dropzone {
  margin-top: 20px; border: 2px dashed rgba(255, 255, 255, 0.22); border-radius: var(--radius);
  padding: 30px 20px; text-align: center; cursor: pointer; transition: border-color 0.2s ease, background 0.2s ease;
}
.dropzone.is-drag { border-color: var(--acid); background: rgba(201, 242, 76, 0.06); }
.dropzone svg { width: 30px; height: 30px; color: var(--acid); margin-inline: auto; }
.dropzone p { font-size: 12.5px; color: #c9c5b8; margin-top: 10px; }
.dropzone input { display: none; }
.preflight-progress { margin-top: 18px; height: 5px; border-radius: 999px; background: rgba(255, 255, 255, 0.12); overflow: hidden; display: none; }
.preflight-progress.is-active { display: block; }
.preflight-progress span { display: block; height: 100%; width: 0; background: var(--acid); border-radius: 999px; transition: width 1.4s ease; }
.preflight-results { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; display: none; }
.preflight-results.is-visible { display: flex; }
.preflight-results li { display: flex; justify-content: space-between; align-items: center; font-size: 12px; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 8px; }

/* 24. Responsive — new components ---------------------------- */
@media (max-width: 1080px) {
  .estimator-layout, .b2b-grid, .code-grid { grid-template-columns: minmax(0, 1fr); }
  .estimator-summary { position: static; }
  .batch-grid, .faq-grid, .mini-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .outro { flex-direction: column; align-items: flex-start; }
  [id="vault"] .anatomy-layout { grid-template-columns: minmax(0, 1fr) !important; }
}
@media (max-width: 620px) {
  .batch-grid, .faq-grid, .mini-grid--4 { grid-template-columns: minmax(0, 1fr); }
  .outro-form { max-width: none; width: 100%; }
}

/* 22. Bulk pricing v2 — advantage grid, materials, tiers, FAQ, quote form, live bench */

.section-head--center { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head--center .section-lede { margin-inline: auto; }

/* Why go bulk -------------------------------------------------- */
/* Why go bulk — brutalist sticker tiles: solid color, hard offset
   shadow and a tilt, borrowed from the hero's floating sticker motif
   so this section reads as a distinct block from the stat cards
   above it rather than a repeat of the same bordered-box grid. --- */
.advantage-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.advantage-card {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px 22px 22px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-hard);
  rotate: var(--tilt, 0deg);
  transition: rotate 0.3s cubic-bezier(0.16, 1, 0.3, 1), translate 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.advantage-card:hover { rotate: 0deg; translate: 0 -6px; box-shadow: 6px 9px 0 var(--ink); }
.advantage-card::before {
  content: attr(data-num);
  position: absolute;
  top: -0.22em;
  inset-inline-end: -0.04em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 104px;
  line-height: 1;
  color: currentColor;
  opacity: 0.16;
  pointer-events: none;
}
.advantage-card:nth-child(1) { --tilt: -1.6deg; background: #efe9dd; color: #141923; border-color: #141923; }
.advantage-card:nth-child(2) { --tilt: 1.1deg; background: var(--acid-deep); color: #fff; border-color: var(--ink); }
.advantage-card:nth-child(3) { --tilt: -0.9deg; background: #141923; color: #fff; border-color: #141923; }
.advantage-card:nth-child(4) { --tilt: 1.7deg; background: var(--violet); color: #fff; border-color: var(--ink); }
.advantage-card__top { position: relative; z-index: 1; display: flex; justify-content: flex-start; }
.advantage-card__tag {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; padding: 6px 12px;
  border-radius: 999px; white-space: nowrap; background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4); color: inherit;
}
.advantage-card:nth-child(1) .advantage-card__tag { background: rgba(20, 25, 35, 0.07); border-color: rgba(20, 25, 35, 0.2); }
.advantage-card h3 { position: relative; z-index: 1; font-size: 20px; }
.advantage-card p { position: relative; z-index: 1; font-size: 13px; color: inherit; opacity: 0.82; }
.advantage-card__meta {
  position: relative; z-index: 1; margin-top: auto; padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.4);
  display: flex; flex-direction: column; gap: 6px; font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: 0.08em; opacity: 0.82;
}
.advantage-card:nth-child(1) .advantage-card__meta { border-top-color: rgba(20, 25, 35, 0.18); }
.advantage-card__meta b { color: inherit; font-weight: 700; opacity: 1; }
/* Make your bulk run your own ----------------------------------- */
.material-select-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.material-select-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.material-select-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.material-select-card__art { aspect-ratio: 16 / 10; display: grid; place-items: center; }
.material-select-card__art svg { width: 44px; height: 44px; color: rgba(255, 255, 255, 0.85); }
.material-select-card__art--vinyl { background: linear-gradient(155deg, #1c1c1a, #050504); }
.material-select-card__art--holo {
  background: linear-gradient(135deg, var(--violet), var(--acid-deep) 55%, var(--violet));
  background-size: 220% 220%; animation: holo-shift 6s ease-in-out infinite;
}
.material-select-card__art--clear { background: linear-gradient(155deg, #2c2c29, #0c0c0b); }
@keyframes holo-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.material-select-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.material-select-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.material-select-card__head h3 { font-size: 17px; }
.material-select-card__flag { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--acid-deep); white-space: nowrap; }
.material-select-card p { font-size: 13px; color: var(--muted); }
.material-select-card__meta {
  margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--line);
  display: flex; gap: 18px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; color: var(--muted);
}
.material-select-card__meta b { color: var(--ink); }

/* Pick your quantity --------------------------------------------- */
.price-grid--tiers { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card--dark { background: #141412; border-color: #141412; color: #efece4; }
.price-card--dark .price-card__flag { background: var(--acid); color: #141412; }
.price-card--dark .price-card__each b { color: var(--acid); }
.price-card--dark .price-card__label,
.price-card--dark .price-card__best { color: rgba(239, 236, 228, 0.65); }
.price-card__each { display: flex; align-items: baseline; gap: 6px; }
.price-card__each span { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.price-card--dark .price-card__each span,
.price-card--featured .price-card__each span { color: inherit; opacity: 0.7; }
.price-card__label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.04em; color: var(--muted); }
.price-card__best { font-size: 12.5px; color: var(--muted); }
.price-card--featured .price-card__label,
.price-card--featured .price-card__best { color: #2a2a22; }

/* FAQ list --------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq-list .faq-item summary { text-transform: uppercase; font-size: 13px; padding-right: 40px; }
.faq-list .faq-item summary::after {
  content: ""; width: 9px; height: 9px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: rotate(45deg); top: 20px; background: none; font-size: 0; transition: transform 0.2s ease;
}
.faq-list .faq-item[open] summary::after { transform: rotate(-135deg); top: 24px; }

/* Quote request form ------------------------------------------------ */
.quote-card { max-width: 760px; margin-inline: auto; padding: clamp(24px, 3vw, 40px); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 20px; }
.field--full { grid-column: 1 / -1; }
.field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--paper); font-family: var(--font-body); font-size: 14px; color: var(--ink); resize: vertical;
}
.field select:focus, .field textarea:focus { border-color: var(--ink); outline: none; }
.dropzone--light {
  display: block; margin-top: 6px; margin-bottom: 14px; border: 2px dashed var(--line-strong);
  border-radius: var(--radius); padding: 28px 20px; text-align: center; cursor: pointer;
  background: var(--paper-2); transition: border-color 0.2s ease, background 0.2s ease;
}
.dropzone--light.is-drag { border-color: var(--acid-deep); background: var(--violet-ink); }
.dropzone--light svg { width: 26px; height: 26px; color: var(--violet); margin-inline: auto; }
.dropzone--light p { font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.dropzone--light input { display: none; }
.quote-card__foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; margin-top: 10px; }
.pulse-note { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.pulse-note::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--acid-deep);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

/* Live production bench -------------------------------------------- */
.estimator-qty-big { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3.2vw, 36px); display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.estimator-pill {
  display: inline-flex; align-items: center; font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: 0.1em; background: var(--acid); color: var(--ink); padding: 4px 10px;
  border-radius: 999px; margin-inline-start: 10px; text-transform: uppercase;
}

/* Responsive --------------------------------------------------------- */
@media (max-width: 1080px) {
  .advantage-grid, .material-select-grid, .price-grid--tiers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 620px) {
  .advantage-grid, .material-select-grid, .price-grid--tiers { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================
   HOME 2 — STICKR LAB
   Uses the existing Stickr Lab theme and CSS variables.
   Add this file without replacing style.css.
   ============================================================ */

.home2 {
  overflow: clip;
}

/* =========================
   HERO
   ========================= */

.h2-hero {
  position: relative;
  padding-block: clamp(56px, 8vw, 108px);
  border-bottom: 1px solid var(--line);
}

.h2-hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid var(--line);
  inset-inline-end: -150px;
  top: 8%;
  opacity: 0.7;
  pointer-events: none;
}

.h2-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.h2-hero__copy {
  position: relative;
  z-index: 2;
}

.h2-hero__copy h1 {
  font-size: clamp(52px, 7.5vw, 96px);
  max-width: 760px;
}

.h2-hero__copy h1 mark,
.h2-finishes h2 mark,
.h2-process h2 mark,
.h2-cta h2 mark {
  background: var(--acid);
  color: var(--ink);
  padding-inline: 0.08em;
  box-decoration-break: clone;
}

.h2-hero__lede {
  max-width: 54ch;
  color: var(--ink-soft);
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.7;
}

.h2-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.h2-proof-row b {
  color: var(--ink);
  margin-inline-end: 5px;
}

/* =========================
   HERO VISUAL
   ========================= */

.h2-hero__visual {
  min-height: 500px;
  position: relative;
  isolation: isolate;
}

.h2-orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}

.h2-orbit--one {
  width: 460px;
  height: 460px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.h2-orbit--two {
  width: 330px;
  height: 330px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-style: dashed;
  animation: h2-spin 22s linear infinite;
}

/* Main product card */

.h2-product-card {
  --h2-px: 0px;
  --h2-py: 0px;

  position: absolute;
  width: min(390px, 76%);
  aspect-ratio: 1 / 0.92;
  left: 50%;
  top: 50%;

  transform:
    translate(
      calc(-50% + var(--h2-px)),
      calc(-50% + var(--h2-py))
    )
    rotate(-4deg);

  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 10px 10px 0 var(--ink);
  padding: 22px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  animation: h2-card-float 6s ease-in-out infinite;
}

.h2-product-card__top,
.h2-product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.h2-product-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--acid);
  border: 1px solid var(--ink);
}

/* Sticker */

.h2-sticker {
  width: 68%;
  aspect-ratio: 1.18;
  margin: auto;

  display: grid;
  place-content: center;
  text-align: center;

  font-family: var(--font-display);
  text-transform: uppercase;

  transform: rotate(4deg);
}

.h2-sticker--star {
  background: var(--acid);

  clip-path: polygon(
    50% 0%,
    61% 19%,
    82% 7%,
    78% 30%,
    100% 39%,
    80% 50%,
    94% 71%,
    69% 67%,
    63% 94%,
    48% 76%,
    27% 92%,
    29% 67%,
    4% 69%,
    19% 49%,
    0% 36%,
    23% 29%,
    17% 6%,
    39% 18%
  );
}

.h2-sticker span {
  font-size: 13px;
  letter-spacing: 0.18em;
}

.h2-sticker strong {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.82;
}

.h2-sticker small {
  font-family: var(--font-mono);
  font-size: 8px;
  margin-top: 8px;
}

/* Floating cards */

.h2-mini-card {
  --h2-px: 0px;
  --h2-py: 0px;

  position: absolute;
  width: 150px;
  min-height: 132px;
  padding: 16px;

  border: 2px solid var(--ink);
  border-radius: 14px;
  box-shadow: 5px 5px 0 var(--ink);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  animation: h2-mini-float 5s ease-in-out infinite;
}

.h2-mini-card b {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 0.95;
}

.h2-mini-card--acid {
  background: var(--acid);
  left: 0;
  top: 8%;
  transform: rotate(-8deg);
}

.h2-mini-card--violet {
  background: var(--violet);
  color: #fff;
  right: 0;
  bottom: 10%;
  transform: rotate(8deg);
  animation-delay: -2.2s;
}

.h2-mini-card--violet .tag {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Round badge */

.h2-round-badge {
  position: absolute;
  right: 10%;
  top: 8%;

  width: 96px;
  height: 96px;

  border-radius: 50%;

  background: var(--ink);
  color: var(--acid);

  display: grid;
  place-content: center;
  text-align: center;

  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.1;

  transform: rotate(10deg);

  animation: h2-pulse 3.5s ease-in-out infinite;
}

.h2-round-badge strong {
  font-size: 15px;
}

/* =========================
   CATEGORIES
   ========================= */

.h2-section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}

.h2-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.h2-category {
  min-height: 320px;
  padding: 20px;

  border: 2px solid var(--ink);
  border-radius: var(--radius);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  position: relative;
  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.h2-category:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 7px 7px 0 var(--ink);
}

/* after */
.h2-category--dark,
.h2-category--acid,
.h2-category--violet,
.h2-category--paper {
  background: var(--ink);
  color: var(--paper);
}

.h2-category__number {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.h2-category h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.h2-category p {
  font-size: 13px;
  opacity: 0.75;
  max-width: 22ch;
}

.h2-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  font-size: 24px;

  transition: transform 0.2s ease;
}

.h2-category:hover .h2-arrow {
  transform: translate(4px, -4px);
}

/* Category sticker shapes */

.h2-category__shape {
  align-self: center;

  display: grid;
  place-items: center;

  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;

  border: 2px solid currentColor;
  box-shadow: 4px 4px 0 currentColor;

  width: 125px;
  height: 105px;

  transform: rotate(-6deg);
  margin: 8px 0;
}

.h2-shape--diecut {
  background: var(--acid);
  color: var(--ink);

  clip-path: polygon(
    12% 10%,
    83% 4%,
    95% 28%,
    87% 88%,
    31% 95%,
    5% 64%
  );
}

.h2-shape--label {
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
}

.h2-shape--barcode {
  background: var(--ink);
  color: var(--acid);
  border-radius: 50%;
}

.h2-shape--floor {
  background: var(--violet);
  color: #fff;
  border-radius: 5px;
}

/* =========================
   BENEFITS
   ========================= */

.h2-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.h2-benefit {
  padding: 34px 28px;
  border-inline-end: 1px solid var(--line);
}

.h2-benefit:last-child {
  border-inline-end: 0;
}

.h2-benefit__icon {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  border: 2px solid var(--ink);
  border-radius: 50%;

  font-family: var(--font-mono);
  font-size: 15px;

  margin-bottom: 30px;
}

.h2-benefit h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.h2-benefit p {
  color: var(--muted);
  font-size: 14px;
  max-width: 34ch;
}

.h2-line {
  height: 2px;
  background: var(--ink);
  margin: 28px 0 10px;

  transform-origin: left;

  transition: transform 0.7s ease;
}

.h2-benefit:hover .h2-line {
  transform: scaleX(0.35);
}

.h2-benefit small {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* =========================
   FINISHES
   ========================= */

.h2-finishes {
  padding-block: clamp(68px, 9vw, 120px);

  background: var(--ink);
  color: var(--paper);
}

.h2-finishes .kicker,
.h2-finishes__head p:last-child {
  color: rgba(239, 236, 228, 0.65);
}

.h2-finishes__head {
  max-width: 680px;
  margin-bottom: 42px;
}

.h2-finishes h2 {
  font-size: clamp(42px, 6vw, 72px);
}

.h2-finishes__head > p:last-child {
  margin-top: 14px;
}

.h2-finish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.h2-finish {
  min-height: 330px;
  padding: 20px;

  border: 1px solid rgba(239, 236, 228, 0.25);
  border-radius: var(--radius);

  color: var(--paper);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.h2-finish:hover {
  transform: translateY(-7px);
  border-color: var(--acid);
}

.h2-finish__sample {
  height: 190px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(17, 17, 16, 0.25);
  border-radius: 10px;

  color: var(--ink);

  font-family: var(--font-display);
  font-size: 24px;

  overflow: hidden;
}

.h2-finish--matte .h2-finish__sample {
  background: var(--paper-2);
}

.h2-finish--clear .h2-finish__sample {
  background:
    linear-gradient(
      135deg,
      #fff 0 45%,
      var(--acid) 45% 55%,
      #fff 55%
    );
}

.h2-finish--holo .h2-finish__sample {
  background:
    repeating-linear-gradient(
      125deg,
      var(--violet) 0 18px,
      var(--acid) 18px 36px,
      #fff 36px 54px
    );
}

.h2-finish > div:last-child {
  padding-top: 18px;
}

.h2-finish > div:last-child span {
  font-family: var(--font-mono);
  font-size: 9px;
  opacity: 0.6;
}

.h2-finish h3 {
  font-size: 20px;
  margin: 5px 0;
}

.h2-finish p {
  font-size: 13px;
  opacity: 0.65;
}

/* =========================
   PROCESS
   ========================= */

.h2-process__grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: clamp(40px, 7vw, 100px);

  align-items: start;
}

.h2-process .btn {
  margin-top: 28px;
}

.h2-steps {
  border-top: 2px solid var(--ink);
}

.h2-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;

  padding: 26px 0;

  border-bottom: 1px solid var(--line);

  transition:
    padding-left 0.25s ease,
    background 0.25s ease;
}

.h2-step:hover {
  padding-inline-start: 12px;
  background: color-mix(
    in srgb,
    var(--acid) 18%,
    transparent
  );
}

.h2-step > span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.h2-step h3 {
  font-size: 28px;
  margin-bottom: 7px;
}

.h2-step p {
  color: var(--muted);
  max-width: 48ch;
}

/* =========================
   CTA
   ========================= */

.h2-cta {
  padding-block: 0 clamp(70px, 9vw, 120px);
}

.h2-cta__panel {
  position: relative;

  display: grid;

  grid-template-columns: 1fr 0.65fr;

  gap: 40px;

  align-items: center;

  background: linear-gradient(135deg, #141923 0%, #2b394e 50%, #a3b8d1 100%);
  color: #fff;

  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);

  padding: clamp(34px, 6vw, 68px);

  box-shadow: 10px 10px 0 var(--ink);

  overflow: hidden;
}

.h2-cta h2 {
  font-size: clamp(42px, 6vw, 72px);
}

.h2-cta__panel > div:nth-child(2) p {
  max-width: 36ch;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.h2-cta .kicker {
  color: rgba(255, 255, 255, 0.65);
}

.h2-cta__burst {
  position: absolute;

  right: 5%;
  bottom: -42px;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  background: var(--acid);
  color: var(--ink);

  border: 2px solid var(--ink);

  display: grid;
  place-content: center;

  text-align: center;

  font-family: var(--font-display);
  font-size: 30px;

  transform: rotate(-12deg);

  animation: h2-pulse 3.5s ease-in-out infinite;
}

.h2-cta__burst small {
  font-family: var(--font-mono);
  font-size: 8px;
  line-height: 1.05;
  letter-spacing: 0.12em;
}

/* =========================
   SCROLL REVEAL
   ========================= */

[data-h2-reveal] {
  opacity: 0;

  transform: translateY(28px);

  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}

[data-h2-reveal].is-h2-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-h2-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}

[data-h2-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}

[data-h2-reveal]:nth-child(4) {
  transition-delay: 0.24s;
}

/* =========================
   ANIMATIONS
   ========================= */

@keyframes h2-card-float {
  0%,
  100% {
    transform:
      translate(
        calc(-50% + var(--h2-px, 0px)),
        calc(-50% + var(--h2-py, 0px))
      )
      rotate(-4deg);
  }

  50% {
    transform:
      translate(
        calc(-50% + var(--h2-px, 0px)),
        calc(-50% - 12px + var(--h2-py, 0px))
      )
      rotate(-2deg);
  }
}

@keyframes h2-mini-float {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -10px;
  }
}

@keyframes h2-spin {
  to {
    transform:
      translate(-50%, -50%)
      rotate(360deg);
  }
}

@keyframes h2-pulse {
  0%,
  100% {
    scale: 1;
  }

  50% {
    scale: 1.07;
  }
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 980px) {
  .h2-hero__grid {
    grid-template-columns: 1fr;
  }

  .h2-hero__visual {
    min-height: 470px;
    max-width: 650px;
    width: 100%;
    margin-inline: auto;
  }

  .h2-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .h2-benefits {
    grid-template-columns: 1fr;
  }

  .h2-benefit {
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .h2-benefit:last-child {
    border-bottom: 0;
  }

  .h2-process__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {
  .h2-hero__visual {
    min-height: 390px;
  }

  .h2-orbit--one {
    width: 340px;
    height: 340px;
  }

  .h2-orbit--two {
    width: 250px;
    height: 250px;
  }

  .h2-product-card {
    width: 78%;
    padding: 16px;
  }

  .h2-mini-card {
    width: 115px;
    min-height: 105px;
    padding: 11px;
  }

  .h2-mini-card b {
    font-size: 13px;
  }

  .h2-round-badge {
    width: 72px;
    height: 72px;
    right: 2%;
    font-size: 7px;
  }

  .h2-round-badge strong {
    font-size: 11px;
  }

  .h2-section-head {
    align-items: start;
    flex-direction: column;
  }

  .h2-category-grid,
  .h2-finish-grid {
    grid-template-columns: 1fr;
  }

  .h2-category {
    min-height: 280px;
  }

  .h2-finish {
    min-height: 290px;
  }

  .h2-finish__sample {
    height: 155px;
  }

  .h2-cta__panel {
    grid-template-columns: 1fr;
  }

  .h2-cta__burst {
    width: 95px;
    height: 95px;
    right: 5%;
    bottom: 12px;
    font-size: 21px;
  }

  .h2-step {
    grid-template-columns: 48px 1fr;
  }
}

/* =========================
   RTL
   ========================= */

[dir="rtl"] .h2-arrow {
  right: auto;
  left: 18px;
}

[dir="rtl"] .h2-benefit {
  border-inline-end: 1px solid var(--line);
  border-inline-start: 0;
}

[dir="rtl"] .h2-benefit:last-child {
  border-inline-end: 0;
}

/* =========================
   REDUCED MOTION
   ========================= */

@media (prefers-reduced-motion: reduce) {
  .h2-orbit--two,
  .h2-product-card,
  .h2-mini-card,
  .h2-round-badge,
  .h2-cta__burst {
    animation: none;
  }

  [data-h2-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .h2-category,
  .h2-finish,
  .h2-step {
    transition: none;
  }
}

/* ============================================================
   21. FILE GUIDE — rebuilt page sections (fg-*)
   Uses existing tokens only.
   ============================================================ */

/* Shared bits ------------------------------------------------ */
.fg-eyebrow {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.fg-eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.fg-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: 26px;
  align-items: end;
  margin: 22px 0 34px;
}
.fg-head__title { font-size: clamp(30px, 4.6vw, 54px); }
.fg-head__title mark { background: var(--acid); color: var(--ink); padding: 0 .08em; }
.fg-head p { font-size: 14px; color: var(--muted); max-width: 46ch; }

.fg-note {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.7;
}
.fg-note b { color: var(--acid); }

.fg-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--ink-soft);
}
.fg-flag--acid { background: var(--acid); border-color: var(--ink); color: var(--ink); }
.fg-flag--violet { background: var(--violet); border-color: var(--violet); color: #fff; }

/* 1. Specimen photo strip ------------------------------------ */
.fg-strip { padding-block: clamp(26px, 3vw, 40px); }
.fg-strip__frame {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
}
.fg-strip__frame img { width: 100%; height: clamp(200px, 30vw, 380px); object-fit: cover; }
.fg-strip__tag {
  position: absolute;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 12px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
}
.fg-strip__tag--tl { top: 14px; inset-inline-start: 14px; }
.fg-strip__tag--tr { top: 14px; inset-inline-end: 14px; background: var(--acid); }
.fg-strip__tag--bl { bottom: 14px; inset-inline-start: 14px; background: var(--violet); color: #fff; border-color: var(--violet); }

/* 2. Fact row ------------------------------------------------ */
.fg-facts { padding-block: clamp(30px, 4vw, 52px); }
.fg-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  border-block: 1px solid var(--line);
}
.fg-fact { padding: 24px 22px; border-inline-start: 1px solid var(--line); }
.fg-fact:first-child { border-inline-start: 0; padding-inline-start: 0; }
.fg-fact span {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.fg-fact b {
  display: block;
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.fg-fact p { font-size: 12.5px; color: var(--muted); }
.fg-fact--acid b { color: var(--acid-deep); }
.fg-fact--violet b { color: var(--violet); }

/* 3. Jump strip ---------------------------------------------- */
.fg-jump {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: var(--ink);
  color: var(--paper);
}
.fg-jump__inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.fg-jump__inner::-webkit-scrollbar { display: none; }
.fg-jump__link {
  flex: none;
  padding: 13px 18px;
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(239, 236, 228, 0.6);
  border-inline-end: 1px solid rgba(239, 236, 228, 0.14);
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.fg-jump__link:first-child { border-inline-start: 1px solid rgba(239, 236, 228, 0.14); }
.fg-jump__link:hover { background: rgba(239, 236, 228, 0.1); color: var(--paper); }
.fg-jump__link.is-active { background: var(--acid); color: var(--ink); }

/* 4. Pre-send audit grid ------------------------------------- */
.fg-check-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.fg-check {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.fg-check:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-soft); }
.fg-check__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.fg-check__num { font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.16em; color: var(--muted); }
.fg-check h3 { font-size: 15px; line-height: 1.15; }
.fg-check h3 em { font-style: normal; color: var(--violet); }
.fg-check > p { font-size: 13px; color: var(--muted); }
.fg-check__foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.fg-check--acid { border-color: var(--acid-deep); box-shadow: inset 3px 0 0 var(--acid); }
.fg-check--violet { border-color: var(--violet); box-shadow: inset 3px 0 0 var(--violet); }
.fg-swatches { display: flex; gap: 6px; }
.fg-swatches i { width: 26px; height: 26px; border-radius: 6px; border: 1px solid var(--line); }
.fg-swatches i:nth-child(1) { background: #00b7d4; }
.fg-swatches i:nth-child(2) { background: var(--violet); }
.fg-swatches i:nth-child(3) { background: var(--acid); }
.fg-swatches i:nth-child(4) { background: var(--ink); }

/* 5. Good vs rejected ---------------------------------------- */
.fg-verdict { background: var(--paper-2); }
.fg-verdict__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.fg-verdict__card {
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fg-verdict__card--pass { border-color: var(--acid-deep); }
.fg-verdict__card--fail { border-color: var(--violet); }
.fg-verdict__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.fg-verdict__head h3 { font-size: 15px; }
.fg-verdict__stage {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: clamp(150px, 20vw, 210px);
  display: grid;
  place-items: center;
  background: var(--paper);
}
.fg-verdict__stage img { width: 100%; height: 100%; object-fit: cover; }
.fg-verdict__ghost {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  gap: 8px;
  background: repeating-linear-gradient(45deg, var(--paper-2) 0 10px, var(--paper) 10px 20px);
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.fg-verdict__list { display: flex; flex-direction: column; gap: 10px; }
.fg-verdict__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--ink-soft); }
.fg-verdict__list li b {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex: none;
  padding: 3px 7px;
  border-radius: 5px;
}
.fg-verdict__card--pass .fg-verdict__list li b { background: var(--acid); color: var(--ink); }
.fg-verdict__card--fail .fg-verdict__list li b { background: var(--violet); color: #fff; }

/* 6. Bleed + safe zone --------------------------------------- */
.fg-bleed__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.fg-bleed__stage {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 3vw, 34px);
}
.fg-bleed__stage svg { width: 100%; height: auto; }
.fg-bleed__stage .fg-zone-bleed { fill: rgba(107, 59, 245, 0.1); stroke: var(--violet); stroke-width: 1.4; stroke-dasharray: 6 5; transition: opacity 0.25s ease; }
.fg-bleed__stage .fg-zone-trim { fill: none; stroke: currentColor; stroke-width: 2; transition: opacity 0.25s ease; }
.fg-bleed__stage .fg-zone-safe { fill: rgba(201, 242, 76, 0.18); stroke: var(--acid-deep); stroke-width: 1.4; stroke-dasharray: 4 4; transition: opacity 0.25s ease; }
.fg-bleed__stage text { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.12em; fill: var(--muted); }

.fg-def { display: flex; flex-direction: column; gap: 12px; }
.fg-def__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-inline-start: 3px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.fg-def__item:hover { transform: translateX(3px); }
.fg-def__item--bleed { border-inline-start-color: var(--violet); }
.fg-def__item--trim { border-inline-start-color: var(--ink); }
.fg-def__item--safe { border-inline-start-color: var(--acid-deep); }
.fg-def__item h3 { font-size: 14px; margin-bottom: 6px; }
.fg-def__item p { font-size: 12.5px; color: var(--muted); }
.fg-def__photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); position: relative; }
.fg-def__photo img { width: 100%; height: clamp(120px, 16vw, 170px); object-fit: cover; }
.fg-def__photo span {
  position: absolute;
  inset-inline-start: 12px;
  bottom: 12px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--acid);
  color: var(--ink);
  padding: 5px 9px;
  border-radius: 999px;
}

/* 7. Cut process --------------------------------------------- */
.fg-cut__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.fg-cut__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
.fg-cut__card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.fg-cut__card svg { width: 46px; height: 46px; color: var(--ink); }
.fg-cut__card h3 { font-size: 12.5px; }
.fg-cut__card p { font-size: 11.5px; color: var(--muted); }
.fg-cut__card.is-active { border-color: var(--violet); box-shadow: inset 0 -3px 0 var(--violet); }
.fg-cut__card.is-active svg { color: var(--violet); }
.fg-cut__foot {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.fg-cut__foot b { color: var(--ink); }

/* 8. DPI comparison ------------------------------------------ */
.fg-dpi { background: var(--paper-2); }
.fg-dpi__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.fg-dpi__panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fg-dpi__panel--low { border-color: var(--violet); }
.fg-dpi__panel--high { border-color: var(--acid-deep); }
.fg-dpi__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.fg-dpi__sample {
  height: clamp(130px, 17vw, 190px);
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px dashed var(--line-strong);
  background: var(--paper);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 52px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.fg-dpi__sample--blur { filter: blur(3.2px); opacity: 0.75; }
.fg-dpi__panel p { font-size: 12.5px; color: var(--muted); }
.fg-dpi__meta {
  display: flex;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* 9. Upload band --------------------------------------------- */
.fg-upload__photo { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); margin-bottom: clamp(24px, 3vw, 40px); }
.fg-upload__photo img { width: 100%; height: clamp(150px, 35vw, 399px); object-fit: cover; }
.fg-upload__box { max-width: 760px; margin-inline: auto; text-align: center; }
.fg-upload__box .fg-eyebrow { justify-content: center; }
.fg-upload__box .fg-eyebrow::after { display: none; }
.fg-upload__title { font-size: clamp(28px, 4.4vw, 48px); margin: 14px 0 10px; }
.fg-upload__title mark { background: var(--acid); color: var(--ink); padding: 0 .08em; }
.fg-upload__box > p { font-size: 14px; color: var(--muted); max-width: 52ch; margin-inline: auto; }
.fg-drop {
  margin-top: 26px;
  border: 2px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: clamp(28px, 4vw, 46px);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.fg-drop:hover, .fg-drop.is-drag { border-color: var(--violet); background: var(--paper-2); }
.fg-drop svg { width: 34px; height: 34px; color: var(--violet); margin-inline: auto; }
.fg-drop b { display: block; margin-top: 14px; font-family: var(--font-display); font-weight: 800; font-size: 16px; text-transform: uppercase; }
.fg-drop small {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.fg-drop input { display: none; }
.fg-upload__lines {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* 10. Closing band ------------------------------------------- */
.fg-close { background: var(--ink); color: var(--paper); text-align: center; }
.fg-close .fg-eyebrow { color: rgba(239, 236, 228, 0.55); justify-content: center; }
.fg-close .fg-eyebrow::after { display: none; }
.fg-close__title { font-size: clamp(30px, 5.4vw, 62px); margin: 16px 0 10px; color: #fff; }
.fg-close__title em { font-style: normal; color: var(--acid); display: block; }
.fg-close p { font-size: 14px; color: rgba(239, 236, 228, 0.65); max-width: 54ch; margin-inline: auto; }
.fg-close__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }
.fg-close .btn--ghost { border-color: rgba(255, 255, 255, 0.45); color: #fff; }
.fg-close .btn--ghost:hover { background: #fff; color: var(--ink); }

/* Dark-mode nudges ------------------------------------------- */
[data-theme="dark"] .fg-jump { background: #000; }
[data-theme="dark"] .fg-note { background: #000; }
[data-theme="dark"] .fg-close { background: #000; }
[data-theme="dark"] .fg-dpi__sample { background: var(--paper-2); }
[data-theme="dark"] .fg-strip__tag { background: var(--card); color: var(--ink); border-color: var(--line-strong); }
[data-theme="dark"] .fg-strip__tag--tr { background: var(--acid); color: #101010; }

/* Responsive ------------------------------------------------- */
@media (max-width: 1080px) {
  .fg-check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fg-cut__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fg-bleed__grid { grid-template-columns: minmax(0, 1fr); }
  .fg-head { grid-template-columns: minmax(0, 1fr); align-items: start; }
}

@media (max-width: 860px) {
  .fg-facts__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 0; }
  .fg-fact { border-inline-start: 0; padding-inline: 0 18px; border-top: 1px solid var(--line); }
  .fg-verdict__grid,
  .fg-dpi__grid { grid-template-columns: minmax(0, 1fr); }
  .fg-jump { position: static; }
}

@media (max-width: 620px) {
  .fg-check-grid,
  .fg-cut__grid,
  .fg-facts__grid { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================
   22. CONTACT — press desk page (ct-*)
   ============================================================ */

.ct-eyebrow {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ct-eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.ct-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--ink-soft);
}
.ct-flag--solid { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.ct-flag--acid { background: var(--acid); border-color: var(--ink); color: var(--ink); }
.ct-flag--violet { background: var(--violet); border-color: var(--violet); color: #fff; }

.ct-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 26px;
  align-items: end;
  margin: 20px 0 34px;
}
.ct-head__title { font-size: clamp(28px, 4.2vw, 50px); }
.ct-head__title mark { background: var(--acid); color: var(--ink); padding: 0 .08em; }
.ct-head__aside { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.ct-head__aside p { font-size: 13.5px; color: var(--muted); }

/* 1. Hero ---------------------------------------------------- */
.ct-hero { padding-block: clamp(30px, 4vw, 56px) clamp(20px, 3vw, 34px); }
.ct-hero__flags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.ct-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 30px;
  align-items: start;
}
.ct-hero__title { font-size: clamp(32px, 5.4vw, 62px); }
.ct-hero__title em { font-style: normal; color: var(--violet); }
.ct-hero__lede { margin-top: 20px; font-size: 14.5px; color: var(--muted); max-width: 54ch; }
.ct-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 26px; }
.ct-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease;
}
.ct-phone:hover { background: var(--ink); color: var(--paper); }
.ct-phone svg { width: 14px; height: 14px; }

.ct-cam { background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); padding: 14px; }
.ct-cam__stage { position: relative; border-radius: var(--radius); overflow: hidden; }
.ct-cam__stage img { width: 100%; height: clamp(150px, 18vw, 200px); object-fit: cover; filter: saturate(0.8) contrast(1.05); }
.ct-cam__live,
.ct-cam__bed {
  position: absolute;
  top: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
}
.ct-cam__live { inset-inline-start: 10px; background: var(--acid); color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.ct-cam__live i { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); animation: ct-blink 1.4s infinite; }
.ct-cam__bed { inset-inline-end: 10px; background: rgba(0, 0, 0, 0.6); color: #fff; }
@keyframes ct-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.ct-cam__meta { margin: 16px 4px 4px; display: flex; flex-direction: column; gap: 12px; }
.ct-cam__meta div { border-top: 1px solid rgba(239, 236, 228, 0.16); padding-top: 10px; }
.ct-cam__meta dt { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(239, 236, 228, 0.5); }
.ct-cam__meta dd { margin: 5px 0 0; font-size: 12.5px; color: var(--paper); }
.ct-cam__meta dd span { color: var(--acid); }

/* 2. Promise row --------------------------------------------- */
.ct-promise { padding-block: clamp(20px, 3vw, 34px); }
.ct-promise__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.ct-promise__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.ct-promise__card--acid { border-color: var(--acid-deep); box-shadow: inset 0 -3px 0 var(--acid); }
.ct-promise__card p {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.ct-promise__card b {
  display: block;
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.ct-promise__card span { font-size: 12px; color: var(--muted); }

/* 3. Channels ------------------------------------------------ */
.ct-connect__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ct-channel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ct-channel:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.ct-channel__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ct-channel__top svg { width: 30px; height: 30px; color: var(--violet); }
.ct-channel h3 { font-size: 16px; }
.ct-channel > p { font-size: 13px; color: var(--muted); }
.ct-channel__list { display: flex; flex-direction: column; gap: 8px; font-size: 12.5px; color: var(--ink-soft); }
.ct-channel__list li { display: flex; gap: 8px; }
.ct-channel__list li::before { content: "→"; color: var(--acid-deep); }
.ct-channel .btn { margin-top: auto; }
.ct-channel--dark { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.ct-channel--dark h3 { color: #fff; }
.ct-channel--dark > p { color: rgba(239, 236, 228, 0.65); }
.ct-channel--dark .ct-channel__top svg { color: var(--acid); }
.ct-channel--dark .ct-channel__list { color: rgba(239, 236, 228, 0.82); }
.ct-channel--dark .btn--acid:hover { background: #fff; }

/* 4. Protocol steps ------------------------------------------ */
.ct-proto__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.ct-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ct-step--acid { border-top-color: var(--acid); }
.ct-step__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ct-step__top b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.04em;
  color: var(--violet);
}
.ct-step--acid .ct-step__top b { color: var(--acid-deep); }
.ct-step h3 { font-size: 14px; }
.ct-step p { font-size: 12.5px; color: var(--muted); }
.ct-step__meta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ct-proto__foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ct-proto__foot b { color: var(--ink); }

/* 5. Proof + specimen box ------------------------------------ */
.ct-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}
.ct-quote-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 16px;
}
.ct-quote-card__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.ct-stars { color: var(--acid-deep); font-size: 13px; letter-spacing: 2px; }
.ct-quote-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.75; }
.ct-quote-card__by {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.ct-box {
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ct-box__top { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; }
.ct-box h3 { font-size: 16px; }
.ct-box > p { font-size: 12.5px; color: var(--muted); }
.ct-box__stage { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); }
.ct-box__stage img { width: 100%; height: clamp(130px, 16vw, 180px); object-fit: cover; }
.ct-box__foot {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ct-box__foot b { font-family: var(--font-display); font-size: 20px; letter-spacing: -0.03em; color: var(--ink); }
.ct-box__note { margin-inline-start: auto; }

/* 6. Configurator form --------------------------------------- */
.ct-quote__head { text-align: center; max-width: 720px; margin: 0 auto 34px; }
.ct-quote__head--tight { margin-bottom: 26px; }
.ct-quote__title { font-size: clamp(28px, 4.4vw, 50px); margin: 16px 0 12px; }
.ct-quote__title mark { background: var(--acid); color: var(--ink); padding: 0 .08em; }
.ct-quote__head p { font-size: 13.5px; color: var(--muted); max-width: 58ch; margin-inline: auto; }

.ct-form {
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard);
  max-width: 940px;
  margin-inline: auto;
  padding: clamp(20px, 3vw, 34px);
}
.ct-form__step { border: 0; padding: 0; margin: 0 0 30px; }
.ct-form__step:last-child { margin-bottom: 0; }
.ct-form__step legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 0 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.ct-form__step legend span { font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.12em; color: var(--violet); }
.ct-form__step legend em {
  margin-inline-start: auto;
  font-style: normal;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.ct-form__hint { margin-top: 12px; font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.08em; color: var(--muted); }

.ct-pick-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.ct-pick-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ct-pick {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 14px 16px 14px 38px;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}
.ct-pick:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.ct-pick input {
  position: absolute;
  inset-inline-start: 14px;
  top: 17px;
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
}
.ct-pick--check input { border-radius: 4px; }
.ct-pick input:checked { background: var(--violet); border-color: var(--violet); box-shadow: inset 0 0 0 3px var(--card); }
.ct-pick--check input:checked { box-shadow: none; }
.ct-pick--check input:checked::after {
  content: "";
  position: absolute;
  inset-inline-start: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.ct-pick b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 12px; text-transform: uppercase; }
.ct-pick small { display: block; margin-top: 5px; font-size: 11.5px; color: var(--muted); }
.ct-pick.is-picked { border-color: var(--violet); background: var(--card); box-shadow: inset 0 -2px 0 var(--violet); }

.ct-field-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px 18px; }
.ct-field-grid .field--full { grid-column: 1 / -1; }

.ct-drop {
  display: block;
  text-align: center;
  border: 2px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(22px, 3vw, 34px);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.ct-drop:hover, .ct-drop.is-drag { border-color: var(--violet); background: var(--paper-2); }
.ct-drop svg { width: 28px; height: 28px; color: var(--violet); margin-inline: auto; }
.ct-drop b { display: block; margin-top: 12px; font-family: var(--font-display); font-weight: 800; font-size: 13px; text-transform: uppercase; }
.ct-drop small { display: block; margin: 8px auto 0; font-size: 11.5px; color: var(--muted); max-width: 52ch; }
.ct-drop__link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  border-bottom: 1px solid currentColor;
}
.ct-drop input { display: none; }

.ct-check { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; font-size: 12px; color: var(--muted); cursor: pointer; }
.ct-check input {
  appearance: none;
  flex: none;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  border: 1.5px solid var(--line-strong);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.ct-check input:checked { background: var(--acid); border-color: var(--ink); }
.ct-check input:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid var(--ink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.ct-check b { color: var(--ink); }

.ct-form__foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.ct-form__foot .ct-check { margin-top: 0; max-width: 46ch; }

/* 7. FAQ ----------------------------------------------------- */
.ct-faq__title { font-size: clamp(24px, 3.4vw, 38px); margin-top: 14px; }
.ct-faq .faq-item { border-radius: var(--radius); }
.ct-faq__item--flag { border-color: var(--acid-deep); box-shadow: inset 3px 0 0 var(--acid); }
.ct-faq__foot { text-align: center; margin-top: 20px; }
.ct-faq__foot a {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  border-bottom: 1px solid currentColor;
}

/* Dark-mode nudges ------------------------------------------- */
[data-theme="dark"] .ct-cam,
[data-theme="dark"] .ct-channel--dark { background: #000; border-color: #000; }
[data-theme="dark"] .ct-flag--solid { background: var(--acid); border-color: var(--acid); color: #101010; }
[data-theme="dark"] .ct-pick { background: var(--paper-2); }
[data-theme="dark"] .ct-drop { background: var(--paper-2); }

/* Responsive ------------------------------------------------- */
@media (max-width: 1080px) {
  .ct-hero__grid,
  .ct-head,
  .ct-proof__grid { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .ct-promise__grid,
  .ct-proto__grid,
  .ct-pick-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ct-connect__grid { grid-template-columns: minmax(0, 1fr); }
  .ct-field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .ct-pick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .ct-promise__grid,
  .ct-proto__grid,
  .ct-pick-grid,
  .ct-pick-grid--4,
  .ct-field-grid { grid-template-columns: minmax(0, 1fr); }
  .ct-hero__actions .btn,
  .ct-phone { width: 100%; justify-content: center; }
  .ct-form__foot .btn { width: 100%; justify-content: center; }
}

/* 26. Peel adhesion chart — animated point-to-point draw --------- */

/* Always show the area fill instead of waiting on a JS-toggled class */
.chart__fill { opacity: 0.9; transition: none; }
.chart__fill.is-drawn { opacity: 0.9; }

/* Line draws itself from point 1 to point 6, holds, fades, repeats */
.chart__line,
.chart__line.is-drawn {
  animation: chart-travel-draw 5.6s ease-in-out infinite;
}

@keyframes chart-travel-draw {
  0%   { stroke-dashoffset: 620; opacity: 0; }
  4%   { opacity: 1; }
  62%  { stroke-dashoffset: 0;   opacity: 1; }
  84%  { stroke-dashoffset: 0;   opacity: 1; }
  93%  { stroke-dashoffset: 0;   opacity: 0; }
  94%  { stroke-dashoffset: 620; opacity: 0; }
  100% { stroke-dashoffset: 620; opacity: 0; }
}

/* Each data point pops in exactly when the line reaches it */
.chart__dot circle {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  transform: scale(0);
}

.chart__dot circle:nth-child(1) { animation: chart-dot-1 5.6s ease-in-out infinite; }
.chart__dot circle:nth-child(2) { animation: chart-dot-2 5.6s ease-in-out infinite; }
.chart__dot circle:nth-child(3) { animation: chart-dot-3 5.6s ease-in-out infinite; }
.chart__dot circle:nth-child(4) { animation: chart-dot-4 5.6s ease-in-out infinite; }
.chart__dot circle:nth-child(5) { animation: chart-dot-5 5.6s ease-in-out infinite; }
.chart__dot circle:nth-child(6) { animation: chart-dot-6 5.6s ease-in-out infinite; }

@keyframes chart-dot-1 {
  0%   { opacity: 0; transform: scale(0); }
  3%   { opacity: 1; transform: scale(1.5); }
  8%   { transform: scale(1); }
  84%  { opacity: 1; transform: scale(1); }
  93%  { opacity: 0; transform: scale(0); }
  100% { opacity: 0; transform: scale(0); }
}
@keyframes chart-dot-2 {
  0%, 14% { opacity: 0; transform: scale(0); }
  17%  { opacity: 1; transform: scale(1.5); }
  22%  { transform: scale(1); }
  84%  { opacity: 1; transform: scale(1); }
  93%  { opacity: 0; transform: scale(0); }
  100% { opacity: 0; transform: scale(0); }
}
@keyframes chart-dot-3 {
  0%, 26% { opacity: 0; transform: scale(0); }
  29%  { opacity: 1; transform: scale(1.5); }
  34%  { transform: scale(1); }
  84%  { opacity: 1; transform: scale(1); }
  93%  { opacity: 0; transform: scale(0); }
  100% { opacity: 0; transform: scale(0); }
}
@keyframes chart-dot-4 {
  0%, 38% { opacity: 0; transform: scale(0); }
  41%  { opacity: 1; transform: scale(1.5); }
  46%  { transform: scale(1); }
  84%  { opacity: 1; transform: scale(1); }
  93%  { opacity: 0; transform: scale(0); }
  100% { opacity: 0; transform: scale(0); }
}
@keyframes chart-dot-5 {
  0%, 50% { opacity: 0; transform: scale(0); }
  53%  { opacity: 1; transform: scale(1.5); }
  58%  { transform: scale(1); }
  84%  { opacity: 1; transform: scale(1); }
  93%  { opacity: 0; transform: scale(0); }
  100% { opacity: 0; transform: scale(0); }
}
@keyframes chart-dot-6 {
  0%, 62% { opacity: 0; transform: scale(0); }
  65%  { opacity: 1; transform: scale(1.5); }
  70%  { transform: scale(1); }
  84%  { opacity: 1; transform: scale(1); }
  93%  { opacity: 0; transform: scale(0); }
  100% { opacity: 0; transform: scale(0); }
}

/* 27. Bulk pricing — FAQ section redesign (tighter, centered, real cards) */
#faq { padding-block: clamp(48px, 6vw, 72px); }

#faq .section-head--center {
  max-width: 600px;
  margin: 0 auto 30px;
}

#faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

#faq .faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 20px;
  transition: border-color 0.18s ease, background 0.18s ease;
}
#faq .faq-item:hover { border-color: var(--line-strong); }
#faq .faq-item[open] { border-color: var(--violet); background: var(--violet-ink); }

#faq .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 34px 16px 0;
  margin: 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
#faq .faq-item summary::-webkit-details-marker { display: none; }
#faq .faq-item summary::marker { content: ""; }

#faq .faq-item summary::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 2px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
#faq .faq-item[open] summary::after {
  transform: rotate(-135deg);
  border-color: var(--violet);
}

#faq .faq-item p {
  margin: 0;
  padding: 0 0 18px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
}

/* 21. 404 page ------------------------------------------------ */
.notfound {
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  padding-block: clamp(48px, 8vw, 96px);
}
.notfound__inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.notfound__stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  padding-block: 12px 8px;
}
.notfound__code {
  font-size: clamp(96px, 20vw, 200px);
  line-height: 0.9;
  color: var(--ink);
  -webkit-text-stroke: 2px var(--ink);
}
[data-theme="dark"] .notfound__code {
  color: var(--paper);
  -webkit-text-stroke: 2px var(--acid);
}
.notfound__badge {
  position: absolute;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 8px 14px;
  background: var(--card);
  box-shadow: var(--shadow-hard);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.02em;
  animation: float-y 7s ease-in-out infinite;
  pointer-events: none;
  transition: transform 0.12s ease-out;
}
.notfound__badge--a { top: -6%; inset-inline-start: 2%; background: #ff5d73; color: #fff; transform: rotate(calc(-8deg + var(--tilt-x, 0deg))); }
.notfound__badge--b { bottom: 4%; inset-inline-start: 20%; background: var(--acid); font-size: 18px; padding: 8px 12px; animation-delay: -1.6s; transform: rotate(calc(6deg + var(--tilt-y, 0deg))); }
.notfound__badge--c { top: 6%; inset-inline-end: 0%; background: var(--violet); color: #fff; animation-delay: -3s; transform: rotate(calc(9deg + var(--tilt-x, 0deg))); }

.notfound__title { font-size: clamp(24px, 3.4vw, 34px); }
.notfound__lede { color: var(--ink-soft); max-width: 46ch; }
.notfound__actions { margin-top: 6px; }

@media (max-width: 640px) {
  .notfound__badge { display: none; }
}

/* 28. Auth page — login / register ------------------------------- */
.auth-section { padding-block: clamp(40px, 6vw, 90px); }

.auth-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.auth-card.is-shake { animation: auth-shake 0.4s ease; }
@keyframes auth-shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}

.auth-form-panel { padding: clamp(32px, 4vw, 56px); }

.auth-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--paper-2);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 32px;
}
.auth-tabs__btn {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  cursor: pointer;
  border-radius: 999px;
  transition: color 0.2s ease;
}
.auth-tabs__btn.is-active { color: #101010; }
.auth-tabs__indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  width: calc(50% - 4px);
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-panel { display: none; }
.auth-panel.is-active { display: block; animation: auth-fade 0.35s ease; }
@keyframes auth-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.auth-title { font-size: clamp(26px, 3vw, 32px); margin-top: 14px; }
.auth-sub { color: var(--muted); font-size: 13.5px; margin-top: 8px; margin-bottom: 28px; max-width: 42ch; }

/* after */
.field__control { position: relative; }
.field--password input { padding-right: 44px; }
.field__toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.16s ease, background 0.16s ease;
}
.field__toggle:hover { color: var(--ink); background: var(--paper-2); }
.field__toggle svg { width: 17px; height: 17px; }
.field__toggle .icon-eye-off { display: none; }
.field--password.is-visible .icon-eye { display: none; }
.field--password.is-visible .icon-eye-off { display: block; }

.field__msg { display: block; min-height: 16px; font-size: 11px; margin-top: 5px; font-family: var(--font-mono); letter-spacing: 0.02em; color: var(--muted); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #ff5d73; }
.field.is-invalid .field__msg { color: #ff5d73; }
.field.is-valid input, .field.is-valid select, .field.is-valid textarea { border-color: var(--acid-deep); }

.auth-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin: -2px 0 20px; font-size: 12.5px; }
.auth-row a { color: var(--violet); }
.auth-row a:hover { text-decoration: underline; }
.auth-check--inline { margin-bottom: 0; }

/* after */
.auth-check { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--muted); cursor: pointer; margin-bottom: 6px; }
.auth-check input { margin: 0; accent-color: var(--acid-deep); width: 15px; height: 15px; flex: none; }
.auth-check a { color: var(--violet); }
.auth-check.is-invalid { color: #ff5d73; }
.auth-check.is-invalid a { color: #ff5d73; text-decoration: underline; }
.auth-form-panel form > .field__msg { margin-bottom: 14px; }

.auth-meter { margin: -8px 0 20px; }
.auth-meter .meter__head span:last-child { font-family: var(--font-mono); font-size: 15px; color: var(--muted); }

.btn.is-loading { opacity: 0.75; pointer-events: none; }

.auth-foot { margin-top: 18px; font-size: 12.5px; color: var(--muted); text-align: center; }
.auth-link { background: none; border: 0; padding: 0; color: var(--violet); font-weight: 700; cursor: pointer; font-size: inherit; font-family: inherit; }
.auth-link:hover { text-decoration: underline; }

.auth-showcase {
  position: relative;
  background: #101010;
  color: #efece4;
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.auth-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(107, 59, 245, 0.35), transparent 55%),
    radial-gradient(circle at 10% 85%, rgba(168, 214, 47, 0.25), transparent 55%);
  pointer-events: none;
}
.auth-showcase > * { position: relative; }
.auth-showcase__chip { margin-bottom: 26px; }
.auth-showcase__chip .pulse-note { color: rgba(242, 240, 233, 0.8); }
.auth-showcase__chip .pulse-note::before { background: var(--acid); }
.auth-showcase__title { font-size: clamp(28px, 3.4vw, 38px); color: #fff; margin-top: 10px; line-height: 1.15; }
.auth-showcase__title mark { background: var(--acid); color: #101010; padding: 0 0.1em; }
.auth-showcase p { color: rgba(242, 240, 233, 0.65); font-size: 13.5px; margin-top: 14px; max-width: 38ch; }
.auth-showcase__list { margin-top: 26px; flex-direction: column; gap: 12px; }
.auth-showcase__list span { color: rgba(242, 240, 233, 0.85); font-size: 12.5px; }
.auth-showcase__list span::before { color: var(--acid); }
.auth-showcase__stat { margin-top: auto; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.auth-showcase__stat b { display: block; font-family: var(--font-display); font-size: 26px; color: #fff; }
.auth-showcase__stat span { font-family: var(--font-mono); font-size: 11px; color: rgba(242, 240, 233, 0.55); }

@media (max-width: 900px) {
  .auth-card { grid-template-columns: minmax(0, 1fr); }
  .auth-showcase { display: none; }
}
@media (max-width: 520px) {
  .auth-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   Responsive Rules — STICKR LAB Comprehensive Viewport Overhaul
   Breakpoints: 1440px+, 1280px, 1024px, 768px, 480px, 360px
   ============================================================ */

/* Global Responsive & Overflow Containment */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img, svg, video, canvas, iframe {
  max-width: 100%;
  height: auto;
}

.shell {
  width: 100%;
  max-width: var(--shell-max, 1280px);
  padding-inline: var(--gutter, 24px);
  box-sizing: border-box;
}

/* Touch Target Optimization (>= 44px) */
.btn, .icon-btn, .nav__link, .drawer a, .chip, .option, input, select, textarea {
  min-height: 44px;
}

/* Fix: stop custom radio/checkbox controls from inheriting the 44px touch-target min-height */
.ct-pick input,
.ct-check input,
.option input,
.auth-check input {
  min-height: 0;
  min-width: 0;
}
.icon-btn {
  min-width: 44px;
  min-height: 44px;
}
.drawer a {
  padding-block: 12px;
}

/* Fluid Typography and Spacing Reset */
.hero__title {
  font-size: clamp(30px, 5.2vw, 64px);
}
.section-title {
  font-size: clamp(24px, 3.6vw, 42px);
}
.page-head__title {
  font-size: clamp(26px, 4.2vw, 54px);
}
.section {
  padding-block: clamp(36px, 5.5vw, 88px);
}

/* Responsive Table & Scroll Containers */
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
}

/* Laptops / Desktops (<= 1280px) */
@media (max-width: 1280px) {
  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ct-promise__grid,
  .ct-proto__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .fg-cut__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
  :root {
    --gutter: 20px;
  }

  .nav, .tools .is-desktop {
    display: none !important;
  }
  .nav-toggle {
    display: grid !important;
  }

  .hero__grid,
  .ct-hero__grid,
  .page-head__grid,
  .split-head,
  .split-head--catalogue {
    grid-template-columns: minmax(0, 1fr);
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .audience-grid,
  .material-grid,
  .material-select-grid,
  .products-grid,
  .catalogue-grid,
  .use-grid,
  .price-grid,
  .quote-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ct-promise__grid,
  .ct-proto__grid,
  .ct-pick-grid--4,
  .fg-facts__grid,
  .fg-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fg-cut__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lab-grid,
  .product-layout,
  .estimator-layout,
  .customizer-grid,
  .process-layout,
  .guide-layout,
  .auth-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .spec-panel {
    position: static;
    width: 100%;
  }

  .sticker-wall,
  .ring-slider {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Large Phones & Portrait Tablets (<= 768px) */
@media (max-width: 768px) {
  :root {
    --gutter: 18px;
  }

  .bento-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .wall-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ct-connect__grid,
  .ct-pick-grid,
  .ct-field-grid,
  .fg-verdict__grid,
  .fg-dpi__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .fg-cut__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__stage {
    min-height: 280px;
    order: -1;
  }

  .hero__actions,
  .ct-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero__actions .btn,
  .ct-hero__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .outro-form {
    min-width: 0;
    width: 100%;
    flex-direction: column;
  }

  .hero__meta {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Mobile Phones (<= 480px) */
@media (max-width: 480px) {
  :root {
    --gutter: 16px;
  }

  .audience-grid,
  .material-grid,
  .material-select-grid,
  .products-grid,
  .catalogue-grid,
  .use-grid,
  .price-grid,
  .quote-grid,
  .advantage-grid,
  .stat-row,
  .ct-promise__grid,
  .ct-proto__grid,
  .ct-pick-grid--4,
  .fg-facts__grid,
  .fg-check-grid,
  .fg-cut__grid,
  .footer-grid,
  .wall-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .brand__name {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .sticker {
    font-size: 11px;
    padding: 10px 12px;
  }
  .sticker__round {
    width: 68px;
    height: 68px;
    font-size: 9px;
  }
}

/* Small Screens (<= 360px) */
@media (max-width: 360px) {
  :root {
    --gutter: 12px;
  }

  .hero__title {
    font-size: 26px;
  }
  .section-title {
    font-size: 22px;
  }
  .drawer {
    width: 100%;
  }
}

/* Page-head hero media (floating image + badges) */
.page-head__media {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-head__media-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-hard);
  animation: float-y 7s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.page-head__media-frame:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px -14px rgba(13, 14, 18, 0.35);
}
.page-head__media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Small floating badge chips over the image */
.page-head__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--card);
  box-shadow: var(--shadow-hard);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  animation: float-y 6s ease-in-out infinite;
}
.page-head__chip::before { content: "●"; color: var(--acid-deep); font-size: 8px; }

.page-head__chip--a { top: -14px; left: -10px; animation-delay: 0s; }
.page-head__chip--b { bottom: -14px; right: -14px; animation-delay: 0.6s; }
.page-head__chip--c { top: 40%; right: -18px; animation-delay: 1.2s; }

@media (max-width: 720px) {
  .page-head__media { min-height: 200px; margin-top: 16px; }
  .page-head__chip { font-size: 9px; padding: 6px 10px; }
}
