:root {
  /* color */
  --ink: #12181c;
  --ink-soft: #1a2126;
  --ink-line: #2a343a;
  --paper: #f1ead9;
  --paper-dim: #e4dcc6;
  --brass: #c9a227;
  --brass-hi: #e0bc4a;
  --stamp-red: #b0463a;
  --text-hi: #f3efe2;
  --text-mid: #b7c0c2;

  /* type */
  --font-display: Rockwell, "Roboto Slab", "Bitter", Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;

  --radius: 10px;
}

* { box-sizing: border-box; }

/* the HTML hidden attribute must always win, even over display:flex rules */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text-hi);
  font-family: var(--font-body);
  line-height: 1.5;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

/* long unbroken words (URLs, "soooo…") must never push the page sideways */
h1, h2, p, .ticket-question, .say, .answer-text, .history-q { overflow-wrap: anywhere; }

button, a, input, textarea { -webkit-tap-highlight-color: transparent; }
body.modal-open { overflow: hidden; }

::selection { background: var(--brass); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- header / footer ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  padding-top: max(1.4rem, env(safe-area-inset-top));
  max-width: 880px;
  margin: 0 auto;
}
.site-nav { display: flex; align-items: center; gap: 1.1rem; }
.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.5rem 0.25rem;
}
.nav-link:hover { color: var(--brass-hi); }
.show-xs { display: none; }

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  color: var(--text-hi);
}
.wordmark span { color: var(--brass-hi); }
.wordmark { white-space: nowrap; }

.site-footer {
  max-width: 880px;
  margin: 4rem auto 2rem;
  padding: 1.5rem;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  text-align: center;
  color: var(--text-mid);
  font-size: 0.85rem;
  border-top: 1px solid var(--ink-line);
}
.site-footer .fine { color: #6b7578; font-size: 0.78rem; margin-top: 0.25rem; }

/* ---------- buttons / inputs ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:active { transform: scale(0.97); }
.btn-brass {
  background: linear-gradient(180deg, var(--brass-hi), var(--brass));
  color: #201804;
  box-shadow: 0 6px 18px -6px rgba(201, 162, 39, 0.55);
}
.btn-brass:hover { box-shadow: 0 8px 22px -6px rgba(201, 162, 39, 0.75); }
.btn-brass:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--ink-line);
  color: var(--text-hi);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-hi); }
.btn-small { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-wide { display: flex; width: 100%; margin-top: 1.25rem; }

/* ---------- hero ---------- */

.hero {
  max-width: 700px;
  margin: 2rem auto 3.5rem;
  padding: 0 1.5rem;
  text-align: center;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass-hi);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 1.1rem;
  font-weight: 700;
}
.hero-sub {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

/* ---------- board / tickets ---------- */

.board { max-width: 880px; margin: 0 auto; padding: 0 1.5rem 4rem; }
.board-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--ink-line);
  padding-bottom: 0.75rem;
}
.board-head h2 { font-family: var(--font-display); font-size: 1.3rem; margin: 0; }
.board-count { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-mid); }

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.ticket {
  position: relative;
  background: var(--paper);
  color: #201c14;
  border-radius: var(--radius);
  padding: 1.3rem 1.3rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border: 1px solid var(--paper-dim);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  overflow: hidden;
}
.ticket::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 3.05rem;
  height: 0;
  border-top: 2px dashed var(--paper-dim);
}
@media (hover: hover) {
  .ticket:hover {
    transform: translateY(-3px) rotate(-0.4deg);
    box-shadow: 0 14px 30px -14px rgba(0,0,0,0.55);
  }
}
.ticket-kind {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b6248;
}
.ticket-question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.3;
  margin: 0;
  flex: 1;
}
.ticket-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.5rem;
  flex-wrap: wrap;
}
.ticket-meta { font-size: 0.8rem; color: #6b6248; }

.stamp {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--stamp-red);
  border: 2px solid var(--stamp-red);
  border-radius: 6px;
  padding: 0.15rem 0.5rem;
  transform: rotate(-6deg);
  display: inline-block;
  font-size: 0.85rem;
}

.empty { text-align: center; padding: 3rem 1rem; color: var(--text-mid); }

/* ---- board search + timestamps ------------------------------------ */
.board-search { margin: 0 0 1.1rem; }
.board-search input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem; /* 16px: stops iOS zooming in on focus */
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  color: var(--text-hi);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.12s ease;
}
.board-search input:focus { border-color: var(--brass); }

.ticket-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.ticket-time, .answer-time, .say-time {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: #7c8688;
  white-space: nowrap;
}
.answer-time { position: relative; z-index: 1; flex: 0 0 auto; margin-right: 0.35rem; }
.say-time { text-transform: none; letter-spacing: 0; margin-left: 0.4rem; }

.badge-op {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brass-hi);
  border: 1px solid var(--brass);
  border-radius: 999px;
  padding: 0.08rem 0.45rem;
  margin-left: 0.55rem;
  flex: 0 0 auto;
}

.tag-escalating {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--stamp-red);
  border: 1px dashed var(--stamp-red);
  border-radius: 6px;
  padding: 0.08rem 0.4rem;
  display: inline-block;
}

/* ---- final say: chronological statement thread -------------------- */
.say-thread { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.25rem 0; }
.say {
  position: relative;
  border: 1px solid var(--ink-line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  background: var(--ink-soft);
  color: var(--text-mid);
}
.say.is-current {
  border-color: var(--brass);
  color: var(--text-hi);
  box-shadow: 0 0 0 1px var(--brass);
}
.say .say-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brass-hi);
  display: block;
  margin-bottom: 0.3rem;
}
.say.is-op .say-tag { color: #7c8688; }

/* ---- redemption ---------------------------------------------------- */
.tag-redemption {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--brass-hi);
  border: 1px dashed var(--brass);
  border-radius: 6px;
  padding: 0.08rem 0.4rem;
  display: inline-block;
}

.redemption-banner {
  border: 1px dashed var(--brass);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin: 1rem 0 0.25rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-mid);
}
.redemption-banner .rb-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brass-hi);
  display: block;
  margin-bottom: 0.25rem;
}
.redemption-banner.is-settled {
  border-style: solid;
  color: var(--text-hi);
}
.redemption-banner.is-void { border-color: var(--ink-line); }
.redemption-banner.is-void .rb-tag { color: #7c8688; }

.closed-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #7c8688;
  border: 1px solid var(--ink-line);
  border-radius: 10px;
  padding: 0.85rem;
  margin-top: 1.25rem;
}

/* ---------- forms (create page) ---------- */

.form-wrap { max-width: 560px; margin: 1rem auto 4rem; padding: 0 1.5rem; }
.form-wrap h1 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.35rem; }

.segmented {
  display: flex;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  padding: 0.25rem;
  margin: 1.75rem 0 1.5rem;
}
.segment {
  flex: 1;
  min-height: 2.6rem;
  line-height: 1.25;
  background: transparent;
  border: none;
  color: var(--text-mid);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 0.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.segment.is-active { background: var(--brass); color: #201804; }

.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.field > span:first-child, .field-label {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 600;
}

textarea, input[type="text"], input[type="number"], input[type="email"],
input[type="password"], input[type="datetime-local"] {
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  color: var(--text-hi);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  outline: none;
  transition: border-color 0.12s ease;
}
textarea:focus, input:focus { border-color: var(--brass); }
textarea { resize: vertical; }

.options-block { margin-bottom: 1.25rem; }
.options-list { display: flex; flex-direction: column; gap: 0.6rem; margin: 0.5rem 0 0.75rem; }
.option-input { width: 100%; }

.option-row { display: flex; align-items: center; gap: 0.65rem; cursor: pointer; }
.option-radio { flex: 0 0 auto; width: 18px; height: 18px; accent-color: var(--brass); cursor: pointer; }
.option-row .option-input { flex: 1; }

.segmented-answer { margin: 0.5rem 0 0; }
.segmented-answer .segment { font-size: 0.82rem; }

/* explainer that describes the selected mode, right under the picker */
.mode-explainer {
  border-left: 3px solid var(--brass);
  background: var(--ink-soft);
  border-radius: 0 8px 8px 0;
  padding: 0.7rem 0.9rem;
  margin: 0.85rem 0 1.4rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-mid);
}
.mode-explainer strong { color: var(--text-hi); font-weight: 600; }

/* ghost "?" that tracks the end of the typed text in open-question mode.
   The mirror div copies the textarea's exact font/padding/wrap metrics, its
   text is invisible, and only the trailing gold "?" shows - so the mark
   always lands right after the last character. It hides itself whenever the
   typed text already ends in "?", so a double mark is impossible. */
.question-wrap { position: relative; width: 100%; }
.question-wrap textarea { width: 100%; display: block; }

/* inputs inside form fields always span the full field width */
.field textarea, .field input[type="text"], .field input[type="email"],
.field input[type="password"], .field input[type="datetime-local"] { width: 100%; min-width: 0; }
input[type="datetime-local"] { color-scheme: dark; min-height: 3rem; }
.q-mirror {
  position: absolute;
  inset: 0;
  padding: 0.8rem 0.9rem;      /* must match textarea */
  border: 1px solid transparent; /* must match textarea border width */
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: normal;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: hidden;
  pointer-events: none;
  color: transparent;
}
.q-mirror .q-ghost {
  color: var(--brass-hi);
  font-weight: 700;
}

.cost-input { display: flex; align-items: center; background: var(--ink-soft); border: 1px solid var(--ink-line); border-radius: 8px; padding: 0 0.9rem; }
.cost-input:focus-within { border-color: var(--brass); }
.cost-prefix { font-family: var(--font-mono); color: var(--brass-hi); font-weight: 700; }
.cost-input input { background: transparent; border: none; padding: 0.8rem 0.5rem; flex: 1; font-family: var(--font-mono); font-size: 1.1rem; }
.cost-input input:focus { border: none; }
.field-hint { font-size: 0.78rem; color: #7c8688; }

.form-error {
  background: rgba(176, 70, 58, 0.15);
  border: 1px solid var(--stamp-red);
  color: #ffb9ac;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  font-size: 0.88rem;
  margin: 0.5rem 0;
}

/* ---------- post detail ---------- */

.post-view { max-width: 620px; margin: 1rem auto 4rem; padding: 0 1.5rem; }
.post-question {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 1.25;
  margin: 0.4rem 0 1.75rem;
}

.answers { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }
.answer-row {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  color: var(--text-hi);
  font-family: var(--font-body);
  font-size: 0.98rem;
  text-align: left;
  transition: border-color 0.12s ease;
}
.answer-row:hover { border-color: var(--brass); }
.answer-row.is-selected { border-color: var(--brass-hi); box-shadow: 0 0 0 1px var(--brass-hi) inset; }
.answer-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(201,162,39,0.28), rgba(201,162,39,0.08));
  transition: width 0.5s ease;
  z-index: 0;
}
.answer-label { position: relative; z-index: 1; display: flex; align-items: center; flex: 1; min-width: 0; }
.answer-text { min-width: 0; }
.answer-row { min-height: 3.1rem; }
.answer-votes { position: relative; z-index: 1; flex: 0 0 auto; }
.answer-votes { font-family: var(--font-mono); color: var(--text-mid); font-size: 0.85rem; }

.new-answer { margin-bottom: 1rem; }
.new-answer input { width: 100%; }

.post-meta { margin-top: 1rem; color: var(--text-mid); font-size: 0.85rem; font-family: var(--font-mono); }

/* ---------- payment modal ---------- */

.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(6, 9, 11, 0.72);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  z-index: 50;
  animation: fadeIn 0.15s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes sheetUp { from { transform: translateY(40px); opacity: 0; } to { transform: none; opacity: 1; } }

.modal {
  background: var(--paper);
  color: #201c14;
  border-radius: 14px;
  padding: 1.5rem;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 2.5rem);
  max-height: calc(100dvh - 2.5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.modal h3 { font-family: var(--font-display); margin: 0 0 0.15rem; font-size: 1.25rem; }
.modal-x {
  flex: 0 0 auto;
  width: 2.5rem; height: 2.5rem;
  border-radius: 999px;
  border: 1px solid #d8cfb4;
  background: transparent;
  color: #4b4636;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.modal-x:hover { border-color: var(--stamp-red); color: var(--stamp-red); }
.modal .sim-banner {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--stamp-red);
  border: 1px dashed var(--stamp-red);
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.modal .amount { font-family: var(--font-mono); font-size: 1.7rem; font-weight: 700; margin: 0.1rem 0 1rem; }
.modal label { display: block; font-size: 0.8rem; font-weight: 600; color: #5c5540; margin-bottom: 0.3rem; }
.modal .row { display: flex; gap: 0.6rem; }
.modal input {
  width: 100%;
  background: #fff;
  border: 1px solid #d8cfb4;
  color: #201c14;
  border-radius: 7px;
  padding: 0.7rem 0.75rem;
  margin-bottom: 0.9rem;
  font-family: var(--font-mono);
  font-size: 1rem; /* 16px: stops iOS zooming in on focus */
}
.modal input:focus { outline: none; border-color: var(--stamp-red); }
.modal .btn-wide { margin-top: 0.4rem; }
.checkout-form { min-height: 12rem; }
.modal-status { font-size: 0.85rem; margin: 0.7rem 0 0; min-height: 1.1em; }
.modal-status:empty { min-height: 0; margin: 0; }
.modal-status.error { color: var(--stamp-red); }
.modal-status.pending { color: #6b6248; }

/* ---------- accounts ---------- */

.center { text-align: center; }
.center .hero-sub { margin-left: auto; margin-right: auto; }
.auth-wrap { max-width: 440px; }
.auth-wrap .hero-sub { margin-left: 0; }
.auth-form { margin-top: 1.5rem; }
.auth-switch { margin-top: 1.5rem; color: var(--text-mid); font-size: 0.92rem; }
.auth-switch a, .as-note a { color: var(--brass-hi); font-weight: 600; }
.auth-switch a:hover, .as-note a:hover { text-decoration: underline; }
.as-note { margin-top: 0.9rem; font-size: 0.82rem; color: #7c8688; text-align: center; }

.fine { color: #7c8688; font-size: 0.8rem; margin: 0.25rem 0 0; }

.account { max-width: 720px; margin: 1rem auto 4rem; padding: 0 1.5rem; }
.account-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.account-head .eyebrow { margin: 0 0 0.25rem; }
.account-email { font-family: var(--font-display); font-size: clamp(1.3rem, 4.5vw, 1.8rem); margin: 0; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}
.stat {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.stat-num { font-family: var(--font-mono); font-size: 1.25rem; font-weight: 700; color: var(--brass-hi); }
.stat-label { font-size: 0.78rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.05em; }

.history { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.history-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  transition: border-color 0.12s ease;
}
.history-item:hover { border-color: var(--brass); }
.history-top { display: flex; justify-content: space-between; align-items: baseline; gap: 0.75rem; }
.history-type {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brass-hi);
}
.history-q { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; line-height: 1.3; }
.history-a { font-size: 0.9rem; color: var(--text-mid); }
.history-a strong { color: var(--text-hi); font-weight: 600; }
.history-foot { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.2rem; }
.stamp-sm { font-size: 0.78rem; transform: rotate(-4deg); }
.empty .btn { margin-top: 1rem; }

/* ---------- small screens ---------- */

@media (max-width: 640px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }

  /* four post types don't fit in one pill row on a phone: 2 x 2 grid */
  #kind-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    gap: 0.25rem;
  }
  #kind-picker .segment { border-radius: 12px; }

  /* payment sheet slides up from the bottom, thumb-friendly */
  .modal-backdrop { align-items: flex-end; padding: 0; }
  .modal {
    max-width: none;
    border-radius: 18px 18px 0 0;
    max-height: 92vh;
    max-height: 92dvh;
    padding: 1.25rem 1.1rem;
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
    animation: sheetUp 0.2s ease;
  }
}

@media (max-width: 480px) {
  .site-header { padding: 1rem; padding-top: max(1rem, env(safe-area-inset-top)); }
  .site-nav { gap: 0.6rem; }
  .hide-xs { display: none; }
  .show-xs { display: inline; }
  .hero, .board, .form-wrap, .post-view, .account { padding-left: 1rem; padding-right: 1rem; }
  .hero { margin: 1rem auto 2.5rem; }
  .hero-sub { font-size: 1rem; }
  .ticket-grid { grid-template-columns: 1fr; }
  .form-wrap h1 { font-size: 1.7rem; }
  .segmented-answer .segment { font-size: 0.8rem; padding: 0.55rem 0.4rem; }
  .eyebrow { font-size: 0.72rem; }
  .account-head { flex-direction: column; }
}

/* ---------- up the ante: "tell me more" explainer ---------- */

.label-row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; }
.more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  color: var(--brass-hi);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem 0.35rem 0.4rem;
  min-height: 2.1rem;
  cursor: pointer;
}
.more-btn:hover, .more-btn.is-open { border-color: var(--brass); }
.more-icon {
  width: 1.3rem; height: 1.3rem;
  border-radius: 999px;
  background: var(--brass);
  color: #201804;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex; align-items: center; justify-content: center;
}

.ante-explainer {
  margin-top: 0.9rem;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-left: 3px solid var(--brass);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  animation: fadeIn 0.15s ease;
}
.ante-explainer strong { color: var(--text-hi); font-weight: 600; }
.ante-title { margin: 0 0 0.5rem; font-size: 0.95rem; color: var(--text-hi); }
.ante-steps { margin: 0 0 0.9rem; padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.35rem; }
.ante-example { margin: 0 0 0.6rem; }
.ante-foot { margin: 0.8rem 0 0; font-size: 0.82rem; }

.ante-ladder { display: flex; flex-direction: column; gap: 0.4rem; }
.rung {
  display: grid;
  grid-template-columns: 7.2rem 1fr;
  grid-template-areas: "who track" ". how";
  column-gap: 0.7rem;
  align-items: center;
}
.rung-who { grid-area: who; font-size: 0.8rem; color: var(--text-mid); }
.rung-track { grid-area: track; display: block; }
.rung-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 1.7rem;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(201,162,39,0.18), rgba(201,162,39,0.45));
  border: 1px solid rgba(201,162,39,0.5);
  padding: 0 0.5rem;
  transition: width 0.3s ease;
}
.rung.is-top .rung-bar { background: linear-gradient(90deg, rgba(201,162,39,0.35), var(--brass)); }
.rung-price { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700; color: var(--text-hi); white-space: nowrap; }
.rung.is-top .rung-price { color: #201804; }
.rung-how { grid-area: how; font-family: var(--font-mono); font-size: 0.68rem; color: #7c8688; }
.rung:first-child .rung-how { color: var(--brass-hi); }
.rung-more .rung-who { font-style: italic; }

@media (max-width: 480px) {
  .rung { grid-template-columns: 5.6rem 1fr; }
  .rung-who { font-size: 0.74rem; }
}

/* ---------- redemption: "tell me more" example ---------- */
.redeem-demo { display: flex; flex-direction: column; gap: 0.5rem; margin: 0.2rem 0 0.2rem; }
.rd-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--ink-line);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
}
.rd-row.is-win { border-color: var(--brass); background: rgba(201,162,39,0.10); }
.rd-answer { font-size: 0.82rem; font-weight: 600; color: var(--text-hi); }
.rd-people { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.rd-dot {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  border: 1px solid var(--ink-line);
  color: #7c8688;
  text-decoration: line-through;
}
.rd-dot.is-back { border-color: var(--brass); color: var(--brass-hi); text-decoration: none; }
.rd-result { font-family: var(--font-mono); font-size: 0.72rem; color: #7c8688; white-space: nowrap; text-align: right; }
.rd-row.is-win .rd-result { color: var(--brass-hi); font-weight: 700; }
@media (max-width: 480px) {
  .rd-row { grid-template-columns: 1fr auto; }
  .rd-people { grid-column: 1 / -1; grid-row: 2; }
}

/* ---------- sharing ---------- */
.share-box { position: relative; margin-top: 1.1rem; display: flex; justify-content: center; }
.share-btn { gap: 0.45rem; }
.share-btn svg { flex: 0 0 auto; }
.share-menu {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  min-width: 13rem;
  background: var(--paper);
  border-radius: 12px;
  padding: 0.35rem;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.12s ease;
}
.share-menu a, .share-menu button {
  display: block;
  text-align: left;
  background: none;
  border: none;
  font: 600 0.92rem var(--font-body);
  color: #201c14;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
}
.share-menu a:hover, .share-menu button:hover { background: var(--paper-dim); }

.share-callout {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  justify-content: space-between;
  border: 1px solid var(--brass);
  background: rgba(201,162,39,0.10);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin: -0.75rem 0 1.25rem;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.share-callout strong { color: var(--text-hi); }
.share-callout .share-btn { flex: 0 0 auto; }

/* ---------- checkout consent ---------- */
.consent { display: flex; flex-direction: column; gap: 1rem; }
.modal .consent-check {
  display: flex; gap: 0.7rem; align-items: flex-start;
  font-size: 0.86rem; font-weight: 400; color: #3d3829; line-height: 1.45;
  background: #fff8e6; border: 1px solid #e3d7b3; border-radius: 9px;
  padding: 0.85rem 0.9rem; margin: 0; cursor: pointer;
}
.modal .consent-check input {
  flex: 0 0 auto; width: 20px; height: 20px; margin: 0.1rem 0 0; padding: 0;
  accent-color: var(--stamp-red); cursor: pointer;
}
.consent-check a { color: var(--stamp-red); text-decoration: underline; font-weight: 600; }
.btn-block { width: 100%; }

/* ---------- legal pages ---------- */
.legal { max-width: 720px; margin: 1rem auto 4rem; padding: 0 1.5rem; }
.legal h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 6vw, 2.5rem); margin: 0.2rem 0 0.4rem; }
.legal .legal-updated { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-mid); margin: 0 0 1.5rem; }
.legal-summary {
  background: var(--ink-soft); border: 1px solid var(--ink-line); border-left: 4px solid var(--brass);
  border-radius: var(--radius); padding: 1rem 1.2rem; margin-bottom: 2rem;
}
.legal-summary h2 { margin-top: 0 !important; }
.legal-summary ul { margin: 0; padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.35rem; }
.legal h2 { font-family: var(--font-display); font-size: 1.2rem; margin: 2rem 0 0.5rem; color: var(--brass-hi); }
.legal p, .legal li { color: #d6dcdc; font-size: 0.97rem; }
.legal ul, .legal ol { padding-left: 1.3rem; }
.legal li { margin-bottom: 0.3rem; }
.legal a { color: var(--brass-hi); text-decoration: underline; }
.legal-nav { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 2.5rem; }
.footer-links { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; margin: 0.9rem 0 0.4rem; }
.footer-links a { color: var(--text-mid); text-decoration: underline; text-underline-offset: 3px; }
.footer-links a:hover { color: var(--brass-hi); }

/* ---------- history: where your take stands ---------- */
.standing { display: inline-flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-left: auto; }
.standing-chip {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; padding: 0.25rem 0.6rem; border-radius: 999px; white-space: nowrap;
  border: 1px solid var(--ink-line); color: var(--text-mid);
}
.standing-detail { font-family: var(--font-mono); font-size: 0.72rem; color: #8b9597; }
.standing-top .standing-chip { background: rgba(78, 180, 112, 0.16); border-color: #4eb470; color: #86dca2; }
.standing-tied .standing-chip { background: rgba(224, 188, 74, 0.14); border-color: var(--brass); color: var(--brass-hi); }
.standing-behind .standing-chip { border-color: #d0685a; color: #f0968a; }
.stat-top .stat-num { color: #7fd49b; }

/* ======================================================================
   Board cards (v2)
   ====================================================================== */
:root {
  --k-bool: #4fc1b0;   /* true / false */
  --k-mc: #a594f9;     /* poll */
  --k-open: #62b0f0;   /* open question */
  --k-final: #f08a6c;  /* final say */
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.ic { flex: 0 0 auto; display: inline-block; vertical-align: -0.15em; }

.board-tools { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.board-tools .board-search { margin: 0; }
.board-filters { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.chip-row { display: flex; gap: 0.45rem; overflow-x: auto; scrollbar-width: none; padding: 2px; margin: -2px; }
.chip-row::-webkit-scrollbar { display: none; }
.chip {
  display: inline-flex; align-items: center; gap: 0.35rem; flex: 0 0 auto;
  font: 600 0.82rem var(--font-body); color: var(--text-mid);
  background: var(--ink-soft); border: 1px solid var(--ink-line); border-radius: 999px;
  padding: 0.42rem 0.85rem; cursor: pointer; transition: all 0.12s ease;
}
.chip:hover { color: var(--text-hi); border-color: #3d4a51; }
.chip.is-on { background: var(--text-hi); border-color: var(--text-hi); color: var(--ink); }
.chip-bool .ic { color: var(--k-bool); }
.chip-mc .ic { color: var(--k-mc); }
.chip-open .ic { color: var(--k-open); }
.chip-final .ic { color: var(--k-final); }
.chip.is-on .ic { color: inherit; }
.sort-pick select {
  font: 600 0.82rem var(--font-body); color: var(--text-hi);
  background: var(--ink-soft); border: 1px solid var(--ink-line); border-radius: 999px;
  padding: 0.42rem 2rem 0.42rem 0.85rem; cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-mid) 50%), linear-gradient(135deg, var(--text-mid) 50%, transparent 50%);
  background-position: calc(100% - 15px) 55%, calc(100% - 10px) 55%;
  background-size: 5px 5px; background-repeat: no-repeat;
}

.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr)); gap: 1rem; }

.card {
  --k: var(--brass);
  position: relative;
  display: flex; flex-direction: column; gap: 0.85rem;
  padding: 1.15rem 1.2rem 1rem;
  border-radius: 14px;
  background:
    radial-gradient(120% 60% at 0% 0%, color-mix(in srgb, var(--k) 10%, transparent), transparent 60%),
    linear-gradient(180deg, #1c252a, #171e22);
  border: 1px solid var(--ink-line);
  color: var(--text-hi);
  overflow: hidden;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--k), color-mix(in srgb, var(--k) 20%, transparent));
}
.card.kind-bool { --k: var(--k-bool); }
.card.kind-mc { --k: var(--k-mc); }
.card.kind-open { --k: var(--k-open); }
.card.kind-final { --k: var(--k-final); }
@media (hover: hover) {
  .card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--k) 55%, var(--ink-line));
    box-shadow: 0 18px 36px -18px rgba(0,0,0,0.7), 0 0 0 1px color-mix(in srgb, var(--k) 25%, transparent);
  }
  .card:hover .card-cta { background: var(--brass-hi); }
  .card:hover .card-cta .ic { transform: translateX(3px); }
}
.card:focus-visible { outline: 2px solid var(--brass-hi); outline-offset: 2px; }

.card-top { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.kind-chip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font: 700 0.7rem var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--k, var(--brass-hi));
  background: color-mix(in srgb, var(--k, var(--brass)) 14%, transparent);
  border-radius: 999px; padding: 0.24rem 0.6rem;
}
.kind-chip.kind-bool { --k: var(--k-bool); }
.kind-chip.kind-mc { --k: var(--k-mc); }
.kind-chip.kind-open { --k: var(--k-open); }
.kind-chip.kind-final { --k: var(--k-final); }
.card-flag {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font: 600 0.7rem var(--font-body); color: var(--text-mid);
  border: 1px solid var(--ink-line); border-radius: 999px; padding: 0.18rem 0.55rem;
}
.flag-hot { color: #ffb36b; border-color: rgba(255, 150, 70, 0.4); background: rgba(255, 150, 70, 0.08); }
.flag-ante { color: var(--brass-hi); border-color: rgba(224, 188, 74, 0.35); }
.flag-redeem { color: #9fd3b0; border-color: rgba(120, 200, 150, 0.35); }
.card-time { margin-left: auto; font: 0.72rem var(--font-mono); color: #7c8688; white-space: nowrap; }

.card-q {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.22rem; line-height: 1.28;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  overflow-wrap: anywhere;
}

.card-answers { display: flex; flex-direction: column; gap: 0.35rem; }
.ca {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  padding: 0.42rem 0.65rem; border-radius: 7px; overflow: hidden;
  background: rgba(255,255,255,0.03); font-size: 0.86rem; color: var(--text-mid);
}
.ca-bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: color-mix(in srgb, var(--k) 18%, transparent);
  border-right: 2px solid color-mix(in srgb, var(--k) 50%, transparent);
}
.ca-bar[style="width: 0%"] { border-right: none; }
.ca-text, .ca-pct { position: relative; }
.ca-text { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ca-pct { font: 700 0.78rem var(--font-mono); color: var(--text-mid); }
.ca.is-lead { color: var(--text-hi); }
.ca.is-lead .ca-bar { background: color-mix(in srgb, var(--k) 30%, transparent); border-right-color: var(--k); }
.ca.is-lead .ca-pct { color: var(--k); }
.ca-more { font-size: 0.76rem; color: #7c8688; padding-left: 0.65rem; }

.card-say {
  display: flex; flex-direction: column; gap: 0.2rem;
  border-left: 3px solid var(--k); padding: 0.15rem 0 0.15rem 0.8rem;
}
.card-say-label { font: 700 0.64rem var(--font-mono); text-transform: uppercase; letter-spacing: 0.07em; color: var(--k); }
.card-say-text {
  font-size: 0.95rem; color: var(--text-hi); font-style: italic;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; overflow-wrap: anywhere;
}
.card-empty { font-size: 0.86rem; color: #7c8688; font-style: italic; }

.card-foot {
  display: flex; align-items: center; gap: 1rem; margin-top: auto;
  padding-top: 0.8rem; border-top: 1px solid rgba(255,255,255,0.06);
}
.card-stat { display: inline-flex; align-items: center; gap: 0.35rem; font: 600 0.84rem var(--font-mono); color: var(--text-mid); }
.card-stat .ic { color: #7c8688; }
.card-cta {
  margin-left: auto; display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--brass); color: #201804;
  font: 800 0.9rem var(--font-mono); border-radius: 999px; padding: 0.38rem 0.75rem 0.38rem 0.85rem;
  transition: background 0.15s ease;
}
.card-cta .cta-word { font: 600 0.74rem var(--font-body); opacity: 0.8; }
.card-cta .ic { transition: transform 0.15s ease; }
.card-cta.is-closed { background: transparent; color: #7c8688; border: 1px solid var(--ink-line); font-weight: 600; }

@media (max-width: 480px) {
  .board-filters { flex-direction: column; align-items: stretch; }
  .sort-pick { align-self: flex-end; }
  .card-q { font-size: 1.12rem; }
}

/* ======================================================================
   Post page (v2)
   ====================================================================== */
.post-view { --k: var(--brass); }
.post-view.kind-bool { --k: var(--k-bool); }
.post-view.kind-mc { --k: var(--k-mc); }
.post-view.kind-open { --k: var(--k-open); }
.post-view.kind-final { --k: var(--k-final); }

.post-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }
.back-link { display: inline-flex; align-items: center; gap: 0.2rem; color: var(--text-mid); font-weight: 600; font-size: 0.9rem; padding: 0.3rem 0.2rem 0.3rem 0; }
.back-link:hover { color: var(--brass-hi); }
.share-box.at-top { margin: 0; }
.share-box.at-top .share-menu { top: calc(100% + 0.4rem); bottom: auto; left: auto; right: 0; transform: none; }

.post-head { margin-bottom: 1.1rem; }
.post-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.7rem; }
.post-view .post-question { margin: 0; font-size: clamp(1.6rem, 5vw, 2.3rem); line-height: 1.2; }

.post-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0 0 1.4rem;
  background: var(--ink-soft); border: 1px solid var(--ink-line); border-radius: 12px; overflow: hidden;
}
.ps { display: flex; align-items: center; gap: 0.6rem; padding: 0.75rem 0.9rem; min-width: 0; }
.ps + .ps { border-left: 1px solid var(--ink-line); }
.ps dt { margin: 0; color: #7c8688; display: flex; }
.ps dd { margin: 0; display: flex; flex-direction: column; min-width: 0; line-height: 1.2; }
.ps dd strong { font: 700 1.05rem var(--font-mono); color: var(--text-hi); white-space: nowrap; }
.ps dd span { font-size: 0.72rem; color: var(--text-mid); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ps-price dt { color: var(--brass); }
.ps-price dd strong { color: var(--brass-hi); }

.section-label {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  font: 700 0.74rem var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mid);
  margin: 1.4rem 0 0.7rem;
}
.section-label span { font-weight: 400; text-transform: none; letter-spacing: 0; color: #7c8688; }
.post-view .say-thread { margin: 0 0 1.25rem; }
.post-view .say.is-current { border-color: var(--k); box-shadow: 0 0 0 1px var(--k); }
.post-view .say.is-current .say-tag { color: var(--k); }

/* the action area */
.turn-panel {
  position: relative;
  background: linear-gradient(180deg, #1d272c, #182024);
  border: 1px solid color-mix(in srgb, var(--k) 35%, var(--ink-line));
  border-radius: 16px; padding: 1.1rem; margin-top: 0.2rem;
  box-shadow: 0 20px 40px -28px rgba(0,0,0,0.8);
}
.turn-head { display: flex; flex-direction: column; gap: 0.15rem; margin-bottom: 0.9rem; }
.turn-title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--text-hi); }
.turn-hint { font-size: 0.88rem; color: var(--text-mid); }
.turn-panel .answers { margin-bottom: 0.8rem; }
.turn-panel .new-answer { margin-bottom: 0.8rem; }
.turn-panel .btn-wide { margin-top: 0.2rem; }
.turn-panel .form-error { margin: 0 0 0.7rem; }
.turn-after { margin: 0.6rem 0 0; text-align: center; font: 0.78rem var(--font-mono); color: var(--brass-hi); }
.turn-panel .as-note { margin-top: 0.6rem; }

/* answer rows: radio + bar + percentage */
.post-view .answer-row { gap: 0.7rem; padding: 0.8rem 0.9rem; background: rgba(255,255,255,0.03); }
.post-view .answer-bar { background: color-mix(in srgb, var(--k) 16%, transparent); }
.post-view .answer-row.is-lead .answer-bar { background: color-mix(in srgb, var(--k) 28%, transparent); }
.post-view .answer-row:hover { border-color: color-mix(in srgb, var(--k) 60%, var(--ink-line)); }
.post-view .answer-row.is-selected { border-color: var(--brass-hi); box-shadow: 0 0 0 1px var(--brass-hi) inset; }
.post-view .answer-row:disabled { cursor: default; }
.answer-radio {
  position: relative; z-index: 1; flex: 0 0 auto; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #56646b; transition: all 0.12s ease;
}
.answer-row.is-selected .answer-radio { border-color: var(--brass-hi); background: radial-gradient(circle, var(--brass-hi) 45%, transparent 50%); }
.answer-row:disabled .answer-radio { display: none; }
.post-view .answer-votes { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.15; }
.post-view .answer-votes strong { font: 700 0.92rem var(--font-mono); color: var(--text-hi); }
.post-view .answer-votes span { font-size: 0.68rem; color: #7c8688; }
.post-view .answer-row.is-lead .answer-votes strong { color: var(--k); }

@media (max-width: 640px) {
  .post-stats { grid-template-columns: repeat(2, 1fr); }
  .ps:nth-child(3) { border-left: none; }
  .ps:nth-child(n+3) { border-top: 1px solid var(--ink-line); }
  .turn-panel { padding: 1rem 0.9rem; }
}

/* rebattle picks (house posts) */
.flag-house { color: var(--text-hi); border-color: rgba(224, 188, 74, 0.45); background: rgba(224, 188, 74, 0.08); font-family: var(--font-display); font-weight: 700; letter-spacing: 0.01em; }
.flag-house b { color: var(--brass-hi); }
.house-note { margin: 0.7rem 0 0; font-size: 0.82rem; color: var(--text-mid); }
