/* Marquee — marketing + legal site.
   A committed warm-dark "studio light-table," matching the app itself: incandescent amber on
   deep warm black, serif titles, SF body, mono for specs. Single-theme by intent — Marquee is a
   committed dark studio, so the site lives in the same world rather than inverting for light. */

:root {
  --ground: #100d09;      /* deepest warm black, behind everything */
  --panel:  #17120c;      /* raised surfaces */
  --raised: #251f18;      /* cards */
  --line:   rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.14);
  --ink:      #f3eadd;
  --ink-soft: #cabfa9;
  --ink-faint:#948871;
  --accent:      #f4ab3d;
  --accent-soft: #ffd07e;
  --accent-glow: rgba(244,171,61,.16);
  --ok: #6bbf99;
  --serif: "New York", "Iowan Old Style", "Palatino", Georgia, serif;
  --sans:  -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  --mono:  "SF Mono", ui-monospace, Menlo, monospace;
  --maxw: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: var(--accent-soft); }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* Eyebrow label — mono, tracked, amber. Names a real capability, not a sequence number. */
.eyebrow {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); font-weight: 600;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -.01em; text-wrap: balance; }

/* ---- Top nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  background: rgba(16,13,9,.72);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; gap: 16px; height: 62px; }
.nav .brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif);
  font-size: 18px; font-weight: 600; text-decoration: none; color: var(--ink); }
.nav .brand img { width: 28px; height: 28px; border-radius: 8px; }
.nav .links { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.nav .links a { color: var(--ink-soft); text-decoration: none; font-size: 14px; }
.nav .links a:hover { color: var(--ink); }
/* Higher specificity than `.nav .links a` so the near-black ink on amber isn't overridden
   by the link color (which made "Get Marquee" invisible). */
.nav .links a.cta-sm {
  font-size: 13px; font-weight: 600; color: #14100a;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  padding: 8px 16px; border-radius: 10px; text-decoration: none;
}
.nav .links a.cta-sm:hover { color: #14100a; filter: brightness(1.05); }
@media (max-width: 720px) { .nav .links a:not(.cta-sm) { display: none; } }

/* ---- Hero ---- */
.hero { position: relative; text-align: center; padding: 92px 0 40px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% -5%, var(--accent-glow), transparent 55%);
  pointer-events: none;
}
.hero .eyebrow { display: inline-block; margin-bottom: 20px; }
.hero h1 { font-size: clamp(42px, 7.4vw, 72px); line-height: 1.02; }
.hero .tag {
  font-family: var(--serif); font-size: clamp(18px, 2.5vw, 23px); color: var(--ink-soft);
  margin: 20px auto 0; max-width: 30ch; text-wrap: balance;
}
.hero .actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-block; font-weight: 600; text-decoration: none; border-radius: 13px;
  padding: 13px 28px; font-size: 16px;
}
.btn.primary {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent)); color: #14100a;
  border: 1px solid rgba(255,255,255,.3); box-shadow: 0 12px 40px rgba(244,171,61,.26);
}
.btn.primary:hover { filter: brightness(1.05); }
.btn.ghost { color: var(--ink-soft); border: 1px solid var(--line-2); }
.btn.ghost:hover { color: var(--ink); border-color: var(--ink-faint); }
.hero .soon { font-size: 12.5px; color: var(--ink-faint); margin-top: 16px; font-family: var(--mono); }

/* Hero screenshot — floats on the ground with a soft glow, like a slide on the app's Stage. */
.hero-shot { position: relative; margin: 52px auto 0; max-width: 940px; }
.hero-shot img {
  width: 100%; border-radius: 16px; border: 1px solid var(--line-2);
  box-shadow: 0 40px 120px rgba(0,0,0,.6), 0 0 90px rgba(244,171,61,.08);
}

/* ---- Trust strip ---- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--panel); }
.strip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); }
.strip .cell { padding: 22px 18px; text-align: center; }
.strip .cell + .cell { border-left: 1px solid var(--line); }
.strip b { display: block; font-family: var(--serif); font-size: 16px; }
.strip span { font-size: 12.5px; color: var(--ink-faint); font-family: var(--mono); }
@media (max-width: 660px) {
  .strip .wrap { grid-template-columns: 1fr; }
  .strip .cell + .cell { border-left: none; border-top: 1px solid var(--line); }
}

/* ---- Feature rows (alternating image / text) ---- */
.feature { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 76px 0; }
.feature.flip .shot { order: 2; }
.feature .shot img {
  width: 100%; border-radius: 14px; border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0,0,0,.5);
}
.feature h2 { font-size: clamp(28px, 3.6vw, 38px); margin: 14px 0 12px; }
.feature p { color: var(--ink-soft); font-size: 16px; max-width: 46ch; }
.feature p + p { margin-top: 12px; }
.feature .note { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); margin-top: 16px; }
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; gap: 26px; padding: 52px 0; }
  .feature.flip .shot { order: 0; }
}

/* ---- ASO band (text-forward; no fabricated screenshot) ---- */
.aso { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.aso .wrap { padding: 76px 28px; }
.aso h2 { font-size: clamp(28px, 3.6vw, 38px); margin: 14px 0 12px; max-width: 20ch; }
.aso .lede { color: var(--ink-soft); font-size: 16px; max-width: 60ch; }
.aso .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.aso .chip {
  font-family: var(--mono); font-size: 12px; color: var(--ink-soft);
  border: 1px solid var(--line-2); border-radius: 999px; padding: 7px 14px; background: var(--raised);
}
.aso .chip.ok { color: var(--ok); border-color: rgba(107,191,153,.4); }

/* ---- Pricing ---- */
.pricing { text-align: center; padding: 80px 0; }
.pricing h2 { font-size: clamp(28px, 3.6vw, 38px); }
.pricing .price { font-family: var(--serif); font-size: 22px; color: var(--ink-soft); margin-top: 12px; }
.pricing ul { list-style: none; margin: 26px auto 0; max-width: 420px; text-align: left; display: grid; gap: 10px; }
.pricing li { color: var(--ink-soft); font-size: 15px; padding-left: 28px; position: relative; }
.pricing li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---- FAQ ---- */
.faq { padding: 40px 0 20px; }
.faq h2 { font-size: clamp(26px, 3.4vw, 34px); text-align: center; margin-bottom: 28px; }
.faq .list { max-width: 780px; margin: 0 auto; }
.faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { font-family: var(--serif); font-size: 18px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); font-size: 15px; margin-top: 12px; }

/* ---- Support ---- */
.support { text-align: center; padding: 72px 0; }
.support .card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 20px;
  padding: 44px; max-width: 640px; margin: 28px auto 0;
}
.support .mail { display: inline-block; font-family: var(--mono); font-size: 18px; color: var(--accent-soft);
  text-decoration: none; margin-top: 10px; border-bottom: 1px solid rgba(244,171,61,.4); padding-bottom: 2px; }
.support .note { font-size: 13px; color: var(--ink-faint); margin-top: 16px; }

/* ---- Footer ---- */
footer { border-top: 1px solid var(--line); padding: 40px 0 56px; text-align: center; }
footer nav { margin-bottom: 14px; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
footer nav a { color: var(--ink-soft); text-decoration: none; font-size: 14px; }
footer nav a:hover { color: var(--accent-soft); }
footer .fine { font-size: 12px; color: var(--ink-faint); max-width: 56ch; margin: 0 auto; line-height: 1.7; }

/* ---- Legal pages (privacy / terms) ---- */
.legal { padding: 64px 0 40px; }
.legal .back { font-family: var(--mono); font-size: 12.5px; color: var(--accent-soft); text-decoration: none; }
.legal h1 { font-size: clamp(34px, 5vw, 46px); margin: 18px 0 6px; }
.legal .eff { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); }
.legal .doc { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 44px; margin-top: 30px; }
.legal .lead { font-family: var(--serif); font-size: 20px; color: var(--ink);
  border-left: 2px solid var(--accent); padding-left: 18px; margin-bottom: 26px; text-wrap: balance; }
.legal .doc h2 { font-size: 20px; margin: 30px 0 8px; }
.legal .doc h2:first-of-type { margin-top: 0; }
.legal .doc p, .legal .doc li { color: var(--ink-soft); font-size: 15px; }
.legal .doc p + p { margin-top: 10px; }
.legal .doc ul { margin: 10px 0 4px 22px; }
.legal .doc li { margin-bottom: 6px; }
@media (max-width: 660px) { .legal .doc, .support .card { padding: 28px 22px; } }

/* ---- Scroll reveal (subtle; disabled for reduced motion) ---- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
