/* ============================================================
   Full Charter Argument Page — Standalone dark theme design
   ============================================================ */

/* Dark theme color tokens */
/* Background:  #0d0d0f  (near-black with slight blue cast)
   Surface:     #161619  (card/section backgrounds)
   Border:      #2a2a30  (dividers, outlines)
   Text:        #e8e8ec  (primary)
   Muted:       #8a8a96  (secondary / captions)
   Accent:      #ff3300  (brand red — kept from original)
   Accent Glow: rgba(255,51,0,0.18) */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    color: #e8e8ec;
    background-color: #0d0d0f;
    margin: 0;
    padding: 0;
}

.reveal {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #000000;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #2a2a30;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    color: #8a8a96;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.15s ease;
}

.site-nav a:hover { color: #e8e8ec; }
.site-nav a.nav-active { color: #ff3300; }

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 6px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 700px) {
    .nav-toggle {
        display: flex;
        order: 2;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000000;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid #2a2a30;
    }

    .site-nav.active {
        max-height: 400px;
    }

    .site-nav li {
        border-bottom: 1px solid #0d0d0f;
    }

    .site-nav a {
        display: block;
        padding: 1rem 1.5rem;
    }

    .site-header {
        flex-wrap: wrap;
        position: relative;
    }

    nav {
        width: 100%;
        order: 3;
    }
}

@media (max-width: 600px) {
    .site-nav { gap: 1rem; }
    .brand-name { display: none; }
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff;
    flex-shrink: 0;
}

.logo {
    height: 36px;
    width: auto;
    flex-shrink: 0;
}

.brand-name {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
    color: #ffffff;
    white-space: nowrap;
}

/* Hero headline */
.headline {
    text-align: center;
    margin: 48px 20px 28px;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #e8e8ec;
}

.secret {
    color: #ff3300;
    font-weight: 800;
}

/* CTA button */
.skip-btn {
    background-color: #ff3300;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 10px;
    display: block;
    width: fit-content;
    margin: 0 auto 48px auto;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 0 0 0 rgba(255,51,0,0);
}

.skip-btn:hover {
    background-color: #e62e00;
    box-shadow: 0 0 18px rgba(255,51,0,0.4);
}

/* Content sections */
.message {
    max-width: 750px;
    margin: 0 auto 28px auto;
    padding: 28px 28px;
    background: #161619;
    border: 1px solid #2a2a30;
    border-radius: 12px;
    width: calc(100% - 32px);
}

.message h2 {
    margin: 0 0 12px 0;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.message p {
    margin: 0;
    color: #c4c4cc;
    font-size: 0.97rem;
}

.message p em {
    color: #e8e8ec;
    font-style: italic;
}

/* Red left-border accent for the "Current Status" section */
.message.status-section {
    border-left: 3px solid #ff3300;
    background: #130e0c;
}

/* Footer */
.site-footer-vertical {
    max-width: 750px;
    margin: 56px auto 0 auto;
    padding: 28px 20px 40px;
    border-top: 1px solid #2a2a30;
    width: calc(100% - 0px);
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 28px;
}

.footer-item h4 {
    margin: 0 0 6px 0;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8a8a96;
}

.footer-item p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: #c4c4cc;
}

.footer-item a {
    color: #ff6640;
    text-decoration: underline;
    text-decoration-color: rgba(255,102,64,0.4);
}

.footer-item a:hover {
    color: #ff3300;
}

.box {
    display: inline-block;
    word-break: break-all;
    font-size: 0.82em;
    background: #1e1e24;
    padding: 5px 9px;
    border-radius: 5px;
    border: 1px solid #2a2a30;
    font-family: ui-monospace, "SF Mono", "Cascadia Code", monospace;
    color: #c4c4cc;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #2a2a30;
    margin: 24px 0;
}

.disclaimer p,
.copyright p {
    font-size: 0.82em;
    color: #5c5c66;
    line-height: 1.55;
    margin-bottom: 8px;
}

.disclaimer strong {
    color: #8a8a96;
}

.copyright a {
    color: #5c5c66;
}

.copyright a:hover {
    color: #8a8a96;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #2a2a30;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ff6640;
    transition: color 0.15s ease, transform 0.15s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .message {
        border-radius: 8px;
    }
}
