/* ============================================
   IDLE HANDS / BOREDOM RESISTANCE
   Red. Blue. Monospace. No comfort.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;700&display=swap');

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

:root {
    --red: #ff0000;
    --blue: #2400ff;
    --white: #ffffff;
    --black: #1a1a1a;
    --grey-bg: #e0dedd;
    --grey-mid: #888583;
    --badge-bg: rgba(0, 0, 0, 0.08);

    --font-body: 'IBM Plex Mono', 'Courier New', monospace;
    /* Display font: placeholder — swap for your chosen heavy/condensed display face */
    --font-display: 'Arial Black', 'Impact', 'Helvetica Neue', sans-serif;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ============================================
   SHARED NAV BAR
   [Manifesto]    IDLE HANDS    [Join the resistance]
   ============================================ */

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
    position: relative;
    z-index: 10;
}

.site-nav a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
}

.site-nav a:hover {
    text-decoration: underline;
}

.site-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-link-bracketed::before { content: '['; }
.nav-link-bracketed::after { content: ']'; }


/* ============================================
   NUMBER BADGE
   The subtle rounded container around counters
   ============================================ */

.number-badge {
    display: inline-block;
    background: var(--badge-bg);
    padding: 0.15em 0.5em;
    border-radius: 6px;
    font-variant-numeric: tabular-nums;
}


/* ============================================
   LANDING PAGE
   Full red. Giant blue type. White text.
   ============================================ */

.page-landing {
    background: var(--red);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-landing .site-nav a,
.page-landing .site-logo {
    color: var(--white);
}

.landing-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.landing-headline {
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--blue);
    line-height: 0.88;
    letter-spacing: -0.02em;
    font-size: clamp(4rem, 15vw, 14rem);
    max-width: 95vw;
    margin-bottom: 3rem;
}

.landing-counter {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
}

.landing-counter .number-badge {
    background: rgba(255, 255, 255, 0.15);
}


/* ============================================
   MANIFESTO PAGE
   Red bg, monospace body, giant blue callouts
   ============================================ */

.page-manifesto {
    background: var(--red);
    color: var(--white);
    min-height: 100vh;
}

.page-manifesto .site-nav a,
.page-manifesto .site-logo {
    color: var(--white);
}

.page-manifesto .nav-active {
    text-decoration: line-through;
}

.manifesto-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 2.5rem 8rem;
}

.manifesto-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-weight: 400;
}

.manifesto-callout {
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--blue);
    line-height: 0.88 !important;
    letter-spacing: -0.02em;
    font-size: clamp(3rem, 12vw, 10rem) !important;
    margin: 4rem -2.5rem !important;
    padding: 1.5rem 0;
    width: calc(100% + 5rem);
    text-align: center;
    background: rgba(0, 0, 0, 0.15);
}

.manifesto-cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--white);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.15s, color 0.15s;
}

.cta-button:hover {
    background: var(--white);
    color: var(--red);
}


/* ============================================
   BOREDOM SCREEN
   Grey void. Monospace. Nothing else.
   ============================================ */

.page-bored {
    background: var(--grey-bg);
    color: var(--black);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
}

.page-bored .site-logo {
    color: var(--black);
}

.bored-nav {
    display: flex;
    justify-content: center;
    padding: 1.5rem 2.5rem;
}

.bored-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.bored-counter {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--black);
    text-align: center;
    font-weight: 400;
}

.bored-counter .number-badge {
    background: rgba(0, 0, 0, 0.06);
}

.bored-exit {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--grey-mid);
    text-decoration: underline;
    cursor: pointer;
}

.bored-exit:hover {
    color: var(--black);
}


/* ============================================
   YOUR DATA PAGE
   Same red bg, monospace
   ============================================ */

.page-data {
    background: var(--red);
    color: var(--white);
    min-height: 100vh;
}

.page-data .site-nav a,
.page-data .site-logo {
    color: var(--white);
}

.data-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 2.5rem 8rem;
}

.data-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-weight: 400;
}

.data-body h2 {
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin: 3rem 0 1.5rem;
    letter-spacing: 0.02em;
}
