/* SLP Command — public site stylesheet
   Modern, clean, responsive. No dependencies. Dark mode support. */

:root {
  --ink:          #0f0f12;
  --ink2:         #3a3a42;
  --muted:        #6b6b72;
  --accent:       #2d5be3;   /* command blue */
  --accent-dark:  #1a3fa8;
  --accent-light: #ebeffd;
  --gold:         #c8942a;
  --line:         #e4e4ea;
  --bg:           #ffffff;
  --bg2:          #f5f5f9;
  --note-bg:      #fff8e6;
  --note-border:  #e0c060;
  --max:          780px;
  --hero-max:     1080px;
  --radius:       14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ─── SITE HEADER ─── */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.site-header .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-header .logo-mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: #fff; letter-spacing: -0.5px;
}
.site-header .brand-name { font-weight: 700; font-size: 17px; color: var(--ink); }
.site-header .brand-name span { color: var(--accent); }
.site-header nav a {
  color: var(--muted); font-size: 14px; text-decoration: none; margin-left: 20px;
}
.site-header nav a:hover { color: var(--accent); }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 60%);
  padding: 80px 24px 72px;
  text-align: center;
}
.hero-inner { max-width: var(--hero-max); margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-light); color: var(--accent);
  font-size: 13px; font-weight: 600; padding: 5px 14px; border-radius: 100px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.12; font-weight: 800;
  color: var(--ink); margin-bottom: 18px; letter-spacing: -1px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  font-size: 19px; color: var(--ink2); max-width: 520px;
  margin: 0 auto 36px; line-height: 1.6;
}
.cta-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 14px 26px; border-radius: 12px;
  font-size: 16px; font-weight: 600; text-decoration: none;
  transition: opacity .15s, transform .1s;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-outline { background: transparent; border: 1.5px solid var(--line); color: var(--ink2); }
.store-badge { margin-top: 40px; color: var(--muted); font-size: 13px; }
.store-badge p { margin-bottom: 6px; }

/* ─── FEATURES ─── */
.features { padding: 72px 24px; background: var(--bg); }
.features-inner { max-width: var(--hero-max); margin: 0 auto; }
.section-eyebrow {
  text-align: center; color: var(--accent); font-size: 13px;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px;
}
.section-title { text-align: center; font-size: 30px; font-weight: 800; margin-bottom: 48px; letter-spacing: -.5px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--bg2); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--line);
}
.feature-icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ─── HOW IT WORKS ─── */
.how { padding: 72px 24px; background: var(--bg2); border-top: 1px solid var(--line); }
.how-inner { max-width: 680px; margin: 0 auto; }
.steps { margin-top: 36px; display: flex; flex-direction: column; gap: 28px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.step-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.step-body p { font-size: 15px; color: var(--muted); }

/* ─── DISCLAIMER STRIP ─── */
.disclaimer-strip {
  background: #fff8e6; border-top: 1px solid var(--note-border);
  border-bottom: 1px solid var(--note-border);
  padding: 18px 24px; text-align: center;
  color: #6a5000; font-size: 14px; line-height: 1.6;
}

/* ─── LEGAL PAGES ─── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 40px 24px 80px; }
.page-header {
  border-bottom: 1px solid var(--line); padding-bottom: 20px; margin-bottom: 32px;
}
.page-header .brand-link { text-decoration: none; }
.page-header .app-name { font-weight: 700; font-size: 17px; color: var(--accent); }
.page-header .app-tag { color: var(--muted); font-size: 13px; margin-top: 2px; }
h1 { font-size: 30px; line-height: 1.2; margin-bottom: 8px; font-weight: 800; }
h2 { font-size: 20px; margin: 36px 0 10px; font-weight: 700; }
h3 { font-size: 17px; margin: 22px 0 6px; font-weight: 600; }
p { margin-bottom: 14px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.updated { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
ul, ol { padding-left: 22px; margin-bottom: 14px; }
li { margin: 6px 0; }
strong { font-weight: 650; }
.note {
  background: var(--note-bg); border: 1px solid var(--note-border);
  border-radius: 10px; padding: 12px 16px;
  font-size: 14px; color: #6a5000; margin: 16px 0;
}
.note code { background: rgba(0,0,0,.06); padding: 1px 5px; border-radius: 4px; font-size: 13px; }
nav.legal { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 8px; }
nav.legal a { font-size: 15px; }

/* ─── SITE FOOTER ─── */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.55);
  padding: 40px 24px; text-align: center; font-size: 13px; line-height: 1.8;
}
.site-footer a { color: rgba(255,255,255,.65); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-brand { font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 8px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 16px; justify-content: center; margin: 14px 0; }

/* legal page footer (smaller) */
footer.page-footer {
  margin-top: 56px; padding-top: 20px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 13px;
}
footer.page-footer a { color: var(--muted); }

/* ─── DARK MODE ─── */
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #ececf1; --ink2: #c8c8d0; --muted: #8a8a95;
    --accent: #7b9fff; --accent-dark: #4a6fd4; --accent-light: #1a2450;
    --line: #2a2a32; --bg: #0e0e12; --bg2: #16161c;
    --note-bg: #231e0a; --note-border: #52430d;
  }
  .note { color: #e0cc80; }
  .hero { background: linear-gradient(160deg, #111525 0%, var(--bg) 60%); }
  .site-footer { background: #000; }
  .disclaimer-strip { background: #1e1a08; border-color: #52430d; color: #c8a83a; }
  .site-header { background: var(--bg); }
}

@media (max-width: 600px) {
  .hero { padding: 56px 20px 48px; }
  .site-header nav { display: none; }
  .step { flex-direction: column; gap: 10px; }
}
