/* PromoYou — design system
 * Tone: professional, crisp, IBM Carbon influence. No emoji.
 * Surface = white. Page = #F4F4F4. Primary action = #0F62FE.
 * One typeface: DM Sans. One radius: 2px (3-4 only on cards).
 */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --accent:        #0F62FE;
  --accent-hover:  #0043CE;
  --accent-light:  #EDF4FF;
  --success:       #198038;
  --success-light: #DEFBE6;
  --warning:       #B28600;
  --warning-light: #FCF4D6;
  --danger:        #DA1E28;
  --danger-light:  #FFF1F1;
  --surface:       #FFFFFF;
  --surface-2:     #F4F4F4;
  --surface-3:     #E8E8E8;
  --border:        #E0E0E0;
  --border-strong: #C6C6C6;
  --text-1:        #161616;
  --text-2:        #525252;
  --text-3:        #8D8D8D;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--surface-2);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  line-height: 1.5;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

button { font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 13px; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 2px; }

/* ── Type scale ────────────────────────────────────────────────────────── */
.h-display { font-size: 48px; font-weight: 700; letter-spacing: -1.5px; line-height: 1.1; }
.h-1       { font-size: 28px; font-weight: 700; letter-spacing: -0.6px; line-height: 1.2; }
.h-2       { font-size: 20px; font-weight: 700; letter-spacing: -0.4px; }
.h-3       { font-size: 16px; font-weight: 600; letter-spacing: -0.2px; }
.body      { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.body-sm   { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.caption   { font-size: 12px; color: var(--text-3); }
.eyebrow   {
  font-size: 11px; font-weight: 600; color: var(--text-3);
  letter-spacing: 0.5px; text-transform: uppercase;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-weight: 600; font-size: 13px; letter-spacing: 0.2px;
  padding: 10px 18px; border-radius: 2px; border: 1px solid transparent;
  cursor: pointer; transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { background: transparent; color: var(--text-2); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--border-strong); color: var(--text-1); }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { filter: brightness(0.95); }
.btn-danger { background: transparent; color: var(--danger); border-color: rgba(218,30,40,0.25); }
.btn-link { background: transparent; color: var(--accent); border: none; padding: 0; }
.btn-link:hover { color: var(--accent-hover); }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-lg { padding: 13px 24px; font-size: 14px; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ── Inputs ────────────────────────────────────────────────────────────── */
.input, .textarea, .select {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 10px 12px;
  color: var(--text-1);
  outline: none;
  transition: border-color 120ms ease, background 120ms ease;
}
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--accent);
  background: var(--surface);
}
.textarea { resize: vertical; line-height: 1.65; }
.field { margin-bottom: 14px; }
.field-label {
  display: block;
  font-size: 11px; font-weight: 600; color: var(--text-3);
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 6px;
}
.field-help { font-size: 12px; color: var(--text-3); margin-top: 6px; }
.field-error { font-size: 12px; color: var(--danger); margin-top: 6px; }

/* ── Card / Surface ────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.card-pad { padding: 20px; }
.card-pad-lg { padding: 28px; }
.card-head {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

/* ── Brand mark / monogram ─────────────────────────────────────────────── */
.brand-mark {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; letter-spacing: -0.3px;
  color: var(--text-1);
}
.brand-mark__sq {
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 3px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; font-weight: 700;
}
.brand-mark--lg .brand-mark__sq { width: 28px; height: 28px; font-size: 14px; }
.brand-mark--lg { font-size: 18px; }

.monogram {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 3px;
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}
.monogram--sm { width: 26px; height: 26px; font-size: 10px; }
.monogram--lg { width: 44px; height: 44px; font-size: 14px; border-radius: 4px; }

/* ── Badge / chip ──────────────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  padding: 3px 8px; border-radius: 2px; letter-spacing: 0.3px;
}
.chip-dot {
  width: 5px; height: 5px; border-radius: 50%;
  display: inline-block;
}
.chip--critical { color: var(--danger);  background: var(--danger-light);  }
.chip--high     { color: var(--warning); background: var(--warning-light); }
.chip--medium   { color: var(--success); background: var(--success-light); }
.chip--neutral  { color: var(--text-2);  background: var(--surface-2); border: 1px solid var(--border); }
.chip--accent   { color: var(--accent);  background: var(--accent-light);  }
.chip--success  { color: var(--success); background: var(--success-light); }

/* ── Layout helpers ────────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.stack > * + * { margin-top: 14px; }
.stack-lg > * + * { margin-top: 24px; }
.row { display: flex; gap: 12px; align-items: center; }
.row-between { display: flex; align-items: center; justify-content: space-between; }
.divider { height: 1px; background: var(--border); margin: 0; border: none; }

/* ── Top app bar (auth and admin pages) ────────────────────────────────── */
.appbar {
  height: 56px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  position: sticky; top: 0; z-index: 50;
}
.appbar__left, .appbar__right { display: flex; align-items: center; gap: 20px; }
.appbar__sep { width: 1px; height: 18px; background: var(--border); }
.appbar__meta { font-size: 12px; color: var(--text-3); }
.appbar__meta strong { color: var(--accent); font-weight: 600; }

/* ── Auth shell ────────────────────────────────────────────────────────── */
.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-shell__pane {
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.auth-shell__pane--brand {
  background: var(--surface);
  border-right: 1px solid var(--border);
}
.auth-shell__pane--form {
  background: var(--surface);
}
.auth-card {
  max-width: 380px;
  margin: auto;
  width: 100%;
}
.auth-quote {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}
.auth-quote__cite {
  margin-top: 10px;
  font-size: 11px; color: var(--text-3);
  letter-spacing: 0.3px; text-transform: uppercase;
}
@media (max-width: 880px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-shell__pane--brand { display: none; }
  .auth-shell__pane { padding: 32px 24px; }
}

/* ── Marketing landing ─────────────────────────────────────────────────── */
.marketing {
  background: var(--surface);
}
.marketing-nav {
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.marketing-hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
}
.marketing-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 12px; border-radius: 100px;
  margin-bottom: 24px;
}
.marketing-hero__title {
  font-size: 56px; font-weight: 700;
  letter-spacing: -2px; line-height: 1.05;
  max-width: 760px;
  margin-bottom: 20px;
}
.marketing-hero__sub {
  font-size: 18px; color: var(--text-2);
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.marketing-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.marketing-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.marketing-section--alt {
  background: var(--surface-2);
}
.marketing-section__head {
  text-align: center;
  margin-bottom: 48px;
}
.marketing-section__head h2 {
  font-size: 32px; font-weight: 700; letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.marketing-section__head p {
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.feature-grid__item {
  background: var(--surface);
  padding: 28px;
}
.feature-grid__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--accent-light); color: var(--accent);
  border-radius: 3px;
  font-weight: 700; font-size: 13px;
  margin-bottom: 16px;
}
.feature-grid__title {
  font-size: 16px; font-weight: 600; margin-bottom: 8px;
}
.feature-grid__body {
  font-size: 13px; color: var(--text-2); line-height: 1.65;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.audience-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 16px 18px;
  font-size: 13px;
  color: var(--text-2);
}
.audience-pill strong { color: var(--text-1); display: block; margin-bottom: 4px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  display: flex; flex-direction: column;
}
.pricing-card--featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.pricing-card__name {
  font-size: 11px; font-weight: 600;
  color: var(--text-3); letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 12px;
}
.pricing-card__price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 6px;
}
.pricing-card__price strong { font-size: 36px; font-weight: 700; letter-spacing: -1px; }
.pricing-card__price span { font-size: 13px; color: var(--text-3); }
.pricing-card__sub { font-size: 13px; color: var(--text-2); margin-bottom: 20px; }
.pricing-card ul { list-style: none; margin-bottom: 24px; flex: 1; }
.pricing-card ul li {
  font-size: 13px; color: var(--text-2);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-card ul li:last-child { border-bottom: none; }
.marketing-foot {
  padding: 32px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--text-3);
}
@media (max-width: 880px) {
  .feature-grid, .audience-grid, .pricing-grid { grid-template-columns: 1fr; }
  .marketing-hero { padding: 64px 0 56px; }
  .marketing-hero__title { font-size: 38px; letter-spacing: -1.2px; }
}

/* ── Onboarding ────────────────────────────────────────────────────────── */
.onb-shell {
  min-height: 100vh;
  background: var(--surface-2);
  display: flex; flex-direction: column;
}
.onb-body { flex: 1; padding: 48px 24px 64px; }
.onb-card {
  max-width: 640px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 36px 32px;
}
.onb-card__step {
  font-size: 11px; font-weight: 600; color: var(--text-3);
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 12px;
}
.onb-card h1 {
  font-size: 24px; font-weight: 700; letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.onb-card p.lead {
  color: var(--text-2);
  margin-bottom: 28px;
  line-height: 1.65;
}
.onb-paths { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.onb-path {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease;
}
.onb-path:hover { border-color: var(--border-strong); }
.onb-path[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent-light);
}
.onb-path__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 6px;
  opacity: 0.4;
}
.onb-path[aria-pressed="true"] .onb-path__dot { opacity: 1; }
.onb-path__title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.onb-path__sub { font-size: 13px; color: var(--text-2); line-height: 1.55; }

/* ── Admin (dashboard) ─────────────────────────────────────────────────── */
.admin-shell {
  display: flex;
  height: calc(100vh - 56px);
  background: var(--surface-2);
}
.admin-sidebar {
  width: 240px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  flex-shrink: 0;
  overflow-y: auto;
}
.admin-sidebar__head {
  padding: 18px 18px 8px;
}
.admin-site {
  padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: background 100ms ease;
}
.admin-site:hover { background: var(--surface-2); }
.admin-site--active {
  background: var(--accent-light);
  border-left-color: var(--accent);
}
.admin-site__main { display: flex; align-items: center; gap: 10px; min-width: 0; }
.admin-site__name {
  font-size: 13px; font-weight: 500;
  color: var(--text-1);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.admin-site--active .admin-site__name { color: var(--accent); font-weight: 600; }
.admin-site__cat { font-size: 11px; color: var(--text-3); margin-top: 1px; }
.admin-site__count {
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-size: 10px; font-weight: 700;
  padding: 2px 7px;
  flex-shrink: 0;
}
.admin-stats {
  margin-top: auto;
  padding: 16px 18px;
  border-top: 1px solid var(--border);
}
.admin-stats__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-top: 10px;
}
.admin-stat {
  background: var(--surface-2);
  border-radius: 3px;
  padding: 10px 12px;
}
.admin-stat__num { font-size: 18px; font-weight: 700; }
.admin-stat__lbl { font-size: 10px; color: var(--text-3); margin-top: 2px; }

.admin-main {
  flex: 1; overflow-y: auto;
  display: flex; flex-direction: column;
}
.admin-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px 0;
}
.admin-header__title {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 6px;
}
.admin-header__title h1 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.4px;
}
.admin-header__domain {
  font-size: 11px; color: var(--text-3);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 2px;
}
.admin-header__meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; color: var(--text-2);
  margin-bottom: 18px;
}
.admin-header__score {
  font-size: 32px; font-weight: 700; letter-spacing: -1px;
  line-height: 1;
}
.admin-header__score-lbl {
  font-size: 10px; color: var(--text-3);
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-top: 4px;
}
.admin-tabs { display: flex; gap: 0; }
.admin-tab {
  padding: 12px 20px;
  font-size: 13px; font-weight: 500;
  color: var(--text-2);
  background: transparent; border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  margin-bottom: -1px;
  transition: color 100ms ease, border-color 100ms ease;
}
.admin-tab:hover { color: var(--text-1); }
.admin-tab--active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  font-weight: 600;
}
.admin-body {
  padding: 28px 32px;
  flex: 1;
}
.admin-content { max-width: 720px; }

/* ── Opportunity card ──────────────────────────────────────────────────── */
.opp {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.opp--expanded { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(15,98,254,0.15); }
.opp__head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
}
.opp__platform {
  width: 32px; height: 32px;
  border-radius: 3px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
  border: 1px solid;
}
.opp__main { flex: 1; min-width: 0; }
.opp__type-row {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 4px;
}
.opp__type { font-size: 13px; font-weight: 600; }
.opp__time { font-size: 11px; color: var(--text-3); }
.opp__target {
  font-size: 12px; color: var(--text-2);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.opp__score-wrap { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.opp__score {
  font-size: 18px; font-weight: 700; line-height: 1;
}
.opp__score--high { color: var(--accent); }
.opp__score-lbl {
  font-size: 9px; color: var(--text-3);
  letter-spacing: 0.4px; text-transform: uppercase;
  margin-top: 3px;
}
.opp__chev { color: var(--text-3); font-size: 11px; }
.opp__body { padding: 16px; }
.opp__why {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.opp__draft-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.approved-row {
  background: var(--success-light);
  border: 1px solid rgba(25,128,56,0.25);
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 12px;
}
.approved-row__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); flex-shrink: 0; }
.approved-row__type { font-size: 13px; font-weight: 600; color: var(--success); }
.approved-row__target {
  font-size: 12px; color: var(--text-3);
  margin-left: 10px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  display: inline-block; max-width: 360px; vertical-align: middle;
}
.approved-row__queued { font-size: 11px; color: var(--success); font-weight: 600; }

/* ── Outreach wizard ───────────────────────────────────────────────────── */
.wizard-steps {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 28px;
}
.wizard-step { display: flex; align-items: center; }
.wizard-step__inner { display: flex; align-items: center; gap: 8px; }
.wizard-step__dot {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  background: var(--surface-3); color: var(--text-3);
  border: 2px solid var(--surface-3);
}
.wizard-step__dot--done {
  background: var(--success); color: #fff; border-color: var(--success);
}
.wizard-step__dot--active {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.wizard-step__lbl { font-size: 12px; color: var(--text-3); }
.wizard-step--active .wizard-step__lbl { color: var(--text-1); font-weight: 600; }
.wizard-step__line {
  width: 32px; height: 1px;
  background: var(--border);
  margin: 0 10px;
}

/* ── Recipient table ───────────────────────────────────────────────────── */
.r-table { width: 100%; border-collapse: collapse; }
.r-table thead tr { background: var(--surface-2); }
.r-table th {
  padding: 11px 16px;
  font-size: 10px; font-weight: 600;
  color: var(--text-3); text-align: left;
  letter-spacing: 0.5px; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.r-table tbody tr {
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 100ms ease, opacity 100ms ease;
}
.r-table tbody tr:not(.is-deselected):hover { background: var(--surface-2); }
.r-table tbody tr.is-deselected { background: var(--surface-2); opacity: 0.55; }
.r-table td { padding: 12px 16px; font-size: 13px; vertical-align: middle; }
.r-table .mono { font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace; font-size: 12px; color: var(--accent); }
.r-check {
  width: 16px; height: 16px;
  border: 2px solid var(--border);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.r-check--on { background: var(--accent); border-color: var(--accent); color: #fff; }
.r-bar {
  flex: 1; height: 4px;
  background: var(--surface-3);
  border-radius: 2px; overflow: hidden;
}
.r-bar__fill { height: 100%; border-radius: 2px; }

/* ── Done state ────────────────────────────────────────────────────────── */
.done-card {
  text-align: center;
  padding: 56px 32px;
}
.done-card__seal {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--success-light);
  border: 2px solid rgba(25,128,56,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--success);
}

/* ── Utility ───────────────────────────────────────────────────────────── */
.text-muted { color: var(--text-3); }
.text-2 { color: var(--text-2); }
.flex-1 { flex: 1; }
.gap-6 { gap: 6px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.center { text-align: center; }

/* ── Icon (inline svg sized to text) ───────────────────────────────────── */
.ic { width: 14px; height: 14px; flex-shrink: 0; display: inline-block; vertical-align: middle; }
.ic-lg { width: 18px; height: 18px; }
.ic-xl { width: 24px; height: 24px; }
