/* Domain Monitor landing page — dark-first */
:root{
  --bg:#0b0d12;
  --card:#121624;
  --text:#e7e9ee;
  --muted:#a7afc2;
  --line:#232a3f;
  --accent:#6ea8ff;
  --accent2:#8b5cf6;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
@media (prefers-color-scheme: light){
  :root{ --bg:#f7f8fb; --card:#ffffff; --text:#0d1320; --muted:#4d5a73; --line:#e6e8ef; --shadow:0 10px 22px rgba(0,0,0,.08);}
}
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0; font-family:var(--sans);
  background: radial-gradient(1200px 700px at 15% 0%, rgba(110,168,255,.20), transparent 60%),
              radial-gradient(900px 600px at 85% 10%, rgba(139,92,246,.18), transparent 60%),
              var(--bg);
  color:var(--text);
}
a{ color:inherit; text-decoration:none; }
.container{ width:min(1100px, 92vw); margin:0 auto; }
.header{
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 0;
}
.brand{ display:flex; align-items:center; gap:12px; font-weight:700; letter-spacing:.2px;}
.logo{ width:28px; height:28px; }
.badge{
  font-size:12px; padding:4px 9px; border-radius:999px;
  background: linear-gradient(90deg, rgba(110,168,255,.25), rgba(139,92,246,.25));
  border:1px solid rgba(255,255,255,.10);
  color:var(--text);
}
.nav{ display:flex; gap:18px; align-items:center; }
.nav a{ color:var(--muted); font-weight:600; }
.nav a:hover{ color:var(--text); }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px;
  background: linear-gradient(90deg, rgba(110,168,255,.95), rgba(139,92,246,.95));
  color:#0b0d12; font-weight:800;
  box-shadow: var(--shadow);
}
.btn-ghost{
  background: transparent; color: var(--text);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:none;
}
.btn-ghost:hover{ border-color: rgba(255,255,255,.28); }

.hero{
  display:grid; grid-template-columns: 1.25fr .75fr; gap:22px;
  padding:30px 0 14px;
}
@media (max-width: 900px){
  .hero{ grid-template-columns:1fr; }
  .nav{ display:none; }
}
.hero h1{ font-size: clamp(34px, 4vw, 48px); line-height:1.05; margin:0 0 14px; }
.lead{ font-size: 17px; line-height:1.6; color:var(--muted); margin:0 0 18px; }
.cta{ display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 10px; }
.section{ padding:36px 0 6px; }
.section h2{ margin:0 0 16px; font-size: 26px; }
.card{
  background: rgba(18,22,36,.80);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
@media (prefers-color-scheme: light){
  .card{ background: rgba(255,255,255,.92); border-color: rgba(0,0,0,.08); }
}
.card-title{ font-weight:800; margin-bottom:10px; }
.grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; }
@media (max-width: 900px){ .grid{ grid-template-columns:1fr; } }
.grid2{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
@media (max-width: 900px){ .grid2{ grid-template-columns:1fr; } }
.checklist{ list-style:none; padding:0; margin:10px 0 14px;}
.checklist li{ margin:8px 0; padding-left:26px; position:relative; color:var(--muted); }
.checklist li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  color: rgba(110,168,255,.95);
  font-weight:900;
}
.mini{ display:flex; gap:8px; flex-wrap:wrap; }
.pill{
  font-size:12px; color:var(--muted);
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
}
.muted{ color:var(--muted); }
code{ font-family: var(--mono); font-size: 0.95em; padding:2px 6px; border-radius:10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
@media (prefers-color-scheme: light){
  code{ background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.08); }
}
.faq{
  margin: 10px 0;
  background: rgba(18,22,36,.60);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.faq summary{ cursor:pointer; font-weight:800; }
.faq p{ margin:10px 0 0; color:var(--muted); line-height:1.6;}
.footer{
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  padding:28px 0 36px;
}


.shot{
  width:100%;
  height:auto;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.10);
}
.cookie{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
}
.cookie-inner{
  max-width: 1100px;
  margin: 0 auto;
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
  background: rgba(18,22,36,.92);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 14px 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.cookie-title{ font-weight:900; margin-bottom:6px;}
.cookie-actions{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
@media (max-width: 700px){
  .cookie-inner{ flex-direction:column; }
  .cookie-actions{ width:100%; }
  .cookie-actions .btn{ width:100%; }
}
