@import url("./fonts.css");

/* ============================================================
   DenkOps — design system
   Neo-brutalist editorial. Warm paper, ink-black, orange accent.
   Archivo (display) + JetBrains Mono (data/labels).
   ============================================================ */

:root {
  /* Surfaces */
  --paper: #f7f7f2;
  --paper-2: #efefea;
  --panel: #eaeaea;
  --panel-2: #e8e8e3;
  --white: #ffffff;

  /* Ink */
  --ink: #1c1c1c;
  --ink-2: #191917;
  --ink-3: #22221f;

  /* Text */
  --muted: #8a8a85;
  --muted-2: #5a5a56;
  --muted-3: #4a4a46;

  /* Lines */
  --line: #1c1c1c;
  --line-soft: #e2e2dd;
  --line-soft-2: #c9c9c4;

  /* Accents */
  --orange: #ff4d00;
  --orange-2: #e64500;
  --red: #e10600;
  --green: #2e9e4f;
  --lime: #d7ff00;

  /* Type */
  --font-display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Signature hard shadow */
  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-hard-sm: 4px 4px 0 var(--ink);
  --shadow-press: 2px 2px 0 var(--ink);

  --maxw: 1360px;
  --gutter: 40px;
}

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

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--orange); color: #fff; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-tight { max-width: 1080px; margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: 96px 0; border-top: 1px solid var(--line); }
.section:first-of-type { border-top: none; }
.section-flush { padding: 0; }

@media (max-width: 860px) {
  :root { --gutter: 20px; }
  .section { padding: 60px 0; }
}

/* ---------- Mono utility text ---------- */
.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-index {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Display type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
h1.hero-title {
  font-weight: 800;
  font-size: clamp(3rem, 8.5vw, 8.2rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.section-title {
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-align: right;
}
.h-lg { font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.03em; line-height: 1.02; }
.h-md { font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em; line-height: 1.1; }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  color: var(--muted-3);
  line-height: 1.45;
  font-weight: 400;
}

/* Section header row: index left, big title right */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 48px;
}
@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-title { text-align: left; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 15px 26px;
  border: 1.5px solid var(--ink);
  background: var(--white); color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-hard-sm);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: var(--shadow-press); }
.btn-primary { background: var(--orange); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: var(--orange-2); }
.btn-ghost { background: transparent; box-shadow: none; }
.btn-ghost:hover { background: var(--ink); color: #fff; box-shadow: none; transform: none; }
.btn-sm { padding: 9px 16px; font-size: 11px; }
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; box-shadow: none; }

/* ---------- Badges / pills / dots ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid var(--line-soft-2);
  background: var(--white); color: var(--muted-3);
}
.pill-live { border-color: var(--green); color: var(--green); }
.pill-warn { border-color: var(--orange); color: var(--orange-2); }
.pill-err  { border-color: var(--red); color: var(--red); }
.pill-ink  { background: var(--ink); color: #fff; border-color: var(--ink); }
.dot { width: 8px; height: 8px; display: inline-block; }
.dot-green { background: var(--green); box-shadow: 0 0 0 0 rgba(46,158,79,0.6); animation: pulse 2.4s infinite; }
.dot-orange { background: var(--orange); }
.dot-red { background: var(--red); }
.dot-muted { background: var(--muted); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,158,79,0.5); }
  70% { box-shadow: 0 0 0 6px rgba(46,158,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,158,79,0); }
}

/* ---------- Cards / grid ---------- */
.card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 32px;
}
.card-white { background: var(--white); }
.card-pad-lg { padding: 40px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.grid-lines > * { border: 1px solid var(--line); margin: -0.5px; }
@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card-label {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 22px;
}

/* placeholder figure box (hatched) */
.figbox {
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(-45deg, transparent 0 9px, rgba(0,0,0,0.045) 9px 10px),
    var(--panel-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.05em; min-height: 120px; position: relative;
}
.figbox .figcaption {
  position: absolute; left: 16px; bottom: 12px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}

/* ---------- Terminal panel ---------- */
.terminal {
  background: var(--ink-2); color: #e9e9e4;
  font-family: var(--font-mono); font-size: 13px; line-height: 1.75;
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-hard);
}
.terminal-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px; border-bottom: 1px solid #333330;
  font-size: 12px; letter-spacing: 0.05em; color: var(--muted);
}
.terminal-body { padding: 18px 20px; overflow-x: auto; }
.terminal-body .line { white-space: pre; }
.t-green { color: #57c97e; }
.t-orange { color: #ff6a2b; }
.t-red { color: #ff6b60; }
.t-muted { color: #7a7a74; }
.t-lime { color: var(--lime); }
.t-white { color: #f3f3ee; }
.term-dot { display:inline-block; width:8px; height:8px; border-radius:50%; margin-right:8px; vertical-align: middle; }
.term-cursor { display:inline-block; width:8px; height:15px; background:#e9e9e4; vertical-align:-2px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* status foot bar inside terminal (the DenkOps prompt bar) */
.term-statusbar {
  border-top: 1px solid #333330; padding: 12px 18px;
  font-size: 12px; color: var(--muted); display: flex; gap: 22px; flex-wrap: wrap; align-items: center;
}
.term-statusbar .tag { background: var(--ink-3); color:#e9e9e4; padding: 2px 8px; }

/* ---------- Tables ---------- */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  text-align: left; font-family: var(--font-mono); font-weight: 500;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--paper);
}
.table td { padding: 15px 18px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: var(--paper-2); }
.table .mono, .table td.num { font-family: var(--font-mono); font-size: 13px; }
.table td.num { text-align: right; }
.table-bordered { border: 1px solid var(--line); }
.col-highlight { background: rgba(255,77,0,0.05); border-top: 3px solid var(--orange); }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }
.label {
  display: block; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 8px;
}
.input, .select, .textarea {
  width: 100%; font-family: var(--font-mono); font-size: 14px;
  padding: 13px 15px; border: 1.5px solid var(--ink); background: var(--white); color: var(--ink);
}
.input:focus, .select:focus, .textarea:focus { outline: none; box-shadow: var(--shadow-press); }
.input::placeholder { color: var(--muted); }

/* range slider (square orange handle) */
.range {
  -webkit-appearance: none; appearance: none; width: 100%; height: 3px;
  background: var(--ink); outline: none; margin: 20px 0;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px;
  background: var(--orange); border: 1.5px solid var(--ink); cursor: pointer;
  box-shadow: var(--shadow-press);
}
.range::-moz-range-thumb {
  width: 26px; height: 26px; background: var(--orange); border: 1.5px solid var(--ink);
  cursor: pointer; border-radius: 0;
}

/* dotted invoice separator */
.dotted-rule { border: none; border-top: 1px dashed var(--line-soft-2); margin: 14px 0; }

/* ---------- FAQ accordion ---------- */
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 26px 4px; font-family: var(--font-display); font-weight: 700; font-size: 1.35rem;
  letter-spacing: -0.02em; color: var(--ink);
}
.faq-q .sign { font-family: var(--font-mono); font-size: 1.4rem; color: var(--muted-3); transition: transform 0.2s; }
.faq-item.open .faq-q .sign { transform: rotate(45deg); color: var(--orange); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq-a-inner { padding: 0 4px 26px; color: var(--muted-3); max-width: 780px; }

/* ---------- Header / top nav (public) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,247,242,0.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 22px; height: 22px; background: var(--ink); }
.brand-mark.accent { background: var(--orange); }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.brand-ver { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.05em; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted-3);
}
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--ink); border-bottom: 2px solid var(--orange); padding-bottom: 3px; }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--ink); padding: 8px; cursor: pointer; }
.nav-toggle span { display:block; width:20px; height:2px; background: var(--ink); margin: 4px 0; }
@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column;
    background: var(--paper); border-bottom: 1px solid var(--line); gap: 0; }
  .nav.open { display: flex; }
  .nav a { padding: 16px var(--gutter); width: 100%; border-top: 1px solid var(--line-soft); }
  .nav-toggle { display: block; }
}

/* ---------- Footer ---------- */
.status-strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-3);
}
.status-strip a { color: var(--muted-3); text-decoration: underline; text-underline-offset: 3px; }
.site-footer { background: var(--ink-2); color: #cfcfc9; padding: 64px 0 40px; }
.site-footer .brand-name { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px; font-weight: 500;
}
.footer-col a, .footer-col p { display: block; color: #b6b6b0; font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-tag { color: #8f8f89; max-width: 260px; font-size: 14px; margin-top: 14px; }
.changelog-line { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.changelog-line .date { color: var(--green); }
.footer-bottom {
  margin-top: 48px; padding-top: 20px; border-top: 1px solid #333330;
  display: flex; justify-content: space-between; gap: 16px;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.05em;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   Dashboard shell (app + admin)
   ============================================================ */
.app-shell { display: grid; grid-template-columns: 248px 1fr; min-height: 100vh; }
.sidebar {
  background: var(--ink-2); color: #cfcfc9; border-right: 1px solid var(--ink);
  position: sticky; top: 0; height: 100vh; overflow-y: auto; display: flex; flex-direction: column;
}
.sidebar .brand { padding: 22px 22px; border-bottom: 1px solid #2e2e2b; }
.sidebar .brand-name { color: #fff; font-size: 18px; }
.sidebar-scope {
  padding: 14px 22px; border-bottom: 1px solid #2e2e2b;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
}
.tenant-switch {
  display:flex; align-items:center; justify-content: space-between;
  background: var(--ink-3); border: 1px solid #333330; padding: 10px 12px; margin-top: 8px; cursor: pointer;
  color: #e9e9e4; font-family: var(--font-mono); font-size: 12px;
}
.side-nav { padding: 12px 0; flex: 1; }
.side-nav .side-group {
  padding: 18px 22px 8px; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: #6a6a64;
}
.side-nav a {
  display: flex; align-items: center; gap: 12px; padding: 11px 22px;
  font-family: var(--font-mono); font-size: 13px; color: #b6b6b0; letter-spacing: 0.02em;
  border-left: 3px solid transparent;
}
.side-nav a:hover { background: var(--ink-3); color: #fff; }
.side-nav a.active { background: var(--ink-3); color: #fff; border-left-color: var(--orange); }
.side-nav a .ico { width: 16px; text-align: center; opacity: 0.85; }
.sidebar-foot { padding: 16px 22px; border-top: 1px solid #2e2e2b; font-family: var(--font-mono); font-size: 11px; color: var(--muted); }

.app-main { background: var(--paper); min-width: 0; }
.topbar {
  position: sticky; top: 0; z-index: 40; background: rgba(247,247,242,0.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 0 32px; height: 62px;
}
.topbar .crumbs { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); letter-spacing: 0.04em; }
.topbar .crumbs b { color: var(--ink); }
.topbar-actions { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 30px; height: 30px; background: var(--ink); color: #fff; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
}
.app-content { padding: 32px; max-width: 1400px; }
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.page-head h1 { font-weight: 800; font-size: 2rem; letter-spacing: -0.03em; }
.page-head .sub { color: var(--muted-2); font-size: 14px; margin-top: 4px; }

.mobile-side-toggle { display: none; }
@media (max-width: 900px) {
  .app-shell { grid-template-columns: 1fr; }
  .sidebar { position: fixed; z-index: 60; width: 248px; left: -260px; transition: left 0.2s; }
  .sidebar.open { left: 0; }
  .mobile-side-toggle { display: inline-flex; }
  .app-content { padding: 20px; }
  .topbar { padding: 0 16px; }
}

/* ---------- Stat tiles ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); margin-bottom: 28px; }
.stat {
  padding: 22px 24px; border-right: 1px solid var(--line); background: var(--paper);
}
.stat:last-child { border-right: none; }
.stat .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.stat .v { font-family: var(--font-display); font-weight: 800; font-size: 2.3rem; letter-spacing: -0.03em; line-height: 1; }
.stat .v small { font-size: 1rem; font-weight: 700; color: var(--muted-2); }
.stat .delta { font-family: var(--font-mono); font-size: 11px; margin-top: 8px; }
.delta-up { color: var(--green); } .delta-down { color: var(--red); } .delta-flat { color: var(--muted); }
@media (max-width: 900px) { .stat-row { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; } .stat { border-bottom: 1px solid var(--line); } }

/* ---------- Panels for dashboard ---------- */
.panel { border: 1px solid var(--line); background: var(--paper); margin-bottom: 24px; }
.panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 22px; border-bottom: 1px solid var(--line);
}
.panel-head h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.panel-head .mono { color: var(--muted); }
.panel-body { padding: 22px; }
.panel-body.flush { padding: 0; }

.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split-3 { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
@media (max-width: 1000px) { .split-2, .split-3 { grid-template-columns: 1fr; } }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); margin-bottom: 26px; flex-wrap: wrap; }
.tab {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 20px; color: var(--muted-2); cursor: pointer; background: none; border: none;
  border-bottom: 3px solid transparent; margin-bottom: -1px;
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--ink); border-bottom-color: var(--orange); font-weight: 700; }
.tab-panel { display: none; } .tab-panel.active { display: block; }

/* ---------- Log viewer ---------- */
.logview {
  background: var(--ink-2); color: #d7d7d1; font-family: var(--font-mono); font-size: 12.5px; line-height: 1.7;
  padding: 16px 18px; max-height: 460px; overflow: auto; border: 1px solid var(--ink);
}
.logview .lg { display: flex; gap: 14px; }
.logview .ts { color: #6a6a64; flex-shrink: 0; }
.logview .lvl { flex-shrink: 0; width: 46px; }
.lvl-info { color: #7fb3ff; } .lvl-warn { color: var(--orange); } .lvl-err { color: #ff6b60; } .lvl-ok { color: #57c97e; }
.logview .msg { color: #d7d7d1; }

/* ---------- Meters / bars ---------- */
.meter { height: 8px; background: var(--panel); border: 1px solid var(--line-soft-2); overflow: hidden; }
.meter > span { display: block; height: 100%; background: var(--ink); }
.meter.warn > span { background: var(--orange); }
.meter.ok > span { background: var(--green); }
.meter.err > span { background: var(--red); }

.kv { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; font-size: 14px; }
.kv dt { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.kv dd { font-family: var(--font-mono); font-size: 13px; text-align: right; }

/* secret rows */
.secret-row { display:flex; align-items:center; justify-content:space-between; gap:16px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.secret-row:last-child { border-bottom: none; }
.secret-key { font-family: var(--font-mono); font-size: 13px; }
.secret-val { font-family: var(--font-mono); font-size: 13px; color: var(--muted-2); letter-spacing: 0.1em; }

/* small helpers */
.flex { display: flex; } .items-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.wrap-gap { flex-wrap: wrap; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; } .mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-40 { margin-bottom: 40px; }
.muted { color: var(--muted-2); } .muted-3 { color: var(--muted-3); }
.tar { text-align: right; } .tac { text-align: center; }
.text-green { color: var(--green); } .text-orange { color: var(--orange-2); } .text-red { color: var(--red); }
.nowrap { white-space: nowrap; }
.divider { height: 1px; background: var(--line-soft); margin: 24px 0; }

/* reveal on load */
[data-reveal] { opacity: 0; transform: translateY(14px); }
.revealed [data-reveal] { opacity: 1; transform: none; transition: opacity 0.5s ease, transform 0.5s ease; }
