
/*  DEFY.CSS - Shared Brand Layer for all Defy Sites. */

:root {
    --black: #000;
    --off-black: #0d0c0b;
    --red: #c0392b;
    --red-bright: #e74c3c;
    --red-dim: #8b2a1f;
    --white: #f0ece4;
    --white-dim: #a09890;
    --paper: #b8ad98;
    --mono: 'IBM Plex Mono', monospace;
    --display: 'Bebas Neue', sans-serif;
    --body: 'Barlow Condensed', sans-serif;
    --hacked: 'Hacked', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--body);
    overflow-x: hidden;
}

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 24 px 40px;
    z-index: 500;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent);
}

.wordmark {
    font-family: var(--display);
    font-size: 14px;
    letter-spacing: 0.35em;
    color: var(--white-dim);
    text-transform: uppercase;
}

.wordmark span { color: var(--red); }

.nav-rule {
    flex: 1;
    height: 1px;
    background: rgba(240, 236, 228, 0.08)
}

.status {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 2em;
    color: var(--red-dim);
    text-transform: uppercase;
}

.footer {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #111;
}
 
.footer-line {
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--white);
    text-align: center;
}
 
.footer-line--dim {
    color: var(--white-dim);
    font-size: 9px;
}
 
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
 
:focus-visible {
    outline: 1px solid var(--red);
    outline-offset: 3px;
}
 
::selection {
    background: var(--red);
    color: var(--black);
}
 
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}
 
@media (max-width: 600px) {
    .nav { padding: 18px 20px; }
}