/* Minimal, clean styling to match your Tailwind look (no build tools needed) */

:root{
  --bg: #f8fafc;        /* slate-50 */
  --text: #0f172a;      /* slate-900 */
  --muted: #334155;     /* slate-700 */
  --muted2:#64748b;     /* slate-500/600-ish */
  --white:#ffffff;
  --border:#e2e8f0;     /* slate-200 */
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
  --radius: 16px;
  --radius-lg: 20px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height:1.5;
}

a{ color:#2563eb; text-decoration: underline; }
a:hover{ text-decoration-thickness: 2px; }

.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header{
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15,23,42,0.06), 0 1px 8px rgba(15,23,42,0.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 20px 0;
}
.site-title{
  margin:0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.nav-btn{
  border: 0;
  background: transparent;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor:pointer;
  transition: background .15s ease, color .15s ease, transform .05s ease;
}
.nav-btn:hover{ background: #e2e8f0; }
.nav-btn:active{ transform: translateY(1px); }
.nav-btn.is-active{
  background: #0f172a;
  color: white;
}

/* Main */
.main{
  padding: 32px 0 64px;
}

.page{ display:none; }
.page.is-visible{ display:block; }

.grid-2{
  display:grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.wide-gap{ gap: 40px; align-items: start; }

@media (min-width: 860px){
  .grid-2{ grid-template-columns: 1fr 1fr; }
}

.stack > * + *{ margin-top: 16px; }
.stack-lg > * + *{ margin-top: 24px; }

.headline{
  margin:0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-title{
  margin:0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.subhead{
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 700;
}
.lead{
  margin:0;
  font-size: 18px;
  color: var(--muted);
}
.text{
  margin:0;
  color: var(--muted);
}
.small{ font-size: 14px; color: var(--muted); }
.muted{ color: var(--muted2); }
.italic{ font-style: italic; }

.center{
  display:flex;
  justify-content:center;
}

/* Images */
.image{
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.max-sm{ max-width: 380px; }

/* Cards */
.card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.05);
  border: 1px solid rgba(226,232,240,0.8);
}
.card-title{
  margin:0;
  font-weight: 700;
}

/* Lists */
.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{ margin: 8px 0; }

/* Buttons */
.link-btn{
  display:inline-block;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid var(--border);
  text-decoration: none;
  font-weight: 600;
  color: #1d4ed8;
}
.link-btn:hover{
  background: #eff6ff;
}

/* Footer */
.site-footer{
  background: var(--white);
  border-top: 1px solid var(--border);
}
.footer-inner{
  padding: 18px 0;
  font-size: 14px;
  color: var(--muted2);
}
