:root {
    --bg: #111;
    --text: whitesmoke;
    --blue-dark: #00a2ff;
    --blue-light: #adf7ff;
}
* {
    box-sizing: border-box;
}
html, body {
    height: 100%;
    margin: 0;
}
body {
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}
.page {
    display: grid;
    grid-template-rows: 10vh 1fr;
    min-height: 100vh;
    width: 100%;
}
.brandbar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10vh;
}
.brandword {
    font-family: "Major Mono Display", monospace;
    text-transform: uppercase;
    line-height: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    align-items: center;
    justify-items: center;
    font-size: 7.5vh;
    user-select: none;
}
.brandchar {
    display: inline-block;
}
.brandword .flips {
    color: var(--blue-light);
}
.brandword .alot {
    color: var(--blue-dark);
}
.content {
    width: 100%;
    padding: 24px 20px 40px 20px;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 14px;
}
.top-actions {
    width: 100%;
    max-width: 860px;
    display: flex;
    justify-content: flex-start;
}
.back-link {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid var(--blue-dark);
    border-radius: 8px;
    color: var(--blue-light);
    text-decoration: none;
    font-family: "DM Mono", monospace;
    font-size: 14px;
}
.back-link:hover {
    text-decoration: none;
}
.page-title {
    width: 100%;
    max-width: 860px;
    margin: 10px 0 35px 0;
    font-family: "Major Mono Display", monospace;
    font-size: 24px;
    color: var(--blue-dark);
}
.update-line {
    width: 100%;
    max-width: 860px;
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}
.policy {
    width: 100%;
    max-width: 860px;
    display: grid;
    gap: 18px;
}
.psec {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.psec:first-child {
    border-top: none;
    padding-top: 0;
}
.h {
    margin: 0 0 6px 0;
    font-family: "DM Mono", monospace;
    font-size: 18px;
    color: var(--blue-dark);
}
.t {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}
.t-list {
    margin: 0;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}
.t-list li {
    margin: 6px 0;
}
.mailto {
    color: var(--blue-light);
    text-decoration: none;
}
.mailto:hover {
    text-decoration: none;
}