:root {
  color-scheme: dark;
  --bg: #11100f;
  --card: #1a1917;
  --line: #2b2926;
  --muted: #918c84;
  --text: #f8f5ef;
  --red: #ff214d;
  --orange: #ff7a1a;
  --yellow: #ffd91a;
}
* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; background: radial-gradient(circle at 50% 20%, rgba(255,75,30,.08), transparent 38%); }
.shell { position: relative; width: min(1120px, calc(100% - 40px)); margin: auto; padding-bottom: 80px; }
.topbar { height: 82px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 750; letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; background: linear-gradient(145deg, var(--yellow), var(--orange) 55%, var(--red)); color: #14110e; font-weight: 900; }
.live { color: var(--muted); font-size: 13px; display: flex; align-items: center; gap: 8px; }
.live i { width: 7px; height: 7px; background: #6fe28b; border-radius: 50%; box-shadow: 0 0 0 5px rgba(111,226,139,.08); animation: pulse 2s infinite; }
.hero { padding: 72px 0 54px; }
.eyebrow { color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1 { font-size: clamp(44px, 7vw, 82px); line-height: .98; letter-spacing: -.065em; margin: 14px 0 22px; }
h1 span { color: transparent; -webkit-text-stroke: 1px #e5ded5; }
.lead { color: var(--muted); font-size: clamp(16px, 2vw, 20px); max-width: 610px; line-height: 1.6; }
.progress-card { margin-top: 52px; padding: 48px clamp(28px, 6vw, 72px); min-height: 390px; display: grid; grid-template-columns: minmax(250px, 380px) 1fr; align-items: center; gap: clamp(36px, 7vw, 90px); background: linear-gradient(145deg, #1d1b19, #171614); border: 1px solid var(--line); border-radius: 30px; box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.orbit-wrap { width: min(100%, 330px); aspect-ratio: 1; position: relative; }
.orbit { width: 100%; overflow: visible; transform: rotate(-90deg); filter: drop-shadow(0 8px 18px rgba(0,0,0,.55)); }
.dot { fill: #292724; transition: fill .6s ease, filter .6s ease, transform .6s cubic-bezier(.2,.8,.2,1); transform-box: fill-box; transform-origin: center; }
.dot.active { transform: scale(1.05); }
.number { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.number strong { font-size: clamp(46px, 7vw, 72px); letter-spacing: -.07em; font-variant-numeric: tabular-nums; }
.number span { margin-top: 4px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .18em; }
.summary-label { color: var(--muted); font-size: 13px; }
.summary h2 { margin: 10px 0; font-size: clamp(27px, 4vw, 42px); letter-spacing: -.045em; }
.summary > p { color: var(--muted); line-height: 1.65; max-width: 460px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; }
.stats div { padding: 16px 12px; background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: 14px; }
.stats strong, .stats span { display: block; }
.stats strong { font-size: 23px; }
.stats span { margin-top: 3px; color: var(--muted); font-size: 11px; }
.tasks-section { padding-top: 28px; }
.section-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 24px; }
.section-head h2 { margin: 8px 0 0; font-size: 34px; letter-spacing: -.04em; }
.section-head time { color: var(--muted); font-size: 12px; }
.tasks { display: grid; gap: 10px; }
.task { display: grid; grid-template-columns: 12px 1fr auto; align-items: center; gap: 18px; min-height: 82px; padding: 17px 22px; background: var(--card); border: 1px solid var(--line); border-radius: 17px; transition: border-color .2s, transform .2s; }
.task:hover { transform: translateY(-1px); border-color: #3b3834; }
.task-state { width: 10px; height: 10px; border: 2px solid #4b4843; border-radius: 50%; }
.task.done .task-state { border: 0; background: var(--yellow); box-shadow: 0 0 12px rgba(255,217,26,.25); }
.task.in_progress .task-state { border: 0; background: var(--red); box-shadow: 0 0 12px rgba(255,33,77,.3); }
.task h3 { margin: 0 0 10px; font-size: 14px; font-weight: 650; }
.bar { height: 3px; overflow: hidden; background: #292724; border-radius: 9px; }
.bar i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow)); transition: width .8s cubic-bezier(.2,.8,.2,1); }
.task-percent { color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; }
.error { padding: 24px; color: #ff9bac; border: 1px solid #572934; border-radius: 16px; background: #231619; }
@keyframes pulse { 50% { opacity: .45; } }
@media (max-width: 760px) {
  .shell { width: min(100% - 24px, 1120px); }
  .topbar { height: 68px; }
  .live { font-size: 0; }
  .hero { padding-top: 52px; }
  .progress-card { grid-template-columns: 1fr; justify-items: center; padding: 34px 22px; }
  .summary { width: 100%; text-align: center; }
  .summary > p { margin-inline: auto; }
  .stats { text-align: left; }
  .section-head { align-items: start; flex-direction: column; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
