
      
    


      
     


      {} *{} {}
     


      #IE-warning {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: white;
      }
      .IE-warning-message {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
      }
    



 :root { --bg: #f5f7fb; --bg-card: #ffffff; --text-main: #111827; --text-muted: #6b7280; --accent: #16a34a; --accent-dark: #15803d; --accent-soft: #dcfce7; --danger: #f97316; --border-soft: #e5e7eb; --radius-lg: 18px; --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08); } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--bg); color: var(--text-main); line-height: 1.6; -webkit-font-smoothing: antialiased; } a { color: inherit; text-decoration: none; } .page { min-height: 100vh; display: flex; flex-direction: column; } .container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 16px; } /* NAV */ .nav { background: #ffffffcc; backdrop-filter: blur(12px); border-bottom: 1px solid rgba(148, 163, 184, 0.2); position: sticky; top: 0; z-index: 30; } .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 16px; } .nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1rem; } .nav-brand-mark { width: 30px; height: 30px; border-radius: 999px; background: radial-gradient(circle at 30% 0%, #bbf7d0, #16a34a); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.85rem; } .nav-brand-text { display: flex; flex-direction: column; gap: 2px; } .nav-brand-name { font-size: 0.95rem; } .nav-brand-tag { font-size: 0.7rem; color: var(--text-muted); } .nav-right { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; } .nav-link-main { color: #0369a1; text-decoration: underline; text-decoration-style: dotted; cursor: pointer; white-space: nowrap; } /* HERO */ .hero { padding: 18px 16px 10px; } .hero-inner { display: grid; gap: 18px; background: radial-gradient(circle at top left, #bbf7d0, #f5f7fb); border-radius: 26px; padding: 18px 16px; box-shadow: var(--shadow-soft); position: relative; overflow: hidden; } .hero-inner::after { content: ""; position: absolute; right: -80px; top: -40px; width: 220px; height: 220px; border-radius: 999px; background: radial-gradient(circle at center, rgba(16, 185, 129, 0.25), transparent); opacity: 0.8; } @media (min-width: 900px) { .hero-inner { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr); padding: 22px 22px 20px; } } .hero-main { position: relative; z-index: 1; } .hero-pill { font-size: 0.75rem; display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px; border-radius: 999px; background: rgba(15, 23, 42, 0.9); color: #e5e7eb; margin-bottom: 8px; } .hero-pill span { background: #22c55e; color: #052e16; padding: 2px 7px; border-radius: 999px; font-weight: 700; font-size: 0.7rem; } .hero h1 { font-size: 1.7rem; line-height: 1.2; margin-bottom: 6px; } .hero-sub { font-size: 0.9rem; color: #020617; margin-bottom: 10px; max-width: 28rem; } .hero-accountability-text { margin-bottom: 8px; font-size: 0.8rem; color: #4b5563; background: #ecfdf5; border-left: 4px solid #10b981; padding: 8px 10px; border-radius: 6px; } .hero-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; color: var(--text-muted); } .hero-meta-strong { font-weight: 600; color: var(--accent-dark); } /* HERO RIGHT: ACTIONS CARD */ .hero-actions-card { position: relative; z-index: 1; background: var(--bg-card); border-radius: 18px; padding: 12px 12px 10px; box-shadow: var(--shadow-soft); border: 1px solid rgba(226, 232, 240, 0.9); font-size: 0.82rem; max-height: 430px; overflow: auto; } .card-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; } .card-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; } .hero-actions-toolbar { display: flex; justify-content: flex-end; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; } .btn-print, .btn-reset { background: #f3f4f6; color: #111827; border-radius: 999px; padding: 6px 12px; font-size: 0.78rem; border: 1px solid #d1d5db; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; } .btn-print:hover, .btn-reset:hover { background: #e5e7eb; } .btn-reset { background: #fee2e2; color: #b91c1c; border-color: #fecaca; } .btn-reset:hover { background: #fecaca; } /* ACTIVITY LIST */ .activity-list { display: grid; gap: 8px; margin-top: 4px; } .activity-row { display: grid; grid-template-columns: minmax(0, 1.6fr) auto auto; gap: 8px; align-items: center; font-size: 0.82rem; } @media (max-width: 599px) { .activity-row { grid-template-columns: minmax(0, 1.4fr) auto; grid-template-rows: auto auto; } .activity-row .activity-bar-cell { grid-column: 1 / -1; } } .activity-label { display: flex; flex-direction: column; gap: 2px; } .activity-label-main { font-weight: 600; } .activity-label-sub { font-size: 0.75rem; color: var(--text-muted); } .activity-counter { display: flex; align-items: center; gap: 4px; justify-content: flex-end; font-variant-numeric: tabular-nums; } .activity-counter button { width: 22px; height: 22px; border-radius: 999px; border: 1px solid #d1d5db; background: #f9fafb; cursor: pointer; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; padding: 0; } .activity-counter button:hover { background: #e5e7eb; } .activity-count-display { min-width: 40px; text-align: center; font-size: 0.8rem; } .activity-bar-cell { display: flex; align-items: center; gap: 6px; } .activity-bar-outer { flex: 1; height: 8px; border-radius: 999px; background: #e5e7eb; overflow: hidden; border: 1px solid #d1d5db; } .activity-bar-inner { height: 100%; width: 0%; border-radius: 999px; background: linear-gradient(90deg, #22c55e, #4ade80); transition: width 0.18s ease-out; } .activity-bar-text { font-size: 0.75rem; color: var(--text-muted); min-width: 54px; text-align: right; font-variant-numeric: tabular-nums; } .activity-badge-complete { display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: 999px; background: #dcfce7; color: #166534; font-size: 0.7rem; font-weight: 600; } /* MAIN SECTION */ .section { padding: 10px 16px 18px; } .section-header { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 10px; } .section-kicker { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-dark); font-weight: 700; margin-bottom: 2px; } .section-title { font-size: 1.1rem; font-weight: 700; } .section-sub { font-size: 0.8rem; color: var(--text-muted); max-width: 26rem; } .grid-2 { display: grid; gap: 12px; } @media (min-width: 900px) { .grid-2 { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); } } .card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 14px; box-shadow: var(--shadow-soft); border: 1px solid rgba(226, 232, 240, 0.9); } /* PROMPT BOX */ .prompt-box { margin-top: 8px; border-radius: 10px; background: #0f172a; color: #e5e7eb; padding: 10px; font-size: 0.8rem; } .prompt-box-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: #a5b4fc; margin-bottom: 4px; } .prompt-textarea { width: 100%; min-height: 120px; border-radius: 8px; border: 1px solid rgba(148, 163, 184, 0.6); background: #020617; color: #e5e7eb; font-family: inherit; font-size: 0.78rem; padding: 8px; resize: vertical; } .prompt-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: flex-start; margin-top: 6px; } .btn-small { border-radius: 999px; border: none; padding: 6px 12px; font-size: 0.78rem; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; } .btn-copy { background: #e5e7eb; color: #111827; } .btn-copy:hover { filter: brightness(1.03); } .btn-chatgpt { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #f9fafb; text-decoration: none; box-shadow: 0 0 12px rgba(59,130,246,0.6), 0 0 24px rgba(37,99,235,0.4); } .btn-chatgpt:hover { filter: brightness(1.05); transform: translateY(-1px); } .prompt-note { font-size: 0.75rem; color: #9ca3af; margin-top: 4px; } .prompt-note strong { color: #facc15; } /* FOOTER */ .footer { padding: 4px 16px 80px; font-size: 0.75rem; color: var(--text-muted); text-align: center; } /* STICKY SNAPSHOT BAR */ .snapshot-bar { position: fixed; left: 0; right: 0; bottom: 0; background: #0f172a; color: #f9fafb; z-index: 40; padding: 6px 0 8px; font-size: 0.78rem; } .snapshot-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 10px; } .snapshot-bar-metrics { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; flex: 1; } .snapshot-chip { display: inline-flex; align-items: baseline; gap: 4px; padding: 4px 8px; border-radius: 999px; background: rgba(15, 23, 42, 0.9); border: 1px solid rgba(148, 163, 184, 0.6); } .snapshot-label { color: #9ca3af; } .snapshot-value { font-weight: 600; color: #f9fafb; } .snapshot-progress { min-width: 130px; flex: 1; } .snapshot-progress-label { font-size: 0.75rem; color: #e5e7eb; margin-bottom: 3px; } .snapshot-progress-bar { width: 100%; height: 8px; border-radius: 999px; background: #020617; border: 1px solid #4b5563; overflow: hidden; } .snapshot-progress-bar-inner { height: 100%; width: 0; background: linear-gradient(90deg, #22c55e, #4ade80); } .btn-snapshot { border-radius: 999px; border: none; padding: 6px 12px; background: #22c55e; color: #052e16; font-weight: 700; font-size: 0.8rem; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; box-shadow: 0 10px 22px rgba(34, 197, 94, 0.4); } .btn-snapshot:hover { filter: brightness(1.05); transform: translateY(-1px); } /* Make room so footer text isn't hidden behind bar */ .footer { padding-bottom: 80px; } /* RESPONSIVE / PRINT */ @media (min-width: 768px) { .hero { padding-inline: 0; padding-top: 24px; } .section { padding-inline: 0; padding-top: 14px; } .footer { padding-inline: 0; } } @media (max-width: 640px) { .snapshot-bar-inner { flex-direction: column; align-items: stretch; } .snapshot-bar-metrics { justify-content: space-between; } .btn-snapshot { justify-content: center; width: 100%; } } @media print { body { background: #ffffff; } .nav, .hero, .snapshot-bar { display: none !important; } .section { padding: 0; } .container { padding: 0; max-width: 100%; } .card { box-shadow: none; border-radius: 0; } .btn-print, .btn-reset, .btn-snapshot { display: none; } .footer { padding-bottom: 0; } } 

