/* =========================================================
   CutCustoms — Homepage styles
   Design reference: Pre-Build/design.png (1030px content width)
   Site scale: design px × 1.15 → 1180px container
   ========================================================= */

:root {
  --green: #8ED92D;
  --green-btn: #8FD62E;
  --green-deep: #6FB81F;
  --green-dark: #2B4E0F;
  --green-light: #B8EA6A;
  --lime-text: #7BC825;
  --black: #141618;
  --ink: #1B1D1B;
  --dark: #1C1E1C;
  --gray-bg: #FAFAFA;
  --gray-line: #E6E6E6;
  --text: #2A2C2A;
  --muted: #4A4D4A;
  --mint: #A9EBDA;
  --white: #FFFFFF;

  --font-display: "Montserrat", "Inter", system-ui, sans-serif;
  --font-body: "DM Sans", "Inter", system-ui, sans-serif;
  --font-hand: "Gochi Hand", "Comic Sans MS", cursive;

  --container: 1180px;
  --shadow-sticker: 0 10px 22px rgba(0,0,0,.28), 0 2px 5px rgba(0,0,0,.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

.container {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--black);
}
.eyebrow-green { color: var(--lime-text); }
.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--black);
}
.h2-light { color: #fff; }
.lead { font-size: 15px; line-height: 1.5; font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  white-space: nowrap;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-green { background: var(--green-btn); color: var(--black); }
.btn-green:hover { background: #9BE23A; }
.btn-black { background: var(--black); color: #fff; box-shadow: 0 6px 16px rgba(0,0,0,.18); }
.btn-black:hover { background: #222528; }
.btn-sm { height: 38px; padding: 0 18px; font-size: 14px; border-radius: 9px; gap: 10px; }
.btn-md { height: 44px; padding: 0 26px; font-size: 15px; }
.btn-lg { height: 46px; padding: 0 30px; font-size: 16px; }
.btn-xs { height: 27px; padding: 0 16px; font-size: 10.5px; border-radius: 6px; font-weight: 600; }
.btn-block { width: 100%; }
.ic-arrow { width: 15px; height: 15px; }
.ic-chev { width: 11px; height: 11px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: relative;
  z-index: 3;
  background: #fff;
  height: 64px;
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 34px;
}
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--black); }
.brand-mark { width: 56px; height: 39px; color: var(--green); }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.02em;
}
.brand-light { color: #fff; }
.brand-light .brand-mark { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 60px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  white-space: nowrap;
  transition: color .15s;
}
.nav-link:hover { color: var(--green-deep); }
.nav-item { position: relative; }
.menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -12px;
  min-width: 190px;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s, transform .16s, visibility .16s;
}
.menu a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 13.5px; font-weight: 600; }
.menu a:hover { background: #F1FAE4; }
.has-menu:hover .menu, .has-menu:focus-within .menu { opacity: 1; visibility: visible; transform: none; }

.nav-actions { display: flex; align-items: center; gap: 18px; margin-left: auto; padding-left: 22px; }
.icon-btn { width: 22px; height: 22px; color: var(--black); display: grid; place-items: center; transition: color .15s; }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn:hover { color: var(--green-deep); }
.login { font-weight: 600; font-size: 13.5px; white-space: nowrap; }
.only-menu { display: none; }
.ic-cart { width: 16px; height: 16px; margin-right: 6px; }
.burger { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 580px;
  color: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--green);
  z-index: 0;
}
.hero-stripes {
  position: absolute;
  inset: -20% -10%;
  background:
    repeating-linear-gradient(-34deg,
      transparent 0 150px,
      rgba(35,72,12,.52) 150px 235px,
      transparent 235px 300px,
      rgba(35,72,12,.42) 300px 345px,
      transparent 345px 470px,
      rgba(35,72,12,.5) 470px 540px,
      transparent 540px 640px);
  -webkit-mask: linear-gradient(90deg, transparent 0 40%, #000 52%);
          mask: linear-gradient(90deg, transparent 0 40%, #000 52%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .28;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='420' height='420'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.35  0 0 0 0 0.05  0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.15  0 0 0 0 0.3  0 0 0 0 0.05  0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23m)'/></svg>");
}
.hero-wave {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 26px;
  z-index: 1;
}
.hero-inner { z-index: 1; height: 100%; }

/* dark diagonal wedge to the right of the headline, running under the laptop */
.hero-streak {
  position: absolute;
  left: 410px;
  top: 195px;
  width: 360px;
  height: 110px;
  z-index: 0;
  background: linear-gradient(90deg, rgba(35,72,12,.62), rgba(35,72,12,.5));
  clip-path: polygon(2% 9%, 100% 0, 100% 24%, 6% 82%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 480px;
  padding: 45px 0 0 63px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 104px;
  line-height: .8;
  letter-spacing: -.03em;
  margin: 16px 0 0 -5px;
}
.hero-text {
  margin-top: 20px;
  max-width: 300px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--ink);
}
.hero-copy .btn-lg { margin-top: 8px; width: 232px; height: 48px; }
.hero-perks {
  display: flex;
  gap: 6px 24px;
  margin-top: 12px;
  flex-wrap: wrap;
  max-width: 330px;      /* "Made in Canada" wraps to its own line, clear of the holo sticker */
}
.hero-perks li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--black);
}
.perk-ic { width: 14px; height: 14px; color: var(--black); }
.perk-maple { color: #D52B1E; }

/* doodles */
.doodle { position: absolute; pointer-events: none; }
.doodle-z { left: 344px; top: 252px; width: 100px; height: 42px; z-index: 2; }
.doodle-spark { color: #fff; z-index: 2; }
.doodle-spark-1 { left: 519px; top: 88px; width: 30px; height: 30px; }
.doodle-spark-2 { left: 503px; top: 138px; width: 25px; height: 25px; }
.doodle-check { left: 1133px; top: 252px; width: 42px; height: 52px; z-index: 2; }
.doodle-slash-br { left: 1142px; top: 522px; width: 34px; height: 34px; }

/* wrapper for the laptop + its decorations: fills .hero-inner on desktop,
   becomes a flow block the stickers anchor to on small screens */
.hero-visual { position: absolute; inset: 0; pointer-events: none; }
.hero-visual > * { pointer-events: auto; }

/* ---------- Laptop ---------- */
.laptop {
  position: absolute;
  left: 548px;
  top: 40px;
  width: 596px;
  transform: rotate(-2.6deg);
  transform-origin: 50% 50%;
  z-index: 1;
  filter: drop-shadow(0 22px 26px rgba(0,0,0,.28));
}
.laptop-lid {
  background: #121314;
  border-radius: 16px 16px 6px 6px;
  padding: 11px 11px 12px;
  border: 1px solid #2c2e30;
  position: relative;
}
.laptop-cam {
  position: absolute; top: 4px; left: 50%; width: 4px; height: 4px; margin-left: -2px;
  border-radius: 50%; background: #2a2c2e;
}
.laptop-base {
  height: 14px;
  margin: 0 -22px;
  background: linear-gradient(#F2F2F2, #C9CACB 55%, #A9AAAC);
  border-radius: 3px 3px 12px 12px;
  position: relative;
}
.laptop-base span {
  position: absolute; left: 50%; top: 0; width: 84px; height: 5px; margin-left: -42px;
  background: #8d8f91; border-radius: 0 0 5px 5px;
}
.screen {
  background: #F3F3F3;
  height: 402px;
  border-radius: 4px;
  overflow: hidden;
  font-family: var(--font-body);
  color: var(--black);
  display: flex;
  flex-direction: column;
}
.app-top {
  height: 50px;
  flex: none;
  background: #fff;
  border-bottom: 1px solid #E9E9E9;
  display: flex;
  align-items: center;
  padding: 0 16px 0 18px;
}
.app-brand { display: flex; align-items: center; gap: 7px; }
.app-mark { width: 33px; height: 23px; color: var(--green); }
.app-brand span { font-family: var(--font-display); font-weight: 800; font-size: 14.5px; letter-spacing: -.02em; }
.app-body { flex: 1; display: flex; min-height: 0; }
.app-tools {
  width: 74px;
  flex: none;
  background: #fff;
  border-right: 1px solid #E9E9E9;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.tool {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: #222; font-size: 8px; font-weight: 500; width: 100%;
  padding: 4px 0;
}
.tool svg { width: 24px; height: 24px; }
.tool:hover, .tool.is-active { color: var(--black); }
.app-main { flex: 1; display: flex; flex-direction: column; padding: 0 14px 12px 12px; min-width: 0; }
.app-toolbar {
  height: 38px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding-right: 122px;
}
.app-zoom { font-size: 9px; color: #666; margin-right: 6px; }
.app-history { display: flex; gap: 12px; color: #333; margin-right: 12px; }
.app-history svg { width: 14px; height: 14px; }
.app-work { flex: 1; display: flex; gap: 12px; min-height: 0; }
.app-canvas {
  flex: 1;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, #E5E5E5 25%, transparent 25%, transparent 75%, #E5E5E5 75%),
    linear-gradient(45deg, #E5E5E5 25%, transparent 25%, transparent 75%, #E5E5E5 75%);
  background-size: 16px 16px;
  background-position: 0 0, 8px 8px;
  border: 1px solid #E3E3E3;
  overflow: hidden;
}
.app-canvas { cursor: pointer; }
.canvas-art { cursor: grab; touch-action: pan-y pinch-zoom; -webkit-touch-callout: none; -webkit-user-drag: none; -webkit-user-select: none; user-select: none; }
.canvas-art:active { cursor: grabbing; }
.canvas-art {
  width: auto;
  height: 308px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,.18));
  will-change: transform, opacity;
}
/* design showcase: current sticker peels off, next one pops in */
.canvas-art.is-out { animation: art-out .3s cubic-bezier(.5,0,.85,.4) forwards; }
.canvas-art.is-in  { animation: art-in .6s cubic-bezier(.2,1.5,.4,1) both; }
@keyframes art-out {
  to { transform: scale(.55) rotate(-16deg) translateY(26px); opacity: 0; }
}
@keyframes art-in {
  from { transform: scale(.45) rotate(14deg) translateY(-10px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.canvas-file {
  position: absolute;
  left: 10px; bottom: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 8.5px; font-weight: 600; color: #333;
  background: #fff; border: 1px solid #E3E3E3; border-radius: 5px;
  padding: 4px 8px 4px 7px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  pointer-events: none;
}
.canvas-file::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
@media (prefers-reduced-motion: reduce) {
  .canvas-art.is-out { animation: art-fade-out .25s ease forwards; }
  .canvas-art.is-in  { animation: art-fade-in .35s ease both; }
  @keyframes art-fade-out { to { opacity: 0; } }
  @keyframes art-fade-in { from { opacity: 0; } to { opacity: 1; } }
}
.app-panel {
  width: 172px;
  flex: none;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  padding: 14px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-panel .btn-block { margin-top: 6px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field > span { font-size: 9.5px; font-weight: 600; color: #222; }
.select {
  position: relative;
  height: 28px;
  border: 1px solid #DADADA;
  border-radius: 5px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  font-size: 9px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}
.select b { font-weight: 500; }
.select-menu {
  position: absolute;
  left: -1px; right: -1px; top: calc(100% + 4px);
  background: #fff;
  border: 1px solid #DADADA;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  z-index: 5;
  display: none;
  overflow: hidden;
}
.select.is-open .select-menu { display: block; }
.select-menu li { padding: 7px 8px; font-size: 9px; }
.select-menu li:hover { background: #F1FAE4; }
.select-menu li.is-selected { background: #EAF7D6; font-weight: 600; }

/* ---------- Stickers (shared) ---------- */
.sticker {
  position: absolute;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;   /* iOS: no save-image sheet on long press */
  -webkit-user-drag: none;       /* iOS/Safari: no native image drag on press-and-hold */
  touch-action: none;
  cursor: grab;
  transition: scale .18s ease, filter .18s ease, box-shadow .18s ease;
}
.sticker:hover { scale: 1.04; }
.sticker.is-dragging { cursor: grabbing; scale: 1.08; transition-duration: .5s; transition-timing-function: cubic-bezier(.2,1.2,.3,1); }
body.is-carrying, body.is-carrying * { cursor: grabbing !important; }
.sticker.is-dragging:not(img) { box-shadow: 0 0 0 6px #fff, 0 26px 40px rgba(0,0,0,.35); }
.sticker.is-dragging.sticker-stick-better,
.sticker.is-dragging.sticker-good-people,
.sticker.is-dragging.sticker-around { box-shadow: 0 26px 40px rgba(0,0,0,.32), 0 2px 4px rgba(0,0,0,.14); }
img.sticker.is-dragging { filter: drop-shadow(0 26px 30px rgba(0,0,0,.36)); }
.sticker.is-landing { animation: sticker-land .45s cubic-bezier(.2,1.6,.4,1); }
@keyframes sticker-land {
  0%   { scale: 1.08; }
  60%  { scale: .97; }
  100% { scale: 1; }
}
/* images inside composite stickers get the same iOS protections */
.sticker img { -webkit-touch-callout: none; -webkit-user-drag: none; pointer-events: none; }
/* demo designs peeled off the designer canvas */
.sticker-demo { filter: drop-shadow(0 12px 16px rgba(0,0,0,.28)); }
.sticker.is-dismiss { animation: sticker-dismiss .32s ease-in forwards; pointer-events: none; }
@keyframes sticker-dismiss { to { scale: .2; opacity: 0; rotate: 25deg; } }
/* lifted stickers live in a page-wide layer above every section */
.drag-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 0;
  overflow: visible;
  z-index: 60;
  pointer-events: none;
}
.drag-layer > .sticker {
  pointer-events: auto;
  animation: none !important;   /* stop the idle float once picked up */
  translate: none;
  margin: 0;
  transform-origin: 50% 50%;
}
/* peel-off effect: the sticker is temporarily replaced by a stack of 3D strips */
.peel-3d {
  position: absolute;
  pointer-events: none;
  transform-origin: 50% 50%;
  perspective: 700px;
  perspective-origin: 50% 50%;
}
.peel-stage { position: absolute; inset: 0; transform-style: preserve-3d; }
.peel-card { position: absolute; left: 0; top: 0; overflow: hidden; transform-origin: 0 0; will-change: transform; backface-visibility: hidden; }
.peel-cell { position: absolute; left: 0; top: 0; transform-origin: 0 0; }
.peel-face, .peel-face * { pointer-events: none !important; }
.peel-face {
  position: absolute !important;
  left: 0 !important; top: 0 !important; right: auto !important; bottom: auto !important;
  margin: 0 !important;
  transform: none !important;
  translate: none !important;
  scale: none !important;
  animation: none !important;
  transition: none !important;
  visibility: visible !important;
  z-index: auto !important;
  cursor: default;
}
img.peel-face { filter: none !important; }
.peel-shade {
  position: absolute; inset: 0;
  background: #000;
  opacity: 0;
}
.peel-shadow {
  position: absolute; inset: 0;
  background: #000;
  opacity: .34;
  filter: blur(3px);
  transform: translate(0, 6px);
}
.sticker .txt {
  font-family: var(--font-hand);
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: 0;
  display: block;
  -webkit-text-stroke: 1.1px currentColor;
  paint-order: stroke fill;
}

/* "Stick Better Things" — over the nav edge */
.sticker-stick-better {
  left: calc(50% + 236px);
  top: 0;
  width: 146px;
  height: 66px;
  background: #fff;
  border-radius: 20px 24px 22px 20px;
  transform: rotate(-9deg);
  z-index: 4;
  display: flex;
  align-items: center;
  padding: 0 6px 0 12px;
  gap: 4px;
  color: var(--black);
  box-shadow: 0 8px 16px rgba(0,0,0,.20), 0 1px 3px rgba(0,0,0,.14);
}
.sticker-stick-better .txt { font-size: 19px; line-height: .88; }
.sticker-stick-better .smile { width: 36px; height: 36px; flex: none; color: var(--black); }

/* "Ideas Travel Far" — black sticker with white die-cut border */
.sticker-ideas-travel {
  left: 1005px;
  top: 40px;
  width: 168px;
  height: 130px;
  background: #111213;
  color: #fff;
  border-radius: 22px 26px 26px 20px;
  box-shadow: 0 0 0 6px #fff, 0 14px 24px rgba(0,0,0,.30), 0 0 0 7px rgba(0,0,0,.08);
  transform: rotate(-10deg);
  z-index: 2;
  padding: 12px 10px 10px 14px;
}
.sticker-ideas-travel .txt { font-size: 33px; line-height: .86; -webkit-text-stroke-width: 1.4px; }
.sticker-ideas-travel .globe {
  position: absolute; right: 12px; bottom: 10px; width: 50px; height: 50px; color: #fff;
}

/* Holographic circle with peeling corner */
.sticker-holo-small {
  left: 386px;
  top: 342px;
  width: 190px;
  height: 190px;
  padding: 5px;
  border-radius: 50%;
  overflow: hidden;
  transform: rotate(-8deg);
  z-index: 3;
  box-shadow: 0 14px 26px rgba(0,0,0,.30);
  background: #fff;
}
.sticker-holo-small img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  -webkit-mask: radial-gradient(circle at 100% 100%, transparent 0 50px, #000 51px);
          mask: radial-gradient(circle at 100% 100%, transparent 0 50px, #000 51px);
}
.sticker-holo-small .peel {
  position: absolute;
  right: -2px; bottom: -2px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 78% 78%, #FFFFFF 0 30%, #E6E6E6 46%, #BEBEBE 60%, #A3A3A3 62%);
  transform: translate(46%, 46%);
  box-shadow: -8px -8px 14px rgba(0,0,0,.22);
}

/* Lucky cat — lives outside .hero-inner so it can overlap the next section */
.sticker-cat {
  left: calc(50% + 448px);
  top: 300px;
  width: 132px;
  height: auto;
  transform: rotate(4deg);
  z-index: 4;
  filter: drop-shadow(0 12px 16px rgba(0,0,0,.28));
}

/* ---------- Hand-written notes ---------- */
.note {
  position: absolute;
  font-family: var(--font-hand);
  text-transform: uppercase;
  line-height: 1;
  pointer-events: none;
}
.note span { display: block; }
.note-your-design {
  left: 586px;
  top: 470px;
  color: #fff;
  font-size: 23px;
  line-height: .96;
  transform: rotate(-9deg);
  z-index: 2;
}
.note-your-design .note-arrow {
  position: absolute;
  left: 82px;
  top: -86px;
  width: 58px;
  height: 84px;
}

/* =========================================================
   STEPS
   ========================================================= */
.steps {
  position: relative;
  z-index: 2;
  margin-top: -75px;
  height: 352px;
}
.steps::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(0,0,0,.035) 0 22%, transparent 22.2% 60%, rgba(0,0,0,.03) 60.2% 100%),
    #FBFBFB;
  clip-path: polygon(
    0 38px,
    calc(50% - 199px) 24px,
    calc(50% - 55px) 82px,
    calc(50% + 158px) 26px,
    calc(50% + 560px) 7px,
    100% 0,
    100% 297px,
    calc(50% - 188px) 343px,
    0 302px
  );
}
.steps-inner { z-index: 1; height: 100%; }
.steps-inner .eyebrow { position: absolute; left: 63px; top: 79px; }
.steps-inner .h2 { position: absolute; left: 60px; top: 96px; }

.note-happiness {
  left: 1006px;
  top: 64px;
  color: var(--black);
  font-size: 19px;
  line-height: .96;
  transform: rotate(-8deg);
}
.note-happiness .slashes { position: absolute; left: 124px; top: -8px; width: 34px; height: 30px; }
.note-happiness .smile { position: absolute; left: 86px; top: 64px; width: 36px; height: 36px; color: var(--black); }

.step-row {
  position: absolute;
  left: 60px;
  top: 138px;
  display: flex;
  transform: rotate(-1deg);
  transform-origin: left center;
}
.step-card {
  position: relative;
  width: 380px;
  height: 172px;
  flex: none;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.09));
  padding: 22px 26px 0 110px;
}
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1;
}
.step-2, .step-3 { margin-left: -24px; }
.step-1::before { clip-path: polygon(7.5% 0, 87.5% 0, 100% 49%, 87.5% 100%, 0 100%); }
.step-2::before { clip-path: polygon(0 0, 90% 0, 100% 49%, 90% 100%, 0 100%, 9% 49%); }
.step-3 { width: 400px; }
.step-3::before { clip-path: polygon(0 0, 58% 0, 95% 52%, 95% 100%, 0 100%, 9% 49%); }
.step-num {
  position: absolute;
  left: 44px;
  top: 40px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  display: grid;
  place-items: center;
}
.step-2 .step-num, .step-3 .step-num { left: 68px; }
.step-2 .step-body, .step-3 .step-body { margin-left: 24px; }
.step-ic { width: 60px; height: 54px; color: var(--black); }
.step-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.01em;
  color: var(--black);
  margin-top: 8px;
}
.step-card p {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text);
  margin-top: 5px;
  max-width: 220px;
  font-weight: 500;
}

/* =========================================================
   STICKER OPTIONS (dark)
   ========================================================= */
.options {
  position: relative;
  z-index: 1;
  margin-top: -55px;
  height: 343px;
  color: #fff;
}
.options::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(255,255,255,.035) 0 30%, transparent 30.2% 100%),
    var(--dark);
}
.options-inner { z-index: 1; height: 100%; }
.options-copy { position: absolute; left: 60px; top: 78px; width: 340px; }
.options-copy .h2 { font-size: 31.5px; line-height: 1.12; margin-top: 2px; letter-spacing: -.02em; }
.options-copy .lead { margin-top: 12px; font-size: 15px; line-height: 1.38; color: #fff; font-weight: 500; }
.options-copy .btn-md { margin-top: 18px; width: 212px; }

.note-vibes {
  left: 284px;
  top: 242px;
  color: #fff;
  font-size: 16px;
  line-height: .96;
  transform: rotate(-12deg);
}
.note-vibes .note-arrow { position: absolute; left: 64px; top: -20px; width: 58px; height: 34px; }

.note-stick-out {
  left: 1112px;
  top: 40px;
  color: #fff;
  font-size: 15.5px;
  line-height: .96;
  transform: rotate(8deg);
  z-index: 3;
}
.note-stick-out .note-arrow { position: absolute; left: 14px; top: 54px; width: 34px; height: 52px; }

.option-row {
  position: absolute;
  left: 396px;
  top: 71px;
  display: flex;
  gap: 6px;
}
.option-card {
  position: relative;
  width: 242px;
  height: 242px;
  flex: none;
  color: var(--black);
  padding: 0 18px 0 21px;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.35));
}
.option-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #FFFFFF, #F4F4F4);
  z-index: -1;
}
.opt-1 { transform: rotate(-.8deg); }
.opt-1::before { clip-path: polygon(0 0, 72% 0, 100% 11%, 100% 100%, 2.5% 100%); }
.opt-2::before { clip-path: polygon(0 0, 85% 0, 100% 10%, 100% 100%, 17% 100%, 0 80%); }
.opt-3 { transform: rotate(-.5deg); }
.opt-3::before { clip-path: polygon(0 0, 83% 0, 100% 11%, 100% 100%, 4% 100%); }
.opt-art {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.option-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -.01em;
  margin-top: 2px;
}
.option-card p {
  font-size: 12.5px;
  line-height: 1.38;
  margin-top: 2px;
  font-weight: 500;
  color: var(--text);
}
.opt-2 h3, .opt-2 p { margin-left: 18px; }
.opt-1 p { font-size: 12px; }
.diecut-logo {
  width: 156px;
  height: auto;
  transform: rotate(-9deg);
  margin-top: 2px;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.22));
}
.diecut-border { fill: #fff; stroke: #fff; stroke-width: 72; stroke-linejoin: round; }
.diecut-fill { fill: #83BA23; }
.kiss-backing {
  width: 170px;
  height: 112px;
  background: linear-gradient(180deg, #F3F3F3, #E7E7E7);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05), 0 6px 12px rgba(0,0,0,.14);
  display: grid;
  place-items: center;
  transform: rotate(-1.5deg);
  margin-top: 6px;
}
.kiss-backing img { width: 118px; height: 118px; object-fit: contain; filter: drop-shadow(0 4px 6px rgba(0,0,0,.14)); margin-top: 4px; }
.holo-alien { width: auto; height: 130px; object-fit: contain; filter: drop-shadow(0 8px 12px rgba(0,0,0,.22)); margin-top: 4px; }
.badge {
  position: absolute;
  left: 100px;
  bottom: -11px;
  height: 23px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--mint);
  color: #14261F;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
  position: relative;
  z-index: 2;
  margin-top: -21px;
  height: 141px;
}
.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: polygon(0 3px, calc(50% - 446px) 19px, calc(50% + 272px) 17px, 100% 3px, 100% 100%, 0 100%);
}
.reviews-inner { z-index: 1; height: 100%; }
.note-real {
  left: 36px;
  top: 42px;
  color: var(--black);
  font-size: 19px;
  line-height: 1.08;
  transform: rotate(-5deg);
}
.note-real .marker { position: absolute; left: 20px; top: 48px; width: 150px; height: 32px; z-index: -1; }
.review-row {
  position: absolute;
  left: 236px;
  top: 36px;
  display: flex;
}
.review {
  position: relative;
  display: flex;
  gap: 12px;
  width: 312px;
  padding-right: 18px;
}
.review + .review { padding-left: 20px; }
.review + .review::before {
  content: "";
  position: absolute;
  left: 0; top: -2px; bottom: 0;
  width: 1px;
  background: #E9E9E9;
}
.avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
}
.review-body p {
  font-size: 12.5px;
  line-height: 1.36;
  font-weight: 500;
  color: var(--text);
  min-height: 50px;
}
.stars { display: flex; gap: 2px; margin-top: 3px; color: #7DCF20; }
.stars svg { width: 14px; height: 14px; }
.who { display: block; margin-top: 4px; font-size: 11.5px; font-weight: 700; color: var(--black); }

.reviews[hidden] { display: none; }
.reviews[hidden] + .cta { margin-top: 0; }

/* =========================================================
   ABOUT (copy band)
   ========================================================= */
.about {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 58px 24px 54px;
}
.about-inner { max-width: 740px; margin: 0 auto; text-align: center; }
.about .h2 { font-size: 32px; margin-top: 10px; }
.about p:not(.eyebrow) { font-size: 15px; line-height: 1.65; color: var(--muted); margin-top: 14px; }
@media (max-width: 640px) {
  .about { padding: 44px 20px 40px; }
  .about .h2 { font-size: 26px; }
  .about p:not(.eyebrow) { font-size: 14.5px; text-align: left; }
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  position: relative;
  z-index: 3;
  margin-top: -12px;
  height: 238px;
  color: var(--black);
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(35,72,12,.0) 0 40%, rgba(35,72,12,.18) 40.2% 47%, transparent 47.2% 62%, rgba(35,72,12,.14) 62.2% 70%, transparent 70.2%),
    var(--green);
  clip-path: polygon(0 10px, 100% 0, 100% calc(100% - 23px), calc(50% + 100px) 100%, calc(50% - 245px) 100%, 0 calc(100% - 29px));
}
.cta::after {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 400px; height: 24px;
  background: var(--green-light);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: .9;
}
.cta-inner { z-index: 1; height: 100%; }
.cta-copy {
  position: absolute;
  left: 0; right: 0;
  top: 52px;
  text-align: center;
}
.cta-copy .h2 { font-size: 34px; line-height: 1.08; letter-spacing: -.02em; }
.cta-copy .lead { margin-top: 6px; font-size: 14.5px; color: var(--black); }
.cta-copy .btn-lg { margin-top: 16px; width: 224px; height: 48px; }

.sticker-dog {
  left: 14px;
  top: 12px;
  width: 165px;
  height: 226px;
  object-fit: contain;
  transform: rotate(-2deg);
  filter: drop-shadow(0 12px 16px rgba(0,0,0,.26));
  z-index: 2;
}
.sticker-good-people {
  left: 176px;
  top: 88px;
  width: 150px;
  height: 116px;
  background: #fff;
  border-radius: 22px 16px 20px 24px;
  transform: rotate(-7deg);
  color: var(--black);
  padding: 8px 8px 6px 12px;
  box-shadow: 0 12px 20px rgba(0,0,0,.24), 0 1px 3px rgba(0,0,0,.14);
  z-index: 3;
}
.sticker-good-people .txt { font-size: 27px; line-height: .88; }
.sticker-good-people .heart { position: absolute; right: 10px; top: 44px; width: 30px; height: 30px; color: var(--black); transform: rotate(-12deg); }

.sticker-holo-globe {
  left: 884px;
  top: 74px;
  width: 140px;
  height: 140px;
  object-fit: contain;
  transform: rotate(-6deg);
  filter: drop-shadow(0 12px 16px rgba(0,0,0,.26));
}
.sticker-create {
  left: 1008px;
  top: 24px;
  width: 158px;
  height: 120px;
  background: #111213;
  color: #fff;
  border-radius: 22px 28px 24px 22px;
  box-shadow: 0 0 0 6px #fff, 0 14px 24px rgba(0,0,0,.28);
  transform: rotate(5deg);
  padding: 10px 10px 8px 16px;
  z-index: 2;
}
.sticker-create .txt { font-size: 26px; line-height: .88; -webkit-text-stroke-width: 1.3px; }
.sticker-create .crown { position: absolute; right: -6px; top: -20px; width: 42px; height: 36px; transform: rotate(12deg); }
.sticker-canada {
  left: 792px;
  top: 4px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #D52B1E;
  color: #fff;
  box-shadow: 0 0 0 6px #fff, 0 12px 20px rgba(0,0,0,.26), 0 0 0 7px rgba(0,0,0,.08);
  transform: rotate(-12deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  text-align: center;
  z-index: 2;
}
.sticker-canada .leaf { width: 30px; height: 30px; color: #fff; }
.sticker-canada .txt { font-size: 15px; line-height: .9; -webkit-text-stroke-width: .8px; }
.sticker-around {
  left: 1024px;
  top: 150px;
  width: 158px;
  height: 84px;
  background: #fff;
  color: var(--black);
  border-radius: 20px 26px 22px 20px;
  transform: rotate(-5deg);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px 0 12px;
  box-shadow: 0 12px 20px rgba(0,0,0,.24), 0 1px 3px rgba(0,0,0,.14);
  z-index: 3;
}
.sticker-around .txt { font-size: 23px; line-height: .88; }
.sticker-around .heart { width: 42px; height: 42px; flex: none; color: var(--black); transform: rotate(-14deg); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  position: relative;
  z-index: 1;
  margin-top: -29px;
  background: #151719;
  color: #fff;
  padding: 44px 0 20px;
}
.footer-inner {
  display: flex;
  align-items: center;
  padding: 0 34px;
}
.footer .brand-mark { width: 38px; height: 27px; }
.footer .brand-name { font-size: 16.5px; }
.footer-links { display: flex; gap: 24px; margin-left: 60px; }
.footer-links a { font-size: 12px; font-weight: 600; color: #fff; white-space: nowrap; transition: color .15s; }
.footer-links a:hover { color: var(--green); }
.footer-right { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.socials { display: flex; gap: 20px; }
.socials a { color: #fff; transition: color .15s; }
.socials a:hover { color: var(--green); }
.socials svg { width: 17px; height: 17px; }
.footer-divider { width: 1px; height: 30px; background: #4A4D4F; }
.copyright { font-size: 9px; color: #D6D6D6; font-weight: 500; letter-spacing: .01em; text-align: right; line-height: 1.6; }
.made-in { display: flex; justify-content: flex-end; align-items: center; gap: 4px; color: #fff; font-weight: 700; }
.made-in svg { width: 11px; height: 11px; color: #E53E30; }

/* =========================================================
   Motion
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .sticker-ideas-travel, .sticker-stick-better, .sticker-cat, .sticker-holo-small,
  .sticker-create, .sticker-around, .sticker-good-people, .sticker-holo-globe, .sticker-dog, .sticker-canada {
    animation: float 6s ease-in-out infinite;
  }
  .sticker-canada { animation-delay: -4.5s; }
  .sticker-stick-better { animation-delay: -1s; }
  .sticker-cat { animation-delay: -2s; }
  .sticker-holo-small { animation-delay: -3s; }
  .sticker-create { animation-delay: -1.5s; }
  .sticker-around { animation-delay: -4s; }
  .sticker-good-people { animation-delay: -2.5s; }
  .sticker-holo-globe { animation-delay: -3.5s; }
  .sticker-dog { animation-delay: -.5s; }
  @keyframes float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -5px; }
  }
}

/* ---------- Reveal on scroll ---------- */
.will-reveal { opacity: 0; translate: 0 14px; transition: opacity .55s ease, translate .55s ease; }
.will-reveal.is-in { opacity: 1; translate: 0 0; }
.step-card.will-reveal:nth-child(2), .option-card.will-reveal:nth-child(2), .review.will-reveal:nth-child(2) { transition-delay: .1s; }
.step-card.will-reveal:nth-child(3), .option-card.will-reveal:nth-child(3), .review.will-reveal:nth-child(3) { transition-delay: .2s; }

/* =========================================================
   Responsive
   - 1024–1200px: the pixel-placed composition scales as a unit
     (--s is set from JS = viewport / 1180; text stays ≥ 13px).
   - ≤1023px: sections reflow (tablet: rows of 3, phone: stacked).
   ========================================================= */
:root { --s: 1; }

@media (max-width: 1200px) and (min-width: 1024px) {
  :root { --container: 100%; }
  .nav-links { margin-left: 34px; gap: 18px; }
  .login-more { display: none; }          /* "Log In" only, so the bar fits */
  .nav-actions { gap: 14px; }
  .hero-inner, .steps-inner, .options-inner, .reviews-inner, .cta-inner {
    width: 1180px; max-width: none; margin: 0;
    transform: scale(var(--s)); transform-origin: top left;
  }
  .hero { height: calc(580px * var(--s)); }
  .sticker-stick-better { left: calc(826px * var(--s)); top: 0; transform: rotate(-9deg) scale(var(--s)); transform-origin: top left; }
  .sticker-cat { left: calc(1038px * var(--s)); top: calc(300px * var(--s)); transform: rotate(4deg) scale(var(--s)); transform-origin: top left; }
  .steps { height: calc(352px * var(--s)); margin-top: calc(-75px * var(--s)); }
  .steps::before { clip-path: polygon(0 calc(38px * var(--s)), calc(50% - 199px * var(--s)) calc(24px * var(--s)), calc(50% - 55px * var(--s)) calc(82px * var(--s)), calc(50% + 158px * var(--s)) calc(26px * var(--s)), calc(50% + 560px * var(--s)) calc(7px * var(--s)), 100% 0, 100% calc(297px * var(--s)), calc(50% - 188px * var(--s)) calc(343px * var(--s)), 0 calc(302px * var(--s))); }
  .options { height: calc(343px * var(--s)); margin-top: calc(-55px * var(--s)); }
  .reviews { height: calc(141px * var(--s)); margin-top: calc(-21px * var(--s)); }
  .reviews::before { clip-path: polygon(0 3px, calc(50% - 446px * var(--s)) calc(19px * var(--s)), calc(50% + 272px * var(--s)) calc(17px * var(--s)), 100% 3px, 100% 100%, 0 100%); }
  .cta { height: calc(238px * var(--s)); margin-top: calc(-12px * var(--s)); }
  .cta::before { clip-path: polygon(0 calc(10px * var(--s)), 100% 0, 100% calc(100% - 23px * var(--s)), calc(50% + 100px * var(--s)) 100%, calc(50% - 245px * var(--s)) 100%, 0 calc(100% - 29px * var(--s))); }
  .cta::after { width: calc(400px * var(--s)); height: calc(24px * var(--s)); }
  .footer { margin-top: calc(-29px * var(--s)); }
  .footer-inner { flex-wrap: wrap; gap: 16px 40px; }
  .footer-links { margin-left: 40px; }
  .footer-right { gap: 22px; }
}

/* ---------- Nav: collapse to burger ---------- */
@media (max-width: 1023px) {
  .nav-links, .nav-actions .login { display: none; }
  .nav-actions { gap: 14px; }
  .nav.is-open .only-menu { display: inline-flex; align-items: center; }
  .nav.is-open .menu-sep { border-top: 1px solid #EEE; margin-top: 6px; padding-top: 14px; width: 100%; }
  .burger { display: flex; flex-direction: column; gap: 4px; margin-left: 14px; padding: 8px; }
  .burger span { width: 20px; height: 2px; background: var(--black); border-radius: 2px; transition: transform .2s, opacity .2s; }
  .nav.is-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav.is-open .burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav.is-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
    position: absolute; left: 0; right: 0; top: 64px; background: #fff; padding: 10px 24px 18px;
    box-shadow: 0 16px 30px rgba(0,0,0,.12); margin: 0; z-index: 10;
  }
  .nav.is-open .nav-link { padding: 10px 0; font-size: 16px; width: 100%; }
  .nav.is-open .nav-item { width: 100%; }
  .nav.is-open .menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 0 0 6px 14px; min-width: 0; }
  .nav.is-open .menu a { padding: 8px 0; font-size: 14px; color: var(--muted); }
}

/* ---------- Tablet + phone reflow ---------- */
@media (max-width: 1023px) {
  :root { --container: 100%; --pad: 32px; }
  .nav-inner { padding: 0 var(--pad); }

  /* hero → copy over laptop */
  .hero { height: auto; padding-bottom: 76px; }
  .hero-inner { height: auto; padding: 0 var(--pad); }
  .hero-copy { width: 100%; max-width: 560px; padding: 36px 0 0; }
  .hero-title { font-size: clamp(56px, 11vw, 96px); margin-top: 14px; }
  .hero-text { margin-top: 18px; max-width: 440px; font-size: 16px; line-height: 1.4; }
  .hero-copy .btn-lg { margin-top: 18px; }
  .hero-perks { flex-wrap: wrap; gap: 12px 22px; margin-top: 22px; max-width: none; }
  .hero-perks li { font-size: 12px; }
  .hero-streak, .doodle-z, .doodle-spark, .doodle-check, .doodle-slash-br, .note-your-design, .sticker-stick-better { display: none; }

  .hero-visual { position: relative; inset: auto; width: 100%; max-width: 620px; margin: 40px auto 0; }
  .laptop { position: relative; left: auto; top: auto; width: 100%; transform: rotate(-1.5deg); }
  .screen { height: auto; aspect-ratio: 574 / 402; }
  .canvas-art { height: 92%; }
  .app-panel { width: 150px; padding: 12px; gap: 9px; }
  .app-toolbar { padding-right: 62px; }
  .sticker-ideas-travel { left: auto; right: -10px; top: -26px; width: 132px; height: 102px; padding: 9px 8px 8px 12px; }
  .sticker-ideas-travel .txt { font-size: 26px; }
  .sticker-ideas-travel .globe { width: 40px; height: 40px; right: 10px; bottom: 8px; }
  .sticker-holo-small { left: -12px; top: auto; bottom: -30px; width: 130px; height: 130px; }
  .sticker-holo-small img { -webkit-mask: radial-gradient(circle at 100% 100%, transparent 0 34px, #000 35px); mask: radial-gradient(circle at 100% 100%, transparent 0 34px, #000 35px); }
  .sticker-holo-small .peel { width: 68px; height: 68px; }
  .sticker-cat { left: auto; right: 8px; top: auto; bottom: 34px; width: 104px; transform: rotate(4deg); }

  /* steps */
  .steps { height: auto; margin-top: -44px; padding: 74px var(--pad) 44px; }
  .steps::before { clip-path: polygon(0 30px, 38% 8px, 54% 44px, 100% 0, 100% 100%, 0 100%); }
  .steps-inner { height: auto; }
  .steps-inner .eyebrow, .steps-inner .h2 { position: static; }
  .steps-inner .h2 { font-size: clamp(30px, 4.6vw, 42px); margin-top: 6px; }
  .note-happiness { display: none; }
  .step-row { position: static; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; transform: none; margin-top: 24px; }
  .step-card, .step-3 { width: auto; height: auto; min-height: 172px; margin: 0; padding: 22px 26px 24px 74px; }
  .step-2, .step-3 { margin-left: -14px; }
  .step-1::before { clip-path: polygon(6% 0, 90% 0, 100% 50%, 90% 100%, 0 100%); }
  .step-2::before { clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 8% 50%); }
  .step-3::before { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 8% 50%); }
  .step-num, .step-2 .step-num, .step-3 .step-num { left: 26px; top: 26px; width: 28px; height: 28px; font-size: 13px; }
  .step-2 .step-num, .step-3 .step-num { left: 40px; }
  .step-2 .step-body, .step-3 .step-body { margin-left: 14px; }
  .step-ic { width: 48px; height: 44px; }
  .step-card h3 { font-size: 15px; }
  .step-card p { font-size: 12px; max-width: none; }

  /* options */
  .options { height: auto; margin-top: -34px; padding: 74px var(--pad) 48px; }
  .options-inner { height: auto; }
  .options-copy { position: static; width: auto; max-width: 520px; }
  .options-copy .h2 { font-size: clamp(26px, 4vw, 32px); }
  .note-vibes, .note-stick-out { display: none; }
  .option-row { position: static; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
  .option-card { width: auto; height: auto; padding: 0 14px 26px 16px; }
  .opt-art { height: 138px; }
  .diecut-logo { width: 150px; }
  .kiss-backing { width: 150px; height: 106px; }
  .kiss-backing img { width: 118px; height: 118px; }
  .holo-alien { height: 124px; }
  .option-card h3 { font-size: 15px; }
  .option-card p { font-size: 12px; }
  .opt-2 h3, .opt-2 p { margin-left: 8px; }
  .badge { left: 50%; translate: -50% 0; bottom: -11px; }

  /* reviews */
  .reviews { height: auto; margin-top: 0; padding: 40px var(--pad) 36px; }
  .reviews::before { clip-path: none; }
  .reviews-inner { height: auto; }
  .note-real { position: static; display: inline-block; margin: 0 0 40px 6px; transform: rotate(-3deg); }
  .review-row { position: static; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .review { width: auto; padding: 0 18px 0 0; gap: 10px; }
  .review + .review { padding-left: 18px; }
  .avatar { width: 58px; height: 58px; }
  .review-body p { font-size: 12px; min-height: 0; }

  /* cta */
  .cta { height: auto; margin-top: 0; padding: 56px var(--pad) 74px; }
  .cta::before { clip-path: polygon(0 10px, 100% 0, 100% calc(100% - 18px), 62% 100%, 30% 100%, 0 calc(100% - 24px)); }
  .cta::after { width: 260px; height: 18px; }
  .cta-inner { height: auto; }
  .cta-copy { position: static; }
  .cta-copy .h2 { font-size: clamp(28px, 4.2vw, 34px); }
  .cta-copy .lead { font-size: 15px; }
  .sticker-good-people, .sticker-holo-globe, .sticker-around { display: none; }
  .sticker-canada { left: auto; right: 24px; top: auto; bottom: -40px; width: 78px; height: 78px; }
  .sticker-canada .leaf { width: 24px; height: 24px; }
  .sticker-canada .txt { font-size: 13px; }
  .sticker-dog { left: 8px; top: auto; bottom: -8px; width: 128px; height: 176px; }
  .sticker-create { left: auto; right: 10px; top: 14px; width: 128px; height: 98px; padding: 8px 8px 6px 12px; }
  .sticker-create .txt { font-size: 20px; }
  .sticker-create .crown { width: 34px; height: 30px; right: -6px; top: -16px; }
  .footer { margin-top: -22px; padding-top: 40px; }

  /* footer */
  .footer-inner { flex-wrap: wrap; gap: 18px 28px; padding: 0 var(--pad); }
  .footer-links { margin-left: 0; gap: 20px; flex-wrap: wrap; }
  .footer-right { margin-left: 0; width: 100%; gap: 18px; }
  .footer-divider { display: none; }
  .copyright { font-size: 11px; text-align: left; }
  .made-in { justify-content: flex-start; }
}

/* ---------- Narrow tablet: give the centred CTA copy room between the stickers ---------- */
@media (max-width: 760px) and (min-width: 641px) {
  .sticker-dog { width: 100px; height: 138px; }
  .sticker-create { width: 108px; height: 84px; right: 0; top: 14px; padding: 7px 6px 5px 10px; }
  .sticker-create .txt { font-size: 17px; }
  .sticker-create .crown { width: 28px; height: 24px; right: -5px; top: -14px; }
  .cta-copy .lead { font-size: 14px; }
}

/* ---------- Phone ---------- */
@media (max-width: 640px) {
  :root { --pad: 20px; }
  .brand-mark { width: 40px; height: 28px; }
  .brand-name { font-size: 17px; }
  .btn-sm { height: 36px; padding: 0 12px; font-size: 13px; }
  .btn-sm .ic-arrow { display: none; }
  .nav-actions { gap: 10px; padding-left: 0; }
  .nav-actions .icon-btn { display: none; }
  .burger { margin-left: 4px; padding: 6px; }

  .hero { padding-bottom: 64px; }
  .hero-copy { padding-top: 30px; }
  .hero-title { font-size: clamp(54px, 17vw, 72px); }
  .hero-text { font-size: 15px; }
  .hero-copy .btn-lg { width: 100%; max-width: 320px; }
  .hero-visual { margin-top: 32px; }
  .laptop-base { margin: 0 -12px; }
  .app-panel, .app-tools { display: none; }
  .app-main { padding: 0 12px 12px; }
  .app-toolbar { padding-right: 0; }
  .canvas-art { height: 96%; }
  .sticker-ideas-travel { width: 112px; height: 86px; top: -22px; right: -6px; }
  .sticker-ideas-travel .txt { font-size: 22px; }
  .sticker-ideas-travel .globe { width: 34px; height: 34px; }
  .sticker-holo-small { width: 104px; height: 104px; bottom: -24px; left: -8px; }
  .sticker-holo-small img { -webkit-mask: radial-gradient(circle at 100% 100%, transparent 0 28px, #000 29px); mask: radial-gradient(circle at 100% 100%, transparent 0 28px, #000 29px); }
  .sticker-holo-small .peel { width: 56px; height: 56px; }
  .sticker-cat { width: 88px; bottom: 26px; right: 4px; }

  .steps { padding-top: 64px; margin-top: -36px; }
  .step-row { grid-template-columns: 1fr; gap: 14px; }
  .step-card, .step-2, .step-3 { margin-left: 0; padding: 22px 28px 24px 92px; min-height: 0; }
  .step-1::before, .step-2::before, .step-3::before { clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%); }
  .step-num, .step-2 .step-num, .step-3 .step-num { left: 28px; top: 28px; width: 30px; height: 30px; font-size: 14px; }
  .step-2 .step-body, .step-3 .step-body { margin-left: 0; }
  .step-ic { width: 52px; height: 48px; }
  .step-card h3 { font-size: 16px; }
  .step-card p { font-size: 13px; }

  .options { padding-top: 64px; }
  .option-row { grid-template-columns: 1fr; gap: 24px; justify-items: center; }
  .option-card { width: 100%; max-width: 340px; padding: 0 18px 26px 21px; }
  .opt-art { height: 160px; }
  .diecut-logo { width: 186px; }
  .kiss-backing { width: 178px; height: 126px; }
  .kiss-backing img { width: 140px; height: 140px; }
  .holo-alien { height: 150px; }
  .option-card h3 { font-size: 16.5px; }
  .option-card p { font-size: 12.5px; }
  .opt-2 h3, .opt-2 p { margin-left: 18px; }

  .reviews { padding-top: 36px; }
  .review-row { grid-template-columns: 1fr; gap: 22px; }
  .review { padding: 0; gap: 12px; }
  .review + .review { padding-left: 0; padding-top: 22px; }
  .review + .review::before { left: 0; right: 0; top: 0; bottom: auto; width: auto; height: 1px; }
  .avatar { width: 64px; height: 64px; }
  .review-body p { font-size: 13px; }

  .cta { padding: 52px var(--pad) 40px; }
  .cta-inner { padding-bottom: 170px; }
  .cta-copy .btn-lg { width: 100%; max-width: 320px; }
  .sticker-create { display: none; }
  .sticker-canada { left: calc(50% - 32px); right: auto; top: auto; bottom: 36px; width: 70px; height: 70px; z-index: 4; }
  .sticker-canada .leaf { width: 22px; height: 22px; }
  .sticker-canada .txt { font-size: 12px; }
  .sticker-dog { left: auto; right: 4px; bottom: -14px; width: 122px; height: 168px; transform: rotate(4deg); }
  .sticker-good-people { display: block; left: 4px; top: auto; bottom: 14px; width: 138px; height: 106px; padding: 8px 8px 6px 12px; transform: rotate(-6deg); }
  .sticker-good-people .txt { font-size: 24px; }
  .sticker-good-people .heart { width: 26px; height: 26px; right: 8px; top: 40px; }
  .footer-inner { gap: 16px; }
}
