/* google-fonts-removed-2026-08-31: the site used to pull Cormorant
   Garamond + Inter from fonts.googleapis.com, which sends every
   visitor's IP to Google -- while privacy/index.html claimed data goes
   to "exactly one party - TikTok". System stacks keep the same
   serif-headline / sans-body shape with no third-party request. */
/* =============================================================
   simplyknown.co - shared site styles
   -------------------------------------------------------------
   Master brand, dark face: the palette already live on /apps/ and
   /video-creator/ (bg #0d100c, gold #d4b872, cream #ece7d7).
   Marketing tier per the Two-Tier rule = display serif + film
   grain + gold atmosphere. Product apps stay plain; this is the
   marketing surface, so the voice layer belongs here.

   Loaded by every page in public/. Pages that need extra rules
   keep a small <style> block AFTER this file so theirs wins.
   ============================================================= */

:root {
  --bg-deep:    #0d100c;
  --bg-stone:   #171a15;
  --bg-elev:    #1c1f1a;
  --cream:      #ece7d7;
  --parchment:  #d4cbb3;
  --faint:      #9a927c;
  --gold:       #d4b872;
  --gold-dim:   rgba(212,184,114,.18);
  --border:     rgba(212,184,114,.12);
  --border-2:   rgba(212,184,114,.32);
  --leaf:       #7ea269;
  --ember:      #d98b6a;
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --measure:    68ch;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg-deep);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  /* Ambient glows. Deliberately NOT background-attachment:fixed — it forces a
     full repaint on every scroll frame, which is a real cost on phones, and
     iOS Safari has never handled it reliably. */
  background-image:
    radial-gradient(ellipse at 18% 0%,  rgba(45,74,58,.20) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 96%, rgba(92,58,31,.16) 0%, transparent 55%);
  background-repeat: no-repeat;
}

/* Film grain - dark marketing surface only. */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none;
  z-index: 0; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration-color: var(--gold-dim); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--gold); }
strong { font-weight: 600; color: var(--cream); }
code, kbd, .mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .92em; }
code { background: rgba(212,184,114,.08); border: 1px solid var(--border);
       border-radius: 5px; padding: 1px 6px; color: var(--gold); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--bg-elev); color: var(--gold); padding: 10px 16px;
  border: 1px solid var(--border-2); border-radius: 0 0 8px 0; text-decoration: none;
}
.skip:focus { left: 0; }

/* ---------------------------------------------------------------
   NAV
   --------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(13,16,12,.80);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-in {
  max-width: 1080px; margin: 0 auto; padding: 12px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--cream); }
.brand img { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border-2); }
.brand-word {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  letter-spacing: .04em; line-height: 1;
}
.nav-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.nav-links a {
  color: var(--parchment); text-decoration: none; font-size: 14px;
  letter-spacing: .01em; padding: 4px 0; border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover { color: var(--gold); border-bottom-color: var(--gold-dim); }
.nav-links a.is-current { color: var(--gold); border-bottom-color: var(--gold); }

/* ---------------------------------------------------------------
   LAYOUT
   --------------------------------------------------------------- */
main { position: relative; z-index: 1; flex: 1 0 auto; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
.wrap.narrow { max-width: 780px; }
section { padding: 46px 0; }
section + section { border-top: 1px solid var(--border); }
.stack > * + * { margin-top: 16px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: .02em; line-height: 1.15; }
h1 { font-size: clamp(34px, 6vw, 52px); font-weight: 500; letter-spacing: .03em; }
h2 { font-size: clamp(26px, 3.6vw, 33px); color: var(--cream); }
h3 { font-size: 20px; color: var(--gold); letter-spacing: .015em; }
h2 + p, h3 + p { margin-top: 10px; }
/* A heading that follows body copy needs air above it, or it reads as the tail
   of the previous block instead of the head of the next one. Component
   headings (.card/.scope/.stage/.faq-item h3) set their own margin and win on
   specificity, so they are unaffected. */
p + h2, ul + h2, ol + h2, dl + h2 { margin-top: 36px; }
p + h3, ul + h3, ol + h3, dl + h3 { margin-top: 30px; }
h2 + h3 { margin-top: 18px; }
p { max-width: var(--measure); }
p + p { margin-top: 14px; }

.micro {
  text-transform: uppercase; letter-spacing: .18em; font-size: 10.5px;
  color: var(--gold); margin-bottom: 16px; font-weight: 500;
}
.lede { font-size: 18px; color: var(--parchment); max-width: 62ch; }
.note { font-size: 14px; color: var(--faint); max-width: var(--measure); }

/* ---------------------------------------------------------------
   HERO
   --------------------------------------------------------------- */
.hero { padding: 62px 0 44px; }
.hero .kicker {
  font-family: var(--serif); font-style: italic; font-size: 20px;
  color: var(--parchment); margin-top: 8px;
}
.hero p.lede { margin-top: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  padding: 12px 22px; border-radius: 8px; cursor: pointer;
  border: 1px solid var(--gold); background: var(--gold); color: #14110b;
  transition: transform .14s ease, filter .14s ease, background .14s ease, border-color .14s ease;
}
.btn:hover { filter: brightness(1.07); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn[disabled] { opacity: .45; cursor: default; transform: none; filter: none; }
.btn.ghost { background: rgba(212,184,114,.05); color: var(--gold); border-color: var(--gold-dim); }
.btn.ghost:hover { border-color: var(--gold); background: rgba(212,184,114,.10); }
.btn.link {
  background: none; border: none; color: var(--parchment); text-transform: none;
  letter-spacing: 0; padding: 4px 6px; text-decoration: underline; font-size: 14px;
}
.btn.link:hover { color: var(--gold); transform: none; }

/* ---------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------- */
.grid { display: grid; gap: 14px; }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card {
  display: block;
  background: linear-gradient(180deg, var(--bg-stone), var(--bg-elev));
  border: 1px solid var(--border); border-radius: 16px;
  padding: 22px 24px; color: var(--cream); text-decoration: none;
}
a.card { transition: transform .15s ease, border-color .15s ease; }
a.card:hover { transform: translateY(-2px); border-color: var(--border-2); }
.card h2, .card h3 {
  font-family: var(--serif); font-weight: 600; font-size: 24px;
  color: var(--gold); letter-spacing: .02em;
}
.card p { color: var(--parchment); font-size: 14.5px; margin-top: 6px; max-width: none; }
.card .row { display: flex; align-items: center; gap: 18px; }
.card .row .body { flex: 1; }
.card .arrow { color: var(--gold); font-size: 22px; flex: 0 0 auto; line-height: 1; }

.pill {
  display: inline-block; font-size: 10px; text-transform: uppercase;
  letter-spacing: .14em; border: 1px solid var(--border); border-radius: 999px;
  padding: 3px 10px; color: var(--parchment); margin-left: 8px; vertical-align: 3px;
  white-space: nowrap;
}
.pill.open { color: var(--leaf); border-color: rgba(126,162,105,.38); }

/* ---------------------------------------------------------------
   NUMBERED STEPS
   --------------------------------------------------------------- */
.steps { counter-reset: step; list-style: none; margin-top: 20px; }
.steps li {
  position: relative; padding: 16px 20px 16px 60px; margin: 10px 0;
  background: linear-gradient(180deg, var(--bg-stone), var(--bg-elev));
  border: 1px solid var(--border); border-radius: 14px;
  color: var(--parchment); font-size: 15px;
}
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 18px; top: 16px;
  width: 27px; height: 27px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--border-2); color: var(--gold);
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
/* Only the leading label goes on its own line — a <strong> later in the
   sentence must stay inline or it breaks the copy across three lines. */
.steps li > strong:first-child { display: block; font-size: 15.5px; margin-bottom: 2px; }
.steps li strong { color: var(--cream); }

/* ---------------------------------------------------------------
   KEY / VALUE ROWS  (what data is used, limits, ...)
   --------------------------------------------------------------- */
.kv { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-top: 18px; }
.kv .kv-row {
  display: grid; grid-template-columns: minmax(150px, 34%) 1fr; gap: 4px 20px;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  background: rgba(23,26,21,.55);
}
.kv .kv-row:last-child { border-bottom: 0; }
.kv dt { color: var(--cream); font-weight: 500; font-size: 14.5px; }
.kv dd { color: var(--parchment); font-size: 14.5px; }
.kv dd .no { color: var(--ember); }
.kv dd .yes { color: var(--leaf); }

/* ---------------------------------------------------------------
   BULLET LISTS IN PROSE
   --------------------------------------------------------------- */
.bullets { list-style: none; margin-top: 14px; max-width: var(--measure); }
.bullets li { position: relative; padding-left: 22px; margin: 9px 0; color: var(--parchment); }
.bullets li::before {
  content: ""; position: absolute; left: 4px; top: .72em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: .7;
}
.bullets.no li::before { background: var(--ember); }

/* ---------------------------------------------------------------
   FAQ
   --------------------------------------------------------------- */
.faq { margin-top: 18px; }
.faq-item {
  border: 1px solid var(--border); border-radius: 14px;
  background: linear-gradient(180deg, var(--bg-stone), var(--bg-elev));
  padding: 20px 22px; margin: 12px 0;
}
.faq-item h3 { font-size: 19px; margin-bottom: 8px; }
.faq-item p { color: var(--parchment); font-size: 15px; max-width: none; }

/* ---------------------------------------------------------------
   CALLOUT
   --------------------------------------------------------------- */
.callout {
  border: 1px solid var(--border-2); border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0; background: rgba(212,184,114,.05);
  padding: 18px 22px; margin-top: 22px;
}
.callout p { color: var(--cream); max-width: none; }

/* ---------------------------------------------------------------
   PROSE / LEGAL DOCUMENTS
   --------------------------------------------------------------- */
.doc { padding: 44px 0 60px; }
.doc h2 { font-size: 22px; margin-top: 34px; color: var(--gold); }
.doc h2:first-of-type { margin-top: 26px; }
.doc p { color: var(--parchment); margin-top: 12px; }
.doc .stamp { color: var(--faint); font-size: 14px; margin-top: 8px; }

/* ---------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------- */
.foot {
  position: relative; z-index: 1; flex: 0 0 auto;
  border-top: 1px solid var(--border); margin-top: 40px;
  padding: 34px 0 46px; background: rgba(13,16,12,.6);
}
.foot .wrap { display: grid; gap: 14px; }
.foot .foot-brand { font-family: var(--serif); font-size: 20px; color: var(--cream); letter-spacing: .04em; }
.foot nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.foot nav a { color: var(--parchment); text-decoration: none; font-size: 14px; }
.foot nav a:hover { color: var(--gold); text-decoration: underline; }
.foot .fine { color: var(--faint); font-size: 12.5px; line-height: 1.7; max-width: 78ch; }
.foot .fine a { color: var(--faint); }
.foot .fine a:hover { color: var(--gold); }

/* ---------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 720px) {
  .nav-in { padding: 10px 18px; gap: 10px; }
  .nav-links { gap: 14px; width: 100%; }
  .nav-links a { font-size: 13px; }
  .wrap { padding: 0 18px; }
  .hero { padding: 40px 0 32px; }
  section { padding: 36px 0; }
  .kv .kv-row { grid-template-columns: 1fr; padding: 13px 16px; }
  .kv dt { color: var(--gold); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
  .card { padding: 20px; }
  .card .row { gap: 12px; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* legal-address-2026-08-31: the LLC's registered address, on the privacy and
   contact pages. Some app reviews (TikTok's included) ask for a postal address,
   and a policy that names a controller without one reads as incomplete. */
.addr-block {
  font-style: normal;
  line-height: 1.65;
  padding: 14px 18px;
  border-left: 2px solid var(--rule, #2a2f28);
  margin: 14px 0 18px;
}
