/* FitFat simple static site theme */
:root{
  --bg0:#070a12;
  --bg1:#0b1020;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.09);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
  --border:rgba(255,255,255,.12);
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --accent:#7c5cff;
  --accent2:#2dd4bf;
  --ring:0 0 0 4px rgba(124,92,255,.25);
  --radius:18px;
  --radius2:14px;
  --max:980px;
}

@media (prefers-color-scheme: light){
  :root{
    --bg0:#f6f7fb;
    --bg1:#ffffff;
    --card:rgba(15,23,42,.04);
    --card2:rgba(15,23,42,.06);
    --text:rgba(15,23,42,.92);
    --muted:rgba(15,23,42,.70);
    --border:rgba(15,23,42,.12);
    --shadow:0 18px 55px rgba(2,6,23,.14);
    --ring:0 0 0 4px rgba(124,92,255,.22);
  }
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  font: 16px/1.65 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(124,92,255,.45), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(45,212,191,.35), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 55%);
}

a{color:inherit}
.muted{color:var(--muted)}

.kbd{
  font: 12px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  padding:6px 8px;
  border:1px solid var(--border);
  border-bottom-color: rgba(255,255,255,.22);
  border-radius:10px;
  background:rgba(255,255,255,.03);
  color:var(--text);
  white-space:nowrap;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:48px 18px 64px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:999px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow:var(--shadow);
  backdrop-filter: blur(10px);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.2px;
}
.dot{
  width:12px;height:12px;border-radius:999px;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow:0 0 0 4px rgba(124,92,255,.18);
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  text-decoration:none;
  color:var(--muted);
  background:rgba(255,255,255,.03);
}
.pill:hover{color:var(--text); border-color:rgba(255,255,255,.22)}
.pill:focus-visible{outline:none; box-shadow:var(--ring)}

.hero{
  margin-top:22px;
  padding:28px 22px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow:var(--shadow);
  backdrop-filter: blur(10px);
}

.hero h1{
  margin:0 0 6px;
  font-size: clamp(28px, 4vw, 44px);
  line-height:1.1;
}
.hero p{
  margin:0;
  color:var(--muted);
  max-width: 70ch;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
  margin-top:14px;
}
.card{
  grid-column: span 6;
  padding:18px 18px;
  border:1px solid var(--border);
  border-radius:var(--radius2);
  background: rgba(255,255,255,.03);
}
.card h2{margin:0 0 6px; font-size:18px}
.card p{margin:0; color:var(--muted)}

.ctaRow{
  margin-top:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  text-decoration:none;
  font-weight:650;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
}
.btnPrimary{
  border-color:rgba(124,92,255,.45);
  background:linear-gradient(135deg, rgba(124,92,255,.9), rgba(45,212,191,.55));
  color:#061019;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}
.btn:focus-visible{outline:none; box-shadow:var(--ring)}

.content{
  margin-top:18px;
  padding:22px 18px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
}
.content h1{margin:0 0 10px; font-size:28px}
.content h2{margin:18px 0 6px; font-size:18px}
.content p, .content li{color:var(--muted)}
.content a{color:var(--text)}
.content a:hover{text-decoration:underline}
.meta{color:var(--muted); margin-top:-4px}

.bullets{
  margin:10px 0 0;
  padding-left:18px;
}

.callouts{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.callout{
  grid-column: span 6;
  border:1px solid var(--border);
  border-radius:var(--radius2);
  padding:14px 14px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.callout strong{color:var(--text)}

.divider{
  height:1px;
  background:var(--border);
  margin:14px 0;
}

.footer{
  margin-top:16px;
  color:var(--muted);
  font-size:13px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

@media (max-width: 740px){
  .card{grid-column: span 12}
  .callout{grid-column: span 12}
  .wrap{padding-top:28px}
}
