/* ==========================================================================
   Neotype Studio - custom sticker studio
   Dark synthwave / glitch identity built on the brand kit
   (Tailwind handles layout utilities; this file owns the identity)
   ========================================================================== */

:root {
  /* Brand backgrounds */
  --bg: #212830;
  --bg-2: #202c34;
  --bg-3: #26333d;
  --bg-card: #1c242c;

  /* Brand colors */
  --teal: #06e4dd;
  --teal-2: #04a49f;
  --teal-3: #30bfbb;
  --purple: #764cd9;
  --purple-2: #8f6ce6;
  --green: #00ff09;

  /* Text */
  --text: #eaf7f6;
  --muted: #8ea4ab;
  --muted-2: #6c7f86;

  --line: rgba(6, 228, 221, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(6, 228, 221, 0.34);

  --glow-teal: 0 0 24px rgba(6, 228, 221, 0.45);
  --glow-purple: 0 0 24px rgba(118, 76, 217, 0.5);
  --shadow-peel: 6px 12px 26px -8px rgba(0, 0, 0, 0.6);
  --shadow-soft: 0 18px 50px -22px rgba(0, 0, 0, 0.7);

  --radius: 16px;
  --maxw: 1200px;

  --font-display: "Rubik", system-ui, sans-serif;
  --font-body: "Rubik", system-ui, -apple-system, sans-serif;
  --font-round: "Varela Round", system-ui, sans-serif;
  --font-soft: "Comfortaa", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* ambient neon glow (non-fixed to avoid scroll repaint jank) */
  background-image:
    radial-gradient(1100px 620px at 80% -10%, rgba(118, 76, 217, 0.22), transparent 60%),
    radial-gradient(900px 560px at 0% 8%, rgba(6, 228, 221, 0.14), transparent 55%);
  background-repeat: no-repeat;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.03; letter-spacing: -0.02em; margin: 0; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---- Utility type ---------------------------------------------------- */
.eyebrow {
  font-family: var(--font-soft);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; display: inline-block; box-shadow: var(--glow-teal); }

.display-xl { font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 900; }
.display-lg { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.26rem); color: var(--muted); line-height: 1.55; }

.tint-teal { color: var(--teal); }
.tint-purple { color: var(--purple-2); }
.tint-green { color: var(--green); }

/* ---- Signal bar (recurring divider) ---------------------------------- */
.signal-bar { position: relative; height: 5px; width: 100%; z-index: 1;
  background: linear-gradient(90deg, #ff004c, #ff8a00, #ffe600, #00ff5e, #00e5ff, #3a86ff, #a24bff, #ff004c);
  background-size: 200% 100%; animation: signal-flow 7s linear infinite; }
/* neon bloom that flows in sync with the bar */
.signal-bar::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(90deg, #ff004c, #ff8a00, #ffe600, #00ff5e, #00e5ff, #3a86ff, #a24bff, #ff004c);
  background-size: 200% 100%; animation: signal-flow 7s linear infinite;
  filter: blur(8px); opacity: .9; }
@keyframes signal-flow { from { background-position: 0% 50%; } to { background-position: 200% 50%; } }
@media (prefers-reduced-motion: reduce) {
  .signal-bar, .signal-bar::after { animation: none; }
}

/* ---- Registration / crop marks --------------------------------------- */
.regmark { position: absolute; width: 18px; height: 18px; pointer-events: none; opacity: 0.55; }
.regmark::before, .regmark::after { content: ""; position: absolute; background: var(--teal); }
.regmark::before { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-0.5px); }
.regmark::after { top: 50%; left: 0; height: 1px; width: 100%; transform: translateY(-0.5px); }
.regmark.tl { top: 16px; left: 16px; } .regmark.tr { top: 16px; right: 16px; }
.regmark.bl { bottom: 16px; left: 16px; } .regmark.br { bottom: 16px; right: 16px; }

/* ---- Buttons --------------------------------------------------------- */
.btn {
  font-family: var(--font-round);
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 22px;
  border-radius: 100px;
  white-space: nowrap;
  border: 1.5px solid var(--teal);
  background: var(--teal);
  color: #06231f;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--glow-teal); }
.btn:active { transform: translateY(0); }
.btn--accent { background: var(--teal); border-color: var(--teal); color: #06231f; }
.btn--purple { background: var(--purple); border-color: var(--purple); color: #fff; }
.btn--purple:hover { box-shadow: var(--glow-purple); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { background: rgba(6, 228, 221, 0.1); color: var(--teal); border-color: var(--teal); }
.btn--holo {
  border: none; color: #0a0a12; position: relative; overflow: hidden;
  background: linear-gradient(100deg, #ff5ec9, #ffd24a 22%, #37f2c3 44%, #3aa0ff 64%, #a24bff 84%, #ff5ec9);
  background-size: 260% 100%; animation: holo-shift 6s linear infinite;
  box-shadow: 0 0 18px rgba(58,160,255,.35);
}
.btn--holo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%); background-size: 250% 100%; animation: holo-shine 3.6s linear infinite; pointer-events: none; }
.btn--holo:hover { animation-duration: 2.6s; box-shadow: 0 0 26px rgba(162,75,255,.55); }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }
@keyframes holo-shine { 0%{background-position: 130% 0} 100%{background-position: -130% 0} }

/* ---- Header ---------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(33, 40, 48, 0.78); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-soft); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 96px; gap: 20px; }
.glitch img.brand-logo { height: 58px; width: auto; display: block; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { font-family: var(--font-round); font-size: 15px; color: var(--muted); transition: color .15s; position: relative; white-space: nowrap; }
.nav-links a:hover { color: var(--teal); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--teal); margin: 5px 0; transition: .2s; border-radius: 2px; }

/* ---- Glitch logo ----------------------------------------------------- */
.glitch { position: relative; display: inline-block; line-height: 0; }
.glitch img { display: block; width: 100%; height: auto; }
.glitch .glitch-layer { position: absolute; inset: 0; opacity: 0; mix-blend-mode: screen; pointer-events: none; }
.gl-a { filter: hue-rotate(-60deg) saturate(1.6) brightness(1.2); }  /* toward green */
.gl-b { filter: hue-rotate(60deg) saturate(1.5) brightness(1.1); }  /* toward magenta/purple */

.glitch.glitching .gl-a { animation: glitch-a .55s steps(2, end) 1 both; }
.glitch.glitching .gl-b { animation: glitch-b .55s steps(2, end) 1 both; }
.glitch.glitching .glitch-base { animation: glitch-base .55s steps(2, end) 1 both; }

@keyframes glitch-base {
  0%, 100% { transform: translate(0, 0); clip-path: none; }
  20% { transform: translate(-2px, 1px); }
  40% { transform: translate(2px, -1px); clip-path: inset(20% 0 55% 0); }
  41% { clip-path: none; }
  60% { transform: translate(-1px, 0); }
  80% { transform: translate(1px, 1px); clip-path: inset(60% 0 12% 0); }
  81% { clip-path: none; }
}
@keyframes glitch-a {
  0% { opacity: 0; transform: translate(0, 0); }
  10% { opacity: .9; transform: translate(-6px, 0); clip-path: inset(8% 0 66% 0); }
  30% { transform: translate(-9px, 2px); clip-path: inset(48% 0 20% 0); }
  50% { transform: translate(-4px, -2px); clip-path: inset(72% 0 6% 0); }
  70% { opacity: .8; transform: translate(-7px, 0); clip-path: inset(28% 0 44% 0); }
  100% { opacity: 0; transform: translate(0, 0); clip-path: none; }
}
@keyframes glitch-b {
  0% { opacity: 0; transform: translate(0, 0); }
  10% { opacity: .9; transform: translate(6px, 0); clip-path: inset(66% 0 8% 0); }
  30% { transform: translate(9px, -2px); clip-path: inset(20% 0 48% 0); }
  50% { transform: translate(4px, 2px); clip-path: inset(6% 0 72% 0); }
  70% { opacity: .8; transform: translate(7px, 0); clip-path: inset(44% 0 28% 0); }
  100% { opacity: 0; transform: translate(0, 0); clip-path: none; }
}

/* ---- Sections -------------------------------------------------------- */
section { position: relative; }
.section-pad { padding: clamp(64px, 9vw, 116px) 0; }
.section-head { max-width: 660px; margin-bottom: 48px; }
.section-head h2 { margin: 16px 0 14px; }
.panel { background: var(--bg-2); }

/* faint scanline texture on dark panels */
.scanlines::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0) 0 2px, rgba(0,0,0,0.14) 2px 4px);
  mix-blend-mode: overlay;
}

/* ---- Hero ------------------------------------------------------------ */
.hero { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(56px, 8vw, 104px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 44px; align-items: center; }
.hero h1 { margin: 20px 0 22px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 26px; }
.hero-trust { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--muted); font-family: var(--font-round); }
.avatar-stack { display: flex; }
.avatar-stack i { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -8px; display: inline-block; }
.avatar-stack i:first-child { margin-left: 0; }
.stars { color: var(--teal); letter-spacing: 2px; }

/* Hero sticker cluster */
.hero-stage { position: relative; min-height: 440px; display: grid; place-items: center; }
.hero-backing { position: absolute; inset: 34px; border: 1.5px dashed var(--line-strong); border-radius: 24px; z-index: 0; }
.sticker {
  position: relative; border-radius: 20px; display: grid; place-items: center; text-align: center;
  color: #fff; font-family: var(--font-display); font-weight: 800;
  box-shadow: var(--shadow-peel); border: 3px solid rgba(255,255,255,0.92);
}
.sticker::after {
  content: ""; position: absolute; right: -1px; bottom: -1px; width: 42px; height: 42px;
  background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.85) 50%);
  border-bottom-right-radius: 18px; box-shadow: -3px -3px 8px rgba(0,0,0,0.28) inset;
  transition: width .3s ease, height .3s ease;
}
.sticker:hover::after { width: 62px; height: 62px; }

/* main hero sticker = the die-cut sticker, floating and glitching */
.hero-logo-sticker {
  width: 340px; max-width: 82%; z-index: 3; position: relative;
  transform: rotate(-4deg); cursor: pointer;
  filter: drop-shadow(6px 12px 20px rgba(0,0,0,0.55)) drop-shadow(0 0 22px rgba(6,228,221,0.28));
  animation: drop-in .9s cubic-bezier(.2,.9,.25,1.2) both;
}
.hero-logo-sticker .glitch { width: 100%; }
.hero-logo-sticker img { width: 100%; height: auto; }
.hero-sticker-2 { width: 118px; height: 118px; border-radius: 50%; background: conic-gradient(from 0deg, #ff5ec9, #ffd400, #06e4dd, #764cd9, #ff5ec9); position: absolute; top: 8px; right: 22px; z-index: 4; transform: rotate(10deg); font-size: 1rem; animation: drop-in 1s .12s cubic-bezier(.2,.9,.25,1.2) both; }
.hero-sticker-3 { width: 132px; height: 88px; border-radius: 16px; background: linear-gradient(135deg, #764cd9, #4b2bd4); position: absolute; bottom: 22px; left: 0; z-index: 5; transform: rotate(6deg); font-size: .95rem; animation: drop-in 1s .24s cubic-bezier(.2,.9,.25,1.2) both; }
.hero-sticker-4 { width: 84px; height: 84px; border-radius: 20px; background: var(--green); color: #063d02; position: absolute; bottom: 78px; right: -8px; z-index: 2; transform: rotate(-12deg); font-size: .8rem; animation: drop-in 1s .36s cubic-bezier(.2,.9,.25,1.2) both; }

@keyframes drop-in { 0% { opacity: 0; transform: translateY(-30px) rotate(var(--r, 0deg)) scale(.8); } 100% { opacity: 1; } }

/* ---- Emoji stickers (scattered) -------------------------------------- */
.est {
  position: absolute; display: grid; place-items: center;
  width: var(--s, 66px); height: var(--s, 66px);
  border: 4px solid #fff; border-radius: 22px;
  background: var(--est-bg, #06e4dd);
  box-shadow: var(--shadow-peel);
  transform: rotate(var(--r, 0deg)); transform-origin: center;
  font-size: calc(var(--s, 66px) * 0.5); line-height: 1; z-index: 4;
  transition: transform .28s cubic-bezier(.2,.9,.3,1.2);
  animation: drop-in .8s cubic-bezier(.2,.9,.25,1.2) both; animation-delay: var(--d, 0s);
}
.est::after { content: ""; position: absolute; right: -1px; bottom: -1px; width: 24px; height: 24px; background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,.92) 50%); border-bottom-right-radius: 16px; box-shadow: -2px -2px 6px rgba(0,0,0,.22) inset; transition: width .25s ease, height .25s ease; }
.est:hover { transform: rotate(0deg) scale(1.1); z-index: 12; }
.est:hover::after { width: 34px; height: 34px; }
.est.circle { border-radius: 50%; }
.est.blob { border-radius: 62% 38% 44% 56% / 52% 44% 56% 48%; }
.est.holo { background: repeating-linear-gradient(112deg, #ff5ec9 0 9%, #ffd24a 15%, #37f2c3 24%, #3aa0ff 33%, #a24bff 42%, #ff5ec9 51%); background-size: 260% 260%; animation: drop-in .8s cubic-bezier(.2,.9,.25,1.2) both, holo-shift 6s linear infinite; }
.est.glit { background: radial-gradient(circle at 38% 30%, #b895ff, #6a3fd6 68%, #4b2bd4); }

/* die-cut emoji stickers: white contour hugs the emoji's own shape.
   text-shadow outline (cheap) + own compositing layer keeps hover snappy. */
.dcst {
  position: absolute; line-height: 1; z-index: 4; cursor: default;
  font-size: var(--s, 60px);
  transform: rotate(var(--r, 0deg)) translateZ(0);
  will-change: transform;
  text-shadow:
    2.4px 0 0 #fff, -2.4px 0 0 #fff, 0 2.4px 0 #fff, 0 -2.4px 0 #fff,
    1.7px 1.7px 0 #fff, -1.7px 1.7px 0 #fff, 1.7px -1.7px 0 #fff, -1.7px -1.7px 0 #fff,
    4px 9px 9px rgba(0,0,0,.5);
  transition: transform .25s cubic-bezier(.2,.9,.3,1.2);
  animation: drop-in .8s cubic-bezier(.2,.9,.25,1.2) both; animation-delay: var(--d, 0s);
}
.dcst:hover { transform: rotate(0deg) scale(1.14) translateZ(0); z-index: 12; }

/* ---- Manifesto ------------------------------------------------------- */
.manifesto { text-align: left; }
.manifesto .wrap { max-width: 960px; }
.manifesto-text {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.7; letter-spacing: -0.01em;
  color: var(--text);
}
.manifesto-text .muted { color: var(--muted-2); }
.ink-st {
  display: inline-grid; place-items: center; vertical-align: -0.34em;
  width: 1.32em; height: 1.32em; margin: 0 .1em;
  border: 3px solid #fff; border-radius: 9px;
  background: var(--est-bg, #06e4dd);
  box-shadow: 0 5px 12px -3px rgba(0,0,0,.5); font-size: .82em; line-height: 1;
  transform: rotate(var(--r, -6deg));
  transition: transform .2s ease;
}
.ink-st:hover { transform: rotate(0deg) scale(1.14); }
.ink-st.circle { border-radius: 50%; }
.ink-st.holo { background: repeating-linear-gradient(112deg, #ff5ec9 0 9%, #ffd24a 15%, #37f2c3 24%, #3aa0ff 33%, #a24bff 42%, #ff5ec9 51%); background-size: 260% 260%; animation: holo-shift 6s linear infinite; }

/* ---- Finish cards ---------------------------------------------------- */
.finish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.finish-card { position: relative; background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 22px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
.finish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--line-strong); }
.finish-card h3 { font-size: 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.finish-card p { font-size: 14.5px; color: var(--muted); margin: 8px 0 0; }
.finish-tag { font-family: var(--font-round); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); border: 1px solid var(--line-strong); border-radius: 100px; padding: 3px 9px; white-space: nowrap; }

/* interactive finish sample: a die-cut "your design" sticker that tilts + shines */
.fin-stage { height: 172px; margin-bottom: 18px; border-radius: 10px; position: relative; overflow: hidden; display: grid; place-items: center; background: radial-gradient(circle at 50% 34%, #2b3640, #14191f 78%); perspective: 780px; }
.fin-sample {
  width: 178px; height: 122px; border: 6px solid #fff; box-shadow: 0 14px 26px -10px rgba(0,0,0,.7);
  display: grid; place-items: center; position: relative; overflow: hidden;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transform-style: preserve-3d;
  transition: transform .3s cubic-bezier(.2,.9,.3,1);
}
.fin-card:hover .fin-sample { transition: transform .08s linear; }
.fin-glyph { font-family: var(--font-display); font-weight: 900; font-size: 2.7rem; color: rgba(9,11,15,.82); text-shadow: 0 1px 0 rgba(255,255,255,.3); z-index: 2; }
.fin-cap { position: absolute; bottom: 9px; font-family: var(--font-round); font-size: 8.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(9,11,15,.62); z-index: 2; }
.fin-shine { position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0; transition: opacity .25s;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.6), rgba(255,255,255,0) 46%); mix-blend-mode: soft-light; }
.fin-card:hover .fin-shine { opacity: 1; }

.fin-vinyl { background: linear-gradient(140deg, #06e4dd, #04a49f 46%, #764cd9); }
.fin-holo { background:
    repeating-linear-gradient(112deg, #ff5ec9 0 9%, #ffd24a 15%, #37f2c3 24%, #3aa0ff 33%, #a24bff 42%, #ff5ec9 51%);
  background-size: 260% 260%; animation: holo-shift 6s linear infinite; }
.fin-card:hover .fin-holo { animation-duration: 2.4s; }
.fin-glitter { background: radial-gradient(circle at 38% 30%, #b895ff, #6a3fd6 68%, #4b2bd4); }
.fin-glitter::after { content:""; position:absolute; inset:0; z-index:1;
  background-image:
    radial-gradient(rgba(255,255,255,.98) 0 1.3px, transparent 2px),
    radial-gradient(rgba(255,236,180,.92) 0 1.1px, transparent 1.8px),
    radial-gradient(rgba(140,240,220,.88) 0 1.1px, transparent 1.8px);
  background-size: 10px 10px, 15px 15px, 20px 20px;
  background-position: 0 0, 5px 8px, 10px 3px;
  animation: sparkle .8s steps(2) infinite; }
.fin-chrome { background: linear-gradient(118deg, #eef2f6 0%, #9aa3b2 20%, #ffffff 38%, #7d8696 55%, #c9d0da 72%, #8892a2 100%); background-size: 260% 100%; animation: chrome-slide 5s ease-in-out infinite; }
.fin-chrome .fin-glyph, .fin-chrome .fin-cap { color: rgba(9,11,15,.72); }
.fin-clear { background: repeating-conic-gradient(#2b3a44 0 25%, #223038 0 50%) 50% / 15px 15px; border-color: rgba(255,255,255,.55); border-style: dashed; }
.fin-clear .fin-glyph { color: var(--teal); text-shadow: 0 0 14px rgba(6,228,221,.5); }
.fin-clear .fin-cap { color: rgba(255,255,255,.55); }

/* sheet finish: several small die-cut stickers on one backing sheet */
.fin-sheet { width: 84%; background: #eef0ea; border: 1.6px dashed rgba(0,0,0,.4); border-radius: 8px; padding: 12px 11px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px 8px; box-shadow: var(--shadow-peel); }
.mini-st { aspect-ratio: 1; border: 3px solid #fff; border-radius: 30% 70% 62% 38% / 40% 34% 66% 60%; box-shadow: 0 2px 5px rgba(0,0,0,.25); display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 1rem; color: rgba(9,11,15,.8); }
.mini-st:nth-child(2n) { border-radius: 50%; }
.mini-st:nth-child(3n) { border-radius: 22%; }

@keyframes holo-shift { 0%{background-position:0% 50%} 100%{background-position:260% 50%} }
@keyframes chrome-slide { 0%,100%{background-position:0% 0} 50%{background-position:100% 0} }
@keyframes sparkle { 0%{opacity:.5} 100%{opacity:1} }

/* ---- Customizer ------------------------------------------------------ */
.customizer { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1.5px solid var(--line-strong); border-radius: 20px; overflow: hidden; background: var(--bg-card); box-shadow: var(--shadow-soft); }
.cz-preview { position: relative; padding: 34px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; background: radial-gradient(circle at 50% 36%, #253039, #171d23 72%); min-height: 500px; }
.cz-paper {
  position: relative; width: 300px; height: 300px; border-radius: 16px;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 26px),
    #2a343d;
  box-shadow: var(--shadow-soft); display: grid; place-items: center;
}
.cz-artwork {
  position: relative; display: grid; place-items: center; text-align: center;
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  border: 2px dashed rgba(6,228,221,.55); box-shadow: 0 8px 22px -8px rgba(0,0,0,.6);
  overflow: hidden; touch-action: none;
}
.cz-artwork.has-img { cursor: grab; }
.cz-artwork.has-img.dragging { cursor: grabbing; }
.cz-artwork .up-hint { font-family: var(--font-round); font-weight: 600; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .9; padding: 0 12px; }
.cz-artwork img.cz-img { position: absolute; left: 50%; top: 50%; width: 100%; height: 100%; object-fit: contain; transform-origin: center; will-change: transform; user-select: none; -webkit-user-drag: none; }
/* finish previews applied via JS classes */
.cz-artwork.cz-holo { background: repeating-linear-gradient(112deg, #ff5ec9 0 9%, #ffd24a 15%, #37f2c3 24%, #3aa0ff 33%, #a24bff 42%, #ff5ec9 51%); background-size: 260% 260%; animation: holo-shift 5s linear infinite; }
.cz-artwork.cz-chrome { background: linear-gradient(115deg, #d7dbe2 0%, #8f97a6 22%, #f4f6fa 40%, #7d8494 55%, #c9cfd9 75%, #9aa2b1 100%); background-size: 220% 100%; animation: chrome-slide 5s ease-in-out infinite; }
.cz-artwork.cz-glitter::before { content:""; position:absolute; inset:0; pointer-events:none; z-index:1;
  background-image:
    radial-gradient(rgba(255,255,255,.95) 0 1.2px, transparent 1.9px),
    radial-gradient(rgba(255,236,180,.9) 0 1px, transparent 1.7px),
    radial-gradient(rgba(140,240,220,.85) 0 1px, transparent 1.7px);
  background-size: 11px 11px, 16px 16px, 21px 21px;
  background-position: 0 0, 6px 9px, 11px 4px;
  animation: sparkle .8s steps(2) infinite; }

.shape-circle { border-radius: 50%; }
.shape-square { border-radius: 6%; }
.shape-rect { border-radius: 5%; }
.shape-rounded { border-radius: 22%; }
.shape-die { border-radius: 14px; }
.shape-kiss { border-radius: 16px; }
.shape-sheet { border-radius: 8%; border-style: solid; }

/* die-cut: no fixed shape. Empty = prompt to upload; live = cut around art */
.cz-artwork.die-empty { background: rgba(255,255,255,.03) !important; border: 2px dashed var(--line-strong); border-radius: 14px; }
.cz-paper.pg-white .cz-artwork.die-empty { background: rgba(0,0,0,.03) !important; border-color: rgba(0,0,0,.25); }
.cz-artwork.die-live { background: transparent !important; border: none !important; overflow: visible; }
/* border is rendered into the image on a canvas; just add a soft cast shadow */
.cz-artwork.die-live img.cz-img { filter: drop-shadow(3px 7px 8px rgba(0,0,0,.5)); }

/* kiss-cut: the die-cut art sits on a peel-off square backing sheet */
.cz-artwork.is-kiss.die-empty { border-radius: 16px; }
.cz-artwork.is-kiss.die-live { background: #eef1f5 !important; border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 30px -12px rgba(0,0,0,.6), inset 0 0 0 1px rgba(0,0,0,.05); }
.cz-artwork.is-kiss.die-live::after { content: ""; position: absolute; inset: 9px; border-radius: 10px;
  border: 1px dashed rgba(20,26,32,.22); pointer-events: none; z-index: 2; }
.cz-artwork.is-kiss.die-live img.cz-img { filter: drop-shadow(2px 5px 6px rgba(0,0,0,.32)); }
.cz-scale-label { position: absolute; font-family: var(--font-round); font-size: 11px; color: rgba(255,255,255,.5); }
.cz-scale-label.w { bottom: 18px; left: 50%; transform: translateX(-50%); }
.cz-scale-label.h { left: 18px; top: 50%; transform: translateY(-50%) rotate(-90deg); }

/* preview background (studio / white / black) */
.cz-paper.pg-white { background: #f1f1ec; box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(0,0,0,.06); }
.cz-paper.pg-white .cz-scale-label { color: rgba(10,12,14,.5); }
.cz-paper.pg-black { background: #0b0c0e; box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(255,255,255,.06); }

.cz-bg-row { display: flex; align-items: center; gap: 8px; }
.cz-bg-label { font-family: var(--font-round); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-right: 2px; }
.cz-bg { font-family: var(--font-round); font-size: 12.5px; font-weight: 600; color: var(--text); background: var(--bg-3); border: 1.5px solid var(--line-soft); border-radius: 100px; padding: 7px 14px; cursor: pointer; transition: .15s; }
.cz-bg:hover { border-color: var(--line-strong); }
.cz-bg[aria-pressed="true"] { background: var(--teal); color: #06231f; border-color: var(--teal); }

/* Static proof sticker: flat and front-facing, with a periodic light-sweep
   flash to read the finish (glossy/holo/chrome flash bright, matte stays soft) */
.proof-stage { position: relative; }
.proof-stage.pg-white { background: #f1f1ec; }
.proof-stage.pg-black { background: #0b0c0e; }
.proof-stage .cz-artwork.proofed {
  border: 6px solid #fff !important; border-style: solid !important;
  box-shadow: 0 24px 40px -14px rgba(0,0,0,.72), 0 3px 8px rgba(0,0,0,.35);
  transform: scale(1.3);
}
.proof-stage .cz-artwork.proofed.die-live { border: none !important; box-shadow: none; overflow: visible; }
.proof-stage .cz-artwork.proofed img.cz-img { filter: drop-shadow(2px 6px 8px rgba(0,0,0,.42)); }

/* light-sweep flash: a highlight streaks across, then rests */
.proof-shine2 { position: absolute; inset: 0; z-index: 6; pointer-events: none; border-radius: inherit; overflow: hidden;
  -webkit-mask-size: contain; mask-size: contain; -webkit-mask-position: center; mask-position: center; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; }
.proof-shine2::before { content: ""; position: absolute; top: -25%; left: 0; width: 55%; height: 150%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.8) 50%, transparent 100%);
  filter: blur(3px); mix-blend-mode: screen; transform: translateX(-180%) skewX(-14deg);
  animation: proof-flash 5s cubic-bezier(.5,0,.2,1) infinite; }
@keyframes proof-flash { 0% { transform: translateX(-180%) skewX(-14deg); } 26%, 100% { transform: translateX(340%) skewX(-14deg); } }
.cz-artwork.matte .proof-shine2::before { opacity: .3; }

/* green cut line, mirrors the print proof ("this will not print") */
.proof-cut { position: absolute; left: 50%; top: 50%; width: 100%; height: 100%; object-fit: contain;
  transform: translate(-50%, -50%); pointer-events: none; z-index: 7; }
.proof-cutline { position: absolute; inset: -2px; border: 2px dashed #39ff14; border-radius: inherit; pointer-events: none; z-index: 7;
  filter: drop-shadow(0 0 3px rgba(57,255,20,.55)); }
.proof-cutnote { display: none; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-round); font-size: 12.5px; color: var(--muted); margin: -2px 0 2px; }
.proof-result.has-cut .proof-cutnote { display: flex; }
.proof-cutnote .cut-dash { width: 26px; height: 0; border-top: 3px dashed #39ff14; display: inline-block; filter: drop-shadow(0 0 2px rgba(57,255,20,.6)); }
.cz-artwork.proofed .up-hint { display: none; }

/* image editor toolbar (below preview) */
.cz-editor { width: 100%; max-width: 340px; border: 1px solid var(--line-soft); border-radius: 12px; background: rgba(0,0,0,0.22); padding: 14px 16px; }
.cz-editor[hidden] { display: none; }
.cz-editor .ce-row { display: flex; align-items: center; gap: 10px; margin: 8px 0; }
.cz-editor .ce-row[hidden] { display: none; }
.cz-editor .ce-row label { font-family: var(--font-round); font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); width: 78px; flex: none; }
.cz-editor input[type="range"] { flex: 1; accent-color: var(--teal); height: 4px; }
.ce-swatches { display: flex; gap: 8px; flex: 1; }
.ce-sw { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--line-soft); cursor: pointer; padding: 0; transition: .15s; }
.ce-sw:hover { transform: scale(1.08); }
.ce-sw[aria-pressed="true"] { border-color: var(--teal); box-shadow: 0 0 0 2px rgba(6,228,221,.35); }
.cz-editor .ce-btns { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.ce-mini { font-family: var(--font-round); font-size: 12px; font-weight: 600; color: var(--text); background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: 8px; padding: 7px 11px; cursor: pointer; transition: .14s; }
.ce-mini:hover { border-color: var(--teal); color: var(--teal); }
.cz-editor .ce-hint { font-family: var(--font-round); font-size: 11.5px; color: var(--muted-2); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }

.cz-controls { padding: 34px; background: var(--bg-2); }
.cz-controls h3 { font-size: 1.5rem; margin-bottom: 4px; }
.cz-controls .cz-sub { font-family: var(--font-round); font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.field { margin-bottom: 20px; }
.field > label { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--font-round); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.field > label b { color: var(--teal); font-weight: 700; }
.opt-row { display: flex; flex-wrap: wrap; gap: 8px; }
.opt-help { font-family: var(--font-round); font-size: 12.5px; line-height: 1.5; color: var(--muted); margin: 9px 2px 0; }
.swatch-row { gap: 10px; align-items: center; }
.fsw { width: 30px; height: 30px; border-radius: 50%; border: 2px solid rgba(255,255,255,.28); cursor: pointer; padding: 0; position: relative; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.fsw:hover { transform: scale(1.12); }
.fsw[aria-pressed="true"] { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(6,228,221,.28); }
.fsw-auto { background: linear-gradient(150deg, #06e4dd, #04a49f 45%, #764cd9); }
.fsw-custom { overflow: hidden; display: grid; place-items: center; background: conic-gradient(from 0deg, #ff5ec9, #ffd400, #06e4dd, #764cd9, #ff5ec9); }
.fsw-custom input[type="color"] { opacity: 0; width: 140%; height: 140%; cursor: pointer; border: 0; padding: 0; background: none; }
.fsw-custom.is-active { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(6,228,221,.28); }
.opt { font-family: var(--font-round); font-size: 13.5px; font-weight: 600; padding: 9px 14px; border-radius: 100px; border: 1.5px solid var(--line-soft); background: var(--bg-3); color: var(--text); cursor: pointer; transition: .15s; user-select: none; }
.opt:hover { border-color: var(--line-strong); }
.opt[aria-pressed="true"] { background: var(--teal); color: #06231f; border-color: var(--teal); }
.opt.sz { min-width: 52px; text-align: center; }

.dropzone { border: 1.6px dashed var(--line-strong); border-radius: 12px; padding: 16px; display: flex; align-items: center; gap: 14px; cursor: pointer; transition: .15s; background: var(--bg-3); }
.dropzone:hover, .dropzone.drag { border-color: var(--teal); background: rgba(6,228,221,0.06); }
.dropzone .dz-ic { width: 40px; height: 40px; border-radius: 9px; background: var(--teal); display: grid; place-items: center; color: #06231f; flex: none; font-weight: 800; }
.dropzone .dz-txt { font-size: 13.5px; line-height: 1.35; font-family: var(--font-round); }
.dropzone .dz-txt small { color: var(--muted-2); font-size: 11.5px; }
.dz-file { font-family: var(--font-round); font-size: 12px; color: var(--teal); }

.cz-price { margin-top: 26px; border-top: 1.5px dashed var(--line-soft); padding-top: 20px; }
.price-row { display: flex; align-items: flex-end; justify-content: space-between; }
.price-total { font-family: var(--font-display); font-weight: 900; font-size: 2.6rem; line-height: 1; letter-spacing: -0.03em; color: var(--text); }
.price-total sup { font-size: 1.1rem; top: -1.1em; color: var(--teal); }
.price-per { font-family: var(--font-round); font-size: 12.5px; color: var(--muted); text-align: right; }
.price-per b { color: var(--text); }
.cz-savings { display: inline-block; margin-top: 10px; font-family: var(--font-round); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--green); background: rgba(0,255,9,0.1); border: 1px solid rgba(0,255,9,0.3); border-radius: 100px; padding: 4px 11px; }
.cz-actions { display: flex; gap: 10px; margin-top: 20px; }
.cz-actions .btn { flex: 1; justify-content: center; padding: 14px 16px; }

/* ---- Process --------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding-top: 26px; }
.step .num { font-family: var(--font-round); font-size: 12px; letter-spacing: .1em; color: var(--teal); }
.step h3 { font-size: 1.2rem; margin: 12px 0 8px; }
.step p { font-size: 14.5px; color: var(--muted); }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 46px; height: 3px; background: var(--teal); box-shadow: var(--glow-teal); }
.step:nth-child(2)::before { background: var(--purple); box-shadow: var(--glow-purple); }
.step:nth-child(3)::before { background: var(--green); box-shadow: 0 0 18px rgba(0,255,9,.4); }
.step:nth-child(4)::before { background: var(--teal-3); }

/* ---- Stats ----------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { border-left: 1px solid var(--line-soft); padding-left: 20px; }
.stat .n { font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.03em; }
.stat .l { font-family: var(--font-round); font-size: 12px; letter-spacing: .04em; color: var(--muted); margin-top: 6px; }
.stat:nth-child(1) .n { color: var(--teal); }
.stat:nth-child(2) .n { color: var(--purple-2); }
.stat:nth-child(3) .n { color: var(--green); }
.stat:nth-child(4) .n { color: var(--text); }

/* ---- Specimen sticker marquee --------------------------------------- */
.section-specimen { overflow: hidden; }
.sticker-marquee { margin-top: 48px; display: flex; flex-direction: column; gap: 26px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.marquee-row { overflow: visible; }
.marquee-track { display: flex; gap: 30px; width: max-content; padding: 20px 15px;
  animation: mq-scroll 52s linear infinite; will-change: transform; }
.row-rev .marquee-track { animation-direction: reverse; animation-duration: 60s; }
.sticker-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes mq-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.mk-st { flex: 0 0 auto; transform: rotate(var(--rot, 0deg)); transition: transform .28s ease; }
.mk-st:hover { transform: rotate(0deg) scale(1.08); z-index: 4; }
.mk-face { width: var(--w, var(--sz, 176px)); height: var(--sz, 176px); padding: 9px; background: #fff;
  filter: drop-shadow(0 13px 18px rgba(0,0,0,.48)); }
.mk-fill { position: relative; width: 100%; height: 100%; display: grid; place-items: center; overflow: hidden;
  text-align: center; color: #fff; font-family: var(--font-display); font-weight: 800;
  font-size: 1.04rem; line-height: 1.04; letter-spacing: .01em; text-shadow: 0 1px 2px rgba(0,0,0,.22); }
.mk-fill .mk-emoji { font-size: 2.7rem; line-height: 1; text-shadow: none; filter: drop-shadow(0 2px 3px rgba(0,0,0,.28)); }
.mk-fill::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 82% at 26% 12%, rgba(255,255,255,.5), rgba(255,255,255,0) 56%); }
.mk-fill::after { content: ""; position: absolute; top: -40%; left: -30%; width: 55%; height: 180%; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent); transform: rotate(18deg); }

/* shape (applied to both the white face and the coloured fill -> die-cut border) */
.shp-circle .mk-face, .shp-circle .mk-fill { border-radius: 50%; }
.shp-round .mk-face, .shp-round .mk-fill { border-radius: 24px; }
.shp-squircle .mk-face, .shp-squircle .mk-fill { border-radius: 34%; }
.shp-square .mk-face, .shp-square .mk-fill { border-radius: 10px; }
.shp-pill .mk-face, .shp-pill .mk-fill { border-radius: 999px; }
.shp-blobA .mk-face, .shp-blobA .mk-fill { border-radius: 42% 58% 63% 37% / 45% 44% 56% 55%; }
.shp-blobB .mk-face, .shp-blobB .mk-fill { border-radius: 63% 37% 48% 52% / 55% 48% 52% 45%; }
.shp-star .mk-face, .shp-star .mk-fill { clip-path: polygon(50% 0,63% 34%,98% 35%,69% 57%,80% 91%,50% 70%,20% 91%,31% 57%,2% 35%,37% 34%); }
.shp-hex .mk-face, .shp-hex .mk-fill { clip-path: polygon(25% 4%,75% 4%,100% 50%,75% 96%,25% 96%,0 50%); }
.shp-diamond .mk-face, .shp-diamond .mk-fill { clip-path: polygon(50% 0,100% 50%,50% 100%,0 50%); }
.shp-shield .mk-face, .shp-shield .mk-fill { clip-path: polygon(50% 0,100% 16%,100% 60%,50% 100%,0 60%,0 16%); }
.shp-pentagon .mk-face, .shp-pentagon .mk-fill { clip-path: polygon(50% 0,100% 38%,82% 100%,18% 100%,0 38%); }
.shp-banner .mk-face, .shp-banner .mk-fill { clip-path: polygon(0 0,100% 0,100% 100%,50% 84%,0 100%); }
.shp-burst .mk-face, .shp-burst .mk-fill { clip-path: polygon(50% 0%,61% 13%,78% 6%,80% 24%,98% 26%,88% 42%,100% 55%,84% 62%,90% 80%,72% 80%,66% 98%,50% 87%,34% 98%,28% 80%,10% 80%,16% 62%,0 55%,12% 42%,2% 26%,20% 24%,22% 6%,39% 13%); }

/* fill (brand palette) */
.fill-holo .mk-fill { background: conic-gradient(from 0deg,#ff5ec9,#ffd400,#06e4dd,#764cd9,#ff5ec9); }
.fill-teal .mk-fill { background: linear-gradient(150deg,#06e4dd,#04a49f); }
.fill-purple .mk-fill { background: linear-gradient(150deg,#8f6ce6,#4b2bd4); }
.fill-pink .mk-fill { background: linear-gradient(150deg,#ec008c,#764cd9); }
.fill-blue .mk-fill { background: linear-gradient(150deg,#06e4dd,#0077b6); }
.fill-glitter .mk-fill { background: radial-gradient(circle at 38% 30%,#b895ff,#6a3fd6 68%,#4b2bd4); }
.fill-dark .mk-fill { background: linear-gradient(150deg,#212830,#30bfbb); }
.fill-coral .mk-fill { background: linear-gradient(150deg,#ff5ec9,#ff8a5b); }
.fill-green .mk-fill { background: #00ff09; color: #063d02; text-shadow: none; }
.fill-lime .mk-fill { background: linear-gradient(150deg,#00ff09,#06e4dd); color: #063d02; text-shadow: none; }
.fill-sun .mk-fill { background: linear-gradient(150deg,#ffd400,#ff8a00); color: #3a2600; text-shadow: none; }
.fill-chrome .mk-fill { background: linear-gradient(115deg,#d7dbe2,#8f97a6,#f4f6fa,#7d8494); color: #26232e; text-shadow: none; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .sticker-marquee { overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
  .sticker-marquee::-webkit-scrollbar { display: none; }
}

/* ---- FAQ ------------------------------------------------------------- */
.faq-list { border-top: 1px solid var(--line-soft); }
.faq { border-bottom: 1px solid var(--line-soft); }
.faq button { width: 100%; background: none; border: 0; cursor: pointer; text-align: left; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; color: var(--text); }
.faq .plus { font-family: var(--font-round); font-size: 1.4rem; color: var(--teal); transition: transform .2s; flex: none; }
.faq[data-open="true"] .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 0 22px; color: var(--muted); font-size: 15.5px; max-width: 62ch; }

/* ---- CTA band -------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 22px; }
.cta-band .btn { margin: 0 6px; }

/* ---- Footer ---------------------------------------------------------- */
.site-footer { background: #171d23; color: var(--text); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; padding: 60px 0 40px; }
.footer-grid h4 { font-family: var(--font-round); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.footer-grid a { display: block; color: var(--muted); font-size: 14.5px; padding: 6px 0; transition: color .15s; font-family: var(--font-round); }
.footer-grid a:hover { color: var(--teal); }
.footer-logo { height: 30px; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 34ch; margin: 0 0 20px; }
.news { display: flex; gap: 8px; max-width: 320px; }
.news input { flex: 1; background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: 100px; padding: 12px 16px; color: var(--text); font-family: var(--font-round); font-size: 14px; }
.news input::placeholder { color: var(--muted-2); }
.news button { border-radius: 100px; }
.footer-bottom { border-top: 1px solid var(--line-soft); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-round); font-size: 12px; color: var(--muted-2); flex-wrap: wrap; }
.footer-bottom a { color: var(--muted); }

/* ---- Proof preview modal --------------------------------------------- */
.proof-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; }
.proof-modal[hidden] { display: none; }
.proof-backdrop { position: absolute; inset: 0; background: rgba(10, 13, 16, 0.74); backdrop-filter: blur(6px); animation: fade-in .25s ease both; }
.proof-box {
  position: relative; z-index: 1; width: 100%; max-width: 460px;
  background: var(--bg-2); border: 1.5px solid var(--line-strong); border-radius: 20px;
  padding: 34px 30px; box-shadow: var(--shadow-soft), var(--glow-teal);
  animation: proof-pop .32s cubic-bezier(.2,.9,.25,1.2) both; text-align: center;
}
.proof-x { position: absolute; top: 14px; right: 16px; background: none; border: 0; color: var(--muted); font-size: 18px; cursor: pointer; line-height: 1; padding: 4px; transition: color .15s; }
.proof-x:hover { color: var(--teal); }

.proof-loading[hidden], .proof-result[hidden] { display: none !important; }
.proof-loading { display: grid; place-items: center; gap: 18px; padding: 26px 0; }
.proof-spinner { position: relative; width: 66px; height: 66px; }
.proof-spinner span { position: absolute; inset: 0; border: 3px solid transparent; border-radius: 50%; animation: proof-spin 1.1s linear infinite; }
.proof-spinner span:nth-child(1) { border-top-color: var(--teal); }
.proof-spinner span:nth-child(2) { border-top-color: var(--purple); animation-delay: .14s; inset: 7px; }
.proof-spinner span:nth-child(3) { border-top-color: var(--green); animation-delay: .28s; inset: 14px; }
.proof-spinner span:nth-child(4) { border-top-color: var(--teal-3); animation-delay: .42s; inset: 21px; }
.proof-loading-txt { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--text); }
.proof-loading-txt .dots::after { content: ""; animation: proof-dots 1.4s steps(4, end) infinite; }
.proof-loading-sub { font-family: var(--font-round); font-size: 13px; color: var(--muted); max-width: 30ch; }

.proof-result { display: grid; gap: 14px; justify-items: center; }
.proof-result .eyebrow { justify-content: center; }
.proof-result h3 { font-size: 1.5rem; }
.proof-stage { width: 100%; min-height: 240px; display: grid; place-items: center; padding: 20px; border-radius: 14px; background: radial-gradient(circle at 50% 38%, #2a343d, #14191f 78%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); overflow: hidden; }
.proof-stage .cz-artwork { box-shadow: 0 16px 30px -10px rgba(0,0,0,.7); }
.proof-summary { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.proof-chip { font-family: var(--font-round); font-size: 12px; color: var(--text); background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: 100px; padding: 6px 12px; }
.proof-chip b { color: var(--teal); }
.proof-chip.price b { color: var(--green); }
.proof-actions { display: flex; gap: 10px; margin-top: 8px; width: 100%; }
.proof-actions .btn { flex: 1; justify-content: center; }

@keyframes proof-spin { to { transform: rotate(360deg); } }
@keyframes proof-dots { 0%{content:""} 25%{content:"."} 50%{content:".."} 75%{content:"..."} 100%{content:""} }
@keyframes proof-pop { 0% { opacity: 0; transform: translateY(16px) scale(.96); } 100% { opacity: 1; transform: none; } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ---- Reveal on scroll ------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- Toast ----------------------------------------------------------- */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(140%); background: var(--bg-3); color: var(--text); font-family: var(--font-round); font-size: 13px; padding: 14px 20px; border-radius: 100px; box-shadow: var(--shadow-soft), var(--glow-teal); z-index: 90; transition: transform .35s cubic-bezier(.2,.9,.25,1.2); display: flex; align-items: center; gap: 10px; border: 1px solid var(--line-strong); }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }

/* ---- Responsive ------------------------------------------------------ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 380px; margin-top: 10px; }
  .customizer { grid-template-columns: 1fr; }
  .cz-preview { min-height: 420px; }
  .finish-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .mk-face { --sz: 150px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta > .btn { display: none; }
  .glitch img.brand-logo { height: 40px; }
  .nav { height: 80px; }
  .nav-links.open { display: flex; position: absolute; top: 80px; left: 0; right: 0; flex-direction: column; background: var(--bg-2); padding: 18px 24px; border-bottom: 1px solid var(--line-soft); gap: 4px; }
  .nav-links.open a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .finish-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .mk-face { --sz: 128px; padding: 7px; }
  .mk-fill { font-size: .9rem; }
  .mk-fill .mk-emoji { font-size: 2.1rem; }
  .sticker-marquee { gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cz-actions { flex-direction: column; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .hero-logo-sticker { width: 280px; }
}

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

/* ---- Focus ----------------------------------------------------------- */
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 4px; }
