/* Weejistick site — dependency-free, brand-matched (orange accent, greige/indigo palette). */
:root {
  --orange: #ff6a2b;
  --orange-deep: #e2551a;
  --ink: #211f2e;          /* near app indigo, for text */
  --indigo: #1f1c2e;       /* app dark canvas */
  --greige: #ddd7cb;       /* app light canvas */
  --paper: #f6f2ea;        /* warm off-white page bg */
  --card: #ffffff;
  --muted-ink: #6f6a7d;
  --line: rgba(33,31,46,.12);
  --radius: 18px;
  --maxw: 1040px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--orange-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(246,242,234,.86);
  backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 1.12rem; color: var(--ink); }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav a { color: var(--ink); margin-left: 22px; font-weight: 500; font-size: .98rem; }
.nav a:hover { color: var(--orange-deep); text-decoration: none; }

/* Buttons */
.btn { display: inline-block; background: var(--orange); color: #fff; font-weight: 650;
  padding: 13px 22px; border-radius: 999px; box-shadow: 0 8px 22px rgba(255,106,43,.30); }
.btn:hover { background: var(--orange-deep); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: none; border: 1px solid var(--line); }

/* Hero */
.hero { text-align: center; padding: 76px 0 60px; }
.hero .appicon { width: 116px; height: 116px; border-radius: 26px; margin: 0 auto 26px;
  box-shadow: 0 18px 50px rgba(33,31,46,.20); }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); line-height: 1.08; margin: 0 0 14px; letter-spacing: -.02em; }
.hero h1 .accent { color: var(--orange); }
.hero p.lede { font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: var(--muted-ink); max-width: 600px; margin: 0 auto 26px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero .fineprint { margin-top: 16px; font-size: .9rem; color: var(--muted-ink); }

/* Sections */
section { padding: 56px 0; }
section h2 { font-size: clamp(1.5rem, 3vw, 2rem); text-align: center; margin: 0 0 8px; letter-spacing: -.01em; }
section .sub { text-align: center; color: var(--muted-ink); max-width: 620px; margin: 0 auto 36px; }

/* Feature cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card h3 { margin: 0 0 6px; font-size: 1.12rem; }
.card p { margin: 0; color: var(--muted-ink); font-size: .98rem; }
.card .ico { font-size: 1.7rem; margin-bottom: 10px; }

/* Privacy band */
.band { background: var(--indigo); color: #efece6; border-radius: 28px; padding: 52px 30px; text-align: center; }
.band h2 { color: #fff; }
.band .sub { color: #c8c3d6; }
.band .proof { display: inline-block; margin-top: 8px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 14px 20px; color: #efece6; font-size: .98rem; }
.band .proof b { color: var(--orange); }

/* Pricing */
.price-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; max-width: 720px; margin: 0 auto; }
.price { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; text-align: center; }
.price .amt { font-size: 1.8rem; font-weight: 750; }
.price .amt small { font-size: .9rem; font-weight: 500; color: var(--muted-ink); }
.price .tag { display: inline-block; font-size: .78rem; font-weight: 650; color: #fff; background: var(--orange);
  padding: 2px 9px; border-radius: 999px; margin-bottom: 8px; }

/* Doc pages (privacy / support) */
.doc { max-width: 760px; margin: 0 auto; padding: 48px 0 24px; }
.doc h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin: 0 0 6px; }
.doc .updated { color: var(--muted-ink); font-size: .92rem; margin-bottom: 28px; }
.doc h2 { font-size: 1.25rem; margin: 30px 0 6px; }
.doc h2.q { font-size: 1.08rem; }   /* FAQ sub-questions (support page) */
.doc .callout { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--orange);
  border-radius: 12px; padding: 16px 18px; margin: 18px 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 34px 0; margin-top: 30px; color: var(--muted-ink); font-size: .92rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; justify-content: space-between; }
.site-footer a { color: var(--muted-ink); }
.site-footer .disclaimer { width: 100%; font-size: .84rem; opacity: .85; line-height: 1.5; }

/* Dark mode — automatically follows the visitor's device/OS appearance (prefers-color-scheme).
   Overrides the palette variables + the few hard-coded light surfaces; the orange accent is shared. */
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #ece9f1;          /* light text */
    --paper: #15131e;        /* page bg — darkest layer */
    --card: #221f31;         /* cards sit just above the page */
    --muted-ink: #a39db4;    /* muted light text */
    --line: rgba(255,255,255,.11);
    --orange-deep: #ff8753;  /* links/hover stay readable on dark */
  }
  .site-header { background: rgba(21,19,30,.82); }              /* translucent, matches --paper */
  .doc .callout { background: var(--card); }                    /* was hard-coded #fff */
  .band { background: #262236; border: 1px solid rgba(255,255,255,.10); }  /* lift off the dark page */
  .hero .appicon { box-shadow: 0 18px 50px rgba(0,0,0,.45); }
  .btn { box-shadow: 0 8px 22px rgba(255,106,43,.22); }
}
