/* ============================================================================
   Remnant Security — shared app-site design system (one stylesheet, all apps).
   Consistency: every app site uses THIS file unchanged. The only per-app knob is
   --accent (set it in a tiny inline <style> or a 1-line override). Light + dark.
   Replaces the two drifted token sets (App Switcher Pro cyan vs. old Apple grey).
   ========================================================================== */
:root {
  --accent: #00C2D8;            /* per-app override; default = Remnant cyan      */
  --accent-ink: #00181c;        /* text on accent buttons                        */
  --bg: #ffffff;
  --panel: #f5f7fa;
  --soft: #eef2f6;
  --ink: #0b1020;               /* headings / primary text                       */
  --text: #2a2f3a;             /* body text                                     */
  --muted: #6b7280;            /* secondary                                     */
  --border: #e3e8ee;
  --radius: 14px;
  --maxw: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, system-ui, sans-serif;
  --shadow: 0 1px 2px rgba(11,16,32,.06), 0 8px 30px rgba(11,16,32,.06);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1020; --panel: #12172a; --soft: #161d33; --ink: #f3f6fc;
    --text: #d4dae8; --muted: #95a0b5; --border: #232c46;
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 10px 40px rgba(0,0,0,.35);
  }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; line-height: 1.55; }
h1,h2,h3 { color: var(--ink); line-height: 1.1; letter-spacing: -.02em; margin: 0 0 .4em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
a { color: var(--accent); text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* nav */
.nav { position: sticky; top: 0; z-index: 10; background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 650; color: var(--ink); }
.brand img { width: 28px; height: 28px; border-radius: 7px; }
.links a { color: var(--text); margin-left: 22px; font-size: .94rem; }
.links a:hover { color: var(--accent); }

/* hero */
.hero { padding: clamp(48px, 8vw, 104px) 0; }
.eyebrow { color: var(--accent); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 46ch; margin: .8em 0 1.6em; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 11px;
  font-weight: 600; font-size: .98rem; border: 1px solid transparent; transition: transform .08s ease, opacity .15s; }
.button:active { transform: translateY(1px); }
.button.primary { background: var(--accent); color: var(--accent-ink); }
.button.primary:hover { opacity: .9; }
.button.secondary { background: var(--panel); color: var(--ink); border-color: var(--border); }

/* sections + cards */
section { padding: clamp(40px, 6vw, 80px) 0; }
.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow); }
.card h3 { font-size: 1.1rem; }
.card p { color: var(--muted); margin: .4em 0 0; }

/* pricing */
.price { font-size: 2.6rem; font-weight: 700; color: var(--ink); }
.price small { font-size: 1rem; color: var(--muted); font-weight: 500; }

/* footer */
.footer { border-top: 1px solid var(--border); color: var(--muted); font-size: .9rem; padding: 36px 0; margin-top: 40px; }
.footer a { color: var(--muted); margin-right: 16px; }
.footer a:hover { color: var(--accent); }
.badge { display: inline-block; padding: 4px 10px; border-radius: 999px; background: var(--soft);
  border: 1px solid var(--border); color: var(--muted); font-size: .78rem; }
