/* ============ Design tokens ============ */
:root {
  --bg: #08080a;
  --bg-grad: radial-gradient(1200px 800px at 50% -20%, rgba(255, 51, 102, 0.08), transparent 60%);
  --surface: #0e0e10;
  --surface-2: #131316;
  --panel: rgba(255, 255, 255, 0.018);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f3f3f5;
  --text-soft: #b9b9c2;
  --text-muted: #74747f;
  --accent: #ff3366;
  --accent-hover: #ff4d7a;
  --accent-soft: rgba(255, 51, 102, 0.1);
  --accent-border: rgba(255, 51, 102, 0.35);
  --success: #34d399;
  --warning: #fbbf24;
  --info: #60a5fa;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --sans: 'Geist', -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  min-height: 100vh;
}

/* Texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--bg-grad);
  pointer-events: none;
  z-index: 0;
}

#root { position: relative; z-index: 1; }

button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ============ Typography ============ */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.eyebrow.muted { color: var(--text-muted); }

h1, h2, h3 { font-weight: 600; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(40px, 5.4vw, 64px); line-height: 1.05; }
h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1; }
h3 { font-size: 18px; }

p { margin: 0; }
.lead { color: var(--text-soft); font-size: 15px; max-width: 56ch; }
.muted { color: var(--text-muted); }
.mono { font-family: var(--mono); }

/* ============ Layout ============ */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-tight { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.divider { height: 1px; background: var(--border); width: 100%; }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 10, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; letter-spacing: -0.01em;
  font-size: 15px;
}
.brand-mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), #b91d4a);
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 4px;
  border-radius: 3px;
  background: var(--bg);
}
.nav-links { display: flex; gap: 28px; font-size: 13px; color: var(--text-soft); }
.nav-links a:hover { color: var(--text); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--panel); border-color: var(--text-muted); }
.btn-solid {
  background: #fff;
  color: #000;
}
.btn-solid:hover { background: #e8e8e8; }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ============ Cards ============ */
.card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--border-strong); }
.card-accent {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, rgba(255,51,102,0.04), transparent 60%);
}
.card-elev {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
}

/* ============ Reveal animation ============ */
/* Enhancement only — content is visible by default and animates if JS adds .reveal-armed */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1);
}
html.js-ready .reveal:not(.in) {
  opacity: 0;
  transform: translateY(14px);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Hero ============ */
.hero { padding: 120px 0 64px; text-align: center; position: relative; }
.hero h1 { margin-top: 18px; }
.hero .lead { margin: 22px auto 32px; }

/* ============ Feature grids ============ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .grid-3 { grid-template-columns: 1fr; } }

.feature-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
}
.feature-body { color: var(--text-soft); font-size: 13.5px; line-height: 1.6; }

.numbered-h {
  display: flex; align-items: baseline; gap: 12px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.numbered-h .n {
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 500;
}

/* ============ Device card ============ */
.device-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .device-grid { grid-template-columns: 1fr; gap: 32px; } }
.device-frame {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  background: linear-gradient(180deg, #0c0c0e, #08080a);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--text); font-weight: 500; }
.spec-value { font-family: var(--mono); color: var(--text-muted); font-size: 12.5px; }

/* ============ Reserve card ============ */
.reserve-card {
  border: 1px solid var(--accent-border);
  background: linear-gradient(180deg, rgba(255,51,102,0.05), rgba(255,51,102,0.01));
  border-radius: 14px;
  padding: 40px;
  text-align: center;
}
.price-row {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; margin: 22px 0;
  flex-wrap: wrap;
}
.price-block { display: flex; flex-direction: column; align-items: center; }
.price-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.price-amount { font-size: 36px; font-weight: 600; letter-spacing: -0.02em; }
.price-amount .unit { font-size: 14px; color: var(--text-muted); margin-left: 6px; font-weight: 400; }
.price-pill {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 10px;
  padding: 14px 18px;
}
.price-pill .price-eyebrow { color: var(--accent); }
.plus { color: var(--text-muted); font-size: 28px; font-weight: 300; }

.retail-strip {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-soft);
}
.retail-strip b { color: var(--text); font-weight: 500; }

/* ============ Phase timeline ============ */
.phase-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 18px;
}
@media (max-width: 720px) { .phase-grid { grid-template-columns: 1fr; } }
.phase-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  position: relative;
  background: var(--panel);
}
.phase-card.active {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255,51,102,0.06), transparent);
}
.phase-card .badge {
  position: absolute; top: -10px; left: 16px;
  background: var(--accent); color: #fff;
  font-size: 10px; letter-spacing: 0.14em;
  padding: 4px 8px; border-radius: 4px; font-weight: 500;
}
.phase-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.phase-name.active { color: var(--accent); }
.phase-card.dim .phase-name, .phase-card.dim .phase-meta, .phase-card.dim .phase-reward {
  color: var(--text-muted);
}
.phase-meta { font-size: 12px; color: var(--text-soft); margin-bottom: 14px; font-family: var(--mono); }
.phase-reward { font-size: 12.5px; color: var(--text-soft); line-height: 1.5; }

/* ============ Multiplier grid ============ */
.mult-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-top: 16px;
}
@media (max-width: 720px) { .mult-grid { grid-template-columns: repeat(2, 1fr); } }
.mult-cell {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  text-align: center;
  background: var(--panel);
}
.mult-cell.peak {
  border-color: var(--accent);
  background: rgba(255,51,102,0.05);
}
.mult-value { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; }
.mult-cell.peak .mult-value { color: var(--accent); }
.mult-label { font-family: var(--mono); font-size: 10px; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.12em; text-transform: uppercase; }

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 60px;
  margin-top: 60px;
}
.footer-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text-muted);
  flex-wrap: wrap; gap: 12px;
}

/* ============ Modal ============ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fade 0.2s ease;
}
@keyframes fade { from { opacity: 0; } }
.modal {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  width: 100%;
  max-width: 460px;
  padding: 28px;
  animation: pop 0.3s cubic-bezier(.2,.8,.2,1);
}
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(0.97); } }
.modal-h {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.modal-title { font-size: 18px; font-weight: 600; }
.close-btn {
  background: transparent; border: none; color: var(--text-muted);
  width: 32px; height: 32px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.close-btn:hover { background: var(--panel); color: var(--text); }

.wallet-list { display: flex; flex-direction: column; gap: 8px; }
.wallet-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel);
  transition: all 0.15s;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  width: 100%;
}
.wallet-row:hover {
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.03);
}
.wallet-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  color: #000;
}
.wallet-meta { flex: 1; }
.wallet-name { font-weight: 500; font-size: 14px; }
.wallet-desc { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }
.wallet-row .chev { color: var(--text-muted); }

.deposit-summary {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  background: var(--panel);
  margin: 16px 0;
}
.dep-row {
  display: flex; justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
}
.dep-row.total {
  border-top: 1px solid var(--border);
  margin-top: 8px; padding-top: 12px;
  font-weight: 500;
}
.dep-row .v { font-family: var(--mono); }

/* Toast */
.toast-wrap {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 200;
  display: flex; flex-direction: column; gap: 8px;
}
.toast {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 13px;
  display: flex; align-items: center; gap: 10px;
  animation: toast-in 0.3s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
}
.toast .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }

/* ============ Dashboard ============ */
.dash-shell { min-height: 100vh; display: flex; flex-direction: column; }
.dash-content { max-width: 1180px; margin: 0 auto; padding: 32px 24px 80px; width: 100%; }

.dash-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap; gap: 16px;
}
.dash-title { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; }
.dash-sub { color: var(--text-soft); font-size: 13.5px; margin-top: 4px; }

.wallet-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-soft);
  background: var(--panel);
}
.wallet-chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.18);
}

.tabs {
  display: flex; gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  overflow-x: auto;
}
.tab {
  background: transparent; border: none; color: var(--text-muted);
  padding: 12px 16px;
  font-size: 13.5px; font-weight: 500;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
}
.tab:hover { color: var(--text-soft); }
.tab.active { color: var(--text); border-bottom-color: var(--accent); }

/* Stat cards */
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 880px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  background: var(--panel);
}
.stat-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px;
}
.stat-value {
  font-size: 26px; font-weight: 600; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat-delta {
  margin-top: 8px; font-size: 12px; color: var(--success);
  font-family: var(--mono);
}
.stat-delta.neutral { color: var(--text-muted); }

/* Section with title */
.panel {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  overflow: hidden;
}
.panel-h {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.panel-title { font-size: 15px; font-weight: 600; }
.panel-sub { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }
.panel-body { padding: 22px; }
.panel-body.flush { padding: 0; }

/* Progress bar */
.progress {
  height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
}
.progress > .bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ff6688);
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(.2,.8,.2,1);
}

/* Earning rate live */
.earn-live {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--success);
  display: inline-flex; align-items: center; gap: 6px;
}
.earn-live .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Table */
.tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
.tbl th {
  text-align: left;
  padding: 12px 22px;
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  cursor: pointer;
  user-select: none;
}
.tbl th:hover { color: var(--text-soft); }
.tbl th .sort-arrow { font-size: 9px; margin-left: 4px; }
.tbl td {
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  font-variant-numeric: tabular-nums;
}
.tbl tr:last-child td { border-bottom: none; }
.tbl tr:hover td { background: rgba(255,255,255,0.015); }
.tbl .col-amt { font-family: var(--mono); }
.tbl .pos { color: var(--success); }
.tbl .neg { color: var(--accent); }

.chip {
  display: inline-flex; align-items: center;
  padding: 3px 8px; border-radius: 4px;
  font-size: 11px; font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.chip-earn { background: rgba(52, 211, 153, 0.1); color: var(--success); }
.chip-bonus { background: rgba(255, 51, 102, 0.1); color: var(--accent); }
.chip-ref { background: rgba(96, 165, 250, 0.1); color: var(--info); }
.chip-deposit { background: rgba(251, 191, 36, 0.1); color: var(--warning); }

.filter-row {
  display: flex; gap: 8px; align-items: center;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-soft);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-family: var(--mono);
}
.filter-btn:hover { border-color: var(--border-strong); color: var(--text); }
.filter-btn.active {
  background: var(--panel);
  color: var(--text);
  border-color: var(--border-strong);
}
.search-input {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  color: var(--text);
  font-size: 12.5px;
  font-family: var(--mono);
  width: 180px;
}
.search-input:focus { outline: none; border-color: var(--border-strong); }

/* Referral panel */
.ref-link-box {
  display: flex; gap: 8px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 4px 4px 14px;
  align-items: center;
}
.ref-link-box code {
  flex: 1; font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-soft);
  overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap;
}
.copy-btn {
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 12px;
}
.copy-btn:hover { background: var(--surface-2); }

.ref-row {
  display: grid;
  grid-template-columns: 32px 1fr auto auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.ref-row:last-child { border-bottom: none; }
.ref-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 11px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  color: #000;
}
.ref-addr { font-family: var(--mono); font-size: 12.5px; color: var(--text-soft); }
.ref-name { font-weight: 500; font-size: 13.5px; }
.ref-status {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.ref-status.deposited { color: var(--success); }
.ref-status.pending { color: var(--warning); }
.ref-points { font-family: var(--mono); color: var(--text); }
.ref-date { font-family: var(--mono); font-size: 11.5px; color: var(--text-muted); }

/* Withdraw screen */
.withdraw-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 16px;
}
@media (max-width: 880px) { .withdraw-grid { grid-template-columns: 1fr; } }
.balance-card {
  border: 1px solid var(--accent-border);
  border-radius: 14px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,51,102,0.06), transparent);
}
.balance-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted);
}
.balance-amount {
  font-size: 52px; font-weight: 600; letter-spacing: -0.03em;
  margin: 12px 0 6px;
  font-variant-numeric: tabular-nums;
}
.balance-amount .lo { color: var(--text-muted); font-weight: 400; }
.balance-sub { color: var(--text-soft); font-size: 13px; margin-bottom: 22px; }

.claim-input {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.claim-input input {
  flex: 1; background: transparent; border: none; color: var(--text);
  font-family: var(--mono); font-size: 22px; outline: none;
  font-variant-numeric: tabular-nums;
}
.claim-max {
  background: transparent; color: var(--accent); border: none;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 4px 8px;
}

.exchange-note {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 12.5px; color: var(--text-soft);
  display: flex; justify-content: space-between;
  margin-bottom: 18px;
}

/* Confetti */
.confetti-piece {
  position: fixed;
  width: 8px; height: 14px;
  top: -20px;
  z-index: 300;
  pointer-events: none;
  animation: fall 2.4s linear forwards;
}
@keyframes fall {
  to { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* Stop building section */
.section-dark { background: #050507; padding: 96px 0; }
.use-cases { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.use-case {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  background: var(--panel);
}
.use-case .uc-title {
  color: var(--accent); font-size: 14px; font-weight: 600;
  margin-bottom: 10px;
}
.use-case .uc-body {
  color: var(--text-soft); font-size: 13.5px; line-height: 1.6;
}

/* Highlight inline tag */
.tag {
  display: inline-block;
  background: rgba(255,51,102,0.1);
  color: var(--accent);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-family: var(--mono);
}
