/* checklist.css — extracted verbatim from pages/checklist.php */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
        --dark:   #0A0A0A;
        --dark-2: #0D0D0D;
        --dark-3: #111111;
        --amber:  #D97706;
        --border: rgba(255,255,255,0.08);
        --muted:  #666666;
        --max-w:  1100px;
        --gutter: 2.5rem;
    }
    html { scroll-behavior: smooth; }
    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--dark);
        color: #fff;
        line-height: 1.7;
        -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; }
    h1, h2, h3 {
        font-family: 'Sora', sans-serif;
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.08;
    }
    .wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
    .eyebrow {
        display: block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--amber);
        margin-bottom: 1.25rem;
    }
    .fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
    .fade-up.visible { opacity: 1; transform: none; }
    .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

    /* NAV */
    #nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 1.4rem var(--gutter); background: rgba(10,10,10,0.65); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid var(--border); }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #F9FAFB; }
    .logo-wordmark { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; letter-spacing: -0.02em; }
    .nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; }
    .nav-links a { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.65); text-decoration: none; padding: 0.4rem 0.9rem; transition: color .2s; }
    .nav-links a:hover { color: #fff; }
    .nav-pill { display: inline-flex; align-items: center; padding: 0.5rem 1.25rem; border: none; border-radius: 100px; font-size: 0.82rem; font-weight: 600; color: #0A0A0A; cursor: pointer; background: #fff; transition: all .2s; }
    .nav-pill:hover { transform: translateY(-1px); background: #f0f0f0; }
    @media (max-width: 900px) { .nav-links { display: none; } }

    /* HERO */
    #cl-hero {
        padding: 7rem var(--gutter) 4rem;
        text-align: center;
    }
    #cl-hero .wrap { max-width: 720px; }
    #cl-hero h1 {
        font-size: clamp(2.4rem, 5vw, 4rem);
        margin-bottom: 1.25rem;
    }
    #cl-hero .lead {
        font-size: 1.1rem;
        color: rgba(255,255,255,0.65);
        margin-bottom: 2.5rem;
    }
    .cl-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(217,119,6,0.12);
        border: 1px solid rgba(217,119,6,0.35);
        border-radius: 100px;
        padding: 0.3rem 0.85rem;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--amber);
        margin-bottom: 1.5rem;
    }

    /* GATE */
    #cl-gate {
        padding: 2rem var(--gutter) 5rem;
    }
    #cl-gate .wrap { max-width: 520px; }
    .cl-form {
        background: var(--dark-2);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 2.25rem;
    }
    .cl-form h2 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    .cl-form p { color: rgba(255,255,255,0.55); font-size: 0.95rem; margin-bottom: 1.5rem; }
    .cl-form .field { display: flex; flex-direction: column; margin-bottom: 1rem; }
    .cl-form label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 0.4rem; letter-spacing: 0.05em; }
    .cl-form input {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 8px;
        color: #fff;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
        outline: none;
        transition: border-color 0.2s;
    }
    .cl-form input:focus { border-color: var(--amber); }
    .cl-form button {
        width: 100%;
        background: var(--amber);
        color: #fff;
        border: none;
        border-radius: 100px;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        padding: 0.95rem 1.5rem;
        cursor: pointer;
        transition: background 0.2s, transform 0.15s;
        margin-top: 0.5rem;
    }
    .cl-form button:hover { background: #B45309; }
    .cl-form button:disabled { opacity: 0.6; cursor: not-allowed; }
    .cl-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.9rem; text-align: center; min-height: 1em; }
    .cl-note.is-error { color: #f87171; }
    .cl-note.is-ok    { color: #4ade80; }
    .cl-fine { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 1rem; text-align: center; }

    /* CONTENT (revealed after submit) */
    #cl-content { display: none; padding: 1rem var(--gutter) 6rem; }
    #cl-content.is-open { display: block; }
    #cl-content .wrap { max-width: 820px; }
    .cl-thanks {
        background: rgba(34,197,94,0.08);
        border: 1px solid rgba(34,197,94,0.25);
        border-radius: 12px;
        padding: 1.25rem 1.5rem;
        margin-bottom: 3rem;
        font-size: 0.95rem;
        color: rgba(255,255,255,0.85);
    }
    .cl-section {
        background: var(--dark-2);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 1.75rem 2rem;
        margin-bottom: 1.25rem;
    }
    .cl-section h3 {
        font-size: 1.15rem;
        margin-bottom: 1rem;
        color: #fff;
    }
    .cl-section h3 .cl-section-num {
        display: inline-block;
        background: rgba(217,119,6,0.15);
        color: var(--amber);
        border: 1px solid rgba(217,119,6,0.3);
        font-family: 'DM Sans', sans-serif;
        font-size: 0.72rem;
        font-weight: 700;
        padding: 0.15rem 0.55rem;
        border-radius: 100px;
        margin-right: 0.5rem;
        vertical-align: middle;
        letter-spacing: 0.05em;
    }
    .cl-list { list-style: none; padding: 0; margin: 0; }
    .cl-list li {
        padding: 0.55rem 0 0.55rem 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        position: relative;
        font-size: 0.92rem;
        color: rgba(255,255,255,0.7);
    }
    .cl-list li:last-child { border-bottom: none; }
    .cl-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.95rem;
        width: 12px;
        height: 12px;
        border: 1.5px solid var(--amber);
        border-radius: 3px;
    }
    .cl-cta-block {
        margin-top: 2.5rem;
        background: linear-gradient(135deg, rgba(217,119,6,0.1), rgba(217,119,6,0.02));
        border: 1px solid rgba(217,119,6,0.25);
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
    }
    .cl-cta-block h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
    .cl-cta-block p { color: rgba(255,255,255,0.65); margin-bottom: 1.25rem; }
    .cl-cta-btn {
        display: inline-flex;
        background: #fff;
        color: #0A0A0A;
        font-weight: 700;
        font-size: 0.95rem;
        padding: 0.85rem 1.75rem;
        border-radius: 100px;
        border: none;
        cursor: pointer;
        text-decoration: none;
    }

    .cl-print-link {
        display: inline-block;
        margin-top: 1.5rem;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.45);
        text-decoration: underline;
        cursor: pointer;
        background: none;
        border: none;
        font-family: 'DM Sans', sans-serif;
    }
    .cl-print-link:hover { color: #fff; }

    @media print {
        body { background: #fff; color: #000; }
        #nav, #cl-gate, .cl-cta-block, .cl-print-link, footer { display: none !important; }
        #cl-content { display: block !important; }
        .cl-section { border: 1px solid #ddd; background: #fff; color: #000; }
        .cl-section h3 { color: #000; }
        .cl-list li { color: #333; border-color: #eee; }
    }

    /* FOOTER */
    footer { padding: 3rem var(--gutter); border-top: 1px solid var(--border); text-align: center; color: rgba(255,255,255,0.4); font-size: 0.85rem; }
    footer a { color: rgba(255,255,255,0.6); margin: 0 0.5rem; }
