initial upload

This commit is contained in:
David Schroeder
2026-07-25 13:11:37 -05:00
commit 943ddb064f
25 changed files with 2586 additions and 0 deletions
+256
View File
@@ -0,0 +1,256 @@
:root {
color-scheme: dark;
--ink: #edf4f2;
--muted: #95a8a3;
--panel: #111d1c;
--panel-2: #172624;
--line: #28413d;
--accent: #58e0ad;
--accent-dark: #143e32;
--amber: #f1bd6c;
--danger: #ff7f75;
--shadow: 0 24px 70px rgba(0, 0, 0, .28);
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body {
margin: 0;
min-height: 100vh;
color: var(--ink);
background:
radial-gradient(circle at 12% 0%, rgba(88, 224, 173, .1), transparent 30rem),
#091211;
}
button, input { font: inherit; }
.topbar {
position: sticky;
top: 0;
z-index: 10;
display: flex;
align-items: center;
justify-content: space-between;
min-height: 68px;
padding: 0 5vw;
border-bottom: 1px solid rgba(88, 224, 173, .16);
background: rgba(9, 18, 17, .88);
backdrop-filter: blur(18px);
}
.wordmark {
margin-right: 12px;
color: var(--accent);
font-weight: 900;
letter-spacing: .14em;
}
.product-name, .operator { color: var(--muted); }
.operator { display: flex; align-items: center; gap: 18px; }
.operator form { margin: 0; }
.page {
width: min(1380px, 92vw);
margin: 0 auto;
padding: 56px 0 90px;
}
.hero {
display: grid;
grid-template-columns: 1fr auto;
align-items: end;
gap: 40px;
margin-bottom: 38px;
}
h1, h2, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 14px; font-size: clamp(2.5rem, 6vw, 5.7rem); line-height: .94; letter-spacing: -.055em; }
h2 { margin-bottom: 0; font-size: 1.4rem; letter-spacing: -.02em; }
.hero p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 1.1rem; line-height: 1.65; }
.eyebrow {
margin-bottom: 10px;
color: var(--accent);
font-size: .72rem;
font-weight: 800;
letter-spacing: .14em;
text-transform: uppercase;
}
.policy-card {
display: grid;
min-width: 190px;
padding: 22px;
border: 1px solid var(--line);
border-radius: 18px;
background: var(--panel);
}
.policy-card span { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.policy-card strong { margin-top: 7px; font-size: 1.25rem; }
.content-grid {
display: grid;
grid-template-columns: minmax(330px, .8fr) minmax(460px, 1.2fr);
gap: 24px;
}
.panel {
border: 1px solid var(--line);
border-radius: 22px;
background: linear-gradient(145deg, rgba(23, 38, 36, .9), rgba(14, 25, 24, .96));
box-shadow: var(--shadow);
overflow: hidden;
}
.panel-heading { padding: 26px 28px 20px; border-bottom: 1px solid var(--line); }
.stack { display: grid; gap: 18px; padding: 26px 28px 30px; }
.stack.compact { padding: 0; }
label, legend { color: var(--muted); font-size: .78rem; font-weight: 750; letter-spacing: .045em; text-transform: uppercase; }
input {
width: 100%;
margin-top: 8px;
padding: 12px 13px;
color: var(--ink);
border: 1px solid #35504b;
border-radius: 10px;
outline: none;
background: #0a1514;
}
input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(88, 224, 173, .12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
fieldset { display: grid; gap: 10px; padding: 0; border: 0; }
legend { margin-bottom: 8px; }
.package-choice {
display: flex;
align-items: center;
gap: 12px;
padding: 13px;
border: 1px solid var(--line);
border-radius: 12px;
background: rgba(8, 18, 17, .55);
text-transform: none;
}
.package-choice input, .toggle input { width: auto; margin: 0; accent-color: var(--accent); }
.package-choice span { display: grid; gap: 3px; }
.package-choice strong { color: var(--ink); font-size: .94rem; }
.package-choice small { color: var(--muted); }
.button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 46px;
padding: 0 18px;
color: #07110e;
border: 0;
border-radius: 11px;
background: var(--accent);
font-weight: 850;
text-decoration: none;
cursor: pointer;
}
.button.secondary { color: var(--ink); border: 1px solid var(--line); background: #1c302d; }
.button.light { background: #e9fff7; }
.button.wide { width: 100%; }
.text-button { padding: 0; color: var(--accent); border: 0; background: transparent; cursor: pointer; }
.text-button.danger { color: var(--danger); }
.authorization-list { display: grid; max-height: 690px; overflow: auto; }
.authorization { padding: 21px 26px; border-bottom: 1px solid var(--line); }
.authorization:last-child { border-bottom: 0; }
.authorization.closed { opacity: .64; }
.authorization-top { display: flex; justify-content: space-between; gap: 20px; }
.authorization-top > div { display: flex; align-items: center; gap: 10px; }
.status {
display: inline-flex;
padding: 4px 8px;
color: var(--muted);
border: 1px solid var(--line);
border-radius: 999px;
font-size: .66rem;
font-weight: 800;
letter-spacing: .06em;
text-transform: uppercase;
}
.authorization.active .status, .status.enabled { color: var(--accent); border-color: rgba(88, 224, 173, .4); background: rgba(88, 224, 173, .08); }
.code-hint { color: var(--amber); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; margin: 18px 0; }
dl div { min-width: 0; }
dt { color: var(--muted); font-size: .7rem; text-transform: uppercase; }
dd { margin: 4px 0 0; overflow-wrap: anywhere; }
.code-reveal {
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
margin-bottom: 32px;
padding: 24px 28px;
color: #092119;
border-radius: 18px;
background: var(--accent);
box-shadow: 0 20px 70px rgba(88, 224, 173, .2);
}
.code-reveal .eyebrow { color: #174e3c; }
.code-reveal h2 { margin-bottom: 6px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: clamp(1.7rem, 4vw, 2.8rem); letter-spacing: .08em; }
.code-reveal p { margin-bottom: 0; }
.notice { margin-bottom: 22px; padding: 12px 16px; color: var(--accent); border: 1px solid rgba(88, 224, 173, .3); border-radius: 10px; background: rgba(88, 224, 173, .07); }
.package-admin { margin-top: 24px; }
.package-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; padding: 28px; }
.package-table { border-right: 1px solid var(--line); padding-right: 30px; }
.package-row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.package-row div { display: grid; gap: 4px; }
.package-row small { color: var(--muted); }
.toggle { display: flex; align-items: center; gap: 9px; }
.empty, .fine-print { color: var(--muted); }
.audit-panel { margin-top: 24px; }
.audit-table { display: grid; max-height: 520px; overflow: auto; }
.audit-row {
display: grid;
grid-template-columns: minmax(190px, .8fr) minmax(190px, 1fr) minmax(220px, 1.2fr);
gap: 22px;
padding: 15px 28px;
border-bottom: 1px solid var(--line);
}
.audit-row:last-child { border-bottom: 0; }
.audit-row > div { display: flex; min-width: 0; flex-direction: column; gap: 4px; }
.audit-row span, .audit-row small { color: var(--muted); overflow-wrap: anywhere; }
.audit-row strong { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .86rem; }
.audit-row small { font-size: .72rem; }
.audit-empty { padding: 20px 28px; }
.login-page { display: grid; place-items: center; }
.login-shell { width: min(510px, 92vw); }
.login-card {
padding: clamp(30px, 7vw, 58px);
border: 1px solid var(--line);
border-radius: 28px;
background: linear-gradient(145deg, rgba(23, 38, 36, .96), rgba(10, 20, 19, .98));
box-shadow: var(--shadow);
}
.brand-mark { margin-bottom: 42px; color: var(--accent); font-size: 1.1rem; font-weight: 950; letter-spacing: .18em; }
.login-card h1 { font-size: clamp(2.8rem, 10vw, 4.8rem); }
.lede { margin-bottom: 32px; color: var(--muted); line-height: 1.7; }
.fine-print { margin: 22px 0 0; font-size: .76rem; text-align: center; }
@media (max-width: 900px) {
.hero, .content-grid, .package-layout { grid-template-columns: 1fr; }
.audit-row { grid-template-columns: 1fr 1fr; }
.audit-row > div:last-child { grid-column: 1 / -1; }
.policy-card { width: 100%; }
.package-table { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 24px; }
}
@media (max-width: 580px) {
.topbar { padding: 0 4vw; }
.product-name, .operator > span { display: none; }
.page { width: 94vw; padding-top: 34px; }
.field-row, dl { grid-template-columns: 1fr; }
.code-reveal { align-items: stretch; flex-direction: column; }
}