:root {
  --primary: #0b1b4d;       /* deep royal/navy */
  --secondary: #2563eb;     /* bright blue CTA */
  --ink: #111827;
  --muted: #6b7280;
  --bg: #ffffff;
  --card: #f8fafc;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

.container { max-width: 980px; margin: 0 auto; padding: 0 20px; }

/* ----------  NAV  ---------- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--primary); color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 1rem; }
.nav-logo img { display:block; height:26px; }
.nav-links { list-style: none; display: flex; gap: 1.2rem; margin: 0; padding: 0; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 500; }
.nav-links a:hover { text-decoration: underline; }

/* ----------  HERO  ---------- */
.site-header {
  margin-top: 58px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 42px 0 32px;
}
.hero-logo { width: 96px; height: auto; margin-bottom: 12px; }
h1 { margin: 0 0 10px; font-size: 2.1rem; }
.tagline { margin: 0 0 16px; color: #d1d5db; }

.cta {
  display:inline-block;
  padding:10px 16px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
}
.cta-primary { background: var(--secondary); color:#fff; }
.cta-primary:hover { opacity: 0.9; }

/* ----------  SECTIONS  ---------- */
.section { padding: 42px 0; }
.section h2 {
  color: var(--primary);
  margin: 0 0 12px;
  border-bottom: 2px solid #eef2f7;
  padding-bottom: 6px;
}
.section-note { color: var(--muted); margin: 6px 0 16px; }

/* ----------  TOOL CARDS  ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1.2rem;
}
.tool-card {
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  transition: transform .15s ease;
}
.tool-card:hover { transform: translateY(-3px); }
.tool-card img { width: 72px; height: 72px; object-fit: contain; margin-bottom: 12px; }
.tool-card h3 { margin: 6px 0; color: var(--primary); }
.tool-card p { font-size: 0.95rem; color: var(--muted); }
.coming {
  display:inline-block;
  margin-top:8px;
  padding:4px 10px;
  background:#fde68a;
  color:#92400e;
  font-weight:600;
  font-size:0.8rem;
  border-radius:9999px;
}

.cta-wrapper { text-align:center; margin-top:2rem; }

/* ----------  FOOTER  ---------- */
.site-footer {
  background:#f3f4f6;
  color:#374151;
  text-align:center;
  padding:16px 0;
  font-size:0.95rem;
}

/* ----------  DISCLOSURE BAR  ---------- */
#disclosure-bar {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  padding: 6px 10px;
  z-index: 1100;
}
#disclosure-bar p { margin: 0; }

/* ----------  MISC  ---------- */
a { color: var(--secondary); text-decoration: none; }
a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .nav-links { gap: 0.8rem; font-size: 0.9rem; }
  h1 { font-size: 1.6rem; }
}

/* BLOG PAGE */
header.site-header h1 { font-size: 2rem; }
header.site-header .tagline { color:#e5e7eb; font-size:1.1rem; }
.section h3 { color: var(--primary); margin-top: 1.8rem; }
.section p + h3 { margin-top: 2.4rem; }

.tool-link {
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  font-size: 0.9rem;
}
.tool-link:hover { text-decoration: underline; }

@media (max-width:640px){
  header.site-header h1{font-size:1.5rem;}
}
