/* styles.css */
/* ================================
   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;
}

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;
}

footer{
  text-align:center;
  padding:20px;
  margin-top:40px;
  font-size:14px;
  color:var(--muted);
}

.hero{
  padding:50px 0;
}

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

.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;
}

/* ===== 2ay’s logo system ===== */
.today-badge{
  display:block;
  height:auto;
  color: var(--ink);
}

/* sizes */
.today-badge--small{ width: 56px; margin: 0 auto 10px; }
.today-badge--hero{ width: min(360px, 80vw); margin: 0 auto 18px; }

/* D outline */
.today-stroke{
  fill:none;
  stroke: #111;
  stroke-width:14;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* optional hero “draw” effect */
.today-stroke--draw{
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: todayDraw .9s ease forwards;
}
@keyframes todayDraw { to { stroke-dashoffset: 0; } }

/* Big 2 = TO (pops) */
.today-two{
  font: 900 96px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  fill: var(--accent);
  paint-order: stroke;
  stroke: rgba(17,17,17,.25);
  stroke-width: 4;
}

/* "ay" aligned to the SAME baseline as the 2 */
.today-ay{
  font: 800 58px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  fill: #111;
  letter-spacing: .2px;
}

/* ghost ’s: high-contrast outline + soft fill (so it reads even near the stroke) */
.today-ghost-s{
  font: 900 30px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  fill: rgba(43,108,176,.20);
  paint-order: stroke;
  stroke: rgba(17,17,17,.55);
  stroke-width: 2.5;
}

/* Hero-only: date/time proof-of-now */
.today-time{
  font: 700 16px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  fill: rgba(17,17,17,.72);
}
.today-date{
  font: 700 14px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  fill: rgba(17,17,17,.55);
}

/* footer cleanup */
.site-footer{
  text-align:center;
  padding:24px 20px;
  margin-top:40px;
  font-size:14px;
  color:var(--muted);
}
.site-footer .disclaimer{ margin:0; }
/* Add this to styles.css */
.today-tag{
  display:inline-block;
  background: var(--accent);   /* same as the 2 */
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.2;
}
