/* ============================================
   creative.css — passive additions only
   ============================================
   Surviving the cleanup pass: only the styles backing the still-present
   passive features remain (the /now and /uses content pages, and the
   time-of-day body-class wash). All popup, overlay, and floating-widget
   styles were removed.

   Restore: deleting this file + the import in HTML reverts every visual
   change in this file.
   ============================================ */

/* ──────────────────────────────────────────────
   /NOW PAGE
────────────────────────────────────────────── */
.now-updated {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}
.now-content { max-width: 880px; margin: 0 auto; padding: 0 40px 80px; }
.now-grid { display: flex; flex-direction: column; gap: 56px; }
.now-section-h {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}
.now-section-body { display: flex; flex-direction: column; gap: 14px; }
.now-card {
    padding: 20px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
    transition: border-color 0.18s, transform 0.18s, background 0.18s;
}
.now-card:hover {
    border-color: rgba(var(--element-rgb, 228, 255, 26), 0.25);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}
.now-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.now-h {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin: 0;
}
.now-p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}
.now-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}
.now-link:hover { text-decoration: underline; }
.now-build-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.now-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 9px;
    border-radius: 100px;
    background: rgba(var(--element-rgb, 228, 255, 26), 0.1);
    color: var(--accent);
    border: 1px solid rgba(var(--element-rgb, 228, 255, 26), 0.25);
    text-transform: uppercase;
}
.now-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.now-list-item {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 14px;
    color: var(--text);
}
.now-list-item a { color: var(--text); text-decoration: none; }
.now-list-item a:hover { color: var(--accent); }
.now-muted { color: var(--text-muted); }
.now-list-misc .now-list-item {
    color: var(--text-muted);
    font-size: 13px;
}

/* ──────────────────────────────────────────────
   /USES PAGE
────────────────────────────────────────────── */
.uses-content { max-width: 880px; margin: 0 auto; padding: 0 40px 80px; }
.uses-grid { display: flex; flex-direction: column; gap: 48px; }
.uses-section-h {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}
.uses-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}
.uses-item {
    padding: 16px 22px;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}
.uses-item:last-child { border-bottom: 0; }
.uses-item:hover { background: rgba(255, 255, 255, 0.025); }
.uses-item-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.005em;
}
.uses-item-note {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .now-content, .uses-content { padding: 0 20px 60px; }
}

/* ──────────────────────────────────────────────
   TIME-OF-DAY SKIN (time-of-day.js)
   Subtle palette nudges across the day. Pure visual layer — no
   interaction. Below 6% alpha so it never competes with element
   theming or the hero glow.
────────────────────────────────────────────── */
body.tod-dawn    { --tod-tint: 280, 200, 240; }
body.tod-morning { --tod-tint: 255, 220, 180; }
body.tod-day     { --tod-tint: 255, 255, 255; }
body.tod-dusk    { --tod-tint: 255, 180, 140; }
body.tod-evening { --tod-tint: 200, 170, 255; }
body.tod-night   { --tod-tint: 160, 180, 240; }

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(var(--tod-tint, 255, 255, 255), 0.04) 0%,
        rgba(var(--tod-tint, 255, 255, 255), 0) 65%
    );
    transition: background 1.4s ease;
}
body.blog-page::before,
body.assess-page::before { display: none; }
