/* ================================
   Fine Print Killer — Neutral Gray Theme
   Shared Styles
   ================================ */

:root{
  --bg:#f6f7f8;
  --paper:#ffffff;
  --ink:#111;
  --muted:#555;
  --accent:#2b6cb0;
  --border:#d6d6d6;
  --shadow:0 1px 3px rgba(0,0,0,0.08);
}

html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
}

/* --- Watermark (center of screen, behind everything) --- */
body.wm{
  position: relative;
}
body.wm::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background-image: url("ai-eff_hidden_in_stroke.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(520px, 72vw);

  opacity: 0.2;                /* tweak 0.05–0.12 */
  filter: grayscale(1) contrast(1.1);
}

/* keep your content above the watermark */
header, .container, footer{
  position: relative;
  z-index: 1;
}

header{
  background:var(--paper);
  box-shadow:var(--shadow);
  padding:18px 28px;
  border-bottom:1px solid var(--border);
}

nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

nav a{
  color:var(--ink);
  text-decoration:none;
  font-weight:600;
}

nav a:hover{
  color:var(--accent);
}

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

h1,h2,h3{
  margin-top:0;
  color:var(--ink);
}

.card{
  background:var(--paper);
  padding:24px;
  border-radius:8px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  margin-bottom:24px;
}

.btn{
  display:inline-block;
  background:var(--accent);
  color:white;
  padding:12px 18px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  border:none;
  cursor:pointer;
}

.btn:hover{
  opacity:0.9;
}

.hero{
  padding:50px 0;
}

.hero h1{
  font-size:clamp(28px,4vw,40px);
}

.hero p{
  font-size:clamp(16px,2vw,20px);
  color:var(--muted);
}

.center{
  text-align:center;
}

.warning-box{
  background:#fff7d1;
  border:1px solid #f0e0a2;
  padding:16px;
  border-radius:8px;
  margin-bottom:24px;
  color:#6a5620;
}

/* --- Footer cleanup + logo sizing --- */
.site-footer{
  text-align:center;
  padding:24px 20px;
  margin-top:40px;
  font-size:14px;
  color:var(--muted);
}

.site-footer .logo-badge{
  width: 56px;         /* footer “signature” size */
  height: auto;
  display: block;
  margin: 0 auto 10px;
  transition: transform .18s ease, filter .18s ease;
}

.site-footer .logo-badge:hover{
  transform: translateY(-2px) scale(1.03);
  filter: contrast(1.08);
}

.site-footer .disclaimer{
  margin: 0;
}
