/* ReviewBom · Ada — shared tokens for every page. The classes are the design
   boards' own (.eb, .card, .btn …), so a board and its page read the same. */
:root { --ink: #1b1917; --paper: #fbfaf6; --yel: #F5D547; --grn: #7BD389; --red: #F5325B;
        --mute: #4a463e; --soft: #6b665d; --line: #e4e0d6; }
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink);
       font-family: 'Hanken Grotesk', 'Noto Sans KR', system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: var(--ink); text-decoration: none; } a:hover { color: var(--red); }
button { font-family: inherit; }
canvas { image-rendering: pixelated; display: block; }
.eb { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.mono { font-family: 'IBM Plex Mono', monospace; font-size: 12px; }
.card { background: #fff; border: 2px solid var(--ink); border-radius: 14px; box-shadow: 5px 5px 0 var(--ink); }
.h2 { margin: 0; font-weight: 900; font-size: 30px; line-height: 1.2; letter-spacing: -0.02em; }
.p { margin: 0; font-size: 14.5px; line-height: 1.75; color: var(--mute); }
.btn { background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 10px; font-size: 14.5px; font-weight: 800;
       border: 2px solid var(--ink); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.btn:hover { color: #fff; box-shadow: 3px 3px 0 var(--red); }
.btn:disabled { opacity: 0.45; cursor: default; box-shadow: none; }
.ghost { background: #fff; color: var(--ink); padding: 9px 14px; border-radius: 9px; font-size: 13.5px; font-weight: 800;
         border: 2px solid var(--ink); cursor: pointer; }
.ghost:disabled { opacity: 0.5; cursor: default; }
.ko { font-family: 'Noto Sans KR', sans-serif; }
.tag { padding: 3px 9px; border-radius: 6px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.praise { background: #eef6e8; color: #27500a; }
.needs { background: #fbeeee; color: #8a2020; }
.neutral { background: #f1efe8; color: var(--mute); }
.wait { background: #fff4d6; color: #7a5a00; border: 1.5px solid #7a5a00; }
.mark { background-image: linear-gradient(transparent 62%, var(--yel) 62%); }
.in { border: 2px solid var(--ink); border-radius: 10px; padding: 11px 13px; font-family: inherit; font-size: 15px;
      background: #fff; color: var(--ink); width: 100%; }
.in:focus, textarea:focus, .ghost:focus-visible, .btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid var(--red); outline-offset: 2px; }
.fld { display: flex; flex-direction: column; gap: 7px; }
.fld label { font-size: 13px; font-weight: 800; }
.err { color: #8a2020; font-size: 13px; font-weight: 700; }
.row { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 13.5px; font-weight: 700; }
[hidden] { display: none !important; }

/* the app shell: top bar + content, one column under 900px */
.bar { height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 40px;
       border-bottom: 2px solid var(--ink); background: var(--paper); gap: 20px; }
.logo { display: flex; align-items: center; gap: 9px; font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.wrap { max-width: 1360px; margin: 0 auto; padding: 36px 40px 64px; }
.cols { display: grid; grid-template-columns: minmax(0, 1fr) 440px; gap: 32px; align-items: start; }
.three { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); background: var(--ink); color: #fff;
         padding: 12px 18px; border-radius: 10px; font-size: 14px; font-weight: 700; z-index: 50; box-shadow: 4px 4px 0 var(--red); }
@media (max-width: 900px) {
  .bar { padding: 0 16px; height: auto; min-height: 64px; flex-wrap: wrap; padding-block: 10px; }
  .wrap { padding: 24px 16px 48px; }
  .cols, .three { grid-template-columns: 1fr; }
}

/* The landing was drawn on a 1440 board; at 1000px and under, landing.html
   shows its own mobile layout (.mpage) instead. */
/* Full-bleed: bands, seams and dither run edge to edge; --gut keeps the
   content in a 1312px column (64px gutters at the 1440 board size). */
.page { display: flex; flex-direction: column; background: var(--paper);
        --gut: max(64px, calc((100% - 1312px) / 2)); }

/* the language switch, on every page that has one */
.langs { display: inline-flex; gap: 2px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 500; }
.langs a { padding: 6px 7px; border-radius: 6px; color: #6b665d; }
.langs a[aria-current] { color: #1b1917; background: rgba(27,25,23,.08); font-weight: 700; }
html[lang="zh-Hans"] body { font-family: 'Hanken Grotesk', 'Noto Sans SC', 'Noto Sans KR', system-ui, sans-serif; }

/* the road address: typed, or picked from the Kakao search embedded below it */
.addr { display: flex; flex-direction: column; gap: 8px; }
.addr .find { display: flex; gap: 8px; }
.addr .find .in { flex: 1; min-width: 0; }
.addr .find .ghost { flex: none; }
.addr .pc { height: 440px; border: 2px solid var(--ink); border-radius: 10px; overflow: hidden; }
