/* =========================================================
   DM Print — WOW edition
   Palette: nero profondo + giallo brand + crema
   ========================================================= */

:root {
  --yellow: #FFD60A;
  --yellow-deep: #FFC300;
  --yellow-soft: #FFE875;
  --red: #FF3B30;
  --ink: #0A0A0A;
  --ink-2: #1A1A1A;
  --ink-3: #2A2A2A;
  --paper: #FBF7F0;
  --cream: #F4E9D8;
  --muted: #8A8A8A;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.22);
  --line-dark: rgba(10, 10, 10, 0.10);
  --line-dark-strong: rgba(10, 10, 10, 0.22);

  --display: "Instrument Serif", Georgia, serif;
  --sans: "Bricolage Grotesque", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --container: min(1240px, 100% - 32px);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 0 rgba(0,0,0,0.06), 0 4px 14px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 0 rgba(0,0,0,0.08), 0 14px 30px rgba(0,0,0,0.16);
  --shadow-yellow: 0 18px 50px rgba(255, 214, 10, 0.35);
}

@font-face {
  font-family: 'DIN Condensed Bold';
  src: url('../fonts/din-condensed-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--yellow); color: var(--ink); }

/* Force-mode wrapper (Tweaks "viewMode") */
html[data-view-mode="mobile"] body { max-width: 430px; margin: 0 auto; box-shadow: 0 0 0 1px var(--line) inset; }
html[data-view-mode="desktop"] body { min-width: 1200px; }

.shell { position: relative; z-index: 1; }
.container { width: var(--container); margin: 0 auto; }
.eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow); }
.eyebrow.muted { color: var(--muted); }
.eyebrow.dark { color: var(--ink-2); }

.section-on-light { background: var(--paper); color: var(--ink); }
.section-on-light .eyebrow { color: var(--ink-2); }
.section-on-cream { background: var(--cream); color: var(--ink); }

/* ============================================================
   Reveal-on-scroll (used by IntersectionObserver in JS)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
  will-change: transform, opacity;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-in { transition-delay: .08s; }
.reveal-delay-2.is-in { transition-delay: .16s; }
.reveal-delay-3.is-in { transition-delay: .24s; }
.reveal-delay-4.is-in { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-delay-1, .reveal-delay-2, .reveal-delay-3, .reveal-delay-4 {
    opacity: 1; transform: none; transition: none;
  }
  *, *::before, *::after { animation-duration: .001s !important; animation-delay: 0s !important; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px; line-height: 1;
  transition: transform .18s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: translateY(1px); }
.btn-yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 8px 0 -2px rgba(255,214,10,0.35); }
.btn-yellow:hover { background: var(--yellow-soft); transform: translateY(-2px); box-shadow: 0 12px 0 -2px rgba(255,214,10,0.5); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--ink-2); }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-paper:hover { background: var(--yellow); }
.btn-ghost { background: transparent; color: var(--paper); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-ghost-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--line-dark-strong); }
.btn-ghost-dark:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-sm { padding: 12px 16px; font-size: 14px; }

.iconbtn {
  width: 40px; height: 40px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: inherit;
}
.iconbtn:hover { background: rgba(255,255,255,0.08); }
.section-on-light .iconbtn:hover { background: var(--cream); }

/* Marquee CTA — text scrolls inside button */
.btn-mq { padding: 16px 0; min-width: 220px; justify-content: center; }
.btn-mq .btn-mq-track {
  display: inline-flex; gap: 28px; white-space: nowrap;
  animation: btn-mq-scroll 8s linear infinite;
}
@keyframes btn-mq-scroll { to { transform: translateX(-50%); } }

/* ============================================================
   Topbar — sticky, glassy, with promo strip on top
   ============================================================ */
.promo-strip {
  background: var(--yellow);
  color: var(--ink);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid var(--ink);
}
.promo-strip .marquee-track { animation-duration: 30s; }
.promo-strip .marquee-item {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 24px;
}
.promo-strip .marquee-item span { display: inline-flex; align-items: center; gap: 12px; }
.promo-strip .marquee-item svg { color: var(--ink); }

.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: border-color .2s, background .2s;
}
.topbar-inner {
  width: var(--container); margin: 0 auto;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.topbar-logo { display: inline-flex; align-items: center; gap: 12px; flex-wrap: nowrap; }
.topbar-logo .logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--yellow); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 22px; font-style: italic; font-weight: 400;
  line-height: 1;
}
.topbar-logo .logo-text {
  font-family: var(--display); font-size: 22px; line-height: 1;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.topbar-logo .logo-text em { font-style: italic; color: var(--yellow); }
.topbar-nav { display: none; }
.topbar-link {
  padding: 8px 12px; font-size: 14px; font-weight: 500; border-radius: 8px;
  position: relative;
}
.topbar-link::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.topbar-link:hover::after { transform: scaleX(1); }
.topbar-actions { display: flex; align-items: center; gap: 6px; }
.topbar-cta { display: none; }
.cart { position: relative; }
.cart-dot {
  position: absolute; top: 4px; right: 4px;
  background: var(--yellow); color: var(--ink);
  font-family: var(--mono); font-size: 10px;
  min-width: 16px; height: 16px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 4px;
  font-weight: 700;
}

/* Drawer */
.drawer { position: fixed; inset: 0; z-index: 90; pointer-events: none; }
.drawer.is-open { pointer-events: auto; }
.drawer-bg {
  position: absolute; inset: 0; background: rgba(0,0,0,0.6);
  opacity: 0; transition: opacity .25s;
}
.drawer.is-open .drawer-bg { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: min(86%, 380px);
  background: var(--ink); color: var(--paper);
  transform: translateX(-105%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
  padding: 18px 18px 24px;
}
.drawer.is-open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 4px 18px; }
.drawer-nav { flex: 1; }
.drawer-nav li { border-top: 1px solid var(--line); }
.drawer-nav li:last-child { border-bottom: 1px solid var(--line); }
.drawer-nav button {
  width: 100%; padding: 18px 4px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--display); font-size: 32px; font-weight: 400;
  color: var(--paper);
  line-height: 1;
  padding-bottom: 22px;
}
.drawer-nav button em { font-style: italic; color: var(--yellow); }
.drawer-nav button span:first-child { transition: transform .2s; }
.drawer-nav button:hover span:first-child { transform: translateX(8px); color: var(--yellow); }
.drawer-foot { padding-top: 18px; display: grid; gap: 10px; }
.drawer-call {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-radius: 999px;
  background: var(--yellow); color: var(--ink);
  font-size: 14px; font-weight: 600;
}
.drawer-foot-note { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; opacity: 0.5; margin: 8px 0 0; }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 80px 0; position: relative; }
.section-head { max-width: 30em; margin-bottom: 48px; }
.section-head h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 8vw, 88px);
  line-height: 1.0; letter-spacing: -0.02em;
  margin: 16px 0 56px;
  padding-bottom: 0.55em;
  text-wrap: balance;
}
.section-head h2 em { font-style: italic; color: var(--yellow); }
.section-on-light .section-head h2 em { color: var(--red); }
.section-head .lede {
  margin-top: 0;
  font-size: 18px;
  color: rgba(251,247,240,0.72);
  max-width: 38em;
  text-wrap: pretty;
}
.section-on-light .section-head .lede { color: rgba(10,10,10,0.7); }

/* ============================================================
   HERO — the WOW
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 24px 0 0;
  overflow: hidden;
  isolation: isolate;
}
/* Floating background shapes */
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.hero .hero-bg { z-index: 0; }
.hero .container { position: relative; z-index: 2; }
.hero-title { position: relative; z-index: 3; text-transform: uppercase; }
.hero-bg svg { position: absolute; }
.hero-shape {
  position: absolute;
  animation-duration: 16s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.hero-shape.donut-pink { top: 4%; left: -3%; width: 110px; height: 110px; animation-name: float-a; animation-duration: 14s; opacity: 0.85; }
.hero-shape.donut-yellow { top: 6%; right: 4%; width: 80px; height: 80px; animation-name: float-b; animation-duration: 18s; }
.hero-shape.dot-yellow { top: 60%; left: 6%; width: 22px; height: 22px; animation-name: float-c; animation-duration: 9s; background: var(--yellow); border-radius: 999px; }
.hero-shape.dot-red { top: 32%; right: 30%; width: 14px; height: 14px; animation-name: float-c; animation-duration: 7s; background: var(--red); border-radius: 999px; }
.hero-shape.dot-cream { top: 78%; right: 12%; width: 32px; height: 32px; animation-name: float-a; animation-duration: 11s; background: var(--cream); border-radius: 999px; opacity: 0.4; }
.hero-shape.ring-yellow {
  top: 70%; left: 38%; width: 70px; height: 70px;
  border: 6px solid var(--yellow); border-radius: 999px;
  animation-name: float-b; animation-duration: 13s;
}
.hero-shape.cross {
  top: 20%; left: 44%; width: 36px; height: 36px;
  animation-name: float-c; animation-duration: 8s;
}
.hero-shape.cross::before, .hero-shape.cross::after {
  content: ""; position: absolute; background: var(--yellow);
  left: 50%; top: 50%;
}
.hero-shape.cross::before { width: 100%; height: 4px; transform: translate(-50%,-50%); }
.hero-shape.cross::after { width: 4px; height: 100%; transform: translate(-50%,-50%); }

@keyframes float-a {
  0%,100% { transform: translate(0,0) rotate(0); }
  50% { transform: translate(20px, -30px) rotate(8deg); }
}
@keyframes float-b {
  0%,100% { transform: translate(0,0) rotate(0); }
  50% { transform: translate(-25px, 20px) rotate(-12deg); }
}
@keyframes float-c {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(10px, -15px) scale(1.2); }
}

.hero .container { position: relative; z-index: 2; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}
.hero-tag .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--yellow); animation: pulse 1.6s ease-in-out infinite; box-shadow: 0 0 0 0 rgba(255,214,10, 0.7); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,214,10, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,214,10, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255,214,10, 0); }
}

/* Massive title with split words */
.hero-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(56px, 14vw, 180px);
  line-height: 1.18; letter-spacing: -0.03em;
  margin: 28px 0 28px;
  padding-bottom: 0.18em;
  position: relative; z-index: 3;
  word-spacing: 0.05em;
}
.hero-title .word {
  display: inline;
  margin: 0;
}
.hero-title .word > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%);
  animation: word-up 1.0s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-title .word.delay-1 > span { animation-delay: .12s; }
.hero-title .word.delay-2 > span { animation-delay: .24s; }
.hero-title .word.delay-3 > span { animation-delay: .36s; }
.hero-title .word.delay-4 > span { animation-delay: .48s; }
.hero-title .word.delay-5 > span { animation-delay: .60s; }
.hero-title em { font-style: italic; color: var(--yellow); display: inline-block; }
@keyframes word-up { to { opacity: 1; transform: translateY(0); } }

.hero-lede {
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(251,247,240,0.78);
  max-width: 32em;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.hero-lede i { font-style: italic; color: var(--yellow); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-stage {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
}
/* Big number stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.hero-stat .num {
  font-family: var(--display); font-size: clamp(36px, 8vw, 76px);
  line-height: 1; font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--yellow);
  font-style: italic;
}
.hero-stat .lbl {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(251,247,240,0.6);
  margin-top: 8px;
  line-height: 1.5;
}

/* Hero image collage */
.hero-collage {
  position: relative; width: 100%;
  aspect-ratio: 4/3;
  margin-top: 40px;
}
.collage-tile {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--ink-3);
}
.collage-tile img { width: 100%; height: 100%; object-fit: cover; }
.collage-tile.t1 { top: 0; left: 4%; width: 46%; aspect-ratio: 4/5; transform: rotate(-4deg); animation: tile-bob 6s ease-in-out infinite; }
.collage-tile.t2 { top: 8%; right: 0; width: 44%; aspect-ratio: 1; transform: rotate(3deg); animation: tile-bob 8s ease-in-out infinite reverse; }
.collage-tile.t3 { bottom: 0; left: 22%; width: 50%; aspect-ratio: 4/3; transform: rotate(-2deg); animation: tile-bob 7s ease-in-out infinite; animation-delay: .8s; }
.collage-tile.t4 {
  top: 38%; left: 0; width: 130px; height: 130px;
  background: var(--yellow); display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-family: var(--display); font-style: italic; font-size: 20px;
  text-align: center; padding: 14px; line-height: 1.05;
  transform: rotate(-8deg);
  animation: tile-bob 5s ease-in-out infinite reverse;
}
@keyframes tile-bob {
  0%, 100% { transform: translateY(0) rotate(var(--r, -4deg)); }
  50% { transform: translateY(-10px) rotate(var(--r, -4deg)); }
}

/* Hero bandierina sventolante (signature element) */
.flag-banderina {
  position: absolute;
  top: 8%; right: 8%;
  width: 140px; height: auto;
  z-index: 3;
  transform-origin: bottom left;
}
.flag-banderina .flag-cloth {
  transform-origin: 0% 50%;
  animation: flag-wave 3s ease-in-out infinite;
}
@keyframes flag-wave {
  0%, 100% { transform: rotateY(0deg) skewX(0); }
  25% { transform: rotateY(15deg) skewX(-3deg); }
  50% { transform: rotateY(0) skewX(2deg); }
  75% { transform: rotateY(-10deg) skewX(0); }
}

/* ============================================================
   Marquee — used in many places
   ============================================================ */
.marquee { overflow: hidden; }
.marquee-track {
  display: flex; width: max-content;
  animation: marquee var(--dur, 40s) linear infinite;
}
.marquee-track.rev { animation-direction: reverse; }
.marquee-group { display: flex; gap: 32px; padding-right: 32px; }
.marquee-item { white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

.giant-marquee {
  background: var(--yellow); color: var(--ink);
  padding: 24px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.giant-marquee .marquee-item {
  font-family: var(--display); font-style: italic;
  font-size: clamp(48px, 10vw, 120px);
  line-height: 1;
  display: inline-flex; align-items: center; gap: 32px;
}
.giant-marquee .star {
  width: 0.6em; height: 0.6em; flex: none;
  background: var(--ink);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 0 L14.5 9 L24 9.5 L16.5 15 L19.5 24 L12 18.5 L4.5 24 L7.5 15 L0 9.5 L9.5 9 Z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 0 L14.5 9 L24 9.5 L16.5 15 L19.5 24 L12 18.5 L4.5 24 L7.5 15 L0 9.5 L9.5 9 Z'/></svg>") center/contain no-repeat;
}

/* Photo marquee — real-feel placeholders */
.photo-marquee { padding: 24px 0; }
.photo-marquee .marquee-item {
  display: inline-flex; align-items: center; gap: 24px;
  padding-right: 24px;
}
.photo-tile {
  width: 280px; height: 200px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  flex: none;
  background: var(--ink-3);
  border: 1px solid var(--line);
  transition: transform .3s;
}
.photo-tile:hover { transform: scale(1.03); }
.photo-tile img { width: 100%; height: 100%; object-fit: cover; }
.photo-tile-label {
  position: absolute; left: 12px; bottom: 12px;
  background: var(--yellow); color: var(--ink);
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 6px;
}

/* ============================================================
   Products
   ============================================================ */
.filter-row {
  display: flex; gap: 8px; overflow-x: auto; margin-bottom: 28px;
  padding-bottom: 8px; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-row::-webkit-scrollbar { display: none; }
.filter {
  padding: 10px 18px; border-radius: 999px;
  background: transparent; border: 1.5px solid var(--line-strong);
  font-size: 14px; font-weight: 500; white-space: nowrap;
  color: var(--paper);
  transition: all .2s;
}
.filter:hover { border-color: var(--yellow); color: var(--yellow); }
.filter.is-active { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

.product-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
.product-card {
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s ease, border-color .25s;
  position: relative;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--yellow); }
.product-art {
  position: relative; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink-3);
  overflow: hidden;
}
.product-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-art img { transform: scale(1.06); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--yellow); color: var(--ink);
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 6px;
  z-index: 2;
  white-space: nowrap;
}
.product-meta { padding: 22px 22px 22px; }
.product-meta-top { display: grid; grid-template-columns: 1fr auto; gap: 0 12px; align-items: start; }
.product-meta h3 {
  font-family: var(--display); font-size: 30px; font-weight: 400; margin: 0;
  line-height: 1.0; padding-bottom: 0.3em;
}
.product-num { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.12em; padding-top: 8px; white-space: nowrap; }
.product-meta p { color: rgba(251,247,240,0.7); font-size: 14px; margin: 14px 0 18px; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.from { font-size: 13px; color: var(--muted); }
.from b { color: var(--paper); font-size: 18px; font-weight: 600; margin: 0 2px 0 4px; font-family: var(--display); font-style: italic; }
.from small { font-family: var(--mono); font-size: 10px; }

/* ============================================================
   Packs — drama panels
   ============================================================ */
.packs-list { display: grid; gap: 16px; }
.pack {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s, transform .3s;
  display: flex; flex-direction: column;
  position: relative;
}
.pack::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(255,214,10,0.08), transparent 40%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.pack:hover { border-color: var(--yellow); transform: translateY(-4px); }
.pack:hover::before { opacity: 1; }
.pack.is-featured { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.pack.is-featured .pack-toggle { background: rgba(0,0,0,0.1); color: var(--ink); }
.pack-head { width: 100%; text-align: left; padding: 26px 24px 24px; display: block; }
.pack-head-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; min-height: 24px; gap: 10px; }
.pack-badge {
  background: var(--ink); color: var(--yellow);
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 6px;
  white-space: nowrap;
}
.pack.is-featured .pack-badge { background: var(--ink); color: var(--yellow); }
.pack:not(.is-featured) .pack-badge { background: var(--yellow); color: var(--ink); }
.pack-toggle { width: 32px; height: 32px; border-radius: 999px; background: rgba(255,255,255,0.1); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.pack-name { font-family: var(--display); font-size: 44px; font-weight: 400; margin: 0; line-height: 0.95; padding-bottom: 0.3em; letter-spacing: -0.02em; }
.pack-name em { font-style: italic; color: var(--yellow); }
.pack.is-featured .pack-name em { color: var(--ink); }
.pack-price { display: flex; align-items: baseline; gap: 8px; margin: 12px 0 14px; flex-wrap: nowrap; }
.pack-price .curr { font-family: var(--mono); font-size: 14px; opacity: 0.7; }
.pack-price .num { font-family: var(--display); font-size: 64px; line-height: 1; font-weight: 400; font-style: italic; }
.pack-price s { font-family: var(--mono); font-size: 12px; opacity: 0.6; align-self: flex-end; padding-bottom: 10px; }
.pack-pitch { color: rgba(251,247,240,0.72); font-size: 15px; margin: 0; }
.pack.is-featured .pack-pitch { color: rgba(10,10,10,0.78); }
.pack-body { padding: 0 24px 26px; }
.pack-body ul { display: grid; gap: 10px; padding: 16px 0 20px; border-top: 1px dashed var(--line-strong); margin-top: 6px; }
.pack.is-featured .pack-body ul { border-color: rgba(10,10,10,0.18); }
.pack-body li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.pack-body li svg { flex: none; margin-top: 5px; color: var(--yellow); }
.pack.is-featured .pack-body li svg { color: var(--ink); }
.pack-cta { width: 100%; justify-content: center; }

/* ============================================================
   Configurator
   ============================================================ */
.cfg-grid { display: grid; gap: 22px; }
.cfg-stage {
  position: relative;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
  border: 1px solid var(--ink);
  overflow: hidden;
}
.cfg-stage::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(45deg, transparent 49%, rgba(0,0,0,0.06) 49%, rgba(0,0,0,0.06) 51%, transparent 51%);
  background-size: 14px 14px;
}
.cfg-art-wrap { position: relative; width: 100%; max-width: 400px; height: auto; z-index: 2; }
.cfg-art { width: 100%; height: auto; }
.cfg-stage-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--ink); color: var(--yellow);
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 6px; z-index: 3;
}
.cfg-controls {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px;
  display: grid; gap: 14px;
}
.cfg-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.cfg-row { display: flex; flex-wrap: wrap; gap: 8px; }
.cfg-pill {
  padding: 10px 16px; border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  font-size: 14px; font-weight: 500;
  text-transform: capitalize;
  color: var(--paper);
  transition: all .2s;
}
.cfg-pill:hover { border-color: var(--yellow); }
.cfg-pill.is-on { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.cfg-swatch {
  width: 36px; height: 36px; border-radius: 999px; cursor: pointer;
  border: 2px solid var(--ink-2); box-shadow: 0 0 0 1px var(--line-strong);
}
.cfg-swatch.is-on { box-shadow: 0 0 0 2px var(--yellow); transform: scale(1.08); }
.cfg-swatch-custom {
  background: conic-gradient(red,orange,yellow,green,blue,purple,red);
  position: relative; overflow: hidden;
}
.cfg-swatch-custom input { opacity: 0; width: 100%; height: 100%; cursor: pointer; }
.cfg-input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line-strong); border-radius: 12px;
  background: var(--ink); color: var(--paper); font-size: 15px;
}
.cfg-input::placeholder { color: var(--muted); }
.cfg-input:focus { outline: 2px solid var(--yellow); outline-offset: 2px; border-color: var(--yellow); }

.cfg-foot {
  margin-top: 12px; padding-top: 18px;
  border-top: 1px dashed var(--line-strong);
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.cfg-price { display: flex; flex-direction: column; }
.cfg-price-lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; }
.cfg-price-val {
  font-family: var(--display); font-size: 44px; line-height: 1; color: var(--yellow); font-style: italic;
}
.cfg-price small { font-family: var(--mono); font-size: 10px; color: var(--muted); }

/* ============================================================
   Process — 4 passi with scroll animation
   ============================================================ */
.process { background: var(--paper); color: var(--ink); }
.steps {
  display: grid; gap: 16px;
  margin-bottom: 56px;
  position: relative;
}
.step {
  position: relative;
  padding: 28px 24px 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "n h" "n p";
  gap: 4px 22px;
  align-items: start;
  transition: background .3s, transform .3s;
  overflow: hidden;
}
.step:hover { background: var(--ink); color: var(--paper); transform: translateX(6px); }
.step:hover .step-n { color: var(--yellow); }
.step:hover .step-icon { background: var(--yellow); color: var(--ink); }
.step:hover p { color: rgba(251,247,240,0.78); }
.step-n {
  grid-area: n;
  font-family: var(--display); font-size: 80px; line-height: 0.85;
  color: var(--ink-3); font-style: italic;
  letter-spacing: -0.04em;
  transition: color .3s;
}
.step-icon {
  display: none;
}
.step h3 { grid-area: h; font-family: var(--display); font-size: 28px; font-weight: 400; margin: 6px 0 0; line-height: 1.05; padding-bottom: 0.2em; }
.step p { grid-area: p; color: rgba(10,10,10,0.7); font-size: 15px; margin: 0; max-width: 38em; transition: color .3s; }

.tech-band { display: grid; gap: 14px; }
.tech-card {
  padding: 28px 24px; border-radius: var(--radius-lg);
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.tech-card .eyebrow { color: var(--yellow); }
.tech-card.invert { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.tech-card.invert .eyebrow { color: var(--ink-2); }
.tech-card h4 {
  font-family: var(--display); font-size: 32px; font-weight: 400; margin: 8px 0 0;
  line-height: 1.0; padding-bottom: 0.35em;
}
.tech-card h4 em { font-style: italic; }
.tech-card.invert h4 em { color: var(--red); }
.tech-card:not(.invert) h4 em { color: var(--yellow); }
.tech-card p { margin: 0; font-size: 15px; opacity: 0.8; }

/* ============================================================
   Bandierine showcase — signature element
   ============================================================ */
.flags { background: var(--ink); padding: 100px 0 80px; position: relative; overflow: hidden; }
.flags-marquee-bg {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; align-items: center; opacity: 0.08;
}
.flags-marquee-bg .marquee-item {
  font-family: var(--display); font-style: italic;
  font-size: 240px; line-height: 1;
  color: var(--yellow);
}
.flags-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 48px;
}
.flag-card {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 18px;
  transition: transform .3s;
}
.flag-card:hover { transform: translateY(-6px) rotate(-1deg); border-color: var(--yellow); }
.flag-card svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.flag-card .flag-label {
  position: relative; z-index: 2;
  background: var(--yellow); color: var(--ink);
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 6px;
}
.flag-cloth-anim { transform-origin: 0 50%; animation: flag-wave 3s ease-in-out infinite; }
.flag-cloth-anim.delay-1 { animation-delay: 0.4s; }
.flag-cloth-anim.delay-2 { animation-delay: 0.8s; }
.flag-cloth-anim.delay-3 { animation-delay: 1.2s; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { background: var(--paper); color: var(--ink); }
.stories { display: grid; gap: 16px; }
.story {
  padding: 28px 26px; border-radius: var(--radius-lg);
  background: var(--paper); border: 1px solid var(--line-dark);
  position: relative; overflow: hidden;
  transition: background .3s, color .3s;
}
.story:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.story:hover p { color: var(--paper); }
.story:hover .story-meta span { color: var(--yellow); }
.story::before {
  content: '"'; position: absolute; top: -50px; right: 12px;
  font-family: var(--display); font-size: 220px;
  color: var(--yellow); opacity: 0.5; line-height: 1; font-style: italic;
  transition: color .3s;
  pointer-events: none;
}
.story:hover::before { opacity: 0.6; }
.story-stars { display: flex; gap: 4px; margin-bottom: 12px; color: var(--yellow); position: relative; z-index: 2; }
.story-quote {
  font-family: var(--display); font-size: 22px; line-height: 1.3; margin: 0 0 22px;
  padding-bottom: 0.15em; position: relative; z-index: 2;
}
.story-meta { display: flex; align-items: center; gap: 14px; position: relative; z-index: 2; }
.story-avatar {
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--yellow); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-style: italic; font-size: 22px; font-weight: 400;
  flex: none;
}
.story-meta strong { display: block; font-size: 14px; }
.story-meta span { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; transition: color .3s; }

/* ============================================================
   Support — meet Daniele
   ============================================================ */
.support { background: var(--ink); }
.support-card {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 44px 28px;
  display: grid; gap: 24px;
  position: relative; overflow: hidden;
  border: 2px solid var(--ink);
}
.support-card .eyebrow { color: var(--ink-2); }
.support-card h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 9vw, 88px);
  line-height: 0.95; margin: 8px 0 4px; color: var(--ink);
  padding-bottom: 0.3em;
  letter-spacing: -0.02em;
}
.support-card h2 em { font-style: italic; color: var(--paper); }
.support-card p { color: rgba(10,10,10,0.78); font-size: 16px; max-width: 32em; margin: 0 0 20px; }
.support-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.support-portrait {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: var(--ink); overflow: hidden;
  border: 2px solid var(--ink);
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}
.support-portrait img { width: 100%; height: 100%; object-fit: cover; }
.support-portrait .badge {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--paper); color: var(--ink);
  padding: 8px 12px; border-radius: 999px;
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}

/* ============================================================
   Gallery — masonry-ish "progetti realizzati"
   ============================================================ */
.gallery { background: var(--paper); color: var(--ink); padding: 100px 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin-top: 28px;
}
.gallery-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink-3);
  aspect-ratio: 1;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
}
.gallery-tile:nth-child(3n+1) { aspect-ratio: 4/5; }
.gallery-tile:nth-child(5n+2) { aspect-ratio: 5/4; }
.gallery-tile:hover { transform: scale(1.02) rotate(-1deg); z-index: 2; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-tile:hover img { transform: scale(1.08); }
.gallery-label {
  position: absolute; bottom: 10px; left: 10px;
  background: var(--ink); color: var(--paper);
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 6px;
  opacity: 0; transform: translateY(6px); transition: all .25s;
}
.gallery-tile:hover .gallery-label { opacity: 1; transform: translateY(0); }

/* iconbtn-arrow used in product cards */
.iconbtn-arrow {
  width: 44px; height: 44px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--paper);
  transition: transform .2s, background .2s;
}
.iconbtn-arrow:hover { background: var(--yellow); color: var(--ink); transform: translateX(3px) rotate(-8deg); }

/* btn-ghost-light variant for support card */
.btn-ghost-light { background: transparent; color: var(--ink); border: 1.5px solid rgba(10,10,10,0.3); }
.btn-ghost-light:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Support extras */
.support-noise {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.15;
  background-image: radial-gradient(rgba(0,0,0,0.4) 1px, transparent 1px);
  background-size: 4px 4px;
}
.support-text { position: relative; z-index: 2; }
.support-points { display: grid; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; }
.support-points li { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: rgba(10,10,10,0.78); }
.support-points li svg { color: var(--ink); flex: none; }
.support-mascotte {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
}
.support-mascotte img { width: 65%; max-width: 280px; position: relative; z-index: 2; }
.support-mascotte-circle {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.support-mascotte-circle::before {
  content: ""; position: absolute; width: 100%; max-width: 380px; aspect-ratio: 1;
  border: 2px dashed var(--ink); border-radius: 999px;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.support-circle-text { display: none; }

/* FAQ animated answer */
.faq-a-wrap { overflow: hidden; transition: max-height .35s cubic-bezier(.2,.8,.2,1); max-height: 0; }
.faq-item.is-open .faq-a-wrap { max-height: 240px; }
.faq-item.is-open .faq-a { display: block; }
.faq-a { padding: 0 4px 22px; color: rgba(10,10,10,0.8); font-size: 15px; max-width: 40em; }
.faq-q svg { transition: transform .3s; }
.faq-item.is-open .faq-q svg { transform: rotate(180deg); }

/* Footer marquee + mega type */
.footer-marquee {
  background: var(--yellow); color: var(--ink);
  padding: 22px 0; overflow: hidden;
  border-bottom: 2px solid var(--ink);
}
.footer-marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  font-family: var(--display); font-style: italic;
  font-size: clamp(48px, 9vw, 96px);
  line-height: 1;
  animation: marquee 30s linear infinite;
}
.footer-marquee-track em { font-style: normal; font-family: var(--mono); font-size: 0.4em; letter-spacing: 0.18em; text-transform: uppercase; vertical-align: middle; }
.footer-inner { padding-top: 64px; }
.footer-top { display: grid; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.footer-brand .footer-logo { width: 56px; height: 56px; border-radius: 12px; background: var(--yellow); display: inline-flex; align-items: center; justify-content: center; padding: 10px; margin-bottom: 22px; }
.footer-brand .footer-logo img { filter: brightness(0); }
.footer-brand .footer-claim {
  font-family: var(--display); font-size: clamp(40px, 6vw, 56px);
  line-height: 1.0; margin: 0 0 28px; font-weight: 400;
  letter-spacing: -0.02em;
  padding-bottom: 0;
}
.footer-brand .footer-claim em { font-style: italic; color: var(--yellow); }
.footer-brand .footer-claim .dot { color: var(--yellow); }
.footer-contact { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  padding: 10px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  transition: all .2s;
}
.footer-link:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-cols .eyebrow { color: var(--yellow); display: block; margin-bottom: 14px; }
.footer-cols ul { display: grid; gap: 10px; }
.footer-cols li a { font-size: 14px; opacity: 0.78; transition: opacity .2s, color .2s; }
.footer-cols li a:hover { opacity: 1; color: var(--yellow); }

.footer-mega { padding: 60px 0 40px; display: grid; gap: 0; }
.footer-mega-line {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(80px, 22vw, 280px);
  line-height: 0.85; letter-spacing: -0.04em;
  color: var(--paper);
  text-align: center;
}
.footer-mega-line.outline {
  -webkit-text-stroke: 2px var(--paper);
  color: transparent;
}
.footer-cta a { color: var(--yellow); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--yellow); color: var(--ink); }
.faq .section-head h2 { color: var(--ink); }
.faq .section-head h2 em { color: var(--ink); font-style: italic; }
.faq .section-head .lede { color: rgba(10,10,10,0.72); }
.faq-grid { display: grid; gap: 28px; }
.faq-list { display: grid; gap: 0; border-top: 1.5px solid var(--ink); }
.faq-item { border-bottom: 1.5px solid var(--ink); }
.faq-q {
  width: 100%; padding: 22px 4px 24px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
  text-align: left;
  font-family: var(--display); font-size: 24px; font-weight: 400; line-height: 1.05;
  color: var(--ink);
}
.faq-q .ico {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--ink); color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none; transition: transform .3s;
}
.faq-item.is-open .faq-q .ico { transform: rotate(45deg); background: var(--paper); color: var(--ink); }
.faq-a {
  padding: 0 4px 22px; color: rgba(10,10,10,0.8); font-size: 15px; max-width: 40em;
  display: none;
}
.faq-item.is-open .faq-a { display: block; animation: faq-in .3s ease; }
@keyframes faq-in { from { opacity: 0; transform: translateY(-4px); } }

/* ============================================================
   Footer — drama
   ============================================================ */
.footer {
  background: var(--ink); color: var(--paper);
  padding: 80px 0 28px;
  position: relative;
  overflow: hidden;
}
.footer-claim {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(56px, 16vw, 200px);
  line-height: 0.92; margin: 0 0 32px; letter-spacing: -0.03em;
  padding-bottom: 0.18em;
  position: relative; z-index: 2;
}
.footer-claim em { font-style: italic; color: var(--yellow); }
.footer-claim .line { display: block; }
.footer-grid {
  display: grid; gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 2;
}
.footer-grid h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--yellow); margin: 0 0 16px; font-weight: 500; }
.footer-grid ul { display: grid; gap: 10px; }
.footer-grid li { font-size: 14px; opacity: 0.8; cursor: pointer; transition: opacity .2s, color .2s, transform .2s; }
.footer-grid li:hover { opacity: 1; color: var(--yellow); transform: translateX(4px); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; opacity: 0.5;
  padding-top: 22px; position: relative; z-index: 2;
}
.footer-mascotte {
  position: absolute; right: -60px; bottom: -20px;
  width: 320px; opacity: 0.18;
  z-index: 0; pointer-events: none;
}
.footer-mascotte img { width: 100%; height: auto; filter: invert(1) brightness(2.2); }

/* ============================================================
   Sticky CTA
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 40; display: flex; justify-content: center;
  pointer-events: none;
}
.sticky-cta .btn {
  pointer-events: auto;
  box-shadow: var(--shadow-md);
  width: 100%;
  justify-content: center;
}

/* Toast */
.toast {
  position: fixed; bottom: 92px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--ink);
  padding: 12px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600; z-index: 60;
  box-shadow: var(--shadow-md);
  animation: toast .25s ease;
}
@keyframes toast { from { opacity: 0; transform: translate(-50%, 8px);} }

/* Cursor blob (large screens only) */
.cursor-blob {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 30;
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--yellow); mix-blend-mode: difference;
  opacity: 0; transition: opacity .3s, transform .15s ease-out;
  display: none;
}
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .cursor-blob { display: block; }
}

/* ============================================================
   Tablet ≥720
   ============================================================ */
@media (min-width: 720px) {
  .section { padding: 120px 0; }
  .hero { padding: 32px 0 0; }
  .hero-stage { grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-top: 80px; padding-bottom: 80px; }
  .hero-stats { padding-top: 32px; }
  .hero-collage { margin-top: 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .packs-list { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .pack-body { display: block !important; }
  .pack-toggle { display: none; }
  .pack { display: flex; flex-direction: column; }
  .pack-body { flex: 1; display: flex !important; flex-direction: column; justify-content: space-between; }
  .cfg-grid { grid-template-columns: 1.2fr 1fr; align-items: start; }
  .cfg-stage { min-height: 460px; position: sticky; top: 96px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .tech-band { grid-template-columns: 1fr 1fr; }
  .stories { grid-template-columns: repeat(3, 1fr); }
  .flags-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .faq-grid { grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .support-card { padding: 64px 56px; grid-template-columns: 1.2fr 1fr; align-items: center; }
}

/* ============================================================
   Desktop ≥1024
   ============================================================ */
@media (min-width: 1024px) {
  .topbar-nav { display: flex; gap: 4px; }
  .topbar-cta { display: inline-flex; }
  .topbar-menubtn { display: none; }
  .sticky-cta { display: none; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
