/* The app's own tokens (WWTColor / WWTFont), so the site and the app read as
   one product rather than two. Values copied from Assets.xcassets. */
:root {
  --bg: #0B0B0D;          /* WWTBackground */
  --surface: #17171B;     /* WWTSurface */
  --accent: #E8B04B;      /* WWTAccent — marquee gold */
  --text: #F5F3EF;        /* WWTTextPrimary */
  --muted: #A9A6A1;
  --faint: #6F6C68;
  --line: #26262B;
  --radius: 14px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* A dark page with no relief reads as a dead rectangle; this is the same
     low-alpha gold pool the app icon uses behind its mark. */
  background-image: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(232,176,75,.10), transparent 70%);
  background-repeat: no-repeat;
}
.wrap { max-width: 720px; margin: 0 auto; padding: 0 22px; }
h1, h2, h3 { font-family: ui-serif, Georgia, "Times New Roman", serif; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 6vw, 3rem); line-height: 1.15; margin: 0 0 .5rem; }
h2 { font-size: 1.5rem; margin: 2.75rem 0 .75rem; }
h3 { font-size: 1.1rem; margin: 0 0 .35rem; font-family: inherit; font-weight: 600; }
p { margin: 0 0 1rem; color: var(--muted); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

header { border-bottom: 1px solid var(--line); position: sticky; top: 0; background: rgba(11,11,13,.86); backdrop-filter: blur(12px); z-index: 5; }
nav { display: flex; align-items: center; gap: 20px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--text); font-size: 1.05rem; }
.brand svg { width: 22px; height: 22px; flex: none; }
nav .spacer { margin-left: auto; }
nav a:not(.brand) { color: var(--muted); font-size: .95rem; }

.hero { padding: 76px 0 20px; }
/* The app's own name leads, matching the App Store listing exactly. The line
   that used to be the h1 becomes the tagline beneath it — still the largest
   thing after the name, because it is what actually explains the app. */
.hero .tagline {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3.4vw, 1.75rem);
  line-height: 1.3;
  color: var(--text);
  margin: .45rem 0 .9rem;
}
.hero p.lead { font-size: 1.15rem; color: var(--muted); max-width: 36ch; }
.badge { display: inline-block; margin-top: 22px; background: var(--accent); color: #14100A;
         font-weight: 650; padding: 13px 24px; border-radius: 999px; }
.badge:hover { text-decoration: none; filter: brightness(1.06); }

.cards { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); margin: 14px 0 0; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.card .eyebrow { color: var(--accent); font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 9px; }
.card p { margin: 0; font-size: .96rem; }

.plans { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.plan.pro { border-color: rgba(232,176,75,.42); }
.price { font-size: 2rem; font-family: ui-serif, Georgia, serif; }
.price span { font-size: .95rem; color: var(--muted); font-family: inherit; }
.plan ul { list-style: none; padding: 0; margin: 14px 0 0; }
.plan li { color: var(--muted); padding: 7px 0 7px 24px; position: relative; font-size: .96rem; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); }
.trial { color: var(--faint); font-size: .88rem; margin-top: 12px; }

.doc h2 { font-size: 1.15rem; font-family: inherit; margin: 2rem 0 .5rem; }
.doc .meta { color: var(--faint); font-size: .9rem; margin-bottom: 2rem; }
.doc p { color: var(--muted); }

footer { border-top: 1px solid var(--line); margin-top: 84px; padding: 30px 0 46px; color: var(--faint); font-size: .9rem; }
footer a { color: var(--muted); }
footer .row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
footer .spacer { margin-left: auto; }
@media (max-width: 560px) { .hero { padding-top: 52px; } footer .spacer { margin-left: 0; width: 100%; } }
