/* SmartReportCard-style light SaaS */
:root{
  --bg: #f4f8ff;       /* soft sky */
  --bg2:#ffffff;       /* white */
  --ink:#0b1220;
  --muted:#5b6576;
  --muted2:#7a879c;
  --border:#e6eefb;

  --blue:#2563eb;
  --blue2:#0ea5e9;
  --blueSoft:#eaf2ff;

  --shadow: 0 18px 60px rgba(15,23,42,.08);
  --shadow2: 0 10px 26px rgba(15,23,42,.06);

  --r:22px;
  --r2:14px;
  --max:1120px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Inter, Roboto, Helvetica, Arial;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family:var(--font); color:var(--ink); }
body{
  background:
    radial-gradient(900px 420px at 50% -80px, rgba(37,99,235,.18), transparent 60%),
    radial-gradient(750px 420px at 80% 0px, rgba(14,165,233,.12), transparent 55%),
    var(--bg);
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.97; }

.container{ width:100%; max-width:var(--max); margin:0 auto; padding:18px 16px; }
.section{ padding:64px 0; }
.section.sm{ padding:32px 0; }
.section.alt{ background:rgba(255,255,255,.75); border-top:1px solid rgba(230,238,251,.9); border-bottom:1px solid rgba(230,238,251,.9); }

.topbar{
  position:sticky; top:12px; z-index:50;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:12px 14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-radius:999px;
  box-shadow:var(--shadow2);
}

.brand{ display:flex; align-items:center; gap:10px; font-weight:950; letter-spacing:-.2px; }
.brandmark{
  width:36px; height:36px; border-radius:12px;
  background:linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow:0 14px 32px rgba(37,99,235,.18);
}

.nav{ display:flex; align-items:center; gap:6px; flex-wrap:wrap; }
.nav a{
  color:var(--muted); font-weight:800; font-size:14px;
  padding:10px 12px; border-radius:999px;
}
.nav a:hover{ background:var(--blueSoft); color:var(--ink); }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 18px;
  border-radius:14px;
  font-weight:950;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  font-size:15px;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background:linear-gradient(135deg, var(--blue), var(--blue2));
  color:#fff;
  box-shadow:0 18px 40px rgba(37,99,235,.18);
}
.btn-ghost{
  background:#fff;
  border:1px solid var(--border);
  color:var(--ink);
  box-shadow:var(--shadow2);
}
.btn-soft{
  background:var(--blueSoft);
  border:1px solid rgba(37,99,235,.16);
  color:var(--ink);
}
.btn-link{
  background:transparent; border:0; padding:0;
  color:var(--blue); font-weight:950;
}
.btn-link:hover{ text-decoration:underline; transform:none; }

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:var(--blueSoft);
  border:1px solid rgba(37,99,235,.14);
  font-weight:950; color:#0b1220;
}
.pill .dot{
  width:10px; height:10px; border-radius:999px;
  background:var(--blue2);
  box-shadow:0 0 0 6px rgba(14,165,233,.12);
}

.h1{
  font-size:56px; letter-spacing:-1.2px; line-height:1.05;
  margin:16px 0 10px;
}
@media (max-width: 760px){ .h1{ font-size:40px; } }
.h2{ font-size:34px; letter-spacing:-.7px; margin:0 0 10px; }
.h3{ font-size:20px; margin:0 0 8px; letter-spacing:-.2px; }

.lead{ color:var(--muted); font-size:18px; line-height:1.9; margin:0; max-width:85ch; }
.p{ color:var(--muted); font-size:16px; line-height:1.85; margin:0; max-width:80ch; }

.center{ text-align:center; }
.max{ max-width:860px; margin:0 auto; }

.grid{ display:grid; gap:16px; }
.grid2{ grid-template-columns:repeat(2,1fr); }
.grid3{ grid-template-columns:repeat(3,1fr); }
@media (max-width: 980px){ .grid2,.grid3{ grid-template-columns:1fr; } }

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--r);
  box-shadow:var(--shadow2);
  padding:20px;
}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:#f7fbff;
  border:1px solid var(--border);
  color:var(--muted);
  font-weight:950;
  font-size:12px;
}

.stats{
  display:grid; grid-template-columns:repeat(4,1fr); gap:12px;
  margin-top:22px;
}
@media (max-width: 980px){ .stats{ grid-template-columns:repeat(2,1fr); } }
.stat{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--r2);
  box-shadow:var(--shadow2);
  padding:14px 14px;
}
.stat b{ display:block; font-size:18px; letter-spacing:-.3px; }
.stat div{ color:var(--muted2); font-size:13px; margin-top:4px; line-height:1.4; }

.checks{ margin:14px 0 0; padding:0; list-style:none; display:grid; gap:10px; }
.checks li{ display:flex; gap:10px; color:var(--muted); align-items:flex-start; }
.tick{
  width:18px; height:18px; border-radius:6px;
  background:rgba(37,99,235,.12);
  border:1px solid rgba(37,99,235,.20);
  display:inline-flex; align-items:center; justify-content:center;
  margin-top:2px;
}
.tick::after{ content:"✓"; font-weight:950; color:rgba(37,99,235,.95); font-size:12px; }

/* Big hero CTA (like SmartReportCard) */
.cta-hero{
  width:100%;
  border-radius:18px;
  padding:18px 20px;
  font-size:18px;
}

/* Screenshot frame (browser window look) */
.frame{
  border:1px solid var(--border);
  border-radius:22px;
  background:#fff;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.frame-top{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid var(--border);
  background:#f8fbff;
}
.dots{ display:flex; gap:8px; align-items:center; }
.dot{ width:10px; height:10px; border-radius:99px; background:#cfd9ea; }
.addr{
  flex:1;
  margin:0 12px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--border);
  color:var(--muted2);
  font-weight:900;
  font-size:12px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.frame-body{
  padding:18px;
  min-height:360px;
  background:linear-gradient(180deg, rgba(37,99,235,.08), rgba(14,165,233,.05));
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted2);
  font-weight:900;
  text-align:center;
}

/* Forms */
.input{
  width:100%;
  padding:13px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--ink);
  outline:none;
  box-shadow:0 1px 0 rgba(15,23,42,.02);
}
.input:focus{
  border-color: rgba(37,99,235,.45);
  box-shadow:0 0 0 4px rgba(37,99,235,.12);
}
.label2{ display:block; color:var(--muted); font-weight:950; font-size:13px; margin:0 0 8px; }
.form{ display:grid; gap:12px; }
.row{ display:grid; gap:12px; grid-template-columns:1fr 1fr; }
@media (max-width: 680px){ .row{ grid-template-columns:1fr; } }

.alert{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#f7fbff;
  color:var(--muted);
}
.alert.bad{ background:#fff2f2; border-color:#ffd1d1; color:#7f1d1d; }
.alert.good{ background:#effdf5; border-color:#bbf7d0; color:#14532d; }

.table{
  width:100%; border-collapse:collapse; overflow:hidden;
  border:1px solid var(--border); border-radius:var(--r);
  background:#fff;
  box-shadow:var(--shadow2);
}
.table th, .table td{ padding:12px 12px; border-bottom:1px solid var(--border); text-align:left; }
.table th{ background:#f7fbff; color:var(--muted); font-weight:950; font-size:13px; }
.table tr:last-child td{ border-bottom:0; }

.faq{ display:grid; gap:12px; }
.faq details{
  border:1px solid var(--border);
  background:#fff;
  border-radius:var(--r);
  padding:16px 16px;
  box-shadow:var(--shadow2);
}
.faq summary{ cursor:pointer; font-weight:950; color:var(--ink); }
.faq p{ margin:10px 0 0; color:var(--muted); line-height:1.8; }

.footer{
  padding:28px 0 42px;
  margin-top:34px;
  border-top:1px solid rgba(230,238,251,.9);
  color:var(--muted2);
  font-size:13px;
}
.footer .row{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.hr{ height:1px; background:rgba(230,238,251,.9); margin:18px 0; }