/* :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;
} */

/* ORIGINAL DESIGN ABOVE */

:root {
    --bg: #FF4F3C; /* red variant for legal pages */
    --text: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    position: relative;
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* gradient overlay similar to landing hero */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(
            circle at 50% -220%,
            rgba(255, 255, 255, 0.22) 0%,
            rgba(255, 255, 255, 0.08) 35%,
            transparent 65%
        ),
        radial-gradient(
            circle at 100% 120%,
            rgba(0, 0, 0, 0.70) 0%,
            rgba(0, 0, 0, 0.45) 35%,
            transparent 75%
        );
}

/* layout */

.page {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100vh;
    width: 100%;
}

/* brand bar */

.brandbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 16px 6px 16px;
}

.brandword {
    font-family: "Julius Sans One", monospace;
    text-transform: uppercase;
    line-height: 1;
    width: 100%;
    max-width: 980px;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    align-items: center;
    justify-items: center;
    font-size: clamp(2.3rem, 6vh, 3.4rem);
    user-select: none;
}

.brandchar {
    display: inline-block;
    color: #ffffff; /* keep wordmark white */
}

/* main content area */

.content {
    width: 100%;
    padding: 16px 18px 40px 18px;
    display: grid;
    justify-items: center;
    align-content: flex-start;
    row-gap: 14px;
}

/* back link */

.top-actions {
    width: 100%;
    max-width: 860px;
    display: flex;
    justify-content: flex-start;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    text-decoration: none;
    font-family: "DM Mono", monospace;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        background 160ms ease,
        transform 140ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.back-link:hover {
    background: rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transform: translateY(-1px);
}

.back-link:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* heading + meta */

.page-title {
    width: 100%;
    max-width: 860px;
    margin: 14px 0 4px 0;
    font-family: "DM Mono", monospace;
    font-size: 1.05rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #ffffff; /* keep title white */
}

.update-line {
    width: 100%;
    max-width: 860px;
    margin: 0 0 22px 0;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

/* policy */

.policy {
    width: 100%;
    max-width: 860px;
    display: grid;
    gap: 18px;
}

.psec {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.psec:first-child {
    border-top: none;
    padding-top: 0;
}

.h {
    margin: 0 0 6px 0;
    font-family: "DM Mono", monospace;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff; /* section headings white */
}

.t {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

/* lists inside sections */

.t-list {
    margin: 0;
    padding-left: 18px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.t-list li {
    margin: 6px 0;
}

/* links */

.mailto {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.mailto:hover {
    text-decoration-thickness: 2px;
}

/* responsive tweaks */

@media (min-width: 960px) {
    .content {
        padding: 24px 32px 56px 32px;
    }
}

@media (max-width: 640px) {
    .brandbar {
        padding-top: 14px;
    }

    .content {
        padding: 10px 14px 32px 14px;
    }

    .page-title {
        font-size: 0.95rem;
        letter-spacing: 0.2em;
    }

    .t,
    .t-list {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}
