/* SimpliScan marketing site — same brand language as the product dashboard. */
:root {
  --bg: #0d1117;
  --bg-soft: #11161d;
  --panel: #161d24;
  --panel-raised: #1b242d;
  --line: #29333e;
  --line-soft: #222b34;
  --text: #e8eef4;
  --muted: #93a1ae;
  --accent: #34b06f;
  --accent-strong: #2a9e61;
  --accent-soft: rgba(52, 176, 111, .12);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  font: 16px/1.6 "Segoe UI Variable Text", "Segoe UI", -apple-system, Roboto, sans-serif;
  background:
    radial-gradient(1400px 500px at 75% -10%, rgba(52,176,111,.10), transparent 60%),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ---- Header ---- */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(13,17,23,.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text);
  font-size: 19px; font-weight: 600; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand b { color: var(--accent); font-weight: 700; }
.links { display: flex; align-items: center; gap: 22px; }
.links a { color: var(--muted); text-decoration: none; font-size: 14.5px; font-weight: 550; }
.links a:hover { color: var(--text); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; border-radius: 10px; font-weight: 600; font-size: 14.5px;
  color: var(--text) !important; text-decoration: none;
  background: var(--panel-raised); border: 1px solid var(--line);
  transition: border-color .15s, background .15s, transform .06s;
}
.btn:hover { border-color: var(--accent); background: var(--accent-soft); }
.btn:active { transform: translateY(1px); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #06180f !important; }
.btn.primary:hover { background: var(--accent-strong); }
.btn.big { padding: 14px 26px; font-size: 16px; border-radius: 12px; }

/* ---- Hero ---- */
.hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
  padding-top: 84px; padding-bottom: 72px; }
.eyebrow { color: var(--accent); font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  font-size: 12.5px; margin: 0 0 14px; }
h1 { font-size: 46px; line-height: 1.12; margin: 0 0 18px; letter-spacing: -.5px; }
.sub { color: var(--muted); font-size: 18px; margin: 0 0 26px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.trust { color: var(--muted); font-size: 13.5px; }

.mock {
  background: linear-gradient(180deg, var(--panel-raised), var(--panel));
  border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,.45); transform: rotate(1.5deg);
}
.mock-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.mock-line {
  font: 14px/1.4 Consolas, monospace; color: var(--muted);
  padding: 10px 12px; border: 1px solid var(--line-soft); border-radius: 9px; margin-bottom: 9px;
  background: var(--bg-soft);
}
.mock-line.ok { color: var(--accent); border-color: rgba(52,176,111,.35); }

/* ---- Strip ---- */
.strip { border-block: 1px solid var(--line-soft); background: var(--bg-soft); padding: 26px 0; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.strip-grid div { display: flex; flex-direction: column; gap: 3px; }
.strip-grid b { font-size: 15px; }
.strip-grid span { color: var(--muted); font-size: 13px; }

/* ---- Sections ---- */
section.wrap, .how .wrap { padding-top: 76px; padding-bottom: 30px; }
h2 { font-size: 32px; margin: 0 0 28px; letter-spacing: -.3px; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 18px; }
.card {
  background: linear-gradient(180deg, var(--panel-raised), var(--panel));
  border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 22px;
}
.card h3 { margin: 0 0 8px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; }

.how { background: var(--bg-soft); border-block: 1px solid var(--line-soft); margin-top: 60px; }
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0 0 12px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps li {
  counter-increment: step;
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 56px 20px 20px; position: relative; color: var(--muted); font-size: 14.5px;
}
.steps li b { color: var(--text); display: block; margin-bottom: 6px; font-size: 16px; }
.steps li::before {
  content: counter(step);
  position: absolute; top: 16px; left: 20px;
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: #06180f; font-weight: 800;
}
.hint { color: var(--muted); font-size: 13.5px; }

/* ---- Pricing ---- */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.plan {
  background: linear-gradient(180deg, var(--panel-raised), var(--panel));
  border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 22px;
  display: flex; flex-direction: column; position: relative;
}
.plan.featured { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.plan .tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #06180f; font-size: 11.5px; font-weight: 800;
  padding: 3px 12px; border-radius: 99px; white-space: nowrap; }
.plan h3 { margin: 0 0 4px; font-size: 16px; }
.price { font-size: 34px; font-weight: 750; margin-bottom: 12px; }
.price span { font-size: 15px; font-weight: 500; color: var(--muted); }
.plan ul { list-style: none; margin: 0 0 18px; padding: 0; color: var(--muted); font-size: 14px;
  display: flex; flex-direction: column; gap: 7px; flex: 1; }
.plan ul li::before { content: "✓ "; color: var(--accent); font-weight: 700; }
.plan .btn { width: 100%; }

/* ---- Lead form ---- */
.lead-form { max-width: 620px; margin: 26px auto 10px; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-form input, .lead-form select, .lead-form textarea {
  background: var(--bg-soft); color: var(--text);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; font: inherit; font-size: 15px; width: 100%;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.lead-form textarea { resize: vertical; }
.lead-form .btn { width: 100%; border: none; cursor: pointer; }
#leadStatus { text-align: center; min-height: 18px; }
@media (max-width: 560px) { .lead-row { grid-template-columns: 1fr; } }

/* ---- Final CTA / footer ---- */
.final { padding: 90px 0 100px; }
.final h2 { margin-bottom: 10px; }
footer { border-top: 1px solid var(--line-soft); background: var(--bg-soft); padding: 26px 0; }
.foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 13.5px; }
.foot-logo { width: 18px; height: 18px; border-radius: 5px; vertical-align: -3px; }
.fine { font-size: 12px; width: 100%; }

/* ---- Legal pages ---- */
.legal { max-width: 760px; margin: 0 auto; padding: 60px 24px 90px; }
.legal h1 { font-size: 32px; }
.legal h2 { font-size: 20px; margin-top: 34px; }
.legal p, .legal li { color: var(--muted); font-size: 15px; }
.legal b, .legal strong { color: var(--text); }

/* ---- Responsive ---- */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-art { display: none; }
  h1 { font-size: 34px; }
  .strip-grid, .steps, .plans { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .strip-grid, .steps, .plans { grid-template-columns: 1fr; }
  .links a:not(.btn) { display: none; }
}
