/* ===========================================================================
   jkl — "Clay Pop v2"
   배경: 라일락 틴트 + 옅은 포도 사선 · 3색(강조 코랄 / 정보 포도 / 기본 잉크·화이트)
   형태: 우상단 단일 라운드 · 깊이: 면=플랫 / 오브젝트=2px 캔디
   타이포: Jua=제목 한정 · 본문 Gothic A1 · 버튼 시스템 고딕 · 숫자/로고 Fredoka
   =========================================================================== */

:root {
  --bg:        #FCFBFF;
  --surface:   #FFFFFF;
  --ink:       #221C3A;
  --ink-soft:  #6E6588;

  /* 강조 (코랄) */
  --acc:       #FF5A4D;
  --acc-lo:    #FF6A5C;
  --acc-base:  #D8301F;
  /* 정보 (포도) */
  --info:      #5B3DF5;
  --info-lo:   #7C63FF;
  --info-base: #3A1FD6;

  --line:      rgba(34,28,58,.09);
  --field-bd:  #E6DECF;
  --note:      #FBF4E1;
  --note-bd:   #EFE3C2;
  --chip:      #F2EBDE;
  --chip-base: #E4DAC9;

  --r:    0 12px 0 0;   /* 면: 우상단만 */
  --r-sm: 0 9px 0 0;
  --r-xs: 0 8px 0 0;

  --display: "Jua", "Fredoka", system-ui, sans-serif;
  --body:    "Gothic A1", system-ui, -apple-system, sans-serif;
  --latin:   "Fredoka", "Jua", sans-serif;
  --ui:      -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "Gothic A1", system-ui, sans-serif;

  --spring:  cubic-bezier(.34, 1.6, .5, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  font-weight: 500;
  color: var(--ink);
  background-color: var(--bg);
  background-image: repeating-linear-gradient(45deg, rgba(91,61,245,.025) 0 1px, transparent 1px 18px);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: 100%; max-width: 760px; margin: 0 auto; padding: 0 20px; }

a { color: var(--info-base); text-decoration: none; font-weight: 700; }
a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.14; letter-spacing: -0.01em; }

/* ---- Header ---- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(252,251,255,.86); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 14px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 34px; height: 34px; border-radius: var(--r-sm); flex: 0 0 auto;
  background-color: var(--info);
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.55) 0 1.5px, transparent 1.5px 7px),
    linear-gradient(180deg, var(--info-lo), var(--info) 100%);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,.4), 0 2px 0 var(--info-base), 0 4px 7px -5px rgba(40,20,80,.24);
  transform: rotate(-4deg);
}
.brand-name { font-family: var(--latin); font-weight: 700; font-size: 23px; letter-spacing: -.03em; color: var(--ink); }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-link { color: var(--ink); font-size: 15px; font-weight: 700; }
.nav-link.strong {
  font-family: var(--ui); font-weight: 800; font-size: 14.5px; color: #fff;
  background: linear-gradient(180deg, var(--info-lo) 0%, var(--info) 8%, var(--info) 100%);
  border: 0; border-radius: var(--r-sm); padding: 8px 15px;
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,.4), 0 2px 0 var(--info-base), 0 4px 8px -5px rgba(40,20,80,.24);
}
.nav-link.strong:hover { text-decoration: none; filter: brightness(1.03); }
.nav-link.strong:active { transform: translateY(2px); box-shadow: inset 0 1.5px 0 rgba(255,255,255,.4), 0 1px 0 var(--info-base), 0 2px 4px -4px rgba(40,20,80,.24); }
.nav-link.as-link { background: none; border: 0; padding: 0; font: inherit; font-weight: 700; cursor: pointer; color: var(--ink-soft); }
.nav-link.as-link:hover { color: var(--ink); }

/* locale dropdown — trigger shows current code only; click reveals the rest */
.locale-menu { position: relative; }
.locale-menu > summary {
  list-style: none; cursor: pointer; user-select: none;
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--latin); font-weight: 700; font-size: 13px; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 5px 11px;
}
.locale-menu > summary::-webkit-details-marker { display: none; }
.locale-menu > summary::marker { content: ""; }
.locale-menu .loc-caret { font-size: 9px; color: var(--ink-soft); transition: transform .15s ease; }
.locale-menu[open] .loc-caret { transform: rotate(180deg); }
.loc-list {
  position: absolute; top: calc(100% + 6px); right: 0; z-index: 60; min-width: 100%;
  display: flex; flex-direction: column; gap: 2px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 4px;
  box-shadow: 0 14px 30px -16px rgba(40,25,80,.4);
}
.loc-item {
  font-family: var(--latin); font-weight: 700; font-size: 13px; color: var(--ink-soft);
  padding: 5px 14px; border-radius: var(--r-xs); text-align: center;
}
.loc-item:hover { text-decoration: none; color: var(--ink); background: var(--bg); }

.site-main { flex: 1 0 auto; padding: 34px 0 80px; }
.site-footer { border-top: 1px solid var(--line); padding: 20px 0; color: var(--ink-soft); font-size: 13px; font-weight: 600; }
.site-footer .dot { margin: 0 8px; color: var(--acc); }

/* ---- Flash ---- */
.flash { padding: 12px 16px; border: 0; border-radius: var(--r-sm); margin: 0 0 16px; font-size: 14px; font-weight: 700; color: #fff; }
.flash-notice { background: linear-gradient(180deg, var(--info-lo) 0%, var(--info) 8%, var(--info) 100%); box-shadow: 0 2px 0 var(--info-base), 0 5px 9px -6px rgba(40,20,80,.3); }
.flash-alert  { background: linear-gradient(180deg, var(--acc-lo) 0%, var(--acc) 6%, var(--acc) 100%); box-shadow: 0 2px 0 var(--acc-base), 0 5px 9px -6px rgba(40,20,55,.3); }

/* ===========================================================================
   Buttons — OBJECTS (3D candy, grounded by 2px same-hue base lip)
   =========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ui); font-weight: 800; font-size: 15px;
  padding: 12px 20px; border: 0; border-radius: var(--r-sm); cursor: pointer;
  color: var(--ink); background: linear-gradient(180deg, #fff, #F2EBDE);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,.9), 0 2px 0 var(--chip-base), 0 4px 7px -5px rgba(60,40,110,.18);
  transition: transform .12s var(--spring), box-shadow .12s ease, filter .12s ease;
}
.btn:hover { text-decoration: none; filter: brightness(1.02); }
.btn:active { transform: translateY(2px); box-shadow: inset 0 1.5px 0 rgba(255,255,255,.7), 0 1px 0 var(--chip-base), 0 2px 4px -3px rgba(60,40,110,.18); }
.btn-accent {
  color: #fff; text-shadow: 0 1px 0 rgba(150,25,15,.35);
  background: linear-gradient(180deg, var(--acc-lo) 0%, var(--acc) 6%, var(--acc) 100%);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,.5), inset 0 -1px 2px rgba(150,25,15,.14), 0 2px 0 var(--acc-base), 0 4px 8px -6px rgba(40,20,55,.22);
}
.btn-accent:active { box-shadow: inset 0 1.5px 0 rgba(255,255,255,.4), 0 1px 0 var(--acc-base), 0 2px 4px -3px rgba(40,20,55,.24); }
.btn-grape {
  color: #fff;
  background: linear-gradient(180deg, var(--info-lo) 0%, var(--info) 8%, var(--info) 100%);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,.4), inset 0 -1px 2px rgba(30,10,90,.2), 0 2px 0 var(--info-base), 0 4px 8px -5px rgba(40,20,80,.24);
}
.btn-grape:active { box-shadow: inset 0 1.5px 0 rgba(255,255,255,.4), 0 1px 0 var(--info-base), 0 2px 4px -3px rgba(40,20,80,.24); }
.btn-ghost { background: #fff; box-shadow: inset 0 1.5px 0 rgba(255,255,255,.9), 0 2px 0 var(--chip-base), 0 4px 7px -5px rgba(60,40,110,.14); }
.btn-block { width: 100%; }
.btn-lg    { font-size: 17px; padding: 16px 24px; }
.btn-sm    { font-size: 13px; padding: 8px 13px; }

/* ===========================================================================
   Forms — FLAT
   =========================================================================== */
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--body); font-weight: 800; font-size: 14.5px; color: var(--ink); margin-bottom: 7px; }
.field .hint { font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; font-weight: 700; }
.input, .textarea, select {
  width: 100%; font-family: var(--body); font-weight: 700; font-size: 16px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--field-bd); border-radius: var(--r-sm); padding: 12px 14px;
  box-shadow: none; outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
.input::placeholder, .textarea::placeholder { color: #B7AB95; font-weight: 700; }
.input:focus, .textarea:focus, select:focus { border-color: var(--info); box-shadow: 0 0 0 3px rgba(91,61,245,.14); }
.textarea { resize: vertical; min-height: 60px; line-height: 1.5; }
.input-handle { position: relative; }
.input-handle::before { content: "@"; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--info); font-family: var(--latin); font-weight: 700; z-index: 1; }
.input-handle .input { padding-left: 30px; }

/* ===========================================================================
   Cards / layout — SURFACES (flat)
   =========================================================================== */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: 0 16px 36px -24px rgba(60,40,110,.22); padding: 24px; }
.stack > * + * { margin-top: 14px; }
.page-head { margin-bottom: 24px; }
.page-head h1 { font-size: 34px; margin: 0 0 4px; }
.page-head .sub { color: var(--ink-soft); margin: 0; font-weight: 700; }
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.narrow { max-width: 460px; }

/* ---- Home grid ---- */
.mix-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.mix-tile {
  display: block; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--surface);
  box-shadow: 0 14px 30px -22px rgba(60,40,110,.22); color: var(--ink); transition: transform .14s var(--spring), box-shadow .14s;
}
.mix-tile:hover { text-decoration: none; transform: translateY(-3px); box-shadow: 0 22px 36px -22px rgba(60,40,110,.3); }
.mix-tile .cap { height: 104px; display: flex; align-items: center; justify-content: center; font-size: 46px; border-bottom: 1px solid var(--line); }
.mix-tile .meta { padding: 14px 16px 16px; }
.mix-tile .t { font-family: var(--body); font-weight: 800; font-size: 17px; line-height: 1.25; letter-spacing: -.01em; }
.mix-tile .v { color: var(--ink-soft); font-size: 13px; margin-top: 4px; font-weight: 600; }
.mix-tile .n { display: inline-block; margin-top: 10px; font-family: var(--body); font-weight: 800; font-size: 11px; color: var(--ink-soft); background: var(--chip); border-radius: var(--r-xs); padding: 2px 9px; }

.empty { text-align: center; padding: 50px 20px; }
.empty .big { font-size: 56px; display: inline-block; }
.empty p { color: var(--ink-soft); font-weight: 600; }

/* ===========================================================================
   Public mixtape page — the face.
   =========================================================================== */
.mix-cover {
  position: relative; border: 1px solid var(--line); border-radius: var(--r); padding: 38px 26px 28px;
  text-align: center; background: var(--cover, var(--info)); box-shadow: 0 22px 44px -26px rgba(40,25,80,.4); overflow: hidden;
}
.mix-cover .emoji {
  font-size: 52px; line-height: 1; display: inline-grid; place-items: center;
  width: 92px; height: 92px; background: #fff; border-radius: var(--r); margin-bottom: 8px;
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,.9), 0 2px 0 var(--chip-base), 0 6px 12px -6px rgba(40,25,80,.3);
}
.mix-cover h1 { font-size: 33px; margin: 12px 0 6px; color: var(--ink); }
.mix-cover .vibe { font-size: 16px; color: var(--ink); font-weight: 700; margin: 0; opacity: .85; }
.mix-cover .by { margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--ink); opacity: .9; }
.mix-cover .count {
  display: inline-block; margin-top: 8px; font-family: var(--latin); font-weight: 700; font-size: 12px;
  background: var(--ink); color: #fff; border-radius: var(--r-xs); padding: 3px 12px;
}
.mix-desc { text-align: center; color: var(--ink-soft); font-weight: 600; margin: 18px auto 4px; max-width: 540px; }

/* app cards — SURFACE flat; icon & badges are OBJECTS */
.apps { margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.app-card {
  display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 16px; box-shadow: 0 14px 30px -24px rgba(60,40,110,.2);
  opacity: 0; transform: translateY(10px); animation: pop .45s var(--spring) forwards;
}
@keyframes pop { to { opacity: 1; transform: none; } }
.app-icon { width: 58px; height: 58px; border-radius: var(--r-sm); flex: 0 0 auto; object-fit: cover; border: 1px solid var(--line); background: var(--bg); }
.app-icon.placeholder {
  display: grid; place-items: center; font-size: 26px; border: 0;
  background: linear-gradient(180deg, #fff 0%, #FBF6EE 12%, #FBF6EE 100%);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,.9), 0 2px 0 var(--chip-base), 0 4px 7px -5px rgba(60,40,110,.18);
}
.app-main { flex: 1 1 auto; min-width: 0; }
.app-name { font-family: var(--body); font-weight: 800; font-size: 17.5px; letter-spacing: -.01em; }
.app-dev { font-size: 12px; color: var(--ink-soft); font-weight: 700; }
.app-note {
  margin: 10px 0 0; color: var(--ink); font-size: 15px; font-weight: 700; line-height: 1.5;
  background: var(--note); border: 1px solid var(--note-bd); border-radius: var(--r-xs); padding: 10px 13px;
}
.app-store-link { font-size: 12px; margin-top: 9px; display: inline-block; color: var(--info-base); }
.badge { display: inline-block; font-family: var(--body); font-size: 10.5px; font-weight: 800; color: var(--ink-soft); background: var(--chip); border-radius: var(--r-xs); padding: 1px 8px; vertical-align: middle; }

/* sticky give CTA */
.give-bar { position: sticky; bottom: 16px; margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.give-bar .btn-accent { animation: wob 3.4s ease-in-out infinite; }
@keyframes wob { 0%,88%,100% { transform: none; } 92% { transform: translateY(-2px) scale(1.02); } 96% { transform: translateY(-1px); } }

/* ===========================================================================
   Gift received page.
   =========================================================================== */
.gift-tag {
  position: relative; border-radius: var(--r); padding: 32px 26px 28px; text-align: center; color: #fff; overflow: hidden;
  background: linear-gradient(180deg, var(--acc-lo) 0%, var(--acc) 6%, var(--acc) 100%);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,.4), 0 2px 0 var(--acc-base), 0 22px 44px -24px rgba(216,48,31,.6);
}
.gift-tag .punch { width: 16px; height: 16px; border-radius: 50%; background: var(--bg); position: absolute; top: 14px; left: 50%; transform: translateX(-50%); }
.gift-tag > div:first-of-type, .gift-emoji { font-size: 44px; }
.gift-to { font-family: var(--ui); font-weight: 800; font-size: 15px; margin: 10px 0 0; color: #fff; opacity: .92; }
.gift-from { font-family: var(--display); font-size: 25px; margin: 2px 0 0; color: #fff; }
.gift-from .who { background: #fff; color: var(--acc); border-radius: var(--r-xs); padding: 0 10px; display: inline-block; box-shadow: 0 2px 0 rgba(150,25,15,.25); }
.gift-note { margin: 16px auto 4px; max-width: 460px; font-size: 17px; font-weight: 700; line-height: 1.55; color: var(--ink); background: #fff; border-radius: var(--r); padding: 14px 18px; box-shadow: 0 10px 20px -12px rgba(40,25,80,.4); }
.gift-note .q { color: var(--acc); font-family: var(--display); }
.gift-meta { font-size: 12px; color: #fff; font-weight: 700; margin-top: 14px; opacity: .85; }

.section-rule { display: flex; align-items: center; gap: 12px; color: var(--ink); font-family: var(--body); font-weight: 800; font-size: 14px; margin: 30px 0 16px; }
.section-rule::before, .section-rule::after { content: ""; height: 2px; background: var(--line); flex: 1; border-radius: 2px; }

/* confetti on gift open */
.confetti { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 5; }
.confetti i { position: absolute; top: -12px; width: 9px; height: 13px; opacity: .9; animation: fall linear forwards; }
@keyframes fall { to { transform: translateY(104vh) rotate(540deg); opacity: 1; } }

/* ===========================================================================
   Editor
   =========================================================================== */
.editor-grid { display: grid; gap: 24px; }
.item-row { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); box-shadow: 0 10px 22px -18px rgba(60,40,110,.18); }
.item-row .app-icon { width: 46px; height: 46px; }
.item-note-form { margin-top: 8px; }
.item-note-form .textarea { min-height: 42px; font-size: 14px; width: 100%; }
.note-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 7px; align-items: center; }
.chip { font-family: var(--body); font-weight: 800; font-size: 12px; color: var(--ink); background: linear-gradient(180deg,#fff,#F2EBDE); border: 0; border-radius: var(--r-xs); padding: 4px 11px; cursor: pointer; box-shadow: inset 0 1.5px 0 rgba(255,255,255,.9), 0 2px 0 var(--chip-base), 0 4px 6px -4px rgba(60,40,110,.18); }
.chip:active { transform: translateY(2px); box-shadow: inset 0 1.5px 0 rgba(255,255,255,.7), 0 1px 0 var(--chip-base); }
.save-tick { font-family: var(--latin); font-weight: 700; font-size: 12px; color: var(--info); margin-left: auto; min-height: 1em; }

.search-box { position: relative; }
.results { margin-top: 12px; display: flex; flex-direction: column; gap: 9px; }
.result { display: flex; gap: 12px; align-items: center; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); box-shadow: 0 8px 18px -16px rgba(60,40,110,.18); }
.result .app-icon { width: 42px; height: 42px; }
.result .r-main { flex: 1 1 auto; min-width: 0; }
.result .r-name { font-family: var(--body); font-weight: 800; font-size: 15px; }
.result .r-dev { font-size: 11px; color: var(--ink-soft); font-weight: 600; }
.result form { margin: 0; }
.in-mixtape { color: var(--info); font-family: var(--body); font-weight: 800; font-size: 14px; }
.row-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.del-btn { background: linear-gradient(180deg,#fff,#F2EBDE); border: 0; border-radius: var(--r-xs); color: var(--ink); cursor: pointer; font-size: 13px; font-weight: 800; padding: 5px 10px; box-shadow: inset 0 1.5px 0 rgba(255,255,255,.9), 0 2px 0 var(--chip-base), 0 4px 6px -4px rgba(60,40,110,.18); }
.del-btn:hover { color: #fff; background: linear-gradient(180deg, var(--acc-lo) 0%, var(--acc) 6%, var(--acc) 100%); box-shadow: inset 0 1.5px 0 rgba(255,255,255,.5), 0 2px 0 var(--acc-base), 0 4px 7px -5px rgba(40,20,55,.22); }

.toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 8px; }
.cover-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.cover-row .emoji-prev { width: 56px; height: 56px; border-radius: var(--r-sm); display: grid; place-items: center; font-size: 28px; background: #fff; box-shadow: inset 0 1.5px 0 rgba(255,255,255,.9), 0 2px 0 var(--chip-base), 0 4px 7px -5px rgba(60,40,110,.18); }
.swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.swatch { position: relative; width: 32px; height: 32px; border-radius: var(--r-xs); border: 1px solid var(--line); cursor: pointer; display: inline-block; box-shadow: 0 2px 5px -3px rgba(60,40,110,.3); }
.swatch input { position: absolute; opacity: 0; width: 0; height: 0; }
.swatch:has(input:checked) { outline: 3px solid var(--info); outline-offset: 2px; }

/* sent / received gift rows (home) */
.sent-list { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.sent-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); box-shadow: 0 10px 22px -18px rgba(60,40,110,.18); transition: transform .12s var(--spring), box-shadow .12s; }
.sent-row:hover { transform: translateY(-2px); box-shadow: 0 16px 28px -18px rgba(60,40,110,.26); text-decoration: none; }
.sent-row .s-emoji { width: 42px; height: 42px; border-radius: var(--r-xs); display: grid; place-items: center; font-size: 20px; flex: 0 0 auto; }
.sent-row .s-main { flex: 1 1 auto; min-width: 0; }
.sent-row .s-title { font-family: var(--body); font-weight: 800; font-size: 15px; }
.sent-row .s-status { font-size: 12px; font-weight: 700; margin-top: 2px; }
.sent-row .s-status.opened { color: var(--info); }
.sent-row .s-status.waiting { color: var(--ink-soft); }
.s-reacts { font-size: 17px; flex: 0 0 auto; }

/* thank-you stamps — OBJECTS */
.thanks { margin-top: 26px; }
.stamps { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
.stamps form { margin: 0; }
.stamp { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; background: linear-gradient(180deg,#fff,#F2EBDE); border: 0; border-radius: var(--r-sm); padding: 10px 16px; cursor: pointer; font: inherit; box-shadow: inset 0 1.5px 0 rgba(255,255,255,.9), 0 2px 0 var(--chip-base), 0 5px 9px -6px rgba(60,40,110,.2); transition: transform .12s var(--spring), box-shadow .12s; }
.stamp:hover { transform: translateY(-2px); }
.stamp:active { transform: translateY(2px); box-shadow: inset 0 1.5px 0 rgba(255,255,255,.7), 0 1px 0 var(--chip-base); }
.stamp .s-emo { font-size: 24px; line-height: 1; }
.stamp .s-lab { font-family: var(--body); font-weight: 800; font-size: 12px; color: var(--ink); }

@media (max-width: 540px) {
  .page-head h1 { font-size: 28px; }
  .mix-cover h1 { font-size: 27px; }
  .brand-name { font-size: 20px; }
}
