/* ============================================================
   jcmshorts — production pipeline
   Design system. No external requests: system fonts only.
   ============================================================ */

:root {
  --bg:            #0d0f12;
  --bg-2:          #14171c;
  --bg-3:          #1b1f26;
  --bg-4:          #232830;
  --line:          #2b313b;
  --line-2:        #3a424f;
  --txt:           #e7eaef;
  --txt-2:         #a3acbb;
  --txt-3:         #6d7788;
  --accent:        #f0a63c;
  --accent-2:      #ffc36b;
  --accent-dim:    rgba(240,166,60,.14);
  --blue:          #5aa9e6;
  --green:         #4fbf7f;
  --red:           #e5564b;
  --purple:        #a97bd6;
  --pink:          #e372a4;
  --teal:          #45c2b1;
  --radius:        9px;
  --radius-sm:     6px;
  --shadow:        0 10px 34px rgba(0,0,0,.5);
  --mono:          "SF Mono", "Courier New", Courier, monospace;
  --script:        "Courier Final Draft", "Courier Prime", "Courier New", Courier, monospace;
  --sans:          -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  --nav-w:         238px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--txt);
  font-family: var(--sans); font-size: 14px; line-height: 1.5;
  -webkit-font-smoothing: antialiased; overflow: hidden;
}
a { color: var(--accent); text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--bg-4); border-radius: 6px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--line-2); }

/* ---------- Layout ---------- */
#app { display: flex; height: 100vh; }

#nav {
  width: var(--nav-w); flex: 0 0 var(--nav-w); background: var(--bg-2);
  border-right: 1px solid var(--line); display: flex; flex-direction: column; overflow: hidden;
}
.brand {
  padding: 15px 16px 13px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 9px; cursor: pointer;
}
.brand .mark {
  width: 26px; height: 26px; border-radius: 6px; flex: 0 0 26px;
  background: linear-gradient(145deg, var(--accent), #d4761c);
  display: grid; place-items: center; color: #1a1206; font-weight: 800; font-size: 13px;
}
.brand h1 { font-size: 14px; margin: 0; letter-spacing: .2px; font-weight: 650; }
.brand .sub { font-size: 10.5px; color: var(--txt-3); letter-spacing: .5px; text-transform: uppercase; }

.proj-switch {
  padding: 9px 12px; border-bottom: 1px solid var(--line); font-size: 12px;
}
.proj-switch select {
  width: 100%; background: var(--bg-3); border: 1px solid var(--line); color: var(--txt);
  border-radius: var(--radius-sm); padding: 6px 8px; font-size: 12px;
}

#nav-scroll { flex: 1; overflow-y: auto; padding: 8px 0 24px; }
.nav-group { margin-top: 12px; }
.nav-group > h3 {
  font-size: 9.5px; text-transform: uppercase; letter-spacing: 1.1px; color: var(--txt-3);
  margin: 0 0 4px; padding: 0 16px; font-weight: 700;
}
.nav-item {
  display: flex; align-items: center; gap: 9px; padding: 6px 16px; cursor: pointer;
  color: var(--txt-2); font-size: 13px; border-left: 2px solid transparent; user-select: none;
}
.nav-item:hover { background: var(--bg-3); color: var(--txt); }
.nav-item.active { background: var(--accent-dim); color: var(--accent-2); border-left-color: var(--accent); font-weight: 550; }
.nav-item .ico { width: 15px; text-align: center; font-size: 13px; opacity: .9; flex: 0 0 15px; }
.nav-item .count { margin-left: auto; font-size: 10.5px; color: var(--txt-3); font-variant-numeric: tabular-nums; }

/* ---------- Main ---------- */
#main { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-width: 0; }
#topbar {
  height: 50px; flex: 0 0 50px; border-bottom: 1px solid var(--line); background: var(--bg-2);
  display: flex; align-items: center; gap: 10px; padding: 0 16px;
}
#topbar h2 { font-size: 15px; margin: 0; font-weight: 600; }
#topbar .crumb { color: var(--txt-3); font-size: 12px; }
#topbar .spacer { flex: 1; }
#view { flex: 1; overflow-y: auto; overflow-x: hidden; }
.pad { padding: 20px 22px 60px; }
.pad-narrow { max-width: 940px; }

/* ---------- Buttons ---------- */
.btn {
  background: var(--bg-3); border: 1px solid var(--line-2); color: var(--txt);
  padding: 6px 11px; border-radius: var(--radius-sm); cursor: pointer; font-size: 12.5px;
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; transition: .12s;
}
.btn:hover { background: var(--bg-4); border-color: #4a5464; }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #1a1206; font-weight: 600; }
.btn.primary:hover { background: var(--accent-2); }
.btn.ghost { background: transparent; border-color: transparent; color: var(--txt-2); }
.btn.ghost:hover { background: var(--bg-3); color: var(--txt); }
.btn.danger { color: var(--red); border-color: rgba(229,86,75,.4); }
.btn.danger:hover { background: rgba(229,86,75,.14); }
.btn.sm { padding: 3px 8px; font-size: 11.5px; }
.btn:disabled { opacity: .4; cursor: not-allowed; }
.btn-group { display: inline-flex; }
.btn-group .btn { border-radius: 0; border-right-width: 0; }
.btn-group .btn:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.btn-group .btn:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; border-right-width: 1px; }
.btn-group .btn.on { background: var(--accent-dim); color: var(--accent-2); border-color: var(--accent); }

/* ---------- Forms ---------- */
.field { margin-bottom: 13px; }
.field > label {
  display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: .7px;
  color: var(--txt-3); margin-bottom: 4px; font-weight: 650;
}
.inp, select.inp, textarea.inp {
  width: 100%; background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 7px 9px; color: var(--txt); outline: none; transition: .12s;
}
.inp:focus { border-color: var(--accent); background: var(--bg-2); }
textarea.inp { resize: vertical; min-height: 74px; line-height: 1.55; }
.inp::placeholder { color: var(--txt-3); }
.row { display: flex; gap: 12px; }
.row > * { flex: 1; min-width: 0; }
.hint { font-size: 11.5px; color: var(--txt-3); margin-top: 4px; }
.check { display: flex; align-items: center; gap: 7px; cursor: pointer; font-size: 13px; }
input[type=checkbox] { accent-color: var(--accent); width: 15px; height: 15px; cursor: pointer; }
input[type=color] { padding: 2px; height: 32px; cursor: pointer; }
input[type=range] { accent-color: var(--accent); }

/* ---------- Cards / panels ---------- */
.card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 15px;
}
.card > h3, .sec-h {
  font-size: 12px; text-transform: uppercase; letter-spacing: .8px; color: var(--txt-2);
  margin: 0 0 11px; font-weight: 700;
}
.grid { display: grid; gap: 13px; }
.g2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 1100px) { .g4 { grid-template-columns: repeat(2,minmax(0,1fr)); } .g3 { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 760px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.stat { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 13px 15px; }
.stat .k { font-size: 10.5px; text-transform: uppercase; letter-spacing: .8px; color: var(--txt-3); font-weight: 650; }
.stat .v { font-size: 25px; font-weight: 680; margin-top: 3px; letter-spacing: -.5px; font-variant-numeric: tabular-nums; }
.stat .n { font-size: 11.5px; color: var(--txt-3); margin-top: 2px; }

/* ---------- Table ---------- */
.tbl-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: auto; background: var(--bg-2); }
table.tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
table.tbl th {
  text-align: left; padding: 8px 11px; background: var(--bg-3); color: var(--txt-3);
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .7px; font-weight: 700;
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 2; white-space: nowrap; cursor: pointer;
}
table.tbl th:hover { color: var(--txt); }
table.tbl td { padding: 7px 11px; border-bottom: 1px solid var(--line); vertical-align: middle; }
table.tbl tr:last-child td { border-bottom: none; }
table.tbl tbody tr:hover { background: var(--bg-3); }
table.tbl tbody tr.sel { background: var(--accent-dim); }
.td-main { font-weight: 550; }
.empty { padding: 48px 20px; text-align: center; color: var(--txt-3); }
.empty .big { font-size: 30px; margin-bottom: 8px; opacity: .5; }

/* ---------- Chips / pills ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 4px; padding: 1px 7px; border-radius: 20px;
  font-size: 11px; background: var(--bg-4); color: var(--txt-2); white-space: nowrap; font-weight: 550;
}
.chip.dot::before { content:''; width:6px; height:6px; border-radius:50%; background: currentColor; }
.chip.amber  { background: rgba(240,166,60,.16); color: var(--accent-2); }
.chip.green  { background: rgba(79,191,127,.16); color: var(--green); }
.chip.red    { background: rgba(229,86,75,.16);  color: var(--red); }
.chip.blue   { background: rgba(90,169,230,.16); color: var(--blue); }
.chip.purple { background: rgba(169,123,214,.16);color: var(--purple); }
.chip.pink   { background: rgba(227,114,164,.16);color: var(--pink); }
.chip.teal   { background: rgba(69,194,177,.16); color: var(--teal); }
.chip.gray   { background: var(--bg-4); color: var(--txt-3); }
.chips { display: flex; flex-wrap: wrap; gap: 4px; }

/* ---------- Toolbar ---------- */
.toolbar { display: flex; align-items: center; gap: 8px; margin-bottom: 13px; flex-wrap: wrap; }
.toolbar .search {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 6px 10px; min-width: 190px; outline: none;
}
.toolbar .search:focus { border-color: var(--accent); }
.toolbar .spacer { flex: 1; }
select.mini {
  background: var(--bg-3); border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 5px 8px; font-size: 12.5px; cursor: pointer;
}

/* ---------- Drawer (detail editor) ---------- */
#drawer-scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 50;
  opacity: 0; pointer-events: none; transition: .18s;
}
#drawer-scrim.open { opacity: 1; pointer-events: auto; }
#drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 560px; max-width: 94vw; z-index: 51;
  background: var(--bg-2); border-left: 1px solid var(--line); box-shadow: var(--shadow);
  transform: translateX(100%); transition: transform .2s cubic-bezier(.3,.8,.4,1);
  display: flex; flex-direction: column;
}
#drawer.open { transform: none; }
#drawer.wide { width: 860px; }
.drawer-head {
  padding: 13px 16px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px;
}
.drawer-head h3 { margin: 0; font-size: 15px; flex: 1; }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px; }
.drawer-foot { padding: 11px 16px; border-top: 1px solid var(--line); display: flex; gap: 8px; align-items: center; }

/* ---------- Modal ---------- */
#modal-scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 60;
  display: none; place-items: center; padding: 24px;
}
#modal-scrim.open { display: grid; }
.modal {
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 12px;
  width: 480px; max-width: 100%; max-height: 88vh; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.modal.lg { width: 780px; }
.modal-head { padding: 14px 17px; border-bottom: 1px solid var(--line); font-weight: 600; }
.modal-body { padding: 17px; overflow-y: auto; }
.modal-foot { padding: 12px 17px; border-top: 1px solid var(--line); display: flex; gap: 8px; justify-content: flex-end; }

/* ---------- Toast ---------- */
#toasts { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 90; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast {
  background: var(--bg-4); border: 1px solid var(--line-2); color: var(--txt);
  padding: 9px 15px; border-radius: 22px; font-size: 13px; box-shadow: var(--shadow);
  animation: toastIn .2s ease; display: flex; align-items: center; gap: 8px;
}
.toast.err { border-color: var(--red); color: #ffb3ad; }
.toast.ok { border-color: var(--green); }
@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 2px; border-bottom: 1px solid var(--line); margin-bottom: 16px; overflow-x: auto; }
.tab {
  padding: 8px 13px; cursor: pointer; color: var(--txt-3); font-size: 13px;
  border-bottom: 2px solid transparent; white-space: nowrap; font-weight: 550;
}
.tab:hover { color: var(--txt); }
.tab.active { color: var(--accent-2); border-bottom-color: var(--accent); }

/* ---------- Script editor ---------- */
.script-wrap { display: flex; height: 100%; overflow: hidden; }
.script-side {
  width: 250px; flex: 0 0 250px; border-right: 1px solid var(--line); background: var(--bg-2);
  overflow-y: auto; padding: 10px 0;
}
.script-side .sh {
  font-size: 9.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--txt-3);
  padding: 8px 14px 5px; font-weight: 700;
}
.scene-nav {
  padding: 6px 14px; cursor: pointer; border-left: 2px solid transparent; font-size: 12px; color: var(--txt-2);
}
.scene-nav:hover { background: var(--bg-3); color: var(--txt); }
.scene-nav.active { background: var(--accent-dim); border-left-color: var(--accent); color: var(--accent-2); }
.scene-nav .n { font-family: var(--mono); font-size: 10.5px; color: var(--txt-3); margin-right: 6px; }

.script-main { flex: 1; overflow-y: auto; background: #23262c; padding: 26px 0 200px; }
.page {
  width: 8.5in; min-height: 11in; margin: 0 auto 22px; background: #f4f1ea; color: #14161a;
  padding: 1in 1in 1in 1.5in; box-shadow: 0 4px 22px rgba(0,0,0,.45);
  font-family: var(--script); font-size: 12pt; line-height: 1; position: relative;
}
.script-editor { outline: none; }
.script-editor > div { min-height: 1em; white-space: pre-wrap; word-wrap: break-word; }
.el-scene    { text-transform: uppercase; font-weight: bold; margin: 1em 0 0; }
.el-action   { margin: 1em 0 0; }
.el-character{ margin: 1em 0 0 2.2in; text-transform: uppercase; }
.el-paren    { margin: 0 0 0 1.6in; width: 2.3in; }
.el-dialogue { margin: 0 0 0 1.1in; width: 3.4in; }
.el-transition { text-transform: uppercase; text-align: right; margin: 1em 0 0; }
.el-shot     { text-transform: uppercase; margin: 1em 0 0; }
.el-note     { color: #8a6d2f; font-style: italic; margin: 1em 0 0; }
.el-title    { text-align: center; margin: 1em 0 0; font-weight: bold; }
.script-editor > div.cur { background: rgba(240,166,60,.16); }
.page-num { position: absolute; top: .5in; right: 1in; font-size: 12pt; color: #14161a; }
.script-status {
  height: 30px; border-top: 1px solid var(--line); background: var(--bg-2); display: flex;
  align-items: center; gap: 14px; padding: 0 14px; font-size: 11.5px; color: var(--txt-3);
}
.script-status b { color: var(--txt-2); font-weight: 600; }

/* ---------- Stripboard ---------- */
.strip {
  display: flex; align-items: stretch; border: 1px solid rgba(0,0,0,.35); border-radius: 3px;
  margin-bottom: 2px; font-size: 12px; color: #14161a; overflow: hidden; cursor: grab; min-height: 30px;
}
.strip:active { cursor: grabbing; }
.strip.dragging { opacity: .4; }
.strip > div { padding: 5px 7px; display: flex; align-items: center; border-right: 1px solid rgba(0,0,0,.18); }
.strip .s-num { width: 46px; font-family: var(--mono); font-weight: 700; flex: 0 0 46px; }
.strip .s-ie  { width: 42px; flex: 0 0 42px; font-weight: 700; font-size: 11px; }
.strip .s-loc { flex: 1; min-width: 0; }
.strip .s-loc span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; width: 100%; }
.strip .s-td  { width: 60px; flex: 0 0 60px; font-size: 11px; }
.strip .s-cast{ width: 130px; flex: 0 0 130px; font-family: var(--mono); font-size: 10.5px; }
.strip .s-pg  { width: 46px; flex: 0 0 46px; justify-content: flex-end; font-family: var(--mono); border-right: none; }
.strip-day {
  background: #14171c; color: var(--accent-2); border: 1px dashed var(--accent);
  padding: 6px 10px; border-radius: 4px; margin: 12px 0 6px; display: flex; align-items: center; gap: 10px; font-size: 12.5px;
}
.strip-day .d-title { font-weight: 700; }
.strip-day .d-meta { color: var(--txt-3); font-size: 11.5px; margin-left: auto; }
.strip-di { background: #f2efe6; } .strip-de { background: #d9e8f5; }
.strip-ni { background: #f0e3b8; } .strip-ne { background: #b9c9dd; }
.drop-zone { min-height: 34px; border-radius: 4px; }
.drop-zone.over { background: var(--accent-dim); outline: 1px dashed var(--accent); }

/* ---------- Board / kanban ---------- */
.board { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 12px; align-items: flex-start; }
.board-col { flex: 0 0 268px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; }
.board-col h4 { margin: 0 0 9px; font-size: 11px; text-transform: uppercase; letter-spacing: .7px; color: var(--txt-3); display: flex; }
.board-col h4 .c { margin-left: auto; }
.board-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 9px 10px; margin-bottom: 7px; cursor: pointer; font-size: 13px;
}
.board-card:hover { border-color: var(--line-2); background: var(--bg-4); }
.board-card .t { font-weight: 550; margin-bottom: 3px; }
.board-card .m { font-size: 11px; color: var(--txt-3); }

/* ---------- Misc ---------- */
.bar { height: 6px; background: var(--bg-4); border-radius: 4px; overflow: hidden; }
.bar > i { display: block; height: 100%; background: var(--accent); border-radius: 4px; transition: width .3s; }
.bar.green > i { background: var(--green); }
.bar.red > i { background: var(--red); }
.muted { color: var(--txt-3); }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.num { font-variant-numeric: tabular-nums; }
.right { text-align: right; }
.center { text-align: center; }
.nowrap { white-space: nowrap; }
.divider { height: 1px; background: var(--line); margin: 16px 0; }
.swatch { width: 100%; height: 46px; border-radius: 6px; border: 1px solid var(--line); }
.thumb {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 6px;
  background: var(--bg-4); border: 1px solid var(--line); display: block;
}
.drop-target { border: 1.5px dashed var(--line-2); border-radius: var(--radius); padding: 22px; text-align: center; color: var(--txt-3); cursor: pointer; }
.drop-target.over { border-color: var(--accent); background: var(--accent-dim); color: var(--accent-2); }
.list-reorder { cursor: grab; color: var(--txt-3); user-select: none; }
.kbd { font-family: var(--mono); font-size: 11px; background: var(--bg-4); border: 1px solid var(--line-2); border-bottom-width: 2px; border-radius: 4px; padding: 1px 5px; }
.link { color: var(--accent); cursor: pointer; }
.link:hover { text-decoration: underline; }
.tiny { font-size: 11px; }
.warn-box { background: rgba(229,86,75,.1); border: 1px solid rgba(229,86,75,.35); border-radius: var(--radius-sm); padding: 10px 12px; font-size: 12.5px; color: #ffc0ba; }
.ok-box { background: rgba(79,191,127,.09); border: 1px solid rgba(79,191,127,.3); border-radius: var(--radius-sm); padding: 10px 12px; font-size: 12.5px; }

/* ---------- Printable documents ---------- */
#print-root { display: none; }
.doc {
  background: #fff; color: #000; width: 8.5in; min-height: 11in; padding: .5in .5in;
  margin: 0 auto 20px; font-family: var(--sans); font-size: 9.5pt; line-height: 1.35;
}
.doc.script-doc { font-family: var(--script); font-size: 12pt; padding: 1in 1in 1in 1.5in; line-height: 1; }
.doc h1 { font-size: 15pt; margin: 0 0 2px; }
.doc h2 { font-size: 11pt; margin: 12px 0 5px; border-bottom: 1.5px solid #000; padding-bottom: 2px; text-transform: uppercase; letter-spacing: .5px; }
.doc table { width: 100%; border-collapse: collapse; font-size: 8.5pt; }
.doc table th, .doc table td { border: .5pt solid #666; padding: 3px 5px; text-align: left; vertical-align: top; }
.doc table th { background: #e4e4e4; text-transform: uppercase; font-size: 7.5pt; letter-spacing: .4px; }
.doc .hdr-band { background: #000; color: #fff; padding: 6px 9px; margin: 0 0 8px; display: flex; align-items: center; }
.doc .hdr-band h1 { color: #fff; }
.doc .two { display: flex; gap: 14px; }
.doc .two > * { flex: 1; }
.doc .kv { display: flex; font-size: 9pt; padding: 1px 0; }
.doc .kv b { width: 105px; flex: 0 0 105px; text-transform: uppercase; font-size: 7.5pt; letter-spacing: .4px; padding-top: 1.5px; }
.doc .box { border: 1pt solid #000; padding: 6px 8px; margin-bottom: 8px; }
.doc .big-time { font-size: 20pt; font-weight: 800; line-height: 1; }
.doc .foot { margin-top: 10px; font-size: 7.5pt; color: #444; border-top: .5pt solid #999; padding-top: 4px; }

@media print {
  body { overflow: visible; background: #fff; }
  #nav, #topbar, #drawer, #drawer-scrim, #modal-scrim, #toasts, .no-print { display: none !important; }
  #app { display: block; height: auto; }
  #view { overflow: visible; }
  #print-root { display: block !important; }
  #print-root .doc { box-shadow: none; margin: 0; page-break-after: always; width: auto; min-height: 0; }
  #print-root .doc:last-child { page-break-after: auto; }
  @page { margin: .4in; size: letter; }
}
body.printing #view { display: none; }
body.printing #print-root { display: block; }

/* ---------- Onboarding / empty project ---------- */
.hero { max-width: 620px; margin: 60px auto; text-align: center; }
.hero h2 { font-size: 26px; margin: 0 0 10px; letter-spacing: -.5px; }
.hero p { color: var(--txt-2); margin: 0 0 22px; }
.hero .acts { display: flex; gap: 10px; justify-content: center; }
