/* requex.app, operator launch portal. Mockup, 2 September 2026.
   Layout follows the Stripe dashboard pattern the operator pointed to: left nav,
   search bar, right-side utilities and a setup-guide ring, calm white canvas,
   soft gray panels, one accent. Brand: Requex green #00d036, navy #0f172a. */
:root {
  --navy: #0f172a; --ink-2: #1e293b; --ink-3: #475569; --ink-4: #64748b; --ink-5: #94a3b8;
  --line: #e6e9ee; --line-soft: #eff2f6; --panel: #f6f8fa; --panel-2: #f1f4f7;
  --green: #00d036; --green-bright: #00bd31; --green-deep: #008a24; --green-ink: #005416; --green-tint: #e9fcee;
  --amber: #b45309; --amber-tint: #fff7e6; --red: #b91c1c; --red-tint: #fef2f2; --blue: #1d4ed8; --blue-tint: #eef2ff;
  --side-w: 248px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #fff; color: var(--navy); font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
button { font: inherit; cursor: pointer; }
.hidden { display: none !important; }
.muted { color: var(--ink-4); }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12.5px; }
.link { color: var(--green-deep); font-weight: 500; }
.link:hover { color: var(--green-ink); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; height: 36px; padding: 0 14px; border-radius: 7px; font-weight: 600; font-size: 13.5px; border: 1px solid transparent; transition: background .12s, border-color .12s; white-space: nowrap; }
.btn svg { width: 15px; height: 15px; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-bright); }
.btn-primary[disabled] { background: #c9ced6; cursor: not-allowed; }
.btn-outline { background: #fff; color: var(--navy); border-color: #d3d8e0; box-shadow: 0 1px 1px rgba(15,23,42,.04); }
.btn-outline:hover { border-color: #a7afbb; }
.btn-text { background: transparent; color: var(--ink-3); }
.btn-text:hover { color: var(--navy); background: var(--panel); }
.btn-sm { height: 30px; padding: 0 10px; font-size: 12.5px; }
.btn-lg { height: 44px; padding: 0 18px; font-size: 15px; }

/* chips */
.chip { display: inline-flex; align-items: center; gap: 6px; height: 22px; padding: 0 8px; border-radius: 6px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.chip i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; display: inline-block; }
.chip.ok { background: var(--green-tint); color: var(--green-ink); }
.chip.now { background: var(--blue-tint); color: var(--blue); }
.chip.wait { background: var(--panel-2); color: var(--ink-4); }
.chip.due { background: var(--amber-tint); color: var(--amber); }
.chip.req { background: #fff; color: var(--ink-3); border: 1px solid var(--line); font-weight: 500; }

/* ---------------- sign in ---------------- */
.auth { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth .pane { padding: 48px 56px; display: flex; flex-direction: column; }
.auth .pane.dark { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.auth .pane.dark::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 20% 90%, rgba(0,208,54,.16), transparent 60%); }
.auth .brand { display: flex; align-items: center; gap: 10px; }
.auth .brand img { width: 30px; height: 30px; }
.auth .brand b { font-size: 19px; font-weight: 800; letter-spacing: -.03em; }
.auth .brand span { color: var(--ink-4); font-weight: 500; margin-left: 6px; }
.auth .box { max-width: 380px; margin: auto 0; width: 100%; }
.auth h1 { font-size: 28px; font-weight: 700; letter-spacing: -.025em; }
.auth .sub { color: var(--ink-3); margin-top: 8px; font-size: 14.5px; }
.auth form { margin-top: 28px; display: grid; gap: 18px; }
.auth .foot { font-size: 13px; color: var(--ink-4); margin-top: 22px; }
.auth .lang { margin-left: auto; }
.auth .pane.dark .box { position: relative; }
.auth .pane.dark h2 { font-size: 30px; font-weight: 700; letter-spacing: -.03em; line-height: 1.15; }
.auth .pane.dark p { color: #cbd5e1; margin-top: 14px; font-size: 15px; max-width: 420px; }
.auth .pane.dark ul { list-style: none; margin-top: 28px; display: grid; gap: 12px; color: #e2e8f0; font-size: 14px; }
.auth .pane.dark li { display: flex; gap: 10px; align-items: flex-start; }
.auth .pane.dark li svg { width: 18px; height: 18px; color: var(--green); flex: none; margin-top: 1px; }
.auth .pane.dark .van { margin-top: 40px; opacity: .95; max-width: 460px; }

/* form atoms (shared) */
label.f { display: block; }
label.f > span { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
label.f > small { display: block; font-size: 12px; color: var(--ink-4); margin-top: 6px; }
.input, select.input, textarea.input { width: 100%; height: 40px; border: 1px solid #d3d8e0; border-radius: 7px; padding: 0 12px; font: inherit; font-size: 14px; color: var(--navy); background: #fff; outline: none; box-shadow: 0 1px 1px rgba(15,23,42,.03); transition: border-color .12s, box-shadow .12s; }
textarea.input { height: auto; min-height: 96px; padding: 10px 12px; resize: vertical; }
.input:focus { border-color: var(--green-deep); box-shadow: 0 0 0 3px rgba(0,208,54,.18); }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.seg { display: flex; flex-wrap: wrap; gap: 8px; }
.seg label { cursor: pointer; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span { display: inline-flex; align-items: center; height: 36px; padding: 0 12px; border: 1px solid #d3d8e0; border-radius: 7px; font-size: 13.5px; font-weight: 500; color: var(--ink-2); background: #fff; }
.seg input:checked + span { border-color: var(--navy); background: var(--navy); color: #fff; }
.chk { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.chk input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--green-deep); flex: none; }

/* ---------------- shell ---------------- */
.shell { display: grid; grid-template-columns: var(--side-w) 1fr; min-height: 100vh; }
aside.side { border-right: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.acct { display: flex; align-items: center; gap: 10px; padding: 18px 16px 12px; }
.acct .mark { width: 30px; height: 30px; border-radius: 7px; background: var(--navy); display: grid; place-items: center; }
.acct .mark img { width: 18px; height: 18px; }
.acct b { font-size: 14px; font-weight: 700; letter-spacing: -.01em; display: block; line-height: 1.2; }
.acct small { display: block; color: var(--ink-4); font-size: 11.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acct > div { min-width: 0; }
.acct svg { margin-left: auto; width: 16px; height: 16px; color: var(--ink-4); }
nav.nav { padding: 6px 10px; }
nav.nav .grp { font-size: 11.5px; font-weight: 600; color: var(--ink-4); padding: 16px 8px 6px; letter-spacing: .01em; }
nav.nav a { display: flex; align-items: center; gap: 10px; height: 34px; padding: 0 8px; border-radius: 7px; color: var(--ink-2); font-weight: 500; font-size: 13.5px; }
nav.nav a svg { width: 17px; height: 17px; color: var(--ink-4); flex: none; }
nav.nav a:hover { background: var(--panel); }
nav.nav a.on { background: var(--green-tint); color: var(--green-ink); font-weight: 600; }
nav.nav a.on svg { color: var(--green-deep); }
nav.nav a .cnt { margin-left: auto; font-size: 11px; font-weight: 600; color: var(--ink-4); background: var(--panel-2); padding: 1px 7px; border-radius: 999px; }
aside .bottom { margin-top: auto; padding: 10px 10px 14px; border-top: 1px solid var(--line-soft); }

.main { min-width: 0; }
header.top { display: flex; align-items: center; gap: 12px; height: 60px; padding: 0 28px; position: sticky; top: 0; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); z-index: 20; }
.search { display: flex; align-items: center; gap: 8px; width: 380px; height: 36px; border-radius: 8px; background: var(--panel); color: var(--ink-4); padding: 0 12px; font-size: 13.5px; }
.search svg { width: 16px; height: 16px; }
.search kbd { margin-left: auto; font: 11px ui-monospace, Menlo, monospace; color: var(--ink-5); border: 1px solid var(--line); border-radius: 4px; padding: 1px 5px; background: #fff; }
.util { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.util .ic { width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; color: var(--ink-3); background: transparent; border: 0; position: relative; }
.util .ic:hover { background: var(--panel); color: var(--navy); }
.util .ic svg { width: 18px; height: 18px; }
.util .ic .badge { position: absolute; top: 7px; right: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); border: 1.5px solid #fff; }
.util .plus { width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; margin: 0 4px; }
.util .plus svg { width: 16px; height: 16px; }
.lang { position: relative; }
.lang > button { display: inline-flex; align-items: center; gap: 6px; height: 34px; padding: 0 10px; border-radius: 8px; border: 1px solid transparent; background: transparent; color: var(--ink-3); font-size: 13px; font-weight: 500; }
.lang > button:hover { background: var(--panel); color: var(--navy); }
.lang > button svg { width: 15px; height: 15px; }
.lang .menu { position: absolute; right: 0; top: 40px; width: 240px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 12px 32px -12px rgba(15,23,42,.25); padding: 6px; z-index: 30; }
.lang .menu div { display: flex; align-items: center; justify-content: space-between; padding: 8px 10px; border-radius: 6px; font-size: 13px; }
.lang .menu div:hover { background: var(--panel); }
.lang .menu div.on { color: var(--green-ink); font-weight: 600; }
.lang .menu div small { color: var(--ink-5); font-size: 11px; }
.lang .menu .hd { font-size: 11px; color: var(--ink-4); font-weight: 600; padding: 8px 10px 4px; }
.guide { display: inline-flex; align-items: center; gap: 10px; height: 36px; padding: 0 6px 0 14px; border-radius: 999px; background: var(--panel); font-weight: 600; font-size: 13px; color: var(--ink-2); margin-left: 8px; }
.ring { width: 26px; height: 26px; border-radius: 50%; background: conic-gradient(var(--green) 0 62%, #dfe3e9 62% 100%); display: grid; place-items: center; }
.ring i { width: 18px; height: 18px; border-radius: 50%; background: var(--panel); }

main.page { padding: 20px 28px 64px; max-width: 1240px; }
.ph { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 10px 0 18px; border-bottom: 1px solid var(--line); }
.ph h1 { font-size: 26px; font-weight: 700; letter-spacing: -.025em; line-height: 1.2; }
.ph .sub { color: var(--ink-4); font-size: 13.5px; margin-top: 4px; }
.ph .acts { display: flex; gap: 8px; }
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-top: 6px; }
.tabs a { padding: 12px 12px; font-size: 13.5px; font-weight: 500; color: var(--ink-3); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tabs a.on { color: var(--navy); border-color: var(--navy); font-weight: 600; }
.tabs a .cnt { color: var(--ink-5); margin-left: 5px; }

/* stats row */
.stats { display: flex; gap: 0; padding: 26px 0 8px; }
.stats > div { padding-right: 36px; margin-right: 36px; border-right: 1px solid var(--line-soft); min-width: 150px; }
.stats > div:last-child { border: 0; }
.stats .k { font-size: 13px; color: var(--ink-3); display: flex; align-items: center; gap: 6px; }
.stats .k svg { width: 13px; height: 13px; color: var(--ink-5); }
.stats .v { font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin-top: 4px; }
.stats .s { font-size: 12px; color: var(--ink-4); margin-top: 2px; }

/* build rail */
.rail { margin-top: 26px; }
.rail .line { position: relative; height: 4px; background: #dfe3e9; border-radius: 999px; }
.rail .line i { position: absolute; left: 0; top: 0; height: 100%; width: 50%; background: var(--green); border-radius: 999px; }
.rail .line .dash { position: absolute; left: 50%; right: 0; top: 0; height: 100%; background: repeating-linear-gradient(90deg, #c2c8d2 0 6px, transparent 6px 12px); }
.rail ol { list-style: none; display: grid; grid-template-columns: repeat(7, 1fr); margin-top: 12px; }
.rail li { font-size: 12px; color: var(--ink-4); position: relative; padding-top: 6px; }
.rail li::before { content: ""; position: absolute; top: -16px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 2px solid #c2c8d2; }
.rail li.ok::before { background: var(--green); border-color: var(--green); }
.rail li.now::before { background: #fff; border-color: var(--green); box-shadow: 0 0 0 4px rgba(0,208,54,.2); }
.rail li.ok { color: var(--ink-3); }
.rail li.now { color: var(--navy); font-weight: 600; }
.rail li small { display: block; color: var(--ink-5); font-weight: 400; }

/* layout columns */
.cols { display: grid; grid-template-columns: 1.4fr .9fr; gap: 40px; margin-top: 36px; align-items: start; }
.sec-h { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.sec-h h2 { font-size: 17px; font-weight: 700; letter-spacing: -.015em; }
.sec-h a { font-size: 13px; }
.tracker { list-style: none; }
.tracker li { display: grid; grid-template-columns: 1fr 140px 24px; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 13.5px; }
.tracker li .n { color: var(--ink-2); font-weight: 500; }
.tracker li .n small { display: block; color: var(--ink-4); font-weight: 400; font-size: 12px; }
.tracker li .go { color: var(--ink-5); width: 16px; height: 16px; }
.tracker li.head { font-size: 11.5px; font-weight: 600; color: var(--ink-4); text-transform: uppercase; letter-spacing: .06em; padding: 18px 0 6px; border: 0; }
.pct { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--ink-3); }
.pct i { width: 64px; height: 5px; background: var(--panel-2); border-radius: 999px; overflow: hidden; display: inline-block; }
.pct i b { display: block; height: 100%; background: var(--green); }

.panel { background: var(--panel); border-radius: 12px; padding: 20px 22px; }
.panel + .panel { margin-top: 16px; }
.panel h3 { font-size: 15px; font-weight: 700; letter-spacing: -.01em; display: flex; align-items: center; justify-content: space-between; }
.panel h3 a { font-size: 12.5px; font-weight: 500; }
.panel p { color: var(--ink-3); font-size: 13px; margin-top: 6px; }
.todo { list-style: none; margin-top: 12px; }
.todo li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; padding: 10px 0; border-top: 1px solid #e6eaef; font-size: 13.5px; align-items: start; }
.todo li i { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid #b9c0cb; margin-top: 1px; }
.todo li b { font-weight: 600; display: block; }
.todo li small { display: block; color: var(--ink-4); font-size: 12px; margin-top: 1px; }
.kv { list-style: none; margin-top: 12px; }
.kv li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-top: 1px solid #e6eaef; font-size: 13px; }
.kv li span { color: var(--ink-4); }
.kv li b { font-weight: 600; text-align: right; }
.person { display: flex; gap: 12px; align-items: center; margin-top: 12px; }
.person .av { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 13px; }
.person b { display: block; font-size: 13.5px; }
.person small { color: var(--ink-4); font-size: 12px; }

/* activity */
.activity { list-style: none; margin-top: 8px; }
.activity li { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line-soft); font-size: 13.5px; }
.activity li span { color: var(--ink-4); font-size: 12.5px; }

/* tables */
table.tbl { width: 100%; border-collapse: collapse; margin-top: 4px; }
.tbl th { text-align: left; font-size: 11.5px; font-weight: 600; color: var(--ink-4); letter-spacing: .04em; text-transform: uppercase; padding: 14px 12px 10px 0; border-bottom: 1px solid var(--line); }
.tbl td { padding: 14px 12px 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 13.5px; vertical-align: middle; white-space: nowrap; }
.tbl td.wrap { white-space: normal; }
.tbl td b { font-weight: 600; }
.tbl td small { display: block; color: var(--ink-4); font-size: 12px; }
.tbl tr:hover td { background: #fafbfc; }
.tbl td.r, .tbl th.r { text-align: right; padding-right: 0; }
.tbl .amt { font-variant-numeric: tabular-nums; font-weight: 600; }

/* stepper flow (application) */
.flowbar { display: flex; align-items: center; height: 60px; padding: 0 28px; border-bottom: 1px solid var(--line); gap: 12px; }
.flowbar .brand { display: flex; align-items: center; gap: 10px; }
.flowbar .brand img { width: 26px; height: 26px; }
.flowbar .brand b { font-size: 17px; font-weight: 800; letter-spacing: -.03em; }
.flowbar .brand span { color: var(--ink-4); font-weight: 500; margin-left: 5px; }
.flowbar .save { margin-left: auto; font-size: 13px; color: var(--ink-4); }
.flow { display: grid; grid-template-columns: 260px 1fr; gap: 72px; max-width: 1080px; margin: 0 auto; padding: 44px 28px 96px; }
.stepper { list-style: none; position: sticky; top: 24px; }
.stepper li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; padding: 9px 0; color: var(--ink-4); font-size: 13.5px; position: relative; }
.stepper li::after { content: ""; position: absolute; left: 12px; top: 34px; bottom: -6px; width: 1.5px; background: var(--line); }
.stepper li:last-child::after { display: none; }
.stepper li i { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid #c9cfd8; display: grid; place-items: center; font-size: 12px; font-weight: 600; font-style: normal; background: #fff; z-index: 1; }
.stepper li.done { color: var(--ink-3); }
.stepper li.done i { border-color: var(--green-deep); color: var(--green-deep); }
.stepper li.on { color: var(--navy); font-weight: 600; }
.stepper li.on i { background: var(--green); border-color: var(--green); color: #fff; }
.stepper li small { display: block; font-weight: 400; color: var(--ink-5); font-size: 12px; }
.flow .form { max-width: 600px; }
.flow .form h1 { font-size: 24px; font-weight: 700; letter-spacing: -.02em; }
.flow .form .hint { color: var(--ink-4); margin-top: 6px; font-size: 14px; }
.flow .fields { display: grid; gap: 22px; margin-top: 28px; }
.flow .q { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.flow .nav { display: flex; justify-content: space-between; align-items: center; margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); }

/* documents drawer preview */
.doc-view { display: grid; grid-template-columns: 1fr 320px; gap: 32px; margin-top: 24px; }
.doc-paper { border: 1px solid var(--line); border-radius: 10px; padding: 36px 40px; font-size: 13.5px; line-height: 1.65; color: var(--ink-2); background: #fff; }
.doc-paper h2 { font-size: 18px; letter-spacing: -.015em; }
.doc-paper h4 { font-size: 13px; margin-top: 18px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-4); }
.doc-paper table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.doc-paper td { padding: 6px 0; border-bottom: 1px solid var(--line-soft); }
.doc-paper td:last-child { text-align: right; font-weight: 600; }
.sig { border: 1.5px dashed #c9cfd8; border-radius: 8px; height: 76px; display: grid; place-items: center; color: var(--ink-4); font-size: 13px; margin-top: 14px; }

/* vehicle */
.veh { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; margin-top: 28px; align-items: start; }
.veh .art { background: var(--navy); border-radius: 12px; padding: 24px; }
.inv { list-style: none; }
.inv li { display: grid; grid-template-columns: 36px 1fr auto; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line-soft); font-size: 13.5px; align-items: center; }
.inv li i { font: 600 12px ui-monospace, Menlo, monospace; color: var(--ink-5); font-style: normal; }
.inv li small { color: var(--ink-4); font-size: 12px; }

/* territory */
.map { border-radius: 12px; background: var(--panel); height: 320px; position: relative; overflow: hidden; }
.map svg { width: 100%; height: 100%; }

/* training */
.mods { list-style: none; margin-top: 8px; }
.mods li { display: grid; grid-template-columns: 1fr 170px 120px 130px; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 13.5px; }
.mods li b { font-weight: 600; display: block; }
.mods li small { display: block; color: var(--ink-4); font-size: 12px; }
.mods li .btn { justify-self: end; }

/* empty */
.empty { background: var(--panel); border-radius: 12px; padding: 40px; text-align: center; margin-top: 24px; }
.empty h3 { font-size: 18px; font-weight: 700; letter-spacing: -.015em; }
.empty p { color: var(--ink-3); margin-top: 8px; max-width: 460px; margin-left: auto; margin-right: auto; }

@media (max-width: 1080px) {
  .cols, .veh, .doc-view { grid-template-columns: 1fr; }
  .search { width: 240px; }
}
@media (max-width: 820px) {
  .shell { grid-template-columns: 1fr; }
  aside.side { display: none; }
  header.top { padding: 0 16px; }
  .search { display: none; }
  main.page { padding: 12px 16px 64px; }
  .stats { flex-direction: column; gap: 14px; }
  .stats > div { border: 0; padding: 0; margin: 0; }
  .rail ol { grid-template-columns: 1fr 1fr; gap: 10px; }
  .rail li::before { display: none; }
  .auth { grid-template-columns: 1fr; }
  .auth .pane.dark { display: none; }
  .auth .pane { padding: 28px 22px; }
  .flow { grid-template-columns: 1fr; gap: 28px; padding: 24px 16px 64px; }
  .stepper { position: static; display: flex; gap: 8px; overflow-x: auto; }
  .stepper li { white-space: nowrap; }
  .stepper li::after, .stepper li small { display: none; }
  .f2 { grid-template-columns: 1fr; }
  .mods li { grid-template-columns: 1fr; gap: 8px; }
  .mods li .btn { justify-self: start; }
  .tracker li { grid-template-columns: 1fr auto; }
  .tracker li .go { display: none; }
  .guide span { display: none; }
  .tbl td, .tbl th { white-space: normal; }
  .ph { flex-direction: column; align-items: flex-start; }
}
