/* 67: Say Less — Street Paste-Up web tokens */
:root {
  --paper: #F5F1E6;
  --surface: #FFFFFF;
  --ink: #141210;
  --sub: #7A7367;
  --soft: #E4DECF;
  --chip: #F0EADB;
  --pink: #FF2E7E;
  --cyan: #00B4D8;
  --cadmium: #FFD400;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0E0D0C;
    --surface: #1A1815;
    --ink: #F5F1E6;
    --sub: #9C948A;
    --soft: #33302B;
    --chip: #241F1A;
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; position: relative; }
h1, h2, h3, .anton {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.5px;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(60px);
  opacity: 0.3; pointer-events: none; z-index: 0;
}
.blob.pink { width: 340px; height: 340px; background: var(--pink); top: -80px; left: -120px; }
.blob.cyan { width: 300px; height: 300px; background: var(--cyan); top: 380px; right: -110px; }
.blob.yellow { width: 240px; height: 240px; background: var(--cadmium); top: 160px; right: 60px; opacity: 0.35; }

header.hero { position: relative; padding: 72px 0 48px; overflow: hidden; }
.hero .wrap { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; position: relative; z-index: 1; }
.poster {
  background: #FFFFFF; border: 2px solid #141210; border-radius: 8px;
  padding: 34px 40px; transform: rotate(-1.6deg); position: relative;
  box-shadow: 10px 10px 0 var(--cyan); width: 240px; text-align: center;
}
.poster .num { font-family: 'Anton', sans-serif; font-size: 110px; color: #141210; line-height: 1; }
.poster .stamp {
  display: inline-block; background: var(--pink); color: #fff;
  font-family: 'Anton', sans-serif; letter-spacing: 0.14em; font-size: 22px;
  padding: 6px 14px; transform: rotate(-2deg); margin-top: 8px;
}
.tape {
  position: absolute; width: 120px; height: 34px; background: rgba(210,205,190,0.85);
  border-left: 2px dashed rgba(140,135,120,0.5); border-right: 2px dashed rgba(140,135,120,0.5);
}
.tape.tl { top: -16px; left: 22px; transform: rotate(-7deg); }
.tape.tr { top: -14px; right: 18px; transform: rotate(6deg); }
.hero-copy { flex: 1; min-width: 280px; }
.hero-copy h1 { font-size: clamp(38px, 6vw, 64px); }
.hero-copy .tagline { color: var(--sub); font-size: 18px; margin-top: 14px; max-width: 34ch; }
.cta {
  display: inline-block; margin-top: 24px; background: var(--pink); color: #fff;
  font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: 1px;
  font-size: 18px; padding: 14px 26px; border: 2px solid #141210; border-radius: 6px;
  box-shadow: 5px 5px 0 var(--cyan); text-decoration: none;
}
.cta.secondary { background: var(--surface); color: var(--ink); box-shadow: 5px 5px 0 var(--cadmium); }
.cta:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--cyan); }
.note { color: var(--sub); font-size: 13px; margin-top: 10px; }

section { position: relative; padding: 56px 0; }
section h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 24px; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.card {
  background: var(--surface); border: 2px solid var(--ink); border-radius: 8px;
  padding: 20px; position: relative;
}
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--sub); font-size: 14.5px; }
.card .pill {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.6px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 999px;
  border: 1.5px solid var(--ink); margin-bottom: 10px;
}
.pill.pink { background: var(--pink); color: #fff; border-color: var(--ink); }
.pill.cyan { background: var(--cyan); color: #fff; }
.pill.cad { background: var(--cadmium); color: #141210; }

.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.shots img {
  width: 100%; height: auto; border: 2px solid var(--ink); border-radius: 14px;
  box-shadow: 8px 8px 0 var(--cyan); background: var(--surface);
}
.shots figure:nth-child(2) img { box-shadow: 8px 8px 0 var(--pink); transform: rotate(0.8deg); }
.shots figure:nth-child(1) img { transform: rotate(-0.8deg); }
.shots figcaption { color: var(--sub); font-size: 13px; text-align: center; margin-top: 10px; }

.promise {
  background: var(--surface); border: 2px solid var(--ink); border-radius: 8px;
  padding: 28px; transform: rotate(-0.5deg); position: relative; max-width: 640px;
}
.promise h3 { font-size: 24px; }
.promise p { margin-top: 10px; color: var(--sub); }

footer { border-top: 2px dashed var(--soft); margin-top: 40px; padding: 34px 0 46px; }
footer .links { display: flex; flex-wrap: wrap; gap: 18px; font-size: 14px; }
footer a { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--pink); }
footer .brand { margin-top: 18px; color: var(--sub); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; position: relative; z-index: 1; }
.legal h1 { font-size: clamp(30px, 5vw, 44px); margin-bottom: 6px; }
.legal .updated { color: var(--sub); font-size: 13px; margin-bottom: 30px; }
.legal h2 { font-size: 21px; margin: 30px 0 10px; }
.legal p, .legal li { font-size: 15px; color: var(--ink); }
.legal ul { padding-left: 22px; margin: 8px 0; }
.legal .backlink { display: inline-block; margin-bottom: 26px; color: var(--ink); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--pink); }
.legal a { color: var(--ink); }
