:root {
    --black: #080808;
    --dark: #111111;
    --card: #181818;
    --pink: #ff2d7a;
    --white: #f8f8f8;
    --muted: #b7b7b7;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: Arial, sans-serif;
}

.site-nav {
    height: 76px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(8, 8, 8, 0.96);
    border-bottom: 1px solid #222;
}

.brand {
    font-size: 30px;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -1px;
}

.brand span {
    color: var(--pink);
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

.nav-cta {
    background: var(--pink);
    padding: 12px 18px;
    border-radius: 8px;
    /* Colour and decoration belong here, not on .nav-links a. Used outside the
       nav (the pricing cards do), an <a> was falling back to the browser's
       default link blue on a pink background. */
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

/* Sign out is a POST form now, so its button has to pass for a nav link. */
.nav-logout {
    margin: 0;
}

.nav-logout button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--white);
    font-weight: 700;
    font-family: inherit;
    font-size: inherit;
}

.site-footer {
    margin-top: 64px;
    padding: 32px 7%;
    border-top: 1px solid #222;
    color: var(--muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-entity {
    margin: 0;
}

/* The legal pages. Long-form reading, so a narrow measure and real line
   height rather than the full-bleed layout the rest of the site uses. */
.legal {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 24px;
    line-height: 1.65;
}

.legal h1 {
    font-size: 34px;
    margin-bottom: 4px;
}

.legal h2 {
    font-size: 22px;
    margin-top: 40px;
    border-bottom: 1px solid #222;
    padding-bottom: 8px;
}

.legal h3 {
    font-size: 17px;
    margin-top: 28px;
    color: var(--pink);
}

.legal .updated {
    color: var(--muted);
    font-size: 14px;
    margin-top: 0;
}

.legal ul {
    padding-left: 22px;
}

.legal li {
    margin-bottom: 8px;
}

.legal .contact-block {
    margin-top: 40px;
    padding: 20px;
    background: var(--card);
    border-radius: 8px;
}

.legal .contact-block p {
    margin: 0 0 4px;
}