/* ============ Linko — app chrome, manage, dashboard, auth, legal ============ */

.hide-sm { display: inline; }
@media (max-width: 480px) { .hide-sm { display: none; } }

/* rsvp party-size stepper */
.rsvp-stepper { display: inline-flex; align-items: center; gap: 4px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 4px; }
.rsvp-stepper button { width: 38px; height: 38px; border: none; background: var(--surface); border-radius: 50%; color: var(--text); font-size: 20px; font-weight: 600; line-height: 1; display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: all .14s; }
.rsvp-stepper button:hover { background: var(--accent-soft); color: var(--accent); }
.rsvp-stepper .rs-count { min-width: 40px; text-align: center; font-size: 17px; font-weight: 750; font-variant-numeric: tabular-nums; }


/* ---------- top bar actions ---------- */
.min-top-actions { display: flex; align-items: center; gap: 8px; }
.min-iconbtn {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border); border-radius: var(--radius-pill);
  color: var(--text-dim); transition: all .15s var(--ease);
}
.min-iconbtn:hover { color: var(--text); border-color: var(--border-strong); }
.min-brand.clickable { background: none; border: none; padding: 0; color: var(--text); cursor: pointer; }

/* ---------- menu drawer ---------- */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 80; background: rgba(0,0,0,.55);
  animation: fadeScrim .2s var(--ease);
  display: flex; justify-content: flex-end;
}
/* author display:flex would override the UA [hidden] rule — restore it */
.drawer-scrim[hidden] { display: none; }
@keyframes fadeScrim { from { opacity: 0; } to { opacity: 1; } }
.drawer {
  width: min(360px, 86vw); height: 100%; background: var(--surface);
  border-left: 1px solid var(--border); display: flex; flex-direction: column;
  padding: 18px 18px 22px; animation: slideDrawer .28s var(--ease);
  box-shadow: var(--shadow-lg);
}
@keyframes slideDrawer { from { transform: translateX(100%); } to { transform: none; } }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.drawer-brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 17px; letter-spacing: -.02em; }
.drawer-brand .brand-mark { width: 26px; height: 26px; border-radius: 8px; }
.drawer-brand .brand-mark::after { display: none; }
.drawer-nav { display: flex; flex-direction: column; gap: 2px; margin-top: 14px; }
.drawer-sec-label { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); margin: 16px 8px 6px; }
.drawer-item {
  display: flex; align-items: center; gap: 13px; width: 100%; text-align: left;
  background: transparent; border: none; border-radius: var(--radius-sm);
  padding: 13px 12px; color: var(--text); font-size: 15.5px; font-weight: 600;
  transition: background .14s var(--ease);
}
.drawer-item:hover { background: var(--surface-2); }
.drawer-item[data-on="true"] { background: var(--accent-soft); color: var(--accent); }
.drawer-item svg { color: var(--text-faint); flex: none; }
.drawer-item[data-on="true"] svg, .drawer-item:hover svg { color: var(--accent); }
.drawer-item .di-chev { margin-left: auto; color: var(--text-faint); }
.drawer-item.primary { background: var(--accent); color: #fff; margin-top: 6px; justify-content: center; box-shadow: 0 6px 16px -6px rgba(234,88,12,.6); }
.drawer-item.primary svg { color: #fff; }
.drawer-item.primary:hover { background: var(--accent-hover); }
.drawer-foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.drawer-acct { display: flex; align-items: center; gap: 10px; min-width: 0; }
.drawer-acct .avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-weight: 800; font-size: 14px; flex: none; }
.drawer-acct .da-mail { font-size: 13px; color: var(--text-dim); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.drawer-theme { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-dim); background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 8px 12px; }
.drawer-theme:hover { color: var(--text); border-color: var(--border-strong); }
/* recent pages (browser-local quick access) */
.drawer-recent { margin-top: 2px; }
.drawer-recent-note { font-size: 11px; color: var(--text-faint); line-height: 1.45; margin: 6px 8px 2px; }
.home-recent { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 26px; }
.home-recent[hidden] { display: none; }
.home-recent-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); }
.home-recent-list { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.home-recent-chip { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--text-dim);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 7px 13px; transition: all .15s var(--ease); }
.home-recent-chip:hover { border-color: var(--accent-line); color: var(--accent); }
.home-recent-chip svg { color: var(--text-faint); }
.home-recent-chip:hover svg { color: var(--accent); }

/* ---------- shared site footer (base.html + min pages, via _footer.html) ---------- */
.home-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding-top: 18px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.home-foot .mf-brand { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 13.5px; color: var(--text-dim); }
.home-foot .mf-brand .brand-mark { width: 18px; height: 18px; border-radius: 5px; }
.home-foot .mf-brand .brand-mark::after { display: none; }
.mf-links { display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.mf-links a { font-size: 13px; font-weight: 600; color: var(--text-dim); transition: color .15s; }
.mf-links a:hover { color: var(--accent); }
@media (max-width: 560px) {
  .home-foot { justify-content: center; text-align: center; gap: 14px; }
  .mf-links { gap: 14px; justify-content: center; }
}

/* ---------- confirmation dialog ---------- */
.confirm-scrim { position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,.6);
  display: flex; align-items: center; justify-content: center; padding: 20px; animation: fadeScrim .18s var(--ease); }
.confirm-scrim[hidden] { display: none; }
.confirm-card { width: 100%; max-width: 360px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 24px 22px; text-align: center; box-shadow: var(--shadow-lg);
  animation: popIn .2s var(--ease); }
@keyframes popIn { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: none; } }
.confirm-ic { width: 48px; height: 48px; border-radius: 14px; margin: 0 auto 14px; display: grid; place-items: center;
  background: color-mix(in srgb, #e5484d 15%, transparent); color: #e5484d; }
.confirm-msg { font-size: 15.5px; font-weight: 600; color: var(--text); line-height: 1.5; margin: 0 0 20px; }
.confirm-actions { display: flex; gap: 10px; }
.confirm-actions .btn { flex: 1; justify-content: center; }

/* ---------- legal pages (terms / privacy) ---------- */
.legal-wrap { width: 100%; max-width: 680px; margin: 0 auto; padding: 8px 0 8px; text-align: left; }
.legal-head { margin-bottom: 26px; }
.legal-head .min-h1 { margin-bottom: 10px; }
.legal-meta { font-size: 13px; color: var(--text-faint); }
.legal-sec { margin-top: 26px; }
.legal-sec h2 { font-size: 18px; font-weight: 750; letter-spacing: -.01em; margin: 0 0 10px; display: flex; align-items: baseline; gap: 10px; }
.legal-sec h2 .ls-num { font-size: 13px; font-weight: 700; color: var(--accent); font-family: ui-monospace, Menlo, monospace; }
.legal-sec p { font-size: 15px; color: var(--text-dim); line-height: 1.7; margin: 0 0 12px; }
.legal-sec ul { margin: 0 0 12px; padding-left: 20px; }
.legal-sec li { font-size: 15px; color: var(--text-dim); line-height: 1.7; margin-bottom: 6px; }
.legal-callout {
  display: flex; gap: 13px; align-items: flex-start; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px 18px; margin: 20px 0;
}
.legal-callout .lc-ic { width: 38px; height: 38px; border-radius: 11px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.legal-callout p { margin: 0; font-size: 14px; color: var(--text-dim); line-height: 1.6; }

/* ---------- generic page header (manage/dashboard) ---------- */
.pg-head { display: flex; align-items: flex-start; gap: 14px; width: 100%; margin-bottom: 22px; text-align: left; }
.pg-head .pg-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.pg-head .pg-titles { flex: 1; min-width: 0; }
.pg-head .pg-titles h1 { font-size: clamp(22px, 4vw, 27px); font-weight: 800; letter-spacing: -.025em; margin: 0; line-height: 1.15; }
.pg-head .pg-sub { font-size: 14px; color: var(--text-dim); margin-top: 3px; }
.pg-head .pg-action { flex: none; }

/* ---------- manage: event summary card ---------- */
.mng-wrap { width: 100%; max-width: 760px; margin: 0 auto; text-align: left; }
.mng-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 20px; margin-bottom: 18px; }
.mng-evt { display: flex; gap: 16px; align-items: flex-start; flex-wrap: wrap; }
.mng-evt-main { flex: 1; min-width: 220px; }
.mng-evt-title { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 10px; }
.mng-evt-meta { display: flex; flex-direction: column; gap: 7px; }
.mng-evt-meta .pub-row { font-size: 14px; }
.mng-evt-meta .pub-row .k { min-width: 64px; }
.mng-share { display: flex; flex-direction: column; gap: 9px; min-width: 200px; }
.mng-url {
  display: flex; align-items: center; gap: 10px; background: var(--surface-2);
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: 11px 13px; color: var(--text); font-size: 13px; transition: border-color .15s; width: 100%;
}
.mng-url:hover { border-color: var(--accent-line); }
.mng-url .u-trunc { flex: 1; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mng-url svg { color: var(--accent); flex: none; }
.mng-share-row { display: flex; gap: 9px; }
.mng-share-row .btn { flex: 1; justify-content: center; }

/* ---------- manage: stats ---------- */
.mng-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
.stat {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 15px 16px; display: flex; flex-direction: column; gap: 3px;
}
.stat .st-top { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 650; color: var(--text-dim); }
.stat .st-num { font-size: 28px; font-weight: 800; letter-spacing: -.03em; line-height: 1; margin-top: 4px; }
.stat[data-tone="yes"] { border-color: color-mix(in srgb, var(--good) 35%, var(--border)); }
.stat[data-tone="yes"] .st-num, .stat[data-tone="yes"] .st-top svg { color: var(--good); }
.stat[data-tone="maybe"] .st-num, .stat[data-tone="maybe"] .st-top svg { color: var(--accent); }
.stat[data-tone="people"] { background: var(--accent-soft); border-color: var(--accent-line); }
.stat[data-tone="people"] .st-num, .stat[data-tone="people"] .st-top svg, .stat[data-tone="people"] .st-top { color: var(--accent); }
@media (max-width: 620px) { .mng-stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- manage: responses toolbar ---------- */
.mng-sec-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 4px 2px 14px; flex-wrap: wrap; }
.mng-sec-head h2 { font-size: 17px; font-weight: 750; margin: 0; }
.mng-toolbar { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.mng-search { flex: 1; min-width: 180px; display: flex; align-items: center; gap: 9px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 9px 15px; }
.mng-search svg { color: var(--text-faint); flex: none; }
.mng-search input { flex: 1; min-width: 0; border: none; background: transparent; outline: none; color: var(--text); font-size: 14.5px; }
.mng-search input::placeholder { color: var(--text-faint); }
.mng-filter { display: inline-flex; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 4px; gap: 3px; }
.mng-filter button { border: none; background: transparent; color: var(--text-dim); padding: 7px 13px; border-radius: var(--radius-pill); font-weight: 650; font-size: 13.5px; transition: all .15s var(--ease); white-space: nowrap; }
.mng-filter button[data-on="true"] { background: var(--surface); color: var(--text); box-shadow: var(--shadow-sm); }
.mng-csv { white-space: nowrap; }

/* ---------- manage: responses table ---------- */
.mng-table-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.mng-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.mng-table thead th {
  text-align: left; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-faint); padding: 13px 16px; border-bottom: 1px solid var(--border); white-space: nowrap;
}
.mng-table tbody td { padding: 14px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; color: var(--text); }
.mng-table tbody tr:last-child td { border-bottom: none; }
.mng-table tbody tr { transition: background .12s; }
.mng-table tbody tr:hover { background: var(--surface-2); }
.mng-guest { display: flex; align-items: center; gap: 11px; }
.mng-guest .avatar { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 13px; color: #fff; flex: none; }
.mng-guest .g-name { font-weight: 650; }
.mng-people { font-variant-numeric: tabular-nums; font-weight: 650; }
.mng-comment { color: var(--text-dim); max-width: 240px; }
.mng-date { color: var(--text-faint); font-size: 13px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.rbadge { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; padding: 5px 11px; border-radius: var(--radius-pill); white-space: nowrap; }
.rbadge[data-r="yes"] { background: color-mix(in srgb, var(--good) 15%, transparent); color: var(--good); }
.rbadge[data-r="maybe"] { background: var(--accent-soft); color: var(--accent); }
.rbadge[data-r="no"] { background: var(--surface-3); color: var(--text-dim); }

/* mobile: cards instead of table */
.mng-cards { display: none; flex-direction: column; gap: 10px; }
.mng-rcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 16px; }
.mng-rcard-top { display: flex; align-items: center; gap: 11px; }
.mng-rcard-top .avatar { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px; color: #fff; flex: none; }
.mng-rcard-top .rc-name { font-weight: 700; font-size: 15px; flex: 1; min-width: 0; }
.mng-rcard-data { display: flex; flex-direction: column; gap: 4px; margin-top: 11px; padding-top: 11px; border-top: 1px solid var(--border); }
.mng-rcard-data .resp-item { font-size: 13.5px; line-height: 1.45; color: var(--text-dim); }
.mng-rcard-data .resp-k { color: var(--text-faint); }
.mng-rcard-body { display: flex; align-items: center; gap: 14px; margin-top: 11px; font-size: 13.5px; color: var(--text-dim); flex-wrap: wrap; }
.mng-rcard-body .rc-i { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.mng-rcard-body .rc-i svg { color: var(--text-faint); }
.mng-rcard-note { margin-top: 10px; font-size: 13.5px; color: var(--text-dim); line-height: 1.5; padding-top: 10px; border-top: 1px solid var(--border); }

.mng-empty { text-align: center; padding: 40px 20px; }
.mng-empty .me-ic { width: 56px; height: 56px; border-radius: 16px; background: var(--surface-2); color: var(--text-faint); display: grid; place-items: center; margin: 0 auto 14px; }
.mng-empty .me-t { font-weight: 700; font-size: 16px; margin-bottom: 5px; }
.mng-empty .me-d { font-size: 14px; color: var(--text-dim); max-width: 34ch; margin: 0 auto; }

@media (max-width: 640px) {
  .mng-table-wrap { background: transparent; border: none; border-radius: 0; overflow: visible; }
  .mng-table { display: none; }
  .mng-cards { display: flex; }
}

/* ---------- dashboard ("my pages") ---------- */
.dash-wrap { width: 100%; max-width: 720px; margin: 0 auto; text-align: left; }
.dash-list { display: flex; flex-direction: column; gap: 11px; }
.dash-card {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 16px 18px; transition: all .15s var(--ease); color: var(--text);
}
.dash-card:hover { border-color: var(--accent-line); transform: translateX(2px); }
.dash-card .dc-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.dash-card .dc-body { flex: 1; min-width: 0; }
.dash-card .dc-title { font-weight: 700; font-size: 15.5px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-card .dc-meta { display: flex; align-items: center; gap: 10px; margin-top: 4px; font-size: 13px; color: var(--text-faint); flex-wrap: wrap; }
.dash-card .dc-meta > span { white-space: nowrap; }
.dash-card .dc-meta .dot { color: var(--border-strong); }
.dash-card .dc-resp { display: inline-flex; align-items: center; gap: 6px; color: var(--text-dim); font-weight: 600; }
.dash-card .dc-resp svg { color: var(--accent); }
.dash-card .dc-go { flex: none; display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 650; color: var(--text-dim); padding: 8px 14px; border: 1px solid var(--border-strong); border-radius: var(--radius-pill); transition: all .14s; }
.dash-card:hover .dc-go { color: var(--accent); border-color: var(--accent-line); }
@media (max-width: 540px) {
  .dash-card { flex-wrap: wrap; }
  .dash-card .dc-go { width: 100%; justify-content: center; margin-top: 4px; }
}

/* ---------- auth (login / sent) ---------- */
.auth-center { width: 100%; max-width: 420px; margin: 0 auto; text-align: center; }
.auth-ic { width: 60px; height: 60px; border-radius: 17px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin: 0 auto 20px; }
.auth-form { width: 100%; max-width: 380px; margin: 22px auto 0; display: flex; flex-direction: column; gap: 14px; text-align: left; }
.auth-form .field { gap: 8px; }
.auth-note { font-size: 13px; color: var(--text-faint); margin-top: 16px; line-height: 1.55; }
.auth-mailpill { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 8px 16px; font-size: 14px; font-weight: 650; color: var(--text); margin: 4px 0 6px; }
.auth-mailpill svg { color: var(--accent); }
.auth-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 24px; }
.auth-actions .btn { min-width: 240px; justify-content: center; }

/* ---------- success (invite created) additions ---------- */
.done-block { width: 100%; max-width: 460px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.done-linkrow { display: flex; flex-direction: column; gap: 6px; }
.done-linkrow .dl-label { font-size: 13px; font-weight: 700; color: var(--text); display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.done-linkrow .dl-label svg { color: var(--accent); }
.dl-desc { font-size: 12px; color: var(--text-faint); line-height: 1.45; margin: 1px 0 3px; }
.dl-tag { font-size: 10px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; padding: 2px 7px; border-radius: var(--radius-pill); white-space: nowrap; }
.dl-tag[data-who="guests"] { background: var(--surface-3); color: var(--text-dim); }
.dl-tag[data-who="me"] { background: var(--accent-soft); color: var(--accent); }
/* subtle divider so the two link blocks read as distinct, not too much */
.dl-manage { border-top: 1px solid var(--border); padding-top: 14px; margin-top: 2px; }
.done-notes { display: flex; flex-direction: column; gap: 9px; }
.dl-reveal { margin-left: auto; background: none; border: none; cursor: pointer; font: inherit; font-size: 12px; font-weight: 650; color: var(--accent); padding: 0; }
.dl-reveal:hover { text-decoration: underline; }
.done-copy {
  display: flex; align-items: center; gap: 12px; width: 100%;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: 13px 15px; color: var(--text); font-size: 13.5px; transition: border-color .15s;
}
.done-copy:hover { border-color: var(--accent-line); }
.done-copy .u-trunc { flex: 1; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.done-copy svg { color: var(--accent); flex: none; }
.done-copy[data-tone="manage"] { background: var(--accent-soft); border-color: var(--accent-line); }
.done-hint { font-size: 12.5px; color: var(--text-faint); line-height: 1.5; display: flex; gap: 8px; align-items: flex-start; }
.done-hint svg { color: var(--text-faint); flex: none; margin-top: 1px; }
.done-hint a { color: var(--accent); font-weight: 650; }
.done-hint a:hover { text-decoration: underline; }
.done-cta-sep { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.done-cta-row { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.done-cta-row .btn { flex: 1; justify-content: center; min-width: 150px; }
/* on narrow phones stack the buttons so long labels never overflow */
@media (max-width: 480px) {
  .done-cta-row { flex-direction: column; }
  .done-cta-row .btn { flex: none; min-width: 0; }
}

/* ---------- guest confirmation (richer) ---------- */
.gc-wrap { text-align: center; padding: 10px 0 4px; }
.gc-ic { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 16px; }
.gc-ic[data-r="yes"] { background: color-mix(in srgb, var(--good) 16%, transparent); color: var(--good); }
.gc-ic[data-r="maybe"] { background: var(--accent-soft); color: var(--accent); }
.gc-ic[data-r="no"] { background: var(--surface-3); color: var(--text-dim); }
.gc-title { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 6px; }
.gc-sub { font-size: 14.5px; color: var(--text-dim); line-height: 1.55; max-width: 34ch; margin: 0 auto 18px; }
.gc-recap { display: inline-flex; align-items: center; gap: 9px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 9px 16px; font-size: 14px; margin-bottom: 18px; }
.gc-recap .rbadge { margin-left: 2px; }
.gc-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.gc-actions .btn { min-width: 220px; justify-content: center; }
