/* WHODIS static marketing styles */
:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --primary: #1d4ed8;
  --primary-strong: #1e40af;
  --border: #dbe2ea;
  --ok: #0f766e;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #e8f0ff 0%, var(--bg) 35%, var(--bg) 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1100px, 92vw); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(10px); background: rgba(246,248,251,.85); border-bottom: 1px solid var(--border); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 0; }
.brand { font-weight: 800; letter-spacing: .4px; font-size: 1.05rem; }
.brandmark{display:flex;align-items:center;gap:10px}
.brandmark img{width:34px;height:34px;border-radius:8px}
.nav-links { display: flex; gap: 1.1rem; color: var(--muted); font-weight: 500; }
.nav-links a.active, .nav-links a:hover { color: var(--text); }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .72rem 1.05rem; border-radius: 10px; border: 1px solid transparent; font-weight: 600; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-strong); }
.btn-outline { border-color: var(--border); color: var(--text); background: #fff; }
.hero { padding: 5.5rem 0 3rem; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; }
h1,h2,h3 { line-height: 1.2; margin: 0 0 .8rem; }
h1 { font-size: clamp(2rem, 4.2vw, 3.35rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 64ch; }
.badge { display: inline-block; border: 1px solid #c8d7ff; color: #1e3a8a; background: #edf3ff; border-radius: 999px; padding: .28rem .7rem; font-size: .86rem; font-weight: 600; margin-bottom: 1rem; }
.hero-card,.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-card,.card { padding: 1.15rem; }
.hero-price { display: grid; gap: .75rem; }
.price-line { display: flex; align-items: baseline; justify-content: space-between; border-bottom: 1px dashed var(--border); padding: .5rem 0; }
.price-line strong { font-size: 1.25rem; }
.hero-art{display:flex;justify-content:center;align-items:center}
.hero-art img{width:min(230px,100%);filter:drop-shadow(0 10px 24px rgba(29,78,216,.18))}
.pop-band{margin:12px 0 4px;padding:10px 12px;border:1px dashed #b7c8ea;border-radius:10px;background:#f8fbff;color:#334155}
.section { padding: 3.2rem 0; }
.section-title { margin-bottom: 1.2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.card h3 { margin-bottom: .45rem; font-size: 1.06rem; }
.card p,.muted { color: var(--muted); }
.highlight { border-color: #b6c9ff; background: linear-gradient(180deg,#f7faff 0%,#fff 100%); }
.list { margin: .6rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.cta { padding: 2rem; border-radius: var(--radius); background: #0f172a; color: #f8fafc; }
.cta p { color: #d1d5db; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: .8rem 1rem; }
.faq details + details { margin-top: .7rem; }
.faq summary { font-weight: 600; cursor: pointer; }
.site-footer { border-top: 1px solid var(--border); margin-top: 3.5rem; }
.footer-wrap { padding: 1.2rem 0 2rem; color: var(--muted); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.notice { border-left: 4px solid var(--ok); background: #f0fdfa; padding: .9rem 1rem; border-radius: 8px; color: #115e59; }
@media (max-width: 900px) {
  .hero-grid,.grid-3,.grid-2 { grid-template-columns: 1fr; }
  .hero { padding-top: 4.2rem; }
  .nav-wrap { flex-wrap: wrap; }
  .nav-links { width: 100%; justify-content: space-between; padding-top: .5rem; }
}
