/* Liquid Glass + Liquid Grass (orange accent) */
:root{
  --bg0:#071018;
  --bg1:#0b1420;
  --glass: rgba(255,255,255,0.06);
  --glass2: rgba(255,255,255,0.10);
  --stroke: rgba(255,255,255,0.14);
  --text: #E6EEF8;
  --muted:#A7B6C8;
  --orange:#F97316;
  --orange2:#FB923C;
  --green:#22C55E;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 10% 10%, rgba(34,197,94,0.22), transparent 55%),
    radial-gradient(1000px 700px at 90% 15%, rgba(249,115,22,0.26), transparent 55%),
    radial-gradient(900px 700px at 70% 90%, rgba(251,146,60,0.18), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

.noise{
  pointer-events:none;
  position:fixed; inset:0;
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="200" height="200" filter="url(%23n)" opacity="0.35"/></svg>');
  mix-blend-mode: overlay;
  opacity:0.18;
}

.wrap{max-width:1100px;margin:0 auto;padding:22px}

.top{
  display:flex; gap:16px; align-items:stretch; flex-wrap:wrap;
}

.brand{
  flex:1 1 420px;
  padding:18px;
}

.glass{
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border:1px solid var(--stroke);
  border-radius:22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

.row{display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;}

.h1{font-size:28px; font-weight:900; letter-spacing:-0.02em; margin:0}
.sub{color:var(--muted); margin:6px 0 0; line-height:1.45}

.pills{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.pill{padding:8px 10px; border-radius:999px; border:1px solid rgba(255,255,255,0.14); background:rgba(0,0,0,0.12); color:var(--muted); font-size:12px}
.pill strong{color:var(--text)}

.kpis{flex:1 1 260px; padding:18px; display:grid; gap:10px;}
.kpi{padding:12px 12px; border-radius:18px; border:1px solid rgba(255,255,255,0.12); background:rgba(0,0,0,0.10)}
.kpi .t{font-size:12px; color:var(--muted)}
.kpi .v{font-weight:900; font-size:16px; margin-top:3px}

.grid{
  display:grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap:16px;
  margin-top:16px;
}
@media (max-width: 980px){
  .grid{grid-template-columns:1fr}
}

.card{padding:16px}

.section-title{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px}
.section-title h2{margin:0; font-size:16px; letter-spacing:0.02em}

.quote{font-size:14px; line-height:1.55; color:var(--text);}
.quote .muted{color:var(--muted); font-size:12px; margin-top:6px}

.todo{display:flex; flex-direction:column; gap:10px;}
.phase{padding:12px; border-radius:18px; border:1px solid rgba(255,255,255,0.12); background:rgba(0,0,0,0.10)}
.phase h3{margin:0 0 10px 0; font-size:13px; color:var(--muted); font-weight:800}
.item{display:flex; align-items:flex-start; gap:10px; padding:10px; border-radius:16px; border:1px solid rgba(255,255,255,0.10); background:rgba(255,255,255,0.04)}
.chk{width:22px; height:22px; border-radius:10px; border:1px solid rgba(255,255,255,0.16); display:flex; align-items:center; justify-content:center; margin-top:1px; flex: 0 0 auto; cursor:pointer;}
.chk[data-done="true"]{background:rgba(34,197,94,0.20); border-color:rgba(34,197,94,0.55)}
.chk svg{opacity:0.0}
.chk[data-done="true"] svg{opacity:1.0}
.item .title{flex:1}
.item .meta{font-size:12px; color:var(--muted); margin-top:4px}

.goal{display:grid; gap:10px}
.goal .g{padding:12px; border-radius:18px; border:1px solid rgba(255,255,255,0.12); background:rgba(0,0,0,0.10)}
.goal .g .t{font-size:12px;color:var(--muted); font-weight:800}
.goal .g .v{font-size:14px; margin-top:6px; line-height:1.5}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(249,115,22,0.35), rgba(249,115,22,0.18));
  color:var(--text);
  cursor:pointer;
  font-weight:800;
}

.small{font-size:12px;color:var(--muted)}

.loc{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.loc .dot{width:10px; height:10px; border-radius:999px; background:var(--orange)}

.badge{padding:6px 10px;border-radius:999px;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.12); font-size:12px;color:var(--muted)}
